@charset "UTF-8";
/* CSS Document */

body { 
	background-color:#000;
}

h1, h2, h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 300;
	font-size: 14px;
	color:#00aeef; 
}
.blue {
	color:#00aeef;
}

p {
	color:#fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}

a {
	text-decoration: none;
	color:#cbe7f5;
}

a:hover {
	color:#00aeef;
}

a {
  outline: none;
}

/* this :focus style removes the dotted outline of clicked links in Firefox */
:focus {
  -moz-outline-style: none;
}

#wrapper {
	width: 840px;
	margin: 0 auto;
	margin-top: 4%;
}
header {
	width: 536px;
	height: 100px;
	float:left;
}

.content {
	width: 530px;
	margin-bottom: 10px;
	float:left;
	padding-left:5px;
}

.content ul {
	display:block-inline;
	float:left;	
}
.content ul li{
	display:block-inline;
	float:left;	
	padding: 0 10px 10px 0;
}
.content ul li a{
	padding: 10px 10px 0 0;
}

.info {
	float:left;
	width:250px;
	margin-bottom: 50px;
}
#sidebar {
	float:right;
	width:300px;
}

#navbar { 
	width:536px;
	float:left; 
	font-family: Arial, Helvetica, sans-serif;	
	font-size:16px;
	padding: 10px 0;
	padding-bottom:22px;
}
#navbar ul {
	margin-left: -51px;
	list-style:none;
	
}
#navbar ul li {
	display: inline;
	background-color:#333;
}
#navbar ul li a {
	margin:0 10px;
	position:relative;
	display:block;
	float:left;
	color:#cbe7f5;
	text-decoration:none;
	padding:4px 0 0 4px;
}
#navbar ul li a:hover {
	color:#00aeef;
}

#navbar li.active a {color: #00aeef;}
/* This makes current page text blue in navigation */

footer {width: 536px; float:left;}

/*footer ul {float:left;}
footer ul li {display:inline; list-style-type:none; 
	padding:0 5px; margin:-2px; margin:0;}
footer ul li a { } */

		
/* #navbar .active { color: #fff; opacity:1; text-shadow: 0px 0px 10px rgba(0, 184, 255, 1);

}*/

.icon {width:70px; height: 30px;float:right;position:relative;}
.icon img {
		position:absolute;
		bottom:0;
		left:0;
		opacity: 1;
		-webkit-transition: opacity 10ms ease-out;
		-moz-transition: opacity 10ms ease-out;
		-o-transition: opacity 10ms ease-out;
		transition: opacity 10ms ease-out;
		overflow:hidden;
	}
.icon img.top:hover {
		opacity:0;
	}
