@charset "UTF-8";

/* =Reset default browser CSS. Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, acronym, address, big, cite, code,
del, dfn, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
:focus {/* remember to define focus styles! */
	outline: 0;
}
body {
	background: #fff;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
	margin-bottom: 30px;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body, input, textarea {
	color: #333;
	font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.625;
}
#page {
	background: #fff;
}

body {
	background: #fff;
	margin: 0;
	padding: 0;
	color: #333;
	font-variant:normal;
	font-size: 16px;
	line-height: 1.4;
	font-weight: normal;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 15px 0 0;
}

h1, h2 {
	font-size: large;
	margin-top: 0px;
	padding-bottom: 20px;
	font-variant: normal;
	font-style: normal;
	font-weight: lighter;

}

h2 {
	font-weight:bolder;
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
	clear: both;
	/* [disabled]text-align: right; */
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #666;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	color: #C6C;
}


/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 100%;
	max-width: 1060px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	padding: 20px 50px;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background: #fff;
	align: right;
	margin: 20px 0px;
}
.header h1 {
	line-height: 60px;
	font-size: 72px;
	padding-top: 10px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 8px;
	font-weight: lighter;
	font-style: normal;
	font-variant: normal;
}
.header ul {
	margin-top: 10px;
	margin-right: 0;
	margin-left: -16px;
	margin-bottom: 0;
	display: table-cell;
	width: 100%;
	float: left;
}
.header ul li {
	padding: 3px 6px 0 16px;
	margin: 0;
	border-right: solid #666 1px;
	list-style: none;
	float: left;
	height: 25px;

}
.header ul li h2 a:link {
	line-height: 24px;
	font-size: 22px;
	color: #0291BA; !important
}

h2 a:link {
	color: #0291BA;
}

.header ul li h2 a:hover {
	color: #D575CC;
}

.menu {
	float:left;
	display: table-cell;
	width: 98%;
	margin: 10px 0;
	padding: 10px 0 0 0;
	border-top: dotted #999 1px;

}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 { /* modified to be the bottom with 3 columns */
	margin: 0;
	padding: 7px 0 0 20px;
	clear: none;
	height: auto;
	background-color: #fff;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	float: right;
	width: 38%;
}
.sidebar1 h3{
	line-height: 22px;
	font-size: 16px;
	margin: 0;
	padding: 7px 0 2px 0;
	color: #000;
	font-weight: bold;
}
.sidebar1 p {
	line-height: 24px;
	color: #000;
	padding: 0;
	margin: 0 0 15px 0;	
}
.sidebar1 a {
	line-height: 24px;
}
.content {
	width: 100%;
	float: left;
	padding: 10px 0;
}

.cleft {
	width: 59%;
	float: left;
	padding: 10px 0;
}

.details { /* each column i */
	float: left;
	margin: 0;
	padding: 0;
	border-top: 1px dotted #ccc; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	width: 95%;
}
/* proper content */
.content2 {
	width: 100%;
	clear: both;
	padding: 0 0 20px 0;
	margin: 20px 0;
}
.content2 h2 {
	line-height: 25px;
	font-size: 20px;
	padding: 0 0 8px 0;
	margin: 0;
	color: #2AABD0;
}
.content2 p {
	padding: 0 0 20px 0;
	margin: 0;
	width: 68%;
	font-size: 16px;
	line-height: 24px;
}

/* Table for program */
.content2 table {
	width: 100%;
	clear: both;
	padding: 0;
	margin: 0;
	line-height: 28px;
}

.content2 table thead td{
	font-size: 16px;
	font-weight: bold;
	color: #FFF;
	background-color: #333;
	text-align: left;
	vertical-align:top;
	display: table-cell;
	height: 30x;
	padding: 5px 0 7px 15px;
}

.content2 table tr th {
	font-size: 14px;
	padding-top: 10px;
	font-weight: normal;
	color: #333;
	background-color: #fff;
	text-align: left;
	vertical-align: top;
}

.content2 table tbody th, .content2 table tbody td {
	border-bottom: 1px dotted #A5D5CE;
	background-color: #F2FFFD;
	padding: 8px 0 10px 15px;
}

p.ConferenceSection {
	font-weight:bold;
	font-weight: bold;
	color: #000;
	text-align: left;
	vertical-align: top;
	padding: 8px 0 10px 0;
}

.lecturer {
	float: left;
	padding: 0 0 10px 0;
	margin:0;
	clear: both;
	position: relative;
	border-top: 1px dotted #B6DCD6;
	width: 23%;

}

.lecturer a {
	color:#000;	
	font-size: 100%;
	color: #23BADF;

}

.show, .hide  {
	margin: 0 0 5px 0;
	padding: 0 15px 5px 0;
	float: right;
	width: 70%;
	border-top: 1px dotted #B6DCD6;
}


.show a, .hide a{
	font-style:italic;
	color: #666; !important
}

.conference .abstract {
	padding: 10px 0 0 0;
	margin: 0 0 20px 0;
	border-top: dotted #B6DCD6 1px;
	clear:both;
}

.conference .abstract p {
	width: 90%;
}

.quote {
	font-size: 90%;
	font-style: italic;
	color: #666;
	border-left-width: 30px;
	border-left-style: solid;
	border-left-color: #F7FAFA;
}

.moderator {
	text-indent: 30px;
	margin: 0;
	padding: 5px 0 0 0;
	color:#999;
	clear: both;
}

.anchorLink {
	color:#1FC6E6;
}

.anchorLinkmoderator {
	color:#999;
}


/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #999; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #999; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	text-decoration: none;
	background: #8090AB;
	color: #000;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #6F7D94;
	color: #FFF;
}

/* ~~The footer ~~ */
.footer {
	padding: 10px 0 0 0;
	background: #fff;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	border-top: solid #999 1px;
	font-size:13px;
	color: #999;
}


.details2 { /* each column in the footer */
	float: left;
	margin-right: 0;
	padding: 10px 0 0 0;
	border-top: 1px solid #999; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	width: 32%;	
}




/* ~~More...~~ */
.caption {
	font-size: 12px;
	color: #666;
	padding: 10px 0 25px 0;
	width: 95%;
}
.note {
	font-style: italic;
	color: #999;
}


.content2 p a {
	color: #000;
}

.content2 table p a {
	color: #0C6;
}


.speaker {
	width: 50%;
	margin: 0 0 50px 0;
	float: left;
	background-color:#fff;
}

.speakerFoto {
	float: left;
	padding: 20px 0 0 0;
}

.speakerBio {
	float: left;
	width: 50%;
	margin-left: 4%;
	padding: 20px 0 0 0;
}

.speakerBio h3{
	font-weight: bold;	
	font-size:88%;
	line-height: 100%;
	padding: 0 0 10px 0;
	margin: 0;
	
}
.speakerBio p{
	font-size:88%;
	width: 100%;
	line-height: 120%;
}
.highlight{
	background-color:#FF3;
}
