/* -------------------------------------------------------------
	Final Touch Cleaning
	~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	Description:	Screen Style
	Filename:		style.css
	Version:		1.0
	Date:			20 December 2006
------------------------------------------------------------- 

Table of Contents (subject to change):
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

	+ Re-defined Styles
	+ Custom Classes
		- Document Setup
		- Masthead
		- Messaging
		- Sidebar
		- Body
		- Footer
	+ Form Styles
	+ Miscellaneous

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */


/* -------------------------------------------------------------
	Re-defined Styles
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

* {
	margin: 0;
	padding: 0;
}

body {
	background: #cbc8bb url(/images/bg_body.gif);
	font: normal 11px/1.6em Verdana, Helvetica, sans-serif;
	color: #1e1e1e;
	text-align: center;
}

fieldset {
	border: 0px;
}

a img {
	border: 0px;
}

a:link, a:visited {
	color: #b51e0f;
	font-weight: bold;
	text-decoration: underline;
}

a:hover, a:active, a:focus {
	text-decoration: none;
}

ul li {
	padding-left: 10px;
	position: relative;
	list-style-type: none;
	background: url(/images/icon_list.gif) no-repeat 0 7px;
}




/* -------------------------------------------------------------
	Custom Classes
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/*	Document Setup
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#index {
	width: 770px;
	margin: 0 auto;
	text-align: left;
	background: #fff;
}

.title, .title a {
	display: block;
	text-indent: -9000em;
	overflow: hidden;
}

#body p,
#body ul,
#body ol {
	margin-bottom: 15px;
}



/*	Masthead
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#masthead {
	width: 100%;
	height: 108px;
	padding: 1px 0;
	background: #1e1e1e;
	border-bottom: 1px solid #fff;
}

#brand {
	width: 191px;
	height: 77px;
	margin: 10px 0 0 40px;
	float: left;
	display: inline;
	background: url(/images/logo_finaltouch.gif) no-repeat;
}

#brand a {
	width: 191px;
	height: 77px;
}



/* --- ui --- */

#ui {
	margin-top: 77px;
	width: 458px;
	float: right;
}

#ui li {
	margin-left: 11px;
	float: left;
	display: inline;
	background: transparent;
}

#ui li.first {
	margin: 0;
}

#ui a {
	height: 12px;
	display: block;
	text-indent: -9000em;
	overflow: hidden;
}

#ui a:hover, #ui a:active, #ui a:focus {
	background-position: 0 -18px;
}

#ui_about a {
	width: 61px;
	background: url(/images/ui_about.gif) no-repeat;
}


#ui_approach a {
	width: 65px;
	background: url(/images/ui_approach.gif) no-repeat;
}


#ui_services a {
	width: 57px;
	background: url(/images/ui_services.gif) no-repeat;
}


#ui_testimonials a {
	width: 86px;
	background: url(/images/ui_testimonials.gif) no-repeat;
}


#ui_contact a {
	width: 76px;
	background: url(/images/ui_contact.gif) no-repeat;
}



/*	Messaging
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#messaging {
	width: 100%;
	height: 200px;
	margin-bottom: 31px;
	background: #b51e0f url(/images/img_messaging.jpg) no-repeat;
	overflow: hidden;
	text-indent: -9000em;
}

.about #messaging {
	background-image: url(/images/img_messaging_about.jpg);
}

.approach #messaging {
	background-image: url(/images/img_messaging_approach.jpg);
}

.services #messaging {
	background-image: url(/images/img_messaging_services.jpg);
}

.testimonials #messaging {
	background-image: url(/images/img_messaging_testimonials.jpg);
}

.contact #messaging {
	background-image: url(/images/img_messaging_contact.jpg);
}




/*	Sidebar
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#sidebar {
	width: 185px;
	float: right;
	color: #a2a2a1;
	line-height: 1.4em;
}

#sidebar p {
	margin-bottom: 15px;
}



/*	Body
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/*	Body: Content
- - - - - - - - - - - - - -  */

#body {
	width: 504px;
	padding: 0 0 30px 46px;
	float: left;
}

#body ul {
	padding-left: 20px;
}

#header {
	margin-bottom: 16px;
	font-weight: bold;
	font-size: 18px;
	text-transform: uppercase;
}


/* --- Image Positioning --- */

.float_left {
	float: left;
	padding: 0 8px 8px 0;
}

.float_right {
	float: right;
	padding: 0 0 8px 8px;
}


/* --- Sitemap --- */

.sitemap_list {
	width: 49%;
	padding: 0;
	float: left;
}




/*	Footer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

#footer {
	width: 750px;
	height: 23px;
	padding: 0 10px;
	clear: both;
	color: #b4b4b4;
	text-align: left;
	font-size: 10px;
}

#footer a:link, #footer a:visited {
	color: #b4b4b4;
	font-weight: normal;
	text-decoration: none;
}

#footer a:hover, #footer a:active, #footer a:focus {
	text-decoration: underline;
}

#copyright {
	width: 495px;
	padding-left: 5px;
	float: left;
}

#footer_links {
	width: 240px;
	float: right;
	text-align: right;
}

#footer_links li {
	display: inline;
	padding: 0 5px 0 8px;
	border-left: 1px solid #b4b4b4;
	background: transparent;
}

#footer_links li.first {
	border: 0px;
}



/* -------------------------------------------------------------
	Form Styles
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

.input_class {
	border: 1px solid #999;
	font: normal 11px/1.4em Arial, Helvetica, sans-serif;
}

.required {
	color: #f00;
}





/* -------------------------------------------------------------
	Miscellaneous
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

/* http://www.access-board.gov/sec508/guide/1194.22.htm#(o) */
#skip {
	position: absolute;
	left: -9000em;
}

/* http://microformats.org/wiki/hcard */
.vcard {
	display: none;
}

.clearfix {
	width: 100%;
	height: 0;
	clear: both;
}