/*
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.custom {
    background: #32004B url(images/gradientbg.png) repeat-x top;

}
.custom #page{/*background: url(images/bgtextured2.png) scroll;*/ margin-top:-5px; margin-left:1px;}

.custom .headline_area h1, .custom .headline_area h2{font-size:18px;}
.custom span.boldred{font-weight:bold; color:#900;}
.custom span.boldblue{font-weight:bold; color:#03C;}


.custom ul.menu  li.tab  a, a:link,a:visited { color:#FFF;}
.custom ul.menu  li.tab  a:hover{ color:#FFFFFF;}
.custom .menu li.tab a:hover,.custom .menu li.current a:hover {background:#7907d2 url(images/menuhovbg.png) repeat-x; color:#FFFFFF;}
.custom ul.menu li.current a{ color:#FFFFFF;background:#7907d2 url(images/menuhovbg.png) repeat-x;}

.custom ul.menu li.current ul.submenu li.currentsub a{ color:#FFFFFF;background:#999; }
.custom ul.menu li.current ul.submenu li a{ color:#FFFFFF;background:#000000;}
.custom ul.menu li.current ul.submenu li a:hover{ color:#FFFFFF;background:#999;}

.custom #content_box a,a:link,a:visited{ color:#53027b;}

.custom .picture img { border: 0px solid #CCCCCC;vertical-align:middle; margin-bottom: 3px; } 
.custom .picright { margin: 0.5em 0pt 0.5em 0.8em; float:right; font: 11px/1.4em Arial, sans-serif;  }
.custom .picleft { margin: 0.5em 0.8em 0.5em 0; float:left; font: 11px/1.4em Arial, sans-serif;  } 



table.standard {	background-color:none;	margin: 0px;	padding: 0px;	border: 1px solid #ddd;	border-spacing: 0px;		border-collapse: collapse;}

table.standard th {	margin: 0px;	padding: 6px 4px 2px 4px;	height: 25px;		background-repeat: repeat;	font-size: 11px;	color: #000;}
table.standard th.title {	text-align: left;}
table.standard th a:link, table.standard th a:visited {	color:#006699;	text-decoration: none;}

table.standard th a:hover {	text-decoration: underline;}

table.standard tr.row0 {	background-color: #F9F9F9;	text-align: left;}
table.standard tr.row1 {	background-color: #FFF;	text-align: left;}
table.standard td {	border-bottom: 1px solid #e5e5e5;	padding: 4px;	font-size: 11px;		}
table.standard td.grey { background:#efefef;border-bottom: 1px solid #e5e5e5;	padding: 4px;	font-size: 11px;	}
table.standard td a:link, table.standard td a:visited {	color:#3366FF;	text-decoration: none;	font-family:Verdana, Arial, Helvetica, sans-serif;	font-size:11px;}
table.standard tr.row0:hover {	background-color: #f1f1f1;}
table.standard tr.row1:hover {	background-color: #f1f1f1;}

table.standard2 {	background-color:none;	margin: 0px; width:100%;	padding: 0px;	border: 1px solid #ddd;	border-spacing: 0px;		border-collapse: collapse;}

table.standard2 th {	margin: 0px;	padding: 6px 4px 2px 4px;	height: 25px;	background: url(../gfx/background.gif);	background-repeat: repeat;	font-size: 11px;	color: #000;}
table.standard2 th.title {	text-align: left;}
table.standard2 th a:link, table.standard th a:visited {	color:#006699;	text-decoration: none;}

table.standard2 th a:hover {	text-decoration: underline;}

table.standard2 tr.row0 {	background-color: #F9F9F9;	text-align: left;}
table.standard2 tr.row1 {	background-color: #FFF;	text-align: left;}
table.standard2 td {	border-bottom: 1px solid #e5e5e5;	padding: 4px;	font-size: 11px;		}
table.standard2 td.grey { background:#efefef;border-bottom: 1px solid #e5e5e5;	padding: 4px;	font-size: 11px;	}
table.standard2 td a:link, table.standard td a:visited {	color:#3366FF;	text-decoration: none;	font-family:Verdana, Arial, Helvetica, sans-serif;	font-size:11px;}
table.standard2 tr.row0:hover {	background-color: #f1f1f1;}
table.standard2 tr.row1:hover {	background-color: #f1f1f1;}

.custom #footer{ text-align:right;}

.custom input.vuinput{ height:14px; width:150px; padding:5px 3px;}
.custom textarea.vutextarea{ height:150px; width:430px;padding:5px 3px;}
.custom input.vubutton{ border:none;}