@charset "UTF-8";
/* CSS Document */

body {
	margin: 0;
	color: #214d51;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	line-height: 16px;
	background-color: #7E9798;
	background-image: url(images/bg.gif);
	background-repeat: repeat;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #550A33;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #520B35;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #214D51;
}

/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	background-attachment: scroll;
	background-image: url(images/dot.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
}
.sidebar1 {
	background-color: #f7f4ee;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 16px;
	font-weight: bold;
	color: #0D344A;
	width: 210px;
	padding-top: 30px;
	padding-bottom: 15px;
	text-align: center;
	float: left;
	padding-right: 20px;
	padding-left: 20px;
}
.content {
	background-color: #f7f4ee;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #214d51;
	width: 649px;
	margin-bottom: 25px;
	padding-top: 30px;
	float: left;
	padding-right: 30px;
	padding-left: 30px;
}

.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}


/*Navigation: Dynamic Drive CSS Library */

.nav1
{
	overflow: hidden;
	background-color: #0D344A;
	height: 26px;
	background-image: url(images/ilovemybookkeeper.gif);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
	border-right-style: none;
	border-left-style: none;
	border-top-style: none;
	border-bottom-style: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 265px;
}
.nav1 ul
{
	padding-left: 8px;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
}
.nav1 li
{
	display: inline;
	margin: 0;
	float: left;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
.select   {
	color: #F7F4EE;
	background-color: #590A36;
}
.nav1 li a:link, .nav1 li a:visited
{
	text-decoration: none;
	color: #F7F4EE;
}
.nav1 li a:hover
{
	color: #DFD1A8;
}

a.footer1:link, a.footer1:visited
{
	text-decoration: none;
	color: #968E75;
}
a.footer1:hover
{
	color: #550A37;
}



/* ~~ The footer ~~ */
.footer {
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #8E856B;
	padding-top: 3px;
	padding-right: 20px;
	padding-bottom: 3px;
	padding-left: 0px;
	margin: 0px;
	text-align: right;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #B4A888;
	background-color: #F7F4EE;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	line-height: 18px;
	color: #0A2839;
	margin: 0px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
}
.ContentMain {
	background-color: #F7F4EE;
}
li {
	padding-top: 2px;
	list-style-type: disc;
	list-style-position: outside;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 16px;
	color: #214D51;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 10px;
}


/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
input {
	border: 1px solid #B6AA89;
	margin-top: 4px;
	margin-bottom: 4px;
	padding: 2px;
}
textarea {
	border: 1px solid #B6AA89;
}
.btn {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #F7F4EE;
	background-color: #7F9799;
	font-weight: bold;
	text-transform: uppercase;
	border: 1px solid #0D344A;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
}
.quote {
	font-weight: normal;
	font-style: italic;
	color: #590A36;
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #7F9799;
	padding-top: 15px;
	margin-top: 10px;
}
h2 {
	font-size: 24px;
	color: #590A36;
	padding-bottom: 30px;
	margin: 0px;
}
