/* GENERAL
------------------------------------------------------------ */

body {
	background:url("bg.jpg") repeat-x #FFF;
	color:#000;
	height:100%;
	text-align:center;
	display:block;
	font-family:arial, serif;
	font-size:16px;
}

h1,h2,h3,h4 {
	font-family:arial, serif;
}

code {
	background: #F0F0F0;
	padding: 2px 3px 0 3px;
	border-left: 1px solid #000;
	margin-right: 1px;
}

.right {
	float:right;
}

.left {
	float:left;
}

.clear {
	clear:both;
}



/* CONTAINER
------------------------------------------------------------ */

#container {
	width:100%;
	margin:0 auto;
}

#container h2 {
	font-family:arial, serif;
	font-weight:bold;
	font-size:18px;
	text-transform:uppercase;
}


	
/* HEADER
------------------------------------------------------------ */

#header {
	width:100%;
	position:relative;
	margin:0 auto;
}

#topbar {
	height:15px;
	background:#1A1A1A;
	border-bottom:1px solid #3C3C3C;
	position:absolute;
	width:100%;
	top:0;
	left:0;
}

#logo {
	margin-top:38px;
}

#logo img {
	vertical-align: bottom;
	margin-right: 2px;
}

#logo h1 {
	text-transform:capitalize;
	font-family:arial, serif;
	font-size:36px;
	margin:0;
	text-transform:none;
}

#logo h2 {
	font-family:arial, serif;
	font-size:16px;
	font-weight:300;
	color:#2F2F2F;
	padding-top:14px;
	padding-bottom:14px;
	border-top:2px dashed #2F2F2F;
	border-bottom:2px dashed #2F2F2F;
	width:100%;
	text-align:center;
	margin-top:5px;
	margin:0 auto;
	text-transform:none;
}



/* NAVIGATION
------------------------------------------------------------ */

#nav {
	margin:0 auto;
	margin-top:35px;
	font-size:16px;
	text-align:left;
	margin-left:-10px;
}

#nav ul {
	list-style:none;
	padding:0;
}

#nav li {
	display:inline-block;
	margin-left:25px;
	background-color:rgba(127,127,127,0.1);
	border-radius:6px;
	padding:8px 4px;
	margin-left:10px!important;
	margin-right:-7px!important;
}

#nav a {
	position: relative;
	color:#FFF;
	text-decoration:none;
	text-transform:uppercase;
	font-family:arial, serif;
	font-weight:bold;
	font-size:18px;
	background:#1A1A1A;
	border-radius:5px;
	padding:3px 8px;
}

#nav a:visited {
	color:#FFF;
}

.current {
	color:#FFF;
}

.current2 {
	background:#1B30AF!important;
	border-radius:5px;
	padding:3px 8px;
	text-transform:uppercase;
	font-family:arial, serif;
	font-weight:bold;
	font-size:18px;
}


	
/* CONTENT
------------------------------------------------------------ */

#content {
	text-align:left;
	margin-top:24px;
	padding:0 10px;
}

#content p {
	font-size:16px;
	line-height:20px;
	text-align: left;
}

#content a {
	color:#FFF;
	padding:3px 5px;
	text-decoration:none;
	border-radius:5px;
	background:#1B30AF;
}

#content img {
	margin-bottom:30px;
	background-clip:padding;
	border-radius:8px;
}



/* FOOTER
------------------------------------------------------------ */

#footer {
	margin-top:35px;
	width:100%;
	background:#1A1A1A;
	color:#FFF;
	height:70px;
	position:absolute;
	left:0;
	border-top:1px solid #3C3C3C;
	font-size:14px;
}

#copyright {
	width:290px;
	margin:0 auto;
	margin-top:10px;
}

#versions {
	width:290px;
	margin:0 auto;
	margin-top:10px;
}

#mobileversion{
	background:#333;
	padding:3px 5px 3px 6px;
	border-radius:5px;
}

#normalversion {
	margin-left:20px;
}

#normalversion a {
	color:#FFF;
	font-size:14px;
	text-decoration:none;
}



/* LIST
------------------------------------------------------------ */

ol li {
	font-family:arial, serif;
	font-size: 14px;
}

.ol-li {
	font-family:arial, serif;
	font-size: 12px;
}
.check ul li{
	list-style-type:none;
	padding: 0 0 0 45px;
	position:relative;
	margin: 10px 0 0 -30px;
}
.check ul li:before{
	/*fill it with a blank space*/
	content:"\00a0";

	/*make it a block element*/
	display: block;

	/*adding an 8px round border to a 0x0 element creates an 8px circle*/
	border: solid 9px #000;
	border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	height: 0;
	width: 0;

	/*Now position it on the left of the list item, and center it vertically
	(so that it will work with multiple line list-items)*/
	position: absolute;
	left: 7px;
	top: 40%;
	margin-top: -8px;
}
.check ul li:after{
	/*Add another block-level blank space*/
	content:"\00a0";
	display:block;

	/*Make it a small rectangle so the border will create an L-shape*/
	width: 3px;
	height: 6px; 

	/*Add a white border on the bottom and left, creating that 'L' */
	border: solid #fff;
	border-width: 0 2px 2px 0;

	/*Position it on top of the circle*/
	position:absolute;
	left: 14px;
	top: 40%;
	margin-top: -4px;  

	/*Rotate the L 45 degrees to turn it into a checkmark*/
	transform: rotate(45deg);
}
