/**********************************************************************************************

	CSS on Sails
	Title: Site Name
	Author: XHTMLized
	Date: September 2008 

***********************************************************************************************

		
	1. BASE
			1.1 Reset
			1.2 Accessibility navigation
			1.3 Default styles
			1.3 Basic styles
	
	2. LAYOUT
			2.1 Header
			2.2 Content
			2.3 Sidebar
			2.4 Footer
		

***********************************************************************************************/


/* 1. BASE
-----------------------------------------------------------------------------------------------
===============================================================================================*/	



/* 1.1	Reset
-----------------------------------------------------------------------------------------------*/	


	html, body, div, span, applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	b, u, i, center,
	dl, dt, dd, ol, ul, li,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
	}
	
	body {
		line-height: 1;
	}
	
	ol, ul {
		list-style: none;
	}
	
	blockquote, q {
		quotes: none;
	}
	
	blockquote:before, 
	blockquote:after,
	q:before, q:after {
		content: '';
		content: none;
	}
	
	:focus {
		outline: 0;
	}
	
	ins {
		text-decoration: none;
	}
	
	del {
		text-decoration: line-through;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	

/* 1.2	Accessibility navigation
-----------------------------------------------------------------------------------------------*/	

	#accessibility-nav {
		position: absolute;
		left: -1000em;
		text-align: left;
	}


/* 1.3	Default styles
-----------------------------------------------------------------------------------------------*/	

	body {
		background: #fff url(../images/body_bg.gif) repeat-x top;
		font: 62.5% Arial, Helvetica, sans-serif;
		text-align: center;
		padding-top: 40px;
		color: #000;
	}

	hr { 
		display: none;
	}
			
	strong {
		font-weight: bold;
	}
			
	em {
		font-style: italic;
	}
		
	abbr, acronym {
		border-bottom: 1px dotted #999; 
		cursor: help;
	}
	
	input, textarea, select {
		font: 1.2em Arial, Helvetica, sans-serif;
	}

	a {
		color: #0000ff;
		text-decoration: underline;
	}
	
	a:hover, 
	a:active {
		color: #ff0000;
		text-decoration: none;
	}
	

/* 1.4	Basic styles
-----------------------------------------------------------------------------------------------*/	

	.hide {
		display: none;
	}
	

/* 2. LAYOUT
-----------------------------------------------------------------------------------------------
===============================================================================================*/	

	.container {
		width: 966px;
		position: relative;
		margin: 0 auto;
		text-align: left;
		font-size: 1.2em;
		background: #fff url(../images/container_bg.gif) repeat-y;
		overflow: hidden;
	}
	
	#content {
		width: 600px; 
		float: right;
		padding: 0 0 140px;
		font-size: 12px;
		line-height: 1.5em;
	}
		
	#sidebar {
		width: 283px;
		float: left;
		padding: 0 22px 140px;
	}
	
	#footer {
		clear: both;
	}
	
	.image-right{
		position: absolute;
		right: 0;
		bottom: 0;
		line-height: 0;
	}
	.image-left{
		position: absolute;
		left: 0;
		bottom: 0;
		line-height: 0;
	}
	
	
	
/* 2.1	Navigation Menu
-----------------------------------------------------------------------------------------------*/
#nav{
	width: 100%;
	overflow: hidden;
	background: #393939;
}
	#nav li{
		float: left;
	}
	#nav li a{
		display: block;
		float: left;
		height: 39px;
		color: #fff;
		text-decoration: none;
		padding: 25px 30px 0 30px;
		border-right: 2px solid #b9b9b9;
		font-size: 14px;
		background: #393939;
	}
	#nav li a.home{
		background: #393939 url(../images/icon_home.gif) no-repeat 35px 18px;
		padding-left: 60px;
	}
	#nav li a:hover, #nav li.active a{
		background: #78be44;
	}
	#nav li a.home:hover, #nav li.active a.home{
		background: #78be44 url(../images/icon_home_on.gif) no-repeat 35px 18px;
	}
	


/* 2.1	Header
-----------------------------------------------------------------------------------------------*/	
#header{
	display: block;
	width: 966px;
	height: 278px;
	position: relative;
	margin: 0 0 50px;
}
	#header .banner{
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #fff url(../images/Connect_Banner_2011.jpg) no-repeat;		
	}
	#homepage .banner{
		background: #fff url(../images/Connect_Banner_2011.jpg) no-repeat;
	}
	#agendapage .banner{
		background: #fff url(../images/banner_agenda.png) no-repeat;
	}
	#registerpage .banner{
		background: #fff url(../images/banner_register.png) no-repeat;
	}
	#contactpage .banner{
		background: #fff url(../images/banner_contact.png) no-repeat;
	}
	#speakerpage .banner{
		background: #fff url(../images/banner_speakers.png) no-repeat;
	}
	
	

/* 2.2	Content
-----------------------------------------------------------------------------------------------*/	
#registerpage #content {
	padding-bottom: 298px;
}
#content a{
	color: #29737a;
}
	#content a:hover{
		text-decoration: none;
	}

#content h2{
	font-size: 24px;
	font-weight: bold;
	color: #e12f29;
	margin: 0 0 1em;
}
#content h2 a, h3 a{
	color:#e12f29;
}

#content h3{
	font-weight: bold;
	font-size: 18px;
	margin: 1em 0 .5em;
	line-height: 1.3em;
}
#content p{
	margin: 0 0 1em;
}

#content .register-form .text{
	width: 400px;
	border: 1px solid #000;
	color: #444;
	padding: 3px 5px;
}
#content .register-form .text-date{
	width: 150px;
	border: 1px solid #000;
	color: #444;
	padding: 3px 5px;
}
#content .register-form p{
	margin: 0 0 20px;
}
#content .register-form .btn-register{
	border: none;
	background: #fff;
	color: #e03127;
}

#content td {
	padding:5px;
}

#content ul {
	padding-left:20px;
}

#content li {
	list-style-type: disc;
}


/* 2.3	Sidebar
-----------------------------------------------------------------------------------------------*/	
#registerpage #sidebar{
	padding-bottom: 513px;
}
#speakerpage #sidebar{
	width: 283px;
	padding-left: 20px;
	padding-right: 20px;
}
#sidebar h3.ahfmr{
	position: relative;
	width: 243px;
	height: 136px;
	overflow: hidden;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	margin: 0 0 40px;
}
	#sidebar h3.ahfmr span{
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
		background: url no-repeat;
	}
#sidebar p{
	line-height: 1.5em;
}

#sidebar .testimonial{
	color: #616161;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.7em;
}
	#sidebar .testimonial span{
		display: block;
		text-transform: uppercase;
		font-size: 12px;
		padding-top: 10px;
	}

#sidebar .sub-nav{
	font-size: 18px;
	font-weight: bold;
	color: #616161;
	margin: 0 0 30px;
}
	#sidebar .sub-nav li{}
	#sidebar .sub-nav li a{
		color: #616161;
		text-decoration: none;
		display: block;
		width: 100%;
		padding: 15px 0;
		border-bottom: 1px solid #0a0a0a;
	}
		#sidebar .sub-nav li a:hover, #sidebar .sub-nav li.active a{
			color: #333;
		}


#sidebar .list-speaker{
	width:300px;
	overflow: hidden;
	margin: 0 0 30px;
}
#sidebar .list-speaker li{
	float: left;
	line-height: 0;
}
#sidebar .list-speaker li a{
	width: 93px;
	height: 93px;
	display: block;
	float: left;
	position: relative;
}
#sidebar .list-speaker li a span{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
#sidebar .list-speaker li a:hover span, #sidebar .list-speaker li a span.active{
	background: url(../images/speaker_hover.gif) no-repeat left top;
	cursor: pointer;
}




/* 2.4	Footer
-----------------------------------------------------------------------------------------------*/	
#footer{
	background: #393939;
}
	#footer .container{
		background: #393939 url(../images/footer_bg_green.gif) no-repeat left top;
		padding: 75px 0;
		color: #a1a499;
	}
	#footer a{
		color: #a1a499;
		text-decoration: none;
	}
		#footer a:hover{
			text-decoration: underline;
		}


