* {
	margin:0; 
	padding:0;
	font-family: Helvetica Bold, Helvetica;
	-webkit-font-smoothing: antialiased; 
}

@font-face{
	font-family: icomoon;
	src: url(../img/icomoon.ttf);
}

.icomoon{
	font-family: "icomoon";
	display:inline;
}

body{
	overflow-x:hidden;
}

/* Header styling */
#header{
	position:fixed;
	top:0px;
	left:0px;
	margin:0;
	padding:0;
	float:left;
	width:100%;
	height:50px;
	border:1px solid #111111;
	background-color: #333333;
	z-index:30000;
}

.invisHeader{
	position:fixed;
	float:left;
	top:51px;
	width:100%;
	height:0px;
	z-index:29999;
}

a.logo{
	position:fixed;
	left:105px;
	display:block;
	width: 162px;
	height: 51px;
	background-image: url(../img/logo.png);
	background-repeat:no-repeat;
	text-indent: -99999px; 
}

span{
	font: 16px Helvetica;
	font-weight: bold;
}

/* Course title */
span.title{
	position:fixed;
	left:300px;
	top:20px;
	height:31px;
	color: #fff;
}


/***
	Top right span
					***/
.userConfig{
	cursor:pointer;
	float:right;
	display:block;
	height: 50px;
	width:155px;
	margin-right:8em;
	border-right: 1px solid #555;
	border-left: 1px solid #111;
}

/* To create second border */
.userConfig:before{
	content: '';
	width: 153px;
	height: 50px;
	position: absolute;
	border-right: 1px solid #111;
	border-left: 1px solid #555;
}
.userConfig:hover{
	background-color: #ae2771 !important;
	border-bottom: 1px solid #111;
}

/* Login/settings icon */
.userLink{
	float:right;
	display:block;
	width: 45px;
	padding-top:10px;
	font-family: "icomoon";
	font-size: 195%;
	text-decoration: none;
	color: white !important;
}

/* Login/user information */
span.userInformation{
	float:left;
	height:31px;
	width:90px; /* Dunno about this one */	
	padding-top:20px;
	margin-left:15px; /* Dunno about this one */	
	font-weight:normal;
	font-size:inherit; /* Dunno about this one */
	color:white !important; 
}

/* Menus and popups for top right span */
#popoutMenu{
	font-family: Helvetica;
	border-top: 1px solid #555;
	font-size:13px;
	float:right;
	position:relative;
	margin-right:9.8em;
	padding:0;

}

#popoutMenu a{
	color: #FFF;
	text-decoration:none;
}	

#popoutMenu ul {
	list-style-type:none;
	width:100%;
	margin:0;
	padding:0;
	line-height: 250%;
	font-weight: bold;
}


#popoutMenu li {
	padding-left:10px;
	padding-right:15px;
	width:220px;
	margin:0;
	background-color:#333;
	border-top: 1px solid #555;
	border-left: 1px solid #555;
	border-bottom:1px solid #111;
	border-right:1px solid #111;
	color:#fff;
	cursor: pointer;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.expander{
	background-image: url(../img/expandIcon.png); /* Will be replaced with font. */
	background-repeat:no-repeat; 
	background-position:right;
}


#popoutMenu li:hover {
	background-color: #0a68ad;
	color: #fff;
}

#popoutMenu li.expanded{
	color:#fff;
	cursor: pointer;
	margin-left:1px;
	text-indent: 15px;
	border:0;
	background-color: #202020;
	line-height: 200%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#popoutMenu li.expanded:hover {
	background-color: #ae2771;
	color: #fff;
}

.checkedCourse{
	background-image: url(../img/expandIcon.png); /* Will be replaced with font. */
	background-repeat:no-repeat; 
	background-position:left;
	background-color: #ff0000;
}