@charset "UTF-8";
@font-face {
	font-family: Optima;
	src: url('../fonts/Optima.eot');
	src: local(' '), local('Optima-Regular'), url('../fonts/Optima.woff') format('woff'), url('../fonts/Optima.ttf') format('truetype'), url('../fonts/Optima.svg#Optima-Regular') format('svg');
}

/* ----------------------------------------------- [GENERAL] --- */

html,
body {
	margin:0;
	padding:0;
	background-color: #2b2a2b;
	background-image: url(img/body.jpg);
	background-position: center top;
	background-repeat: no-repeat;
}
html {height:100%;}
body {background: transparent;}

a:link,
a:visited {
	text-decoration: none;
	color: #7f7f7f;
}
a:focus,
a:hover,
a:active {
	text-decoration: none;
	color: #3b3a37;
}
a.current {
	color: #006cff !important;
	cursor: default;
}
a.inactive {
	color: #CCC !important;
	cursor: default;
	border-color: #CCC !important;
}

#wrapper {
	position:relative;
	width: 800px;
	margin: 50px auto;
	background: #f2f2f2;
	-webkit-box-shadow: 0px 0px 20px #7f7f7f;
	-moz-box-shadow: 0px 0px 20px #7f7f7f;
	font-family: Optima, Helvetica, Arial, sans-serif;
	font-size: 100%;
}

/* ----------------------------------------------- [HEADER] --- */
#header {
	overflow: hidden;
	border-bottom: 1px solid silver;
	padding: 0px 10px;
	margin: 0px 20px;
}
#header h1 {
	margin: 13px 0px 0px 5px;
	color: #3b3a37;
	font-variant: small-caps;
	font-size: 2.5em;
	white-space: nowrap;
}
#header h1 a {outline: none; text-decoration: none; color: #3b3a37;}
#header h1 i {
	color: #006cff;
	font-variant: normal;
}
#header .nav {
	list-style: none;
	padding: 0px 3px;
	float: right;
	overflow: hidden;
	
	color: #7f7f7f;
	width: 182px;
	height: 35px;
	margin: 15px 5px 10px 0px;
	border: 1px solid silver;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	background: url(img/tab.png) repeat-x;
}
#header .nav .item {
	text-overflow: ellipsis;
	float: left;
	height: 30px;
	padding: 9px 0px;
	width: 60px;
	text-align: center;
}
#header .nav .seperator {
	float: left;
	width: 0px;
	height: 20px;
	border-right: 1px solid silver;
	margin-top: 8px;
}

/* ----------------------------------------------- [MAIN] --- */

#main {
  	padding:10px;
  	padding-bottom: 30px;
  	color: #3b3a37;
}

/* ----------------------------------------------- [FOOTER] --- */

#footer {
	position:absolute;
	bottom:0;
	width:100%;
	height:30px;   /* Height of the footer */
	color: #3b3a37;
}
#footer .inner {
	border-top: 1px solid silver;
	width: 750px;
	margin: 0px auto;
}
#footer .inner .left {
	float: left;
	margin: 7px 0px 5px 10px;
	font-size: 0.8em;
}

#footer .inner .left a {color: #3b3a37;}
#footer .inner ul.right {
	list-style: none;
	padding: 0px;
	margin: 0px;
	margin-right: 10px;
	float: right;
	width: 300px;
}
#footer .inner ul.right li a {
	font-size: 0.9em;
	float: right;
	margin: 7px 0px;
	padding: 0px 7px;
	border-right: 1px solid silver;
}
#footer .inner ul.right li:first-of-type a {border-right: 0px solid silver;}

/* ----------------------------------------------- [NOTIFOCATION] --- */

#notification {
	position: fixed;
	top: 0px;
	width: 100%;
	min-width: 800px;
	background: #006cff;
	border-bottom: 1px solid #000;
	z-index: 100;
	-webkit-box-shadow: 0px 0px 15px #3b3a37;
	-moz-box-shadow:  0px 0px 15px #3b3a37;
	opacity: 0.95;
}
#notification.alert {background: #ff3600;}
#notification .text {
	width: 700px;
	margin: 0px auto;
	background: url(img/info.png) no-repeat;
	background-position: 0px center;
	padding: 10px;
	padding-left: 25px;
	font-family: Optima, Helvetica, Arial, sans-serif;
	text-overflow: clip;
}