/*
 * Author: Duo Consulting
 * Contact: www.duoconsulting.com
 * File: basestyles.css
 * 
 * Description:
 * Basic styling rules.
 *
 */

/* Global White Space Reset - Hat Tip: Andrew Krespanis of http://leftjustified.net/  */
* {
	padding:0;
	margin:0;
}
p, pre, label, ul, ol, dl, fieldset, address { margin: 0 0 1em; }
ul, ol { margin-left: 3em; }

blockquote {margin-left: 2em; margin-right: 5em; margin-top: 1.2em; margin-bottom: 1.2em; }

/* End GWR */


/* Custom Styles
-------------------------------------------------------- */
body {
	color: #333;	
	font: 75%/1.335em Arial, Tahoma, Verdana, Helvetica, sans-serif;
	background: #eeeef0;
}


/* Tables - table, tr, th, td
-------------------------------------------------------- */
th, td {
	padding: 2px;
	font-size: 69%; /* for IE 5.x */
	voice-family: "\"}\""; 
	voice-family:inherit;
	font-size: 100%; /* for compliant browsers */
} 
th { vertical-align: bottom; }
td { vertical-align: top; }


/* Lists - ol, ul, li, dl, dt, dd
-------------------------------------------------------- */
li {
	line-height: 1.2em;
	margin-bottom: .2em;
}


/* Forms - form, fieldset, legend, input, textarea
-------------------------------------------------------- */
fieldset {
	padding: .7em .7em;
}
legend {
	padding: 0 .3em;
	font-weight: bold;
}


/* Links - a, a:hover
-------------------------------------------------------- */
a { color: #000099; /*text-decoration: none; */
	display:inline;
}
a:hover { text-decoration: underline; color:#3478ad; }

/* Headers - h1, h2, h3, h4, h5, h6
-------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { 
	font-family: Arial, Helvetica, sans-serif; 
	line-height: 100%; 
	margin-bottom: .5em; 
	color: #5a407d;
}
h1 { font-size: 175%; 
	margin: .25em 0 .60em;
	line-height:140%;
	background: url('../../gfx/ala_v2/shell/h1Back.gif') bottom right no-repeat;
}
h2 { font-size: 140%; margin: 1em 0 1em; }
h3 { font-size: 130%; margin: 0 0 .75em; }
h3 a, h3 a:visited {
	text-decoration: none; 
	color: #5a407d;
}
h3 a:hover {text-decoration: underline;}
h4 { font-size: 120%; margin: 0 0 .50em; }
h5 { font-size: 110%; margin: 0 0 .25em; }
h6 { font-size: 100%; }

/* Text
-------------------------------------------------------- */
b, strong { font-weight: bold; }
i, em { font-style: oblique; }

input, select, textarea {
	font-family: "Lucida Grande", "Lucida Sans Unicode", Geneva, "Courier New", Courier, mono;
	font-size: 12px;
	padding: 1px 2px;
}


