@charset "UTF-8";
/* CSS Document */
/* Malisa Nash (c) 2016*/

* {
margin:0;
padding:0;
}

/* MAIN */

body {
    background-color: #ffffff;
	position: relative; 
	margin-left:auto;
	margin-right:auto;
	width: 1366px;
    top: 30px;
    height: 100%;
    font-family: 'century gothic', sans-serif;
    font-size: 12px;
}

/* PAGE BORDERS */

#b_top, #_bottom, #b_left, #b_right {
	background: #474747;
	position: fixed;
	}
	#b_left, #b_right {
		top: 0; bottom: 0;
		width: 30px;
		}
		#b_left { left: 0; }
		#b_right { right: 0; }
		
	#b_top, #b_bottom {
		left: 0; right: 0;
		height: 30px;
		}
		#b_top { top: 0; }
		#b_bottom { bottom: 0; } 

/* BUTTON CONTAINER */

#divcontainer {
    position: absolute;
    overflow:auto;
    left: 154px;
    width: 1000px;
}

/* SEARCHBAR & CLOCK DIV */


#searchbar
{
    width: 50%;
}

/* SUB MAIN */

h1 {
    font-family: 'century gothic';
    color: #4F4F4F;
    text-align: center;
    font-size: 16px;
}

h2 {
    font-family: 'century gothic';
    color: #4F4F4F;
    text-align: center;
    font-size: 16px;
}

#iconrotate
{
-webkit-transition:-webkit-transform 2s;
transition:transform 2s;
width: 100px;
}

#iconrotate:hover
{
transform:rotateY(360deg);
-webkit-transform:rotateY(360deg); /* Safari and Chrome */
}

/* BUTTONS */

#mainbutton1 {
    color: #FFFFFF;
    float: right;
	height: 25px;
	width: 100px;
	background-color: #8fa7ca;
	opacity: .8;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 30px;
    padding-top: 7px;
    -webkit-transition:-webkit-background 2s;
	transition:background 2s;
    
}

#mainbutton2 {
    color: #FFFFFF;
    float: right;
	height: 25px;
	width: 100px;
	background-color: #758fb5;
	opacity: .8;
	-webkit-transition:-webkit-background 1s;
	transition:background 2s;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 30px;
    padding-top: 7px;
    
}

#mainbutton3 {
    color: #FFFFFF;
    float: right;
	height: 25px;
	width: 100px;
	background-color: #5c79a7;
	opacity: .8;
	-webkit-transition:-webkit-background 1s;
	transition:background 2s;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 30px;
    padding-top: 7px;
    
}

#mainbutton4 {
    color: #FFFFFF;
    float: right;
	height: 25px;
	width: 100px;
	background-color: #42649a;
	opacity: .8;
	-webkit-transition:-webkit-background 1s;
	transition:background 2s;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 30px;
    padding-top: 7px;
    
}

#mainbutton5 {
    color: #FFFFFF;
    float: right;
	height: 25px;
	width: 100px;
	background-color: #2a508b;
	opacity: .8;
	-webkit-transition:-webkit-background 1s;
	transition:background 2s;
    text-align: center;
    margin-bottom: 10px;
    margin-right: 30px;
    padding-top: 7px;
    
}

#mainbutton:hover {
   background-color: #44699e;
   }

/* MODAL */

.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog > div {
	width: 600px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
} 

.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #d22b33; }

/* DROPDOWN BUTTONS */

.dropbtn {
    background-color: #d3242d;
    color: white;
    height: 50px;
    width: 50px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

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

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

.dropdown-content a {
    color: black;
    padding: 7px 7px;
    text-decoration: none;
    display: block;
    font-size: 12px;
}

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

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #be232b;
}