body {
    background-color: #ffffff;
    min-height: 100vh;
}

.cover {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0px;
    left: 0px;
    background-image: url('../images/background.jpg');
    background-repeat:  no-repeat;
    background-position: center center;
    background-attachment: inherit;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

#container {
    width: 640px; 
    margin-left: auto; 
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    background-color: #ffffff;
    -moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

#main {
    width: 100%;
    cursor: pointer;
}
#menuContainer {
    z-index: 1000;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%; 
    height: 193px;
    overflow: hidden;
    background-color: #ffffff;
    -moz-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
#menu {
    top: 0px;
    left: 0px;
    width: 640px; 
    height: 173px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    background-image: url('../images/main.jpg');
    background-repeat: no-repeat;
}
.menuItem {
    position: absolute;
    top: 105px; 
    border: 0px solid blue;
    width: 120px; 
    height: 50px;
    cursor: pointer;
}

#formIframe {
    position: absolute; 
    top: 875px; 
    left: 160px; 
    border: 0px solid blue;
    width: 380px; 
    height: 150px; 
    background: none; 
    overflow: hidden;
}
#gallery {
    position: absolute; 
    top: 1560px; 
    left: 30px; 
    border: 5px solid white;
    width: 580px; 
    height: 400px; 
    background: none; 
    overflow: hidden;
    -moz-box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 20px rgba(0,0,0,0.75);
}

#gallery img {
    position: absolute; 
    top: 0px; 
    left: 0px; 
    width: 580px; 
    height: 400px; 
    opacity: 0;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


#backUpButton {
    position: absolute;
    width: 100%;
    left: 0px;
    height: 80px;
    top: 2160px;
    border: 0px solid blue;
    cursor: pointer;
}

#shareButtons {
    position: absolute;
    top: 130px;
    left: 15px;
    width: 400px;
    height: 60px;
    border: 0px solid red;
    overflow: hidden;
}

#posts {
    /*
    position: absolute;
    top: 340px;
    left: 0px;
    */
    margin-top: -23px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 640px;
    margin-left: auto;
    margin-right: auto;
    border: 0px solid red;
    background-color: #e0e0e0;
}
.post {
    display: none;
    width: 560px;        
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    border: 0px solid blue;
    direction: rtl;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;

    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.25);
    box-shadow: 0px 0px 5px rgba(0,0,0,0.25);

    -webkit-transition: all 100ms cubic-bezier(0.420, 0.000, 0.580, 1.000); 
    -moz-transition: all 100ms cubic-bezier(0.420, 0.000, 0.580, 1.000); 
    -o-transition: all 100ms cubic-bezier(0.420, 0.000, 0.580, 1.000); 
    transition: all 100ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */

    -webkit-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); 
    -moz-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); 
    -o-transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); 
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */

}

.postTitle {
    font-family: 'Open Sans Hebrew',Arial,sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #404040;
    text-align: right;
    margin-bottom: 20px;
}

.postTitle a,.postTitle a:link, .postTitle a:active, .postTitle a:visited   {
    font-family: 'Open Sans Hebrew',Arial,sans-serif;
    font-weight: normal;
    font-size: 12px;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    background-color: #e0e0e0;
    text-align: center;
    padding-top: 5px;
    margin-bottom: -20px;
    cursor: pointer;
    border-radius: 5px;
    width: 20px;
    height: 15px;
    float: left;
}
.postBody {
    font-family: 'Open Sans Hebrew',Arial,sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #606060;
    line-height: 22px;
    text-align: justify;
    text-align-last: right;
    margin-bottom: 20px;
}
.postImage {

    width: 560px;
}
#footer {
    font-family: 'Open Sans Hebrew',Arial,sans-serif;
    text-align: center;
    direction: rtl;
    font-size: 14px;
    background-color: #e0e0e0;
    color: #808080;
    margin-top: -20px;
    padding-bottom: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}


.blur {
    -webkit-filter: blur(6px);
    filter: blur(6px);
}


#loading {
    text-align: center;
    padding-top: 150px;
    padding-bottom: 150px;
}