a.menu_button2{
    border: 1px;
    border-style: solid;
    border-color: #FFFFFF;
    text-decoration: none;
    font-size: 13pt;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    color: #FFFFFF;
           
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 16px;
    padding-bottom: 17px;
    
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    
    -moz-border-radius:0px; /* Firefox */
    -webkit-border-radius:0px; /* Safari, Chrome */
    -khtml-border-radius:0px; /* KHTML */
    border-radius:0px; /* CSS3 */
}
a.menu_button2:hover{
    border: 1px;
    background-color: #FFFFFF;
    border-style: solid;
    border-color: #FFFFFF;
    text-decoration: none;
    font-size: 13pt;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    color: #000000;
                    
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 16px;
    padding-bottom: 17px;

    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}





































/*-----------------------------------------------------*/
/* IMPUT FORM */
#submitbutton{
    color: #FFFFFF;
    background-color: #000000;
    height:60;
    border: 2px;
    padding: 14px;
    font-size: 16pt;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    border-radius: 0px;
    border-color: #FFFFFF;
    cursor: pointer;
}
#submitbutton:hover{
    color: #FFFFFF;
    background-color: #00C1FE;
    height:60;
    border: 2px;
    padding: 14px;
    font-size: 16pt;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    border-radius: 0px;
    border-color: #FFFFFF;
    cursor: pointer;
    transition-duration: 0.5s;
}

.inputForm {
    color: #000000;
    font-size: 15px;
    border: 1px solid #000000;
    background: #FFFFFF;
    width: 100%;
    opacity: 0.6;
}
input[type="text"]:focus {
    padding: 20px 20px;
    border-color: #D8CEBE;
    background: #FFFFFF;
    outline: none;
    opacity: 1.0;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
textarea {
    font-size: 15px;
    width: 100%;
    padding: 0px 0px;
    border: 1px solid #000000;
    outline: none;
    text-align: center;
    opacity: 0.4;
    
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}
textarea:focus {
    width: 100%;
    padding: 0px 0px;
    border: 1px solid #D8CEBE;
    outline: none;
    text-align: center;
    opacity: 1.0;
    -webkit-transition-duration: 0.5s; /* Safari */
    transition-duration: 0.5s;
}

input[type=text] {
    padding: 20px 20px;
    box-sizing: border-box;
}

::-webkit-input-placeholder { /* Chrome */
  color: black;
}
:-ms-input-placeholder { /* IE 10+ */
  color: black;
}
::-moz-placeholder { /* Firefox 19+ */
  color: black;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: black;
  opacity: 1;
}




/* SPECIAL UNDERLINE */
u.white {    
    border-bottom: 1px dotted #FFFFFF;
    text-decoration: none;
}
u {    
    border-bottom: 1px dotted #3799EF;
    text-decoration: none;
}
h2 {
  border-bottom: 1px dashed #FFFFFF;
  display: inline;
}


/*-------------------- Parallax Main Page --------------------*/
.parallax-banner {
    min-height: 300px;
    background: transparent;
    vertical-align: middle;
}
.parallax-window {
    min-height: 900px;
    background: transparent;
    vertical-align: middle;
}
.parallax-window-short {
    min-height: 590px;
    background: transparent;
}


/*-------------------- Hover Over Main Menu --------------------*/
.div-menu{
    width:100%;
    height:80px;
    transition:all 0.3s;
}
.selected:hover{
    background:#454545;
    opacity:1;
}
    
/*----------------------- Drop Down Menu -----------------------*/
.dropbtn {
    background-color: #333333;
    color: white;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 11pt;
    border: none;
    cursor: pointer;
    line-height: 12px;
    height: 80px;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
}

.dropbtn:hover, .dropbtn:focus {
    background-color: #454545;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #333333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown a:hover {background-color: #f1f1f1}

.show {display:block;}

.showb {display:block;}



/*--------------------- Main menu bar to stay up -----------------------*/
#MainBar{
    position:fixed;
    z-index: 9999;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background-color:#151515;
}


a.menu_button{
    border: 1px;
    border-style: solid;
    border-color: #FFFFFF;
    text-decoration: none;
    font-size: 18pt;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #00C1FE;
    color: #FFFFFF;
           
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 16px;
    padding-bottom: 17px;
    
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    
    -moz-border-radius:0px; /* Firefox */
    -webkit-border-radius:0px; /* Safari, Chrome */
    -khtml-border-radius:0px; /* KHTML */
    border-radius:0px; /* CSS3 */
}
a.menu_button:hover{
    border: 1px;
    border-style: solid;
    border-color: #FFFFFF;
    text-decoration: none;
    font-size: 18pt;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    background-color: #008F93;
    color: #FFFFFF;
                    
    padding-left: 26px;
    padding-right: 26px;
    padding-top: 16px;
    padding-bottom: 17px;

    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}










.card {
    width: 320px;
    height: 460px;
    padding: 30px;
    margin: 0 auto;
}

.card a.thumb {
    float: left;
    width: 100px;
    height: 60px;
    margin: 0 5px 10px 0;
}

.card a.thumb img {
    max-width: 100%;
    max-height: 100%;
}

.front, .back {
    width: 320px;
    height: 320px;
}
