addr/*  
* *   * * * BODY LAYOUT FRAMING * * *  
 */

body	{
background-color: #eee;
font-family: Verdana, Arial, Helvetica, Sans-Serif;
font-size: 10pt;
color: black;
	}

div	{	/* Specifies Element Defaults */
vertical-align: top;
text-align: left;
position: relative;
z-index: 1;
background-color: transparent;
border-collapse: collapse;
border: 0;
margin: 0;
padding: 0;
	}

#wrap	{
width: 900px;
margin: auto;
text-align: center;
background-image: url('img/side_stripe.png');
background-repeat: repeat-y;
background-color: ivory;
	}

  #header {
  height: 120px;
	}

  #sidebar {
  width: 150px;
  border-top: transparent 20px;
  float: left;
	}
  

  #content {
  align:left;
  width: 668px;
  min-height: 450px;
  padding: 2px 40px;
  margin-left: 150px;
  float: right;
	}

  #footer {
  clear:both;
  text-align: center;
  padding-left: 150px;
 	}


/* 
* *   * * * TEXT STYLING * * *  
 */

	/* - Main Content - */

h1	{	/* Subpage Headings */
text-align: center;
font-family: Tahoma, Trebuchet, Verdana, Helvetica, Arial; 
font-size: 2.5em;
letter-spacing: 0.05em;
font-weight: bold;
text-transform: Capitalize;
color: #776;
margins: 0.5em 0em;
	}

h2	{	/* Front Page Heading & Main Subheadings */
text-align: left;
font-family: Tahoma, Trebuchet, Verdana, Helvetica, Arial;
font-size: 1.7em;
margin: 0;
padding: .6em 0em;
color: #610715;
font-weight: bold;
	}

h3	{	/* Headings for main text */
text-align: left;
font-size: 1.5em;
font-weight: bold;
color: #776;
margin: 0.7em 0em 0.1em;
	}

h4	{	/* certain headings */
font-size: 11pt;
font-weight: 200;
color: #1a1a1a; /* #093B58; */
text-align: justify;
text-indent: 0px;
text-height:1.1em;
margin: 0em;
	}

p	{
font-size: 1em;
color: Black;
text-indent: 30px;
margin: 0em 0em 0.7em;
	}


	/*  - Sidebar Text & HR -  */

#sidetext {		/* box */
position: absolute;
top: -15px;
left: 0;
z-index: 3;
width: 146px;
text-align: center;	/* text */
color: #D1B85E;				/*BCB424*/
text-shadow: #000 1px 1px 1px;
font-family: Tahoma, Trebuchet, Verdana, Helvetica, Arial;
font-size: 1.1em;
font-weight: bold;
line-height: 1.05em;
	}

#addr, #addr a{
z-index:3;
text-align: left;
font-size: 12px;
font-weight: bold;
line-height: 14px;
color: #D1B85E;		/* Matches #sidetext */
	}
#addr {
padding-left: 8px;
}

#sidetext hr {
width: 40px;
height: 0px;
background-color: #D1B85E;
border-top: 3px solid #D1B85E;
border-bottom: 2px solid #42000C;
border-right: 2px solid #42000C;
margin-top: 20px;
margin-bottom: 17px;
	}


	/*  - Footer Fine Print -  */

#fineprint {
text-align: center;
font-family: arial, sans-serif;
font-size: 7pt;
color: #555;
text-transform: uppercase;
text-indent: 0em;
padding: 1.5em 3.0em 0.5em;
line-height: 1.05em;
	}


/*
* *  * * * LINK STYLING * * *
 */

a	{
font-size: 1.0em;
font-weight: normal;
	}

/* class "TOC" for bookmark links in FAQ & Services */

a.toc:link 	{color: #093B58; font-weight: bold; text-decoration: none;}
a.toc:visited	{color: #093B58; font-weight: bold; text-decoration: none;}
a.toc:hover	{color: #9C961B; font-weight: bold; text-decoration: underline;}
a.toc:active	{color: #9C961B; font-weight: bold; text-decoration: none;}



/*
* *  * * * LIST STYLING * * *
 */

ul, ol	{
margin: 0.6em .2em
	}

.inline {
margin-top: 0em;
margin-bottom: 0em;
	}

ul li	{
font-size: 1.0em;
list-style-type: disc;
font-style: normal;
	}

ol li	{
margin-left: .1em;
	}

/*
* *  * * * FAQ ACCORDION STYLES * * *
 */
	
#container {
    margin: 0 auto;
    font-family: "Arial", "Trebuchet", "Verdana";
}
.accordion input {
	display: none;
}
.accordion label {
	background: #ecc;
	border-radius: .25em;
	cursor: pointer;
	display: block;
	margin-bottom: .125em;
	padding: .25em 1em;
	z-index: 20;
}
.accordion label:hover {
	background: #ccc;
}

.accordion input:checked + label {
	background: #b99;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	color: white;
	margin-bottom: 0;
}
.accordion article {
	height:0px;
	overflow:hidden;
	z-index:10;
}
.accordion article p {
	padding: 1em;
}
.accordion input:checked article {
}
.accordion input:checked ~ article {
	border-bottom-left-radius: .25em;
	border-bottom-right-radius: .25em;
	height: auto;
	margin-bottom: .125em;
}