﻿/* CSS layout rules for content formatting */

/* Begin rules for elements */

body {
	background-color: #285D87;
	color: #333;
	font-size: 69%; /* tested sizes are 60%, 62.5%, 69%, 76%. Anything else requires testing (espcially on a Mac) */
	}
	
p, ol, li, dd, table {
	font-size: 1em; /* this should stay as 1em. anything else will lead to potential problems with nested elements. Adjust font size in the body tag, or define a class for exceptions */
	line-height: 1.5em;
	margin: 0 0 1em 0;	
	text-align: left; /* compensates for an IE 6 bug */
	}
	
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 1.5em 0;
}	


tr, td {
	/*vertical-align: top;*/
}

ul {
	margin: 1em 0 1.5em 0;
	padding-left: 1.5em;
}
	
img {
	border: 0;
}

hr {
	background: #ccc; /* used by Gecko, Opera browsers */
	border: 0; 
	color: #ccc; /* incorrectly used by IE */
	height: 1px;
	}

/* End rules for elements */

/* Begin rules for class and id selectors */

.alignRight {
	text-align: right;
}

.imgVerticalAlign {
	vertical-align : middle;
}

.txtSmall {
	font-size: 0.9em;
}	

.txtIndent {
	padding: 0 20px;
}

.txtHighlight {
	color: #285D87;
	font-weight: bold;
}

.required {
	font-weight: bold;
	color: red;
}

.noWrap {
	white-space:nowrap
}

.noMarginBottom {
	margin-bottom: 0;
}

.noMargin {
	margin: 0;
	padding: 0;
}

ul.pdf {
	list-style-type: none;
	margin: 20px 0;
	padding-left: 0;
	position: relative;  /*fix the disappearing list backgrounds bug in IE*/
}	
ul.pdf li {
	background: url(../images/iconPdf.gif) no-repeat 0 0;
	line-height: 1.6em;
	margin: 0 0 0.6em 0;
	padding-left: 25px;
}

/* End rules for class and id selectors */