/*****	(X)HTML elements	*****/



/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {

	margin: 0;

	padding: 0;

	border: 0;

	outline: 0;

	font-size: 100%;

}



/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */

body {

	background-color: #fff;

	color: #222847;

	font-family:Arial, sans-serif;

	font-size: 80%;

	line-height: 18px;

	margin: 0;

	padding: 0;

	text-align: center;

}



/* Commonly used to style page titles. */

h1 {

	color: #369;

	font-size: 140%;

	font-weight: bold;

	line-height: 20px;

	border-bottom:#369 1px solid;

	padding-bottom:5px;

}



/* Commonly used to style section titles. */

h2 {

	color: #08AD42;

	font-size: 130%;

	font-weight: bold;

	line-height: 20px;

	margin:15px 0 0 0;

}



h3 {

	color: #900;

	font-size: 115%;

	font-weight: bold;

	line-height: 20px;

	margin:15px 0 0 0;

}

/* Take off image borders */

img {

	border:none;

}



/* Sets the style for unvisited links. */

a,  a:link {

	color: #369;

	text-decoration: underline;

}



/* Sets the style for visited links. */

a:visited {

	color: #17af49;

	text-decoration: underline;

}



/* Sets the style for links on mouseover. */

a:hover {

	color: #17af49;

	text-decoration: none;

}



/* Sets the style for a link that has focus. */

a:focus {

	color: #17af49;

}



/* Sets the style for a link that is being activated/clicked. */

a:active {

	color: #17af49;

}



table {

	border:1px solid #eee;

	margin-bottom:10px;

	background-color: #FFC;

}

th {

	background-color: #CFC;

	text-align:center;

}

td {

	text-align:center;

	padding:5px;

}

td.left {

	text-align:left;

	padding:5px;

}

td.right {

	text-align:right;

	padding:5px;

}

caption {

	font-size:90%;

	font-style:italic;

}



p {
	line-height:18px;
	margin-top:10px;
	margin-bottom:15px;
	color: #006;

}



ul, ol {

	margin-top:10px;

	margin-bottom:10px;

}



address {

	margin: 20px 0 20px 40px;

	font-style:normal;

}

/*****	Start ID's	*****/



#skip a, #skip a:hover, #skip a:visited { 

	position:absolute; 

	left:0px; 

	top:-500px; 

	width:1px; 

	height:1px; 

	overflow:hidden;

} 



#skip a:active, #skip a:focus { 

	position:static; 

	width:auto; 

	height:auto; 

} 



/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */

#outerWrapper {

	margin: 0 auto;

	padding-top: 11px;

	text-align: left;

	width: 960px;

	background-image:url('../images/bg.gif');

	background-repeat:repeat-y;

/*	border:#F00 1px solid; */

}



/*	Wrapper for Header */

#headerWrapper {

	background-image:url('../images/bg.gif');

	background-repeat:repeat-y;

}



/*	Header part with 'i2a logo' */

#headerTopLeft {

	float:left;

	width: 236px;

	height:111px;

	text-align:center;

	padding-right:10px;

	border-bottom:#dedede 1px solid;

	border-top:#dedede 1px solid;

}



/*	Header part with 'Ready for REACH?' banner */

#headerTopRight {

	float:left;

	width:713px;

	height:112px;

	overflow:hidden;

	background-image:url('../images/reach-bg.jpg');

	background-repeat:repeat-x;

	border-bottom:#dedede 1px solid;

}



#contentWrapper {

	float:left;

	width:100%;

	min-height:500px;

	background-image:url('../images/bg.gif');

	background-repeat:repeat-y;

	margin-top:10px;

}



#breadcrumb {

	margin:15px 0 0 0;

	font-size:90%;

	color:#0873AD;

}



#leftnav {

	float:left;

	width:160px;

}



#rightnav {

	float:left;

	width:126px;

	text-align:center;

	margin:0 2px;

}



#event {

	float:left;

	margin:0;

	padding:5px;

	width: 138px;

	background-color: #C60;

	text-align: center;

	color:#FFF;

	border: 1px solid #333;

}



#event a {

	color:#FFC;

	font-weight:bold;

}



#event p {

	margin:0;
	color:#FFF;
}



#navcontainer ul {

	margin:0;

	padding: 0;

	list-style-type: none;

	font-size: 100%;

}



#navcontainer li { 

	margin: 0 0 10px 0; 

}



#navcontainer a {

	display: block;

	padding: 2px 2px 2px 5px;

	border: 1px solid #333;

	width: 140px;

	background-color: #0873AD;

}



#navcontainer a:link, #navlist a:visited {

	color: #fff;

	text-decoration: none;

}



#navcontainer a:hover {

	border: 1px solid #333;

	background-color: #21B54E;

	color: #fff;

}

#navcontainer ul ul a {

	width: 128px;

	margin-left:12px;
	padding-bottom: 5px;
	padding-top:3px;
	height: 15px;
	font-size: 95%;

}
#navcontainer ul ul li {

	margin-bottom: 5px;
	margin-top: 5px;
}

#active a:link, #active a:visited, #active a:hover {

	border: 1px solid #333;

	background-color: #21B54E;

	color: #fff;

}



#navcontainer2 { 

	width: 150px;

	margin:15px 0 0 0;

}



#navcontainer2 ul {

	margin-left: 0;

	padding-left: 0;

	list-style-type: none;

	text-align:left;

	font-size: 95%;

}



#navcontainer2 ul li {

	margin-bottom: 5px;	

}



#navcontainer2 ul ul a {

	width: 128px;

	margin-left: 12px;

	height: 15px;

}



#navcontainer2 a {

	display: block;

	padding: 3px;

	width: 140px;

	background-color: #090;

	border-bottom: 1px solid #eee;

}



#navcontainer2 a:link, #navlist2 a:visited {

	color: #fff;

	text-decoration: none;

}



#navcontainer2 a:hover {

	background-color: #C60;

	color: #fff;

}



#active2 a:link.current2, #active2 a:visited.current2, #active2 a:hover.current2 {

	background-color: #C60;

	color: #fff;

}



#content {

	float:left;

	width:618px;

	padding:10px;

	line-height:16px;

}



#content li {

	line-height:20px;

}





#topArrow {

	clear:left;

	text-align:right;

	padding-right:180px;

}



#footer {

	clear:left;

	width:100%;

	text-align:center;

	border-top:#dedede 1px solid;

	margin:10px 0;

	padding-top:10px;

	font-size:90%;

	color:#0873AD;

}



ul#bottomMargin li, ol#bottomMargin li {

	margin-bottom:10px;	

}

/*****	Start Classes	*****/



/*	Class for 'International Antimony Association' image (Header) */

.smallFont {

	font-size:90%;

}



.topMargin {

	margin-top:25px;

}



.topMargin2 {

	margin-top:10px;

}



.bottomMargin {

	margin-bottom:10px;	

}



a[href $='.doc'] { 

	padding-right: 18px;

	background: transparent url(../images/word-icon.png) no-repeat center right;

}



a[href $='.pdf'] { 

	padding-right: 18px;

	background: transparent url(../images/pdf-icon.png) no-repeat center right;

}

a[href $='.ppt'] { 

	padding-right: 18px;

	background: transparent url(../images/PowerPoint-icon.png) no-repeat center right;

}

a[href $='.xls'] { 

	padding-right: 18px;

	background: transparent url(../images/excel-icon.png) no-repeat center right;

}

.whiteBackground {

	margin-top:5px;

	display:block;

	background-color:#fff;

}



.noMargin {

	margin:0 auto;

}



a.external:link {

	background: url(../images/externallink.gif) no-repeat 100% 0;

	padding-right: 20px;

}



.attentionBox {

	border: #99F 1px solid;

	color:red;

	padding:5px;

}

.marginLeft {

	margin-left:15px;

}

.red {

	color:red;

}.submenu {
	background-color: #6CF;
	padding: 2px;
	float: left;
	width: 100px;
}
