/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }	<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

body {
	margin: 0px;
	padding: 0px;
	background: url(images/pagebg.png) repeat-x;
}

#container {
	background: url(images/pagebg.png) repeat-x;
	width: 1000px;
}

#page {
	background: transparent;
	padding: 0px;
}

#header {
	background: transparent;
	padding: 100px 0 0 0;
	margin: 0px;
	width: 1000px;
	border: 0px none;
}

#logo {
	float: left;
	margin: 64px 0 0 20px;
}

#slogan {
	float: left;
	font: bold 12px verdana, arial;
	color: #2B693A;
	width: 470px;
	margin: 60px 0 0 20px;
}

#mouse {
	float: left;
	margin: 25px 0 0 20px;
}

.menu {
	float: left;
	position: absolute;
	list-style: none;
	border: 0px none;
	margin: 200px 0 0 400px;
	width: 500px;
}

.menu li {
	border: 0px none;
}

.menu .current {
	border: 0px none;
}

.menu, .menu a, .menu li ul { border: 0px none; }
.menu .current a, .menu .current-cat a { border-bottom-color: #FFFFFF; }
.menu ul .current a, .menu ul .current-cat a, .menu .current ul a, .menu .current-cat ul a { border-bottom-color: #FFFFFF; }
.menu a, .menu .current ul a, .menu .current-cat ul a { color: #B1B1B1; background: #FFFFFF; }
.menu a:hover, .menu .current ul a:hover, .menu .current-cat ul a:hover, .menu .current-parent a:hover { color: #B1B1B1; background: #FFFFFF; }
.menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover { color: #000000; background: #FFFFFF; }
.menu .current-parent > a, .menu .current-cat-parent > a { color: #B1B1B1; background: #FFFFFF; }

.menu  li a {
	font-size: 10px;
}

#sidebars {
	display: none;
}

.headline_area h2, .headline_area h1 {
	text-transform : uppercase;
	color: #9A9A9A;
	font: bold 30px verdana, arial;
}

.format_text p {
	color: #346734;
	font: 18px arial, verdana;
}

.sidepic {
	margin: 0 20px 0 0;
}

td.contenttable, td {
	color: #346734;
	font: bold 14px arial, verdana;
}

#emaildiv {
	float: right;
	width: 480px;
	background: url(images/mouse_e.png.jpg) no-repeat;
	height: 50px;
	padding: 30px 0 0 70px;
}

span {
	color: #FF6734;
}

span span {
	color: #346734;
}

#footer {
	border-top: 1px solid #346734;
	margin-top: 20px;
}

p.copyright {
	text-align: center;
	font: 10px verdana, arial !important;
}

.submit {
	background: #FF9900;
	border: 1px solid #FF9900;
	color: #ffffff;
	text-transform : uppercase;
	font-weight: bold;
	width: 100px !important;
}

table.form tr td {
	padding: 2px;
}

.wpcf7-list-item label input {
	width: 20px;
}

a, a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/* Services Tabs */
.leftcolumn {
	float: left;
	width: 640px;
	margin: 0 10px 0 0;
}

.leftcolumn a, .leftcolumn a:visited {
	float: left;
	display: inline;
	margin: 0 5px 0 0;
}

.rightcolumn {
	float: left;
	width: 310px;
	text-align: right;
}

.rightcolumn a, .rightcolumn a:visited {
	font: bold 12px verdana, arial;
	color: #9A9A9A;
	line-height : 1.7em;
	text-decoration: none;
}

.rightcolumn a:hover {
	color: #346734;
	cursor: pointer;
}

.usual ul {
	width: 530px;
	padding: 0px;
	margin: 0px;
}

.usual ul li {
	display: inline;
	text-indent: 0px;
}

.usual ul li a:hover {
	cursor: pointer;
}

.slidetab {
	float: left;
	width: 650px;
	font: 16px arial;
	color: #346734;
	clear: both;
}

.slidetab h2 {
	font: bold 18px verdana, arial;
	color: #346734;
}

span.green {
	font-size: 13px;
	color: #346734;
}

.slidepic {
	margin: 30px 20px 150px 0 !important;
}

.usual2 ul {
	width: 270px;
}

.usual2 ul li {
	text-indent: 0px;
	list-style: none;
}

.sociallinks {
	margin: 0 15px 0 0;
}
/* Services Tabs */