/*
	(1) html elements
	(2) structures
	(3) formatting for structures
	(4) general purpose */

/************************************************
	(1) html elements 
*************************************************/
body {
	margin: 70px 0 0 0;
	padding: 0;
	font: 75% arial, sans-serif;
	background: #808080;
}

a {
	color: #000;
}

a:hover {
	color: #b58629;
}

a img {
	border: none;
}

h1 {
	margin-top: 0;
	font-size: 1.6em;
	border-bottom: 1px solid #000;
}
	
/************************************************
	(2) structures
*************************************************/
#main {
	width: 762px;
	height: 455px;
	margin: 0 auto;
	padding: 10px 0;
	background: #cbe0e4;
	border: 2px solid #fff;
	border-bottom: 0;
	position: relative;
}

/* really just one button.  could'a named it #about but the content element #about made more sense; 
   plus, maybe there'll actually be moe than one navigational element someday... */
#nav {
	float: left;
	margin-top: -10px;
}

#nav img {
	cursor: pointer;
}

#logo {
	padding-left: 310px;
	margin-bottom: 10px;
}

#display {
	background: transparent url(../images/bg_display.gif) 0 0 repeat-x;
	height: 330px;
	padding: 35px 0 0 30px;
}

#about {
	background: transparent url(../images/bg_display.gif) 0 0 repeat-x;
	height: 330px;
	padding: 35px 0 0 30px;
	position: absolute;
	top: 109px;
	width: 732px;
	
	
}

#sessions {
	float: left;
	width: 355px;
}

#player {
	float: right;
	width: 330px;
	margin-right: 32px;
	text-align: right;
}

#key {
	margin: 5px 0 0 19px;
	height: 35px;
	width: 311px;
	text-align: center;
	font-size: .9em;
}

#footer {
	width: 762px;
	height: 42px;
	margin: 0 auto;
	padding-top: 12px;
	text-align: center;
	background: #cbe0e4;
	color: #273f55;
	border: 2px solid #fff;
	border-top: 0;
}

/************************************************
	(3) formatting for structures
*************************************************/


#sessions ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#sessions ul li {
	margin: 0 0 10px 0;
	padding: 0;
	clear: both;
}

#sessions ul li.active a {
	color: #b58629;
}

#sessions ul li img {
	padding: 0 5px 10px 0;
	float: left;
}

#sessions ul li a.session {
	margin: 0 0 10px 8px;
	/*
		commented out because we no longer show the "download documentation" link so, 
		no need to show a separator or pad the element. also increased the width of the 
		element to make up for the room taken up by the documentation link.  uncomment if adding back

		padding-left: 10px;
		border-left: 1px solid #666;
		width: 290px;
	*/
	width: 320px;
	text-decoration: none;
	font-size: 1.2em;
	float: left;
	background: transparent url(../images/icon_speaker.gif) top right no-repeat;
}

#sessions ul li.active a,
#sessions ul li a:hover,
#sessions ul li a.session:hover {
	background-image: url(../images/icon_speaker_active.gif);
}

#sessions img.zip {
	padding-right: 12px;
}

#footer img {
	margin-bottom: -12px;
	margin-right: 12px;
}

#footer a {
	color: #273f55;
}

/************************************************
	(4) general purpose
*************************************************/

div.column {
	float: left;
	width: 315px;
	padding-right: 65px;
}

div.column.last {
	padding-right: 0;
}


a.arrow {
	background: transparent url(../images/bg_arrow_link.gif) 0 4px no-repeat;
	padding-left: 20px;
	color: #d4ae62;
}

ul.colon {
	margin: 0 0 15px 0;
	padding-left: 0;
	list-style: none;
	clear: both;
}
ul.colon li {
	float: left;
	background: transparent url(../images/bg_double_colon.gif) center right no-repeat;
	margin: 0;
	padding: 0 10px 0 4px;
}

ul.colon li.last {
	background: none;
	padding-right: 0;
}


/* Fading Tooltips By Dustin Diaz*/
body div#toolTip { position:absolute;z-index:1000;width:280px;background:#ffffcc;border:1px solid #000; text-align:left;padding: 3px 5px;min-height:1em; }
body div#toolTip p { margin:0;padding:0;color:#000;font:11px/12px verdana,arial,sans-serif; }
body div#toolTip p em { display:block;margin-top:3px;color:#f60;font-style:normal;font-weight:bold; }
body div#toolTip p em span { font-weight:bold;color:#fff; }

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix { display: inline-block; }
.clearfix { display: block; }
* html .clearfix { height: 1%; }