@import url(http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,300,400,700);

@font-face {
	/*Declare the body font*/
    font-family: myFirstFont;
    src: url(res/ufonts.com_univers-light-normal.otf);
}

body {
	/*Create a nice background or, if not possible, a blue one*/
	background-image: url("res/bg.jpg");
    background-color: #01A4DB;
	color: #3A3A3A;
	
	/*Center align the text horizontally*/
	text-align: center;
	
	/*Init a nice body font*/
	font-family: myFirstFont;
}

/*Page Title Header*/
h1 {
	/*Init dimentions for the top header*/
	margin: auto;
	margin-top: 25px;
	margin-bottom: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
	max-width: 980px;
	
	/*Set background color white and corners*/
	background-image: url("res/bgwhite.png");
	background-color:#E4E4E4;
	color:#515151;
	border-radius: 5px;
	
	
	/*Init a nice title font*/
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}

/*General link settings*/
a {
	color: #FFFFFF;
}
a:hover {
	cursor: pointer;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}

/*Main Menu*/
div#mainMenuItemContainer {
	
}
a.mainMenuItem {
	/*Init a nice title font*/
	font-family: 'Open Sans', sans-serif;
	font-variant: small-caps;
	text-transform: capitalize;
	
	/*Init dimentions*/
	margin: auto;
	padding: 15px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	
	/*Set background color grey and corners*/
	background-color:#515151;
	border-radius: 5px;
	
	/*Keep the text nice and right*/
	display:inline-block;
	
	/*Transition effects*/
	transition: padding-top 0.5s, padding-bottom 0.5s, background-color 0.4s, color 0.4s;
}
a.mainMenuItem:hover {
	/*Adjust the colors*/
	background-color:#E4E4E4;
	color:#515151;
	
	/*Adjust sizes*/
	padding-top: 20px;
	padding-bottom: 20px;
}
a.mainMenuItemSelected {
	/*Init a nice title font*/
	font-family: 'Open Sans', sans-serif;
	font-variant: small-caps;
	text-transform: capitalize;
	
	/*Init dimentions*/
	margin: auto;
	padding: 15px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	
	/*Set background color grey and corners*/
	background-color:#E4E4E4;
	color:#515151;
	border-radius: 5px;
	
	/*Keep the text nice and right*/
	display:inline-block;
	
	/*Adjust sizes*/
	padding-top: 20px;
	padding-bottom: 20px;
}
a#mainMenuLoginButton {
	/*Add a little extra margin*/
	margin-left: 30px;
	
	/*Adjust the background color*/
	background-color:#94c119;
	
}
a#mainMenuLoginButton:hover {
	/*Adjust the background color*/
	background-color:#7da809;
	color:#FFFFFF;
}
a#mainMenuLogoutButton {
	/*Add a little extra margin*/
	margin-left: 30px;
	
	/*Adjust the background color*/
	background-color:#e74d03;
	
}
a#mainMenuLogoutButton:hover {
	/*Adjust the background color*/
	background-color:#d03e00;
	color:#FFFFFF;
}

/*Body Containers*/
div#bodyContainer {
	/*Init dimentions for the top header*/
	margin: auto;
	max-width: 980px;
	margin-top: 20px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	
	/*Set background color white and corners*/
	background-image: url("res/bgwhite.png");
	background-color:#FFFFFF;
	border-radius: 5px;
	box-shadow: 5px 5px 5px #000000;
}
h3 {	
	/*Init dimentions for the body header*/
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 0px;
	
	/*Set background color white and corners*/
	background-color:#f5a71e;
	border-radius: 5px 5px 0px 0px;
	box-shadow: 2px 2px 2px #000000;
	
	/*Init a nice title font*/
	text-transform: capitalize;
}
h3.errorHeader {	
	/*Adjust the background color*/
	background-color:#e74d03;
}
p.bodyParagraph {
	/*Init dimentions for the body paragraph*/
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 0px;
	
	/*Set background color white and corners*/
	background-color:#0097d8;
	border-radius: 0px 0px 5px 5px;
	box-shadow: 2px 2px 2px #000000;
}

/*Login overlays*/
div#loginOverlay {
	/*Init the dimentions*/
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 2;
	
	/*Set the background color*/
	background-color: rgba(0,0,0,0.5);
}
div.overlayContainer {
	/*Init the dimentions*/
	width: 80%;
	position: relative;
	z-index: 4;
	left: 10%;
	top: 25%;
	
	/*Set the background color and corners*/
	background-color: #0097d8;
	border-radius: 5px 5px 5px 5px;
}
h3.overlayHeader {	
	/*Reset the box shadow*/
	box-shadow: 0px 0px 0px #000000;
	
	/*Set the font*/
	font-family: 'Open Sans', sans-serif;
}
button.overlayClose {
	/*Init dimentions for button*/
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 0px;
	width: 100%;
	
	/*Init a nice title font*/
	text-transform: capitalize;
	
	/*Set background color red and corners*/
	background-color:#e74d03;
	border-radius: 0px 0px 5px 5px;
	border: none;
	
	/*Set the font*/
	font-family: 'Open Sans', sans-serif;
	font-weight: bold;
	
	/*Prepare the hover transition*/
	transition-duration: 0.4s;
}
button.overlayClose:hover {
	background-color: #d03e00;
    color: white;
	cursor: pointer;
}
button.overlaySubmit {
	/*Set the background-color and corners*/
	background-color: #94c119;
	border: 2px solid #FFFFFF;
	border-radius: 5px 5px 5px 5px;
	
	/*Init the dimentions*/
	padding: 5px;
	
	/*Prepare the hover transition*/
	transition-duration: 0.4s;
}
button.overlaySubmit:hover {
	background-color: #7da809;
	color:#FFFFFF;
	cursor: pointer;
}
button.overlayForgotPassword {
	/*Set the background-color and corners*/
	background-color: #f5a71e;
	border: 2px solid #FFFFFF;
	border-radius: 5px 5px 5px 5px;
	
	/*Init the dimentions*/
	padding: 5px;
	
	/*Prepare the hover transition*/
	transition-duration: 0.4s;
}
button.overlayForgotPassword:hover {
	background-color: #e59804;
	color:#FFFFFF;
	cursor: pointer;
}

/*Oops overlays*/
div#oopsOverlay {
	/*Init the dimentions*/
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 2;
	
	/*Set the background color*/
	background-color: rgba(0,0,0,0.5);
}

/*Forgot overlays*/
div#forgotOverlay {
	/*Init the dimentions*/
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 2;
	
	/*Set the background color*/
	background-color: rgba(0,0,0,0.5);
}

/*Reason overlays*/
div#reasonOverlay {
	/*Init the dimentions*/
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 2;
	
	/*Set the background color*/
	background-color: rgba(0,0,0,0.5);
}
button.reasonformbutton {
	margin: 5px;
	background-color: #94c119;
	border-style: solid;
    border-color: #94c119;
    color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 5px;
}
button.reasonformbutton:hover{
	background-color: #7da809;
}
button.reasonbutton {
	margin: 5px;
	background-color: #94c119;
	border-style: solid;
    border-color: #94c119;
    color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 5px;
}
button.reasonbutton:hover{
	background-color: #7da809;
}