@charset "UTF-8";
html 
{
margin: 0em;
padding: 0em; 
}
body 
{
font: 1em Verdana, Arial, Helvetica, sans-serif;
background: url(images/background2.jpg) repeat-y center top; 
margin: 0;
/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
text-align: center;
/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000; 
}
.twoColFixRtHdr #wrapper 
{
width: 784px;
/* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0em auto 0px auto;
/* the auto margins (in conjunction with a width) center the page */
	text-align: center;
padding: 0em;
background: #ffffff; 
}
.twoColFixRtHdr #container 
{
width: 780px;
/* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff url(images/content-bg2.jpg) no-repeat center bottom;
margin: 0em auto 10px auto;
/* the auto margins (in conjunction with a width) center the page */
	text-align: left;
/* this overrides the text-align: center on the body element. */
padding: 0em; 
}
.twoColFixRtHdr #header 
{
background: #ffffff;
padding: 0px 0px 0px 0px;
/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
font-weight: normal;
margin: -2px 0px 0px 0px; 
}
#headnav 
{
margin: 0em;
padding: 0em; 
}
#phone 
{
font: .7em Verdana, Helvetica, Arial, sans-serif;
float: right;
margin: 0em;
padding: 3px 15px 0px 0px;
color: #000000; 
}
#mastheadnav 
{
font: bold .5em/.8em Verdana, Helvetica, Arial, sans-serif;
color: #ffffff;
background: #923763 url(images/nav-bottom.jpg) no-repeat left bottom;
width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 7px 0px;
margin: 0;
text-align: center;
float: right; 
}
#mastheadnav a 
{
color: #ffffff;
display: inline;
padding: 0px;
text-decoration: none; 
}
#mastheadnav a:hover 
{
text-decoration: underline; 
}
#slogo 
{
margin: 0em;
padding: 20px 0px 0px 0px; 
}
#logo 
{
margin: 0px 45px 0em 0em;
padding: 0em 0em 0em 0em;
float: left;
width: 180px;
border: 0px #000000 solid; 
}
.twoColFixRtHdr #header h1 
{
margin: 0;
/* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 24px 0em 0px 0em;
/* using padding instead of margin will allow you to keep the element away from the edges of the div */
color: #000000;
font: 1.8em Times, "Times New Roman", serif; 
}
/*
Container for the menu. We set top and bottom borders only because the menu container
stretches the entire window width. Note that this container can go inside a fixed width
element that is centered on the page, if you so desire. It can even go inside a table cell.
It carries a background image for aesthetics.
*/
#menuwrapper 
{
background: #000000 url(images/nav-top.jpg) no-repeat left top;
margin: 35px 0em 0em 0em;
padding: 0px 0px 0px 10px; 
position: relative;
z-index: 99999; 
}
/*Clears the floated menu items.
Assigned to a BR tag placed just before
menuwrapper's closing DIV tag*/
.clearit 
{
clear: both;
height: 0;
line-height: 0.0;
font-size: 0; 
}
/*
p7menubar is the root UL and p7menubar ul applies to all the sub-menu ULs.
We set padding and margin to zero to eliminate all indentation, turn bullets off,
and set a font-family different from the global font-family declared for the
body element above. This sets font for just the menu. Do not add a font-size here.
*/
#p7menubar, #p7menubar ul 
{
padding: 0;
margin: 0;
list-style: none;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-weight: bold; 
}
/*
Root-Level Links.  Do not change the first two properties.
Adjust padding values to make the root links taller and to offset them
from the left and right edges of the link box. The border right creates a
separator between links. Font-size is set here and will apply to all menu levels.
Font color is set to light gray.
*/
#p7menubar a 
{
display: block;
text-decoration: none;
padding: 5px 10px 5px 10px;
border-right: 1px solid #cccccc;
font-size: .75em;
color: #cccccc; 
}
/*
Class assigned to those Root-Level links that have associated Sub-Menus.
The top and bottom padding assigned this element must be the same as
that assigned to the p7menubar a element. The right padding is increased
to accomodate the display of background image depicting a downward
pointing arrow.
*/
#p7menubar a.trigger 
{
padding: 5px 16px 5px 10px;
background-image: url(images/p7PM_dark_south.gif);
background-repeat: no-repeat;
background-position: right center; 
}
/*
The Root-Level list items. Floating left allows
them to appear horizontally. Width is for IE5 Mac. The last rule in
this style sheet will set the width for this element to auto for all
other browsers - hiding it from IE5 Mac. The width is proportional.
As you add and edit root menu items, you will need to test this width
to ensure it is wide enough to accomodate all text.
*/
#p7menubar li 
{
float: left;
width: 9em; 
}
/*
Sets width for Sub-Menu box and the List Items inside - in proportional em units. 
This allows the sub-menu width to expand if users resize the text in their browsers.
*/
#p7menubar li ul, #p7menubar ul li 
{
width: 12em; 
}
/*
The sub-menu links. We set color and turn off the right border, which
would otherwise be inherited from the root link rule. We set top and 
bottom padding less than the root items and increas the left padding
to indent the sub-menu links a small amount in from the root links.
*/
#p7menubar ul li a 
{
color: #000000;
border-right: 0;
padding: 3px 12px 3px 16px; 
}
/*
Sub-Menu Unordered Lists describes each dropdown sub-menu grouping. 
Positioned Absolutely to allow them to appear below their root trigger.
Set to display none to hide them until trigger is moused over.
Background Color must be set or problems will be encountered in MSIE.
Right and bottom borders are set to simulate a raised look.
A gradient background image is assigned.
*/
#p7menubar li ul 
{
position: absolute;
display: none;
border-left: 1px solid #cccccc;
border-right: 1px solid #cccccc;
border-bottom: 1px solid #cccccc;
background: #FFFFFF url(images/p7exp_mgrad.jpg) repeat-x center -25px; 
}
/*
Changes the Text color and background color when the Root-Level
menu items are moused over. The second selector sets color and background
when Root-Level items are accessed with the keyboard tab key. The third
selector sets an active state to support keyboard access in MSIE. The fourth 
selector is assigned to IE5 and IE6 Windows via the P7_ExpMenu script.
Note that IE7 supports hover on elements other than links and so behaves
like Firefox, Opera, and Safari - making the menu operable even if JavaScript
is not enabled.
*/
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a 
{
color: #ffffff;
background: #923733; 
}
/*
Set the Sub-Menu UL to be visible when its associated
Root-Level link is moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
*/
#p7menubar li:hover ul, #p7menubar li.p7hvr ul 
{
display: block; 
}
/*
Sets the Text color of the Sub-Level links when the Root-Level
menu items are moused over. The second selector is 
assigned to IE5 and IE6 via the P7_ExpMenu script.
The color set should march the normal Sub-Level link color
in the rule: #p7menubar ul li a. The background color must be
transparent to allow the underlying gradient background on the UL
to show through.
*/
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a 
{
color: #000000;
background-color: transparent; 
}
/*
The normal hover class for Sub-Level links. The Important directive
is required for older browsers. We set a background color, which shows
over the gradient background. We set text color to white.
*/
#p7menubar ul a:hover 
{
color: #ffffff!important;
background: #923733!important; 
}
/* The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level menu items to their natural width.
Do not edit this rule in any way. */
#p7menubar li 
{
width: auto; 
}
.twoColFixRtHdr #sidebar1 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg1.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar2 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg2.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar3 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg3.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar4 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg4.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar5 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg5.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar6 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg6.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar7 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg7.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar8 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg8.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar9 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg9.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar10 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg10.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar11 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg11.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar12 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg12.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar13 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg13.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar14 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg14.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar15 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg15.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar16 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg16.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar17 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg17.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar18 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg18.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.twoColFixRtHdr #sidebar19 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg19.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0px 140px 0px; 
}
.sidehead 
{
background: #923733 url(images/sidehead-bg.jpg) no-repeat left top;
color: #ffffff;
font: bold 1em/1.2em Times, "Times New Roman", serif;
margin: 18px 0em 0em 0em;
padding: 5px 0px 5px 10px; 
}
#sidebar1 p, #sidebar2 p, #sidebar3 p, #sidebar4 p, #sidebar5 p, #sidebar6 p, #sidebar7 p, #sidebar8 p, #sidebar9 p, #sidebar10 p, #sidebar11 p, #sidebar12 p, #sidebar13 p, #sidebar14 p, #sidebar15 p, #sidebar16 p, #sidebar17 p, #sidebar18 p, #sidebar19 p 
{
padding: 10px 10px 10px 10px;
font: .8em Verdana, Helvetica, Arial, sans-serif; 
}
.twoColFixRtHdr #mainContent 
{
margin: 0 260px 0 0;
/* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	/* remember that padding is the space inside the div box and margin is the space outside the div box */
padding: 0em 0em 15px 20px; 
}
#service-box-wrapper
{
margin: 0px 18px 0px 0px; 
}

#service-box1 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg11.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 140px 0px;
margin: 0px 20px 0px 0px; 
}
#service-box2 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg18.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 140px 0px;
margin: 0px 20px 0px 0px; 
}
#service-box3 
{
float: right;
/* since this element is floated, a width must be given */
	width: 220px;
/* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF url(images/sidebar-bg15.jpg) no-repeat left bottom;
/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 140px 0px;
margin: 0px 20px 0px 0px; 
}
.service-head 
{
background: #923733 url(images/sidehead-bg.jpg) no-repeat left top;
color: #ffffff;
font: bold 1em/1.2em Times, "Times New Roman", serif;
margin: 18px 0em 0em 0em;
padding: 5px 0px 5px 10px; 
}
#service-box1 p, #service-box2 p, #service-box3 p
{
padding: 10px 10px 10px 10px;
font: .8em Verdana, Helvetica, Arial, sans-serif; 
}
.twoColFixRtHdr #mainContent-full 
{
margin: 0;
/* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	/* remember that padding is the space inside the div box and margin is the space outside the div box */
padding: 0em 0px 0px 0px; 
}

a img
{ 
border: none; 
}
#mainphoto
{
border-top: 1px #000000 solid; 
border-bottom: 1px #000000 solid;
padding: 0px;
margin: 5px 0px 15px 0px; 
}

#page-wrap 
{
background: #ffffff;
width: 780px;
margin: 0px auto 0px auto;
padding: 0px 0; 
}
#slider 
{
background: #923733 url(images/slider-bg.jpg) repeat-x left center;
height: 227px;
overflow: hidden;
position: relative;
margin: 0px 0; 
}
/* DEFAULT is for three panels in width, adjust as needed
                                   This only matters if JS is OFF, otherwise JS sets this. */
#mover 
{
width: 2340px;
position: relative; 
}
.slide 
{
padding: 0px 0px;
width: 780px;
float: left;
position: relative; 
}
.slide h1 
{
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 20px;
letter-spacing: -1px;
color: #ffffff;
font-weight: bold;
margin: 40px 0px 0px 30px; 
}
.slide p 
{
color: #ffffff;
font-size: 12px;
line-height: 20px;
width: 250px; 
margin: 5px 0px 0px 30px; 
}
.slide img 
{
position: absolute;
top: 35px;
left: 325px; 
     behavior: url(iepngfix.htc) 
}

#slider-stopper 
{
position: absolute;
top: 0px;
right: 0px;
color: #666;
padding: 3px 8px;
font-size: 10px;
text-transform: uppercase;
z-index: 1000; 
}
.twoColFixRtHdr #footer 
{
padding: 10px 10px 0 20px;
/* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #000000 url(images/footer-bg2.jpg) no-repeat left bottom;
text-align: center;
margin: 100px 0em 0em 0em; 
}
#footer p 
{
color: #ffffff;
font: .7em/1.5em Verdana, Helvetica, Arial, sans-serif;
margin: 0;
/* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px 0em 10px 0em;
/* padding on this element will create space, just as the the margin would have, without the margin collapse issue */ 
}
#footer p a:link, #footer p a:visited
{
color:#ccc;
text-decoration: underline; 
}
#footer p a:hover, #footer p a:active
{
color:#fff;
}

.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 */
	float: left;
margin-right: 8px; 
}
.clearfloat 
{
/* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
height:0;
font-size: 1px;
line-height: 0px; 
}
p 
{
color: #333333;
padding: 0em 0em .8em 0em;
font: .9em/1.5em Verdana, Helvetica, Arial, sans-serif;
margin: 0em; 
}
.blockquote
{
padding: 0em;
margin: 25px 30px 15px 30px; 
}
#ul-list 
{
color: #333333;
padding: 0em 0em 1.2em 2em;
font: .9em/1.5em Verdana, Helvetica, Arial, sans-serif;
margin: 0em; 
}
#ul-list li 
{
list-style-type: square;
list-style-position: outside; 
}
.address 
{
color: #333333;
padding: 0em 0em .8em 0em;
font: .79em/1.5em Verdana, Helvetica, Arial, sans-serif;
margin: 0em; 
}
.sidebar 
{
font: .8em/1.3em Verdana, Helvetica, Arial, sans-serif;
color: #000000; 
}
h3 a:link, h3 a:visited, p a:link, p a:visited 
{
color:#333;
text-decoration: underline; 
}
h3 a:hover, h3 a:active, p a:hover, p a:active 
{
color:#923733;
text-decoration: underline; 
}
h1 
{
color: #000000;
padding: 0em 0em 0em 0em;
font: 1.8em Times, "Times New Roman", serif;
margin: 1em 0em 0em 0em; 
}
h2 
{
color: #000000;
padding: 0em 0em .3em 0em;
font: 1.5em Times, "Times New Roman", serif;
margin: 0em; 
}
h3 
{
color: #000000;
padding: 0em 0em 0em 0em;
font: 1.3em Times, "Times New Roman", serif;
margin: 0em; 
}
hr 
{
margin: 0em 0em .7em 0em;
padding: 0em 0em 0em 0em; 
}
h4 
{
color: #000000;
padding: 0em 0em .3em 0em;
font: bold 1em Times, "Times New Roman", serif;
margin: 0em; 
}
h5 
{
color: #333333;
padding: 0em 0em .3em 0em;
font: bold 1em Verdana, Helvetica, Arial, sans-serif;
margin: 0em; 
}
h6 
{
color: #ffffff;
padding: .3em 0em .7em 0em;
font: bold .9em Verdana, Helvetica, Arial, sans-serif;
margin: 0em; 
}
#picborder 
{
border: 4px #923733 solid; 
}
#picborderright 
{
border: 4px #923733 solid;
float: right;
margin: .2em .6em; 
}
#picright 
{
float: right;
padding: .2em .6em; 
}
.formtext 
{
font: .8em Verdana, Helvetica, Arial, sans-serif; 
}
label 
{
width: 15em;
float: left;
text-align: right;
display: block;
font: bold .8em Verdana, Helvetica, Arial, sans-serif;
color: #333333;
margin: .3em 0.5em 0em 0em; 
}
input 
{
color: #000000;
background: #cccccc;
border: 1px solid #666666;
margin: 0em; 
}
textarea 
{
color: #000000;
background: #cccccc;
border: 1px solid #666666;
margin: 0em; 
}
select 
{
color: #000000;
background: #cccccc;
border: 1px solid #666666;
margin: 0em; 
}
option 
{
color: #000000;
background: #cccccc;
border: 1px solid #666666;
margin: 0em; 
}
.submit input 
{
color: #ffffff;
background: #923733;
border: 1px #cccccc solid;
font: bold .8em Verdana, Helvetica, Arial, sans-serif;
margin: 0em 0em 1em 15.5em; 
}
fieldset 
{
border: 1px solid #923733;
width: 28em;
margin: 0em 0em 1em 0em; 
}
legend 
{
color: #ffffff;
background: #923733;
border: 1px solid #cccccc;
font: bold .9em Times, "Times New Roman", serif;
padding: .3em 1em .3em 1em;
margin: 0em 0em 1em 0em; 
}