/* 
Title:		Screen CSS
Description:	General stylesheet
Created:	09/07/2009
Modified:	09/07/2009
*/

/* import stylesheets
---------------------------------------------------------- */

@import url("layout.css"); 	/* Site layout */
@import url("forms.css");	/* Forms */
@import url("tables.css");	/* Tables */
@import url("drupal.css");	/* Drupal */

/* redefine xhtml selectors
---------------------------------------------------------- */

html, body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	height: 100%;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #f8f8f9;
	background-image: url(../img/bg_container.gif);
	background-repeat: repeat-y;
	background-position: top center;
	color: #676b84;
	font-size: 12px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
}

dl {
	margin: 0px;
	padding: 0px;
	float: left;
	margin-top: 20px;
}

dl dt {
	float: left;
	display: inline;
	margin: 0px;
	padding: 0px;
	padding-top: 5px;
}
		
dl dd {
	display: inline;
	margin: 0px;
	padding: 0px;
}

dl dd.wide{
	float: left;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

abbr, acronym {
    font-style: normal;
    border-bottom: 1px dotted #bbb;
    cursor: help;
}

a abbr {
    border: none;
}

address {
    margin: 0;
    padding: 0;
    font-style: normal;
}
	
/* links
---------------------------------------------------------- */

a:link, a:visited {
	color: #65ade3;
}

a:hover {
	color: #359be8;
}

a:focus, a:active
{
	outline: none;
	outline: 0;
	-moz-outline-style: none;
}

a img {
    border: none;
}

