/* skin1_course_common.css consists of all fundamental layout styles shared between ALL SKINS FOR THE COURSE PAGE */

form {
	margin: 0;
	padding: 0;
}

/*++++++++++++++++++++++++++ BASIC LAYOUT +++++++++++++++++++++++++++++++++*/
body {  
	background: #FFF;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	color: #333;
}
#wrapper {
	clear: both;
	padding: 0;
	margin: 0;
}

/*++++++++++++++++++++++++++ LEFT COLUMN +++++++++++++++++++++++++++++++++*/
#leftColumn {
	float: left;
	width: 180px;
	margin: 0;
	padding: 0;
}
#leftHeader {
	height: 110px; /* If you change this height, change leftHeaderHeight var in resize.js */
}
#leftScroller  {
	margin: 0;
	padding: 0;
	overflow: auto;
}	
#leftScroller ul {
	margin: 0;
	padding: 10px 2px;
	font-size: .99em;
	list-style-type: none;
}



/*++++++++++++++++++++++++++ HEADER LEFT +++++++++++++++++++++++++++++++++*/
#header {
	height: 110px;/* If you change this height, change headerHeight var in resize.js */
	margin: 0;
	padding: 0;
	margin-left: 180px;
	position: relative;
}
#headerTL {
	height: 110px;
}
#headerTL h1, #headerTL h2 {   
	margin: 0; 
	padding: 0;  
}
#headerTL h1 { 
	position: absolute;
}
#headerTL h2 { 
	position: absolute;
}
#headerTL h3 { 
	position: absolute;
	top: 79px; /* if you change this, also change this value in all alternate IE css docs */
}
.menuHeader {
	position: absolute;
	top: 88px;
}
h3#LessonTitle span#ElementTitle {
	color: #666;
}

/*++++++++++++++++++++++++++ HEADER RIGHT +++++++++++++++++++++++++++++++++*/
#headerTR {
	position: absolute;
	top: 0;
	right: 0;
	height: 110px;
}
#headerTR ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
#headerTR ul li {
	float: left;
}




/*++++++++++++++++++++++++++ MAIN CONTENT +++++++++++++++++++++++++++++++++*/
#contentScroller {
	padding: 0;
	margin: 0;
	overflow: auto;
}
#contentBody {
	padding: 10px 10px 0 15px;
}
.photo {
	float: right;
	padding-left: 10px;
}
.slide_list {
	margin: 10px;
	padding: 0;
/*	overflow: hidden;
	width: 320px; */
	list-style-type: none;
}
.slide_list li {
	font-size: 1.3em;
/*	width: 320px;
	margin-left: 550px;*/
	padding: 2px 2px 0 10px;
	background: url(../images/arrow.gif) top left no-repeat;
}

/*++++++++++++++++++++++++++ FOOTER +++++++++++++++++++++++++++++++++*/
#footer {
	height: 45px; /* If you change this height, change footerHeight var in resize.js */
	position: absolute;
	bottom: 0;
	left: 180px;
	right: 0;
}
#footerBL {
	float: left;
	height: 45px;
}
#footerBM {
	/*background: url(../images/connect.png) top left no-repeat;*/
	height: 15px;
	position: absolute;
	top: 3px;
	right: 343px;
	font-size: .9em;
	padding-left: 18px;
	letter-spacing: .01em;
}
#footerBM a:link, #footerBM a:visited, #footerBM a:hover, #footerBM a:active {
	color: #333;
}
#footerBM a:hover {
	text-decoration: none;
}
#footerBR {
	float: right;
	height: 45px;
}
#footerButtons {
	height: 45px;
	text-align: right;
}
#footerButtons a:link.currentLesson, #footerButtons a:visited.currentLesson, #footerButtons a:hover.currentLesson, #footerButtons a:active.currentLesson {
	background: url(../images/footer_current.gif) top left repeat-x;
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 0;
	line-height: 29px;
	text-align: center;
}
.alignLeft {
	text-align: left;
}

#footerBM a:link.buttonSwitchBB, #footerBM a:visited.buttonSwitchBB, #footerBM a:hover.buttonSwitchBB, #footerBM a:active.buttonSwitchBB {
	background: url(../images/switch_bb.gif) no-repeat;
	width: 268px;
	height: 12px;
	display: block;
 	padding: 0;
}
#footerBM a:hover.buttonSwitchBB {
	background-position:0% -12px;
	color: #fff;
}
#footerBM a:link.buttonSwitchDU, #footerBM a:visited.buttonSwitchDU, #footerBM a:hover.buttonSwitchDU, #footerBM a:active.buttonSwitchDU {
	background: url(../images/switch_du.gif) no-repeat;
	width: 268px;
	height: 12px;
	display: block;
 	padding: 0;
}
#footerBM a:hover.buttonSwitchDU {
	background-position:0% -12px;
	color: #fff;
}

a.tooltip {
    position: relative; /*this is the key*/
    z-index: 24; 
		background-color: #ccc;
    color: #000;
    text-decoration:none;
}

a.tooltip:hover {
	z-index: 25; 
	background-color: #ff0;
}

a.tooltip span {
	display: none;
}

a.tooltip:hover span { /*the span will display just on :hover state*/
	display: block;
	position: absolute;
	top: -4.3em; 
	left:0; 
	width:15em;
	border: 1px solid #0cf;
	background-color: #f3f69f; 
	color: #000;
	text-align: left;
	padding: 3px;
	font-size: 1em;
	width: 200px;
}
a.tooltip:hover span { /*the span will display just on :hover state*/
		display: block;
		position: absolute;
		top: -3.4em;
		left:0;
		width:15em;
		border: 1px solid #0cf;
		background-color: #f3f69f;
		color: #000;
		text-align: left;
		padding: 3px;
		font-size: 1em;
		width: 200px;
}
a.buttonSwitchDU:hover span {
		top: -4.7em;
}
