@charset "UTF-8";

html {
height: 100%;
}

body  {
	height:100%;
	font: 100% Verdana, Arial, sans-serif;
	background: #ededed url(/image/background.png) repeat-x;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #2b2b2b;
}

#container { 
	min-height: 100%;
	position:relative;
	width: 80%;  /* 80% of the browser width */
	background: #FFFFFF;
	margin: 0px auto; /* center content horizontally */
	border: 0px solid #000000;
	text-align: left;
	border-right: 20px solid #464646;
	border-left: 20px solid #464646;
}

.clearfloat { /* to be placed on a div or break element as the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0px;
    font-size: 1px;
    line-height: 0px;
}

#header { 
	padding-left: 0px;
	padding-bottom: 0px;
	border-bottom: 1px dotted #c3c3c3;
} 

#header table{
	margin: 0px;
	padding: 20px 20px 20px 10px;
}

#header p{
	margin: 0px;
	padding: 20px 0 20px 10px;
}

#header h1 {
	margin: 0px; /* 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 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#footer { 
	position:absolute;
   	bottom:0px;
	width: 100%;
	margin: 0px;
	padding: 0px 0px;
	font-size: 12px;
	height: 2em;
	text-align: center;
} 

/* Tips for sidebar:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
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 "#sidebar p" rule.
*/
#sidebar {
	float: left; 
	width: 13em;
	background-image: none;
	border-right: 1px dotted #cacaca;
	padding: 15px 0px;
}

#sidebar h3, #sidebar p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

#sidebar ul {
	margin: 0px;
	margin-left: 10px; 
	list-style-type: none;
	padding: 0px 10px;
	font-size: .85em;
	font-weight: bold;
	color: #fff;
}

#sidebar ul li {
	display: block;
	color: #464646;
}

#sidebar p {
	margin: 5px 0px;
	border-left: 4px solid #5e7dcb;
	padding-left: 5px;
}

#sidebar a {
	text-decoration: none;
	color: #464646;
	font-weight: normal;
	font-style: normal;
}

#sidebar a:hover {
	text-decoration: underline;
	color: #c97b00;
}

#sidebar a.year {
	font-weight:normal;
	font-size: .85em;
	padding-left: 5px;
}

#sidebar li li {
	font-weight:normal;
}

#sidebar ul li ul {
	margin: 0px;
	display: block;
	background-color: #ffffff;
/*	padding-left: 20px;*/
}

#sidebar ul li li {
	display: block;
	background-color: #ffffff;
}

/* Tips for mainContent:
1. 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.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
#content { 
	margin: 0px 20px 0px 13em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding-bottom:60px;   /* Height of the footer */
} 

#content table {
	border-spacing:0px;
	border-collapse:collapse;
}

#content table tr {
	margin:0px;
}

#content table tr td {
	margin:0px;
	padding:5px 0px 0px 0px;
	vertical-align:top;
	font-size:.9em;
	padding-left: 10px;
	font-weight:normal;
}

#content table tr td:first-child {
	white-space:nowrap;
}

#content span.hon {
	font-weight:bold;
	padding-right:10px;
}

#content span.cat {
	font-weight:bold;
	padding-right:10px;
}


h2 {
	border-left: 4px solid #8f8f8f;
	padding-left: 10px;
}

h3 {
	font-size: 1.3em;
}

#content p, h4 {
	padding-left: 10px;
}

#content h4 {
	margin:0px;
/*	padding:0px;*/
	padding-top:20px;
}

#content ul.awards {
	font-weight: normal;
	margin:0px;
	padding-bottom:20px;
}

#content ul.awards ul{
	font-weight: normal;
	font-style: normal;
	margin-bottom: 0px;
	list-style-type: none;
	font-size: 1em;
	margin-left:0px;
	padding-left:0px;
}

#content ul.awards li {
	font-weight:bold;
	padding-top:10px;
}

#content ul.awards ul ul {
	padding-left:10px;
	font-size: .9em;
}

#content ul.awards ul li {
	font-weight:normal;
	padding-top:5px;
}

#content ul.awards ul ul li {
	padding-left:10px;
	font-size: .9em;
	padding-top:0px;
}

#content ul.awards li.year {
	font-weight:bold;
}

#content ul.awards li.hon:before {
	font-style:italic;
	content:"Honorable Mention";
	padding-right:10px;
}

#content ul{
	padding: 0px;
	padding-left: 10px;
	list-style-type: none;
	font-weight: bold;
	font-size: 1em;
}

#content li li {
	padding-top:5px;
}

#content tt {
	font: 100% Courier New, Courier, Monaco;
	font-weight: normal;	
}

#content ul ul{
	font-weight: normal;
	font-style: normal;
	margin-bottom: 20px;
	list-style-type: none;
	font-size: .9em;
}

#content ul ul ul{
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-left: 10px;
}

#content ul ul ul a{
	padding:0px;
	padding-right:5px;
}

#content ul a{
	color: #2e7eab;
	text-decoration: none;
	font-weight: bold;
}

#content ul a:hover{
	color: #cf6400;
}

#content a {
	color: #2e7eab;
	text-decoration: none;
}

#content a:hover {
	color: #cf6400;
}

#content ul .nolink {
	color: #353535;
	font-weight: bold;
}

div#edition div {
	float: right;
	background-color: #5199c0;
	color: #fff;
	font-weight: bold;
	border: 4px solid #c3c3c3;
	padding: 20px 10px;	
}

#archives {
	background-color: #f5f5f5;
}

#archives li{
	color: #939393;
}

#archives li li{
	font-weight: normal;
	font-style: normal;
}


/* proceedings */
#DLheader {
	font-size: 12px;
}
	
#DLheader a {
	font-weight: bold;
}
	
#DLcontent {
	font-size: 12px;
}

#DLcontent a {
	font-weight: bold;
}	
	
#DLcontent h2 {
	border-left: none;
	padding-left: 0px;
	font-size: 14px;
	margin-bottom: 5px;
}

#DLcontent h3 {
	font-size: 12px;
	padding-left: 10px;
	margin-bottom: 5px;
}

#DLcontent ul{
	margin-top: 0px;
}

.DLauthors li{
	display: inline;
	list-style-type: none;
	padding-right: 0px;
}
	
.DLauthors li:after{
	content: ",";
}

.DLauthors li.nameList.Last:after{
	content: "";
}		

.DLlogo {
	vertical-align: middle; 
	padding-right: 5px;
	border: none;
}
	
.DLcitLink {
	margin-left:0px;
}	

.DLtitleLink {
	margin-left:0px;
}
