/* @group layout from dw */

html
{
/*margin: 0;
padding: 0;*/
background: #000;
}

body 
{
font: 100% "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
 /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
margin: 0;
padding: 0;
 /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
text-align: center;
color: #efefef;
background: #000000 url(../pixels/bg-.png) no-repeat fixed;

max-width: 1096px;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container
{ 
width: 49em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header
{ 
background: #DDDDDD; 
padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header h1
{
margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
#sidebar1
{
float: left; 
width: 13.875em; /* the background color will be displayed for the length of the content in the column, but no further */
padding: 0;
}


#sidebar1 p
{
 /* the left and right margin should be given to every element that will be placed in the side columns */
color: #efefef;
font-size: .72em;
margin: .44em 0;
}

#sidebar1 p strong
{
color: #f2f2f2;
font-weight: normal;
}

#sidebar1 h4
{
color: #efefef;
font-weight: normal;
font-size: .72em;
margin: .44em 0;
}
#clemsLogo
{
float: right;
margin: 0 14px 8px 8px;
}

.right
{
float: right;
margin: 0 0 0 0;
}

/* @group main content */

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent
{
margin: 0 0 0 15.937em;
background: transparent url(../pixels/main-bg.png) repeat;
padding: 0 22px 22px 22px;
} 
#ieFix #mainContent
{
background: transparent url(../pixels/main-bg_ie6.png) repeat;
}

#mainContent p,
#mainContent li
{
font-size: 0.76em;
line-height: 1.2em;
margin: 0 0 .8em 0;
letter-spacing: 0.06em;
font-weight: lighter;
}

#mainContent .nodotno li
{
list-style: none;
}

#mainContent h1
{
font-size: 1em;
line-height: 1.2em;
margin: 1.2em 0 1.2em 0;
color: #0FFF00;
font-weight: bold;
}

#mainContent h2
{
font-size: 0.9em;
text-transform: uppercase;
color: #efefef;
font-weight: normal;
margin: 1.2em 0 1.2em 0;
}

#mainContent h3.upit
{
font-weight: bold;
}


#mainContent h3
{
font-size: 0.9em;
color: #efefef;
font-weight: normal;
margin: 1.0em 0 1.0em 0;
line-height: 1.2em;
}

#mainContent h4
{
color: #efefef;
font-size: 0.8em;
font-weight: bold;
margin: 0.9em 0 0.9em 0;
}

#mainContent h4
{
color: #ddd;
font-size: 0.8em;
font-weight: bold;
margin: 0.8em 0 0.8em 0;
}

#mainContent h5
{
color: #c0c0c0;
font-size: 0.7em;
font-weight: bold;
margin: 0.8em 0 0.8em 0;
}

#mainContent hr
{
color: transparent;
border-bottom: 1px solid #0FFF00;
border-collapse: collapse;
}

#mainContent div.underline
{
border-bottom: 1px solid #0FFF00;
}

#mainContent dl
{
margin: 0;
padding: 0;
}

#mainContent dd
{
margin: 0;
padding: 0;

font-size: 0.76em;
line-height: 1.2em;
letter-spacing: 0.06em;
}


#mainContent dt
{
margin: 1em 0 0 0;
color: #ddd;
font-size: 0.8em;
font-weight: bold;
}

#mainContent dt strong
{
font-size: 1.1em;
}

/* @end */

#footer
{ 
padding: 0 22px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
text-align: center;
} 
#footer p
{
margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer h6
{
font-size: 0.6em;
font-weight: normal;
margin: 0;
color: #efefef;
}

/* Miscellaneous classes for reuse */
.fltrt
{ /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
float: right;
margin-left: 8px;
}
.fltlft
{ /* this class can be used to float an element left in your page */
float: left;
margin-right: 8px;
}
.clearfloat
{ /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
clear:both;
height:0;
font-size: 1px;
line-height: 0px;
}



/* @end */

/* @group fix for ie */

/* place css fixes for all versions of IE in this conditional comment */
#ieFix #sidebar1
{
padding-top: 0px;
}
#ieFix #mainContent
{

}

#ieFix7 #mainContent
{
zoom: 1;
padding-top: 15px;
}
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */

/* @end */

/* @group Nav */

ul.nav
{
padding: 70px 22px 24px 0;
margin: 0 0 24px 0;
background: transparent url(../pixels/nav-bg.png) no-repeat right bottom;
border-top: 1px solid #0D660B;
}

#ieFix ul.nav
{

background: transparent url(../pixels/nav-bg_ie6.png) no-repeat right bottom;
}

.nav li
{
padding: 0;
margin: 0;
list-style: none;
text-align: right;
}

.nav a:link,
.nav a:visited
{
font-size: 0.8em;
text-transform: uppercase;
color: #fff;
text-decoration: none;
line-height: 2.1em;
margin: 0;
padding: 0;
}

.nav a:hover,
.nav a:active
{
color: #0FFF00;
}
/* @end */

/* @group hed - header logo h1 h2 */

/* @group left side details */



/* @end */

#hed
{
margin: 0 0 0 15.937em;
position: relative;
}

#hed h1
{
display: block;
margin: 0;
padding: 0;
background: transparent url(../pixels/connected-h1.png) no-repeat 22px bottom;
height: 3.8em;
text-indent: -999em;
color: #0FFF00;
}

#hed h2
{
display: block;
margin: 0;
padding: 0 0 0 24px;
background: transparent url(../pixels/main-top-bg.png) no-repeat right top;
color: #0FFF00;
font-size: 1.8em;
letter-spacing: .08em;
font-weight: normal;
line-height: 3em;
text-indent: -999em;
}
#ieFix #hed h2
{
	
background: transparent url(../pixels/main-top-bg_ie6.png) no-repeat right top;
}


#hed h3
{
margin: 0;
text-indent: -999em;
padding: 0;
display: block;
width: 458px;
height: 48px;
background: transparent url(../pixels/28june-1July2010Sydney.png) no-repeat;
position: absolute;
top: 200px;
left: 24px;
}

/* @end */

/* @group link hover */



a:link,
a:visited
{
color: #22FF1C;
text-decoration: none;
}

a:hover,
a:active
{
color: #fff;
}

a.clickme:link,
a.clickme:visited
{
color: #22FF1C;
text-decoration: none;
font-weight: bold;
}

a.clickme:hover,
a.clickme:active
{
color: #FFF;
}



a:link span.out,
a:visited span.out
{
font-size: .7em;
font-family: "Andale Mono", Monaco, "Courier New", Courier, mono;
color: #efefef;
font-weight: normal;
}


.endorsers span.out,
.hostedby span.out,
.noout span.out
{
display: none;
}

/* @end */

/* @group buttons */

a.switch:link,
a.switch:visited
{
display: block;
width: 216px;
height: 29px;
background: transparent url(../pixels/switch-bg.png) no-repeat;
font-size: .7em;
line-height: 30px;
text-decoration: none;
text-transform: uppercase;
padding: 0 0 0 16px;
margin: 0;
color: #efefef;
}

a.switch:hover,
a.switch:active
{
color: #024900;
}
/* @end */

/* @group index / home */

.endorsers img
{
padding: .7em 1.8em .9em 0 ;
}

/* @end */

/* @group keydates */

#mainContent .keydates
{

}

#mainContent .keydates h4
{
margin: 0.6em 0 ;
padding: 0;
}

#mainContent .keydates dl
{
margin: 0;
padding: 0;
height: 36px;
}

#mainContent .keydates dt
{
margin: 0;
padding: 0;
/*font-size: 0.7em;*/
display: block;
float: left;
width: 120px;
height: 16px;
}

#mainContent .keydates dd
{
margin: 0;
padding: 0;
/*font-size: 0.7em;*/
float: left;
display: block;
width: 350px;
height: 16px;

}

/* - keydatestab - */

table.keydatestab
{
border:none;
color:#FFF;
}

table.keydatestab th
{
text-align:left;
vertical-align: top;
padding:2px 12px 2px 0;
font-weight:bold;
font-size: 0.8em;
margin: 0;
}

table.keydatestab caption
{
text-align:left;
font-weight:bold;
background: transparent;
font-size: 0.8em;
padding: 4px 0;
margin: 1px 0;
}

table.keydatestab td
{
text-align:left;
vertical-align: top;
padding:2px 0;
font-size: 0.8em;
margin: 0;
}

/* @end */table.info{
border: none;border-collapse: collapse;
}.info th{
border: 1px solid #024004;
font-size: 0.9em;
line-height: 1.2em;
margin: 0 0 .8em 0;
letter-spacing: 0.06em;
font-weight: bold;
}.info td{
border: 1px solid #024004;
font-size: 0.76em;
line-height: 1.2em;
margin: 0 0 .8em 0;
letter-spacing: 0.06em;
font-weight: lighter;
}
.note{
	font-size: 0.76em;	text-transform: none;	font-weight: lighter;
}
/* @group gallery */

#gallery
{
padding: 1em 0;
}

#gallery a img
{
margin: 0 7px 7px 0;
}

#gallery a:link img,
#gallery a:visited img
{
border: 1px solid #000;
}

#gallery a:hover img,
#gallery a:active img
{
border: 1px dotted #22FF1C;
}

/* @end */

/* @group forms */

fieldset
{
font-size: .6em;
padding: 1em;
}



input.text
{
width: 180px;
padding: 3px;
font-size: 11px;
margin: 0.6em 0 0 0;
}

.error,
.notice, 
.success
{
padding: .3em;
border: 1px solid #ddd;
font-size: 11px;
margin-left: .6em;
font-weight: normal;
}

/* @end */


table.prog td
{
border: 1px solid #0FFF00;
border-collapse: collapse;
padding: 2px 4px;
text-align: left;
vertical-align: top;
letter-spacing: 1px;
/*position: relative;*/
}

table.prog
{
border-collapse: collapse;
font-size:80%;
width: 99%;
}


.prog caption
{
color: #0FFF00;
font-size: 1.6em;
text-transform: uppercase;
background: none;
}

.formality .title,
.welcome .title,
.keynote .title
{
font-size: 1.4em;
text-align: left;
}



.title
{
font-size: 1.1em;
margin-bottom: 0.4em;
/*text-align: center;*/
line-height: normal;
font-weight: 100;
}


table.prog .time
{
white-space: nowrap;
color: #ddd;
font-size: 0.9em;
letter-spacing: normal;
text-align: right;
border-right: 6px solid #0fff00;
}

tr.break td
{
background: #0fff00;
font-weight: bold;
color: #000;
}

tr.break td.time
{
font-weight: bold;
color: #000;

}

.break .speaker,
.break .organisation
{
color: #fff;
}

.break .paperno
{
font-size: 0.9em;
text-align: left;
}

.break .paperno:hover
{
color: #fff;
}

.break .abstract
{
color: #fff;
}

.break .room
{
color: #000;
}

.keypaper
{
line-height: normal;
letter-spacing: normal;
color: #eee;
}


.session
{
font-size: 0.9em;
}

.speaker
{
color: #0fff00;
font-size: 1.1em;
}

.speaker span
{
color: #fff;
}
.organisation
{
color: #0fff00;
margin-bottom: 0.2em;
line-height: normal;
font-weight: lighter;
font-size: 0.9em;
}

.paperno
{
cursor: pointer;
text-align: right;
font-size: 1.3em;
}
.paperno:hover
{
color: #0fff00;
}
.paperno:before
{
content: "Paper No. ";
color: #999;
font-size: 0.8em;
}


.seepaper span:hover
{
color: #0fff00;
}


.theme
{
text-align: center;
margin-bottom: 0.4em;
font-size: 1em;
}

.room
{
font-weight: lighter;
color: #999;
letter-spacing: normal;
}


/*
.room:before
{
content: "room: ";
opacity: 0.9;
}
*/


.abstract.snazz
{
position: absolute;
width: 500px;
padding: 20px;
background: #000;
border: 1px solid #0fff00;
top: 100px;
margin: 0 auto;
color: #fff;
font-weight: normal;
} 

.close
{
text-align: right;
padding: 4px 0 0 ;
color: #0fff00;
cursor: pointer;
}
.close:hover
{
color: #fff;
}

/*
.workshop
{
background: rgba(0, 0, 255, 0.2);
}

.el
{
background: rgba(117,213,255,0.2);
}

.pg
{
background: rgba(135,127,109,0.2);
}

.dr
{
background: rgba(212,209,163,0.2);
}

.lcd
{
background: rgba(200,132,68,0.2);
}

.cai
{
background: rgba(0,145,147,0.2);
}

.me
{
background: rgba(192,178,210,0.2);
}

.sf
{
background: rgba(39,243,36,0.2);
}

.cd
{
background: rgba(166,250,65,0.2);
}

.ga
{
background: rgba(255,252,120,0.2);
}

.pbl
{
background: rgba(163,80,74,0.2);
}

.st
{
background: rgba(255,37,0,0.2);
}*/

