/* CSS Document */

/*For all courses.*/




/*course navigation styling - button style*/

#header ul {
	list-style-type:none;
	margin:0;
	padding:0;
	overflow:hidden;
}

#header li {
	float:left;
}

#header a {
	color:#fff;
	text-decoration: none; /*not sure why this was needed, when run within QFL in canvas, and the one in 'a' above didn't cover it. Worked without, outside of Canvas. Confirmed it's a confilict with the css in the course, but not sure exactly what. */
}

#header a:link { /* unvisited link */
	display:block;
	width:25px;
	height:25px;
	border-radius:10px;
	margin: 0px 5px 5px 0px;
	font-weight:bold;
	font-size:large;
	color:#fff;
	background-color:#5baed4;
	text-align:center;
	padding:5px 4px 2px 4px;
}

#header a:visited {
	background-color:#5baed4;
	color:#fff;
}

#header a:hover {
	background-color:#babab9;
	color:#fff;
	text-decoration: none;
}

#header a:active {
	background-color:#babab9;
	color:#fff;
	text-decoration: none;
}

#header .header_nav_current_page {
	color:#0e435e;
}

#header .icon_img_wrapper {
	width:20px;
	height:20px;
	margin-top:-2px; /* Remove this if don't use span. */}

/*home icons for nav*/
#header .header_nav_home_icon_current_page {
	color:#0e435e;
	background-image:url(http://bb.plsweb.com/canvas/he/he_master_files/images/house_icon_current.png);
	background-repeat:no-repeat;
	background-size:20px 20px;
	background-position:center;
}

#header .header_nav_home_icon {
	color:#0e435e;
	background-image:url(http://bb.plsweb.com/canvas/he/he_master_files/images/house_icon.png);
	background-repeat:no-repeat;
	background-size:20px 20px;
	background-position:center;
}

/*checklists icons for nav*/
#header .header_nav_checklists_icon_current_page {
	color:#0e435e;
	background-image:url(http://bb.plsweb.com/canvas/he/he_master_files/images/checklists_current.png);
	background-repeat:no-repeat;
	background-size:20px 20px;
	background-position:center;
}

#header .header_nav_checklists_icon {
	color:#0e435e;
	background-image:url(http://bb.plsweb.com/canvas/he/he_master_files/images/checklists.png);
	background-repeat:no-repeat;
	background-size:20px 20px;
	background-position:center;
}

/*course guide icons for nav*/
#header .header_nav_cg_icon_current_page {
	color:#0e435e;
	background-image:url(http://bb.plsweb.com/canvas/he/he_master_files/images/course_guide_current.png);
	background-repeat:no-repeat;
	background-size:20px 20px;
	background-position:center;
}

#header .header_nav_cg_icon {
	color:#0e435e;
	background-image:url(http://bb.plsweb.com/canvas/he/he_master_files/images/course_guide.png);
	background-repeat:no-repeat;
	background-size:20px 20px;
	background-position:center;
}



