/* ----------------------------------- */
/* GLOBAL
/* ----------------------------------- */

* {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

html, body {
	height: 100%;
	font: 12px Arial, Helvetica, sans-serif;
	background: #333 url(/_images/bg.jpg) top no-repeat;
	margin:0;
	color: #333;
}

a:link, a:visited {
	color: #FF0000;
	text-decoration:underline;
}

a:hover, a:active {
	color: #333;
	text-decoration:underline;
}

li{
	list-style: none;
}

h1 {
	font-size:14px;
}

h2 {
	font-size:16px;
}

h3 {
	font-size:18px;
	color:#333;
	padding: 5px;  /* top right bottom left*/
}

.clear{
	clear: both;
}

img{
	border:none;
}


/* ----------------------------------- */
/* MAIN
/* ----------------------------------- */
#container {
	background:#FFF;
	width: 900px;
	margin: 0 auto;
	text-align: left;
}

#header {
	height: 140px; 
	width: 900px;
}

#logos {
	width:900px;
	text-align:center;
	clear:both;
	margin: 20px auto 20px auto;  /* top right bottom left*/
}

#logos img {
	margin:auto 2px auto 2px ;  /* top right bottom left*/
}

#footer {
	background: #333 url(/_images/footer.gif) no-repeat;
	height: 160px; 
	width: 900px;
	clear:both;
	color:#FFF;
	padding-top: 50px;
}

#footer a:link, a:visited {
	color: #FF0000;
	text-decoration:none;
}

#footer a:hover, a:active {
	color: #FF0000;
	text-decoration:underline;
}

#footer .mailinglist {
	float:right;
}

.left {
	float:left;
	margin-left:20px;
}

.right {
	float:right;
	margin-right:20px;
}



/* ----------------------------------- */
/* CONTENT
/* ----------------------------------- */

#left {
	width: 300px;
	float:left;
	margin-top:10px;
}

#content {
	width: 580px;
	float:left;
	margin: 10px auto 20px auto;  /* top right bottom left*/
}
#contentnews {
	width: 840px;
	margin: 20px 20px 20px 20px;  /* top right bottom left*/
}
#news {
	clear:both;
	margin-bottom:15px;
}

#news img {
	margin: 10px 10px 10px 10px;  /* top right bottom left*/
	float:left;
}

#news p.left
 {
	float:left;
}
#news h2 {
	float:left;
	margin-top:10px;
}

#news ul {
	clear:both;
}

#news li {
	list-style:disc;
	margin: 10px 30px 10px 30px;  /* top right bottom left*/
}

#news .date {
	float:right;
	margin-top:10px;
}

#homecontent {
	width: 600px;
	float:left;
	margin-top:10px;
}

#homeclients {
	width:250px;
	height:255px;
	margin: 0 0 15px 25px;  /* top right bottom left*/
}

#homenews {
	width:250px;
	height:250px;
	margin: -3px 0 15px 25px;  /* top right bottom left*/
}

#homenews .article {
	background:url(/_images/homenews_bg.gif) repeat-x;
	height:45px;
	padding: 0 10px 0 10px;  /* top right bottom left*/
	clear:both;
}

#homenews img {
	margin: 10px 10px 10px 10px;  /* top right bottom left*/
	float:left;
}

#homenews p {
	float:left;
}
#homenews h1 {
	float:left;
	margin-top:10px;
}

#homeeventcal {
	width:250px;
	height:250px;
	margin: 0 0 15px 25px;  /* top right bottom left*/
}

#industrynews {
	width:560px;
	height:250px;
	margin: 10px 20px 15px 20px;  /* top right bottom left*/
}

#industrynews p {
	float:left;
}
#industrynews h2 {
	float:left;
	margin-top:10px;
}

#industrynews .date {
	float:right;
	margin-top:10px;
}

.required {
	color:#FF0000;
}

/* ----------------------------------- */
/* FORM ELEMENTS
/* ----------------------------------- */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font:100% Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	min-width: 550px;
	max-width: 550px;
	width: 550px;
	margin: 10px 10px 10px 10px;  /* top right bottom left*/
}
form fieldset {
 / * clear: both;
note that this clear causes inputs to break to left in ie5.x mac, commented out */ border-color: #333;
	border-width: 1px;
	border-style: solid;
	padding: 10px;        /* padding in fieldset support spotty in IE */
	margin: 0;
}
form label {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 150px;
	padding: 0;
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
}
form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left *//* be careful with padding, it'll shift the nice offset on top of border  */
}
form input, select, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
    border: 1px solid #333;
	background:#EEE;
                          
}
form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}
textarea {
	overflow: auto;
}
form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}
form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

form .button {
	width: 110px;	
}

