@charset "UTF-8";
/* CSS Document */

div#acmLogo{
	float: left;
}

h3{
	font-size: 1.3em;
}

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

a{
	color: #003c98;
}
a:hover{
	color: #cd7801;
}

body  {
	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;
}
.twoColHybLtHdr #container { 
	width: 80%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left;
	border-right: 20px solid #464646;
	border-left: 20px solid #464646;
} 
.twoColHybLtHdr #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 0px 20px 10px;
}
.twoColHybLtHdr #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 */
}

/* Tips for sidebar1:
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 ".twoColHybLtHdr #sidebar1 p" rule.
*/

/*#sidebar1 h3, #sidebar1 p {
	margin-left: 10px;
	margin-right: 10px;
}
*/
#sidebar1 ul {
	margin: 0px;
	margin-left: 10px; 
	list-style-type: none;
	padding: 0px 10px;
	font-size: .85em;
	font-weight: bold;
	color: #fff;
}

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

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

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

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

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

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


.twoColHybLtHdr #sidebar1 {
	float: left; 
	width: 12em;
	background-image: none;
	border-right: 1px dotted #cacaca;
	padding: 15px 0px;
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 10px;
	margin-right: 10px;
}


.twoColHybLtHdr #mainContent { 
	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. */
} 
.twoColHybLtHdr #footer { 
	padding: 0px 10px;
	font-size: 12px;
} 
.twoColHybLtHdr #footer p {
	margin: 0px; /* 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 */
}

/* 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:0px;
    font-size: 1px;
    line-height: 0px;
}

/* @group Navigation Elements */



/*#sidebar1 ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px 10px;
	font-size: .85em;
	font-weight: bold;
	color: #fff;
}
*/
/*#sidebar1 ul li{
	display: block;
	color: #464646;

}
*/
/*#sidebar1 p{
	margin: 7px 0px 2px 0px;
	border-left: 4px solid #5e7dcb;
	padding-left: 5px;
}
*/
#sidebar1 p a{
	font-weight: bold;
}

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

#acm {
	padding-left: 0px;
	padding: 0px;
	margin-left: 20px;
	margin-bottom: 10px;
}

/*#sidebar1 a{
	text-decoration: none;
	color: #464646;
	font-weight: normal;
	font-style: normal;
}
*/
/*#sidebar1 a:hover{
	text-decoration: underline;
	color: #c97b00;
}
*/
/*#sidebar1 ul li ul{
	display: block;
	background-color: #fff;
	padding-left: 20px;
}
*/
/*#sidebar1 ul li li{
	display: block;
	background-color: #fff;
}
*/

#archives {
	background-color: #f5f5f5;
}

#archives li{
	color: #939393;
}

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

/* @end */
/* @group Content Elements */




ul.contents a{
	color: #2e7eab;
	text-decoration: none;
	font-weight: bold;
	font-size: 1em;
}

ul.contents a:hover{
	color: #cf6400;
}

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

ul.contents{
	padding: 0px;
	list-style-type: none;
	font-weight: bold;
	font-size: 1em;
}

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

ul.contents ul ul{
	padding: 0px;
	margin-top: 0px;
}


/* @end */

