/*
Theme Name: TomDavis
Theme URI: http://senatortomdavis.com/
Author: Nathan Rice
Author URI: http://www.nathanrice.net/
Version: 1.0
Description: This theme was developed for the Tom Davis Campaign..
All the CSS, XHTML, design, and images are copyrighted. Please don’t steal.

*/
/*CSS Reset*/
@import url(css/reset.css);

html {
	background: #FFF url(images/html-bg.jpg) repeat-x;
	margin: 0px; padding: 0px;
}
body { /* This is where you set many of the universal defaults */
	background: url(images/body-bg.jpg) top center no-repeat; color: #424242;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-align: center;
	margin: 0px; padding: 0 0 10px 0;
}
.clearfix:after { content: "."; display: block; clear: both; margin: 0px; padding: 0px; height: 0; visibility: hidden; }

/*********************************************
		Universal Link Styles
*********************************************/
a {
	color: #033e82;
	text-decoration: underline;
}
a:hover { 
	color: #033e82; 
	text-decoration: none; 
}

/*********************************************
		Universal Text Elements
*********************************************/
p, ul, ol, blockquote {
	color: #424242;
}
ol, ul {
	margin: 5px 35px;
}
blockquote {
	margin: 5px 0px 5px 10px; padding: 0px 0px 0px 10px;
	font-style: italic;
}
img { border: 0px; background: none; }
p {
	padding: 10px 0px;
	margin: 0px;
}
/*********************************************
		Header Styles
*********************************************/
/* Use this for universal styles for all header elements
Be sure to uncomment the styles before using */
h1,h2,h3,h4,h5,h6 {
	font-family: "Trebuchet MS", "Myriad Pro", Arial, Sans-Serif;
}

h1 { /* This style is generally used as title on single posts and pages */
	font-size: 25px;
}
h2 { /* This style used as a sub-header in post/page content */
	font-size: 18px;
}
h3 { /* This style used as the post titles on homepage/archive */
	clear: both;
	font-size: 16px;
	color: #656565;
}
h3.grad { /* h3 with the gradient bg */
	background: url(images/heading-bg.gif) repeat-x;
	margin: 0px; padding: 10px;
}
h3 a {
	color: #656565;
	text-decoration: none;
}
h3 a:hover {
	color: #033e82;
	text-decoration: underline;
}
h4 { /* This style used as title for comments and as the identifying header on archive page  */
	font-size: 18px
}
h5 {
	font-size: 16px;
}
h6 {
	font-size: 14px;
}

/*********************************************
		The Obligatory WP Styles
*********************************************/
.aligncenter,
div.aligncenter {
   display: block;
   margin-left: auto;
   margin-right: auto;
}
.alignleft {
   float: left;
}
.alignright {
   float: right;
}
img.alignleft {
   margin: 0px 8px 8px 0px;
}
img.alignright {
   margin: 0px 0px 8px 8px;
}
.wp-caption {
   border: 1px solid #ddd;
   text-align: center;
   background-color: #f3f3f3;
   padding-top: 4px;
   margin: 10px;
}
.wp-caption img {
   margin: 0;
   padding: 0;
   border: 0 none;
}
.wp-caption p.wp-caption-text {
   font-size: 11px;
   line-height: 17px;
   padding: 0 4px 5px;
   margin: 0;
}

/*********************************************
		Header Styles
*********************************************/
#header {
	width: 100%;
	margin: 0px auto; padding: 0px;
	text-align: left;
}
#header a.logo {
	display: block;
	width: 960px; height: 217px;
	margin: 0px auto;
	border: none;
	text-indent: -9999px;
	overflow: hidden;
}

/*********************************************
		Container Div
*********************************************/
#container {
	background: #FFF;
	width: 960px;
	margin: 0px auto; padding: 0;
	text-align: left;
}

/*********************************************
		Horizontal Navigaion Styles 
				(with dropdowns)
*********************************************/
#menu {
	font-size: 15px;
	height: 53px;
	margin: 0px; padding: 0px;
	background: url(images/menu-bg.gif) repeat-x;
	font-family: "Trebuchet MS", "Myriad Pro", Arial, Sans-Serif;
	position: relative;
	z-index: 100;
}
/* This is the style for the first UL (horizontal) */
#menu ul {
	display: block;
	width: 960px;
	background: transparent;
	height: 53px; line-height: 53px;
	margin: 0px auto; padding: 0px;
}
/* This is the style for the top level list items */
#menu ul li {
	background: none;
	width: auto;
	display: block;
	float: left;
	list-style-type: none;
	height: 53px; line-height: 53px;
	margin: 0px; padding: 0px;
}
#menu ul li.home {
	background: none;
}
/* The style for all links */
#menu a {
	color: #404040;
	text-decoration: none;
}
/* The universal hover state colors and background for all LI items and links */
#menu li:hover,
#menu li:hover a,
#menu li.sfhover,
#menu li.sfhover a,
#menu li a:hover {
	color: #404040;
	text-decoration: none;
}
/* This is the style for the top level links, if different than the universal */
#menu ul li a {
	display: block;
	height: 53px; line-height: 53px;
	margin: 0px; padding: 0px 20px;
	text-decoration: none;
}
/* if you want to set a "current page item" style, do it here */
#menu ul li.current_page_item a {
}
/****************************** 
The second-level stuff 
*******************************/
/* This hides the nested UL before you hover */
#menu li ul {
	clear: both;
	position: absolute;
	width: 240px; /* the width of the dropdown */
	left: -999em;
}
/* This shows the nested UL when you hover */
#menu li:hover ul, 
#menu li.sfhover ul {
	left: auto;
	display:  block;
	z-index: 1000;
}

/* This is the style for the nested UL */
#menu li:hover ul, #menu li.sfhover ul {
	background: transparent;
	display: block;
	border-top: 1px solid #FFF;
	margin: 0px; padding: 0px;
}
/* This is the style for the LI items within the nested UL */
#menu li:hover ul li,
#menu li.sfhover ul li {
	background: transparent;
	width: 100%;
	display: block;
	padding: 0px; margin: 0px;
	height: 31px; line-height: 31px;
	overflow: hidden;
	text-align: left;
}
/* This is the style for the links within the LI items within the nested UL */
#menu li:hover ul li a,
#menu li:hover ul li.current_page_item a,
#menu li.sfhover ul li a,
#menu li.sfhover ul li.current_page_item a {
	width: 220px;
	display: block;
	margin: 0px; padding: 0px 5px;
	height: 30px; line-height: 30px;
	border: 1px solid #FFF;
	border-top: none;
	background: url(images/menu-bg.gif) repeat-x;
}
/* This is the style for the hover state on the links within the LI items within the nested UL */
#menu li:hover ul li a:hover, 
#menu li.sfhover ul li a:hover {
	text-decoration: none;
	margin: 0px; padding: 0px 5px;
	height: 30px; line-height: 30px;
	background: #CCC;
}

	
/*********************************************
		Content Div
*********************************************/
#content {
	width: 640px;
	float: left;
	margin: 0px; padding: 10px;
}
#content .page p,
#content .post p {
	line-height: 18px;
}

/*********************************************
		Homepage
*********************************************/

/* Feautre Images */
#feature {
	padding: 7px;
	width: 626px;
	height: 248px;
	background: url(images/feature-bg.gif) no-repeat;
}
#rotator {
	width: 626px;
	height: 248px;
}

/* Constituent Action Center */
#cac {
	width: 100%;
	background: url(images/shadowed-border-bottom.gif) bottom left repeat-x;
	margin: 10px 0 0 0; padding: 0 0 10px 0;
}
#cac .links {
	margin: 10px 0 0 0;
}
#cac a {
	display: block;
	width: 135px;
	margin: 0; padding: 110px 12px 0 12px;
	float: left;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}
#cac a:hover {
	text-decoration: underline;
}
#cac a.hunting {
	background: url(images/hunting.jpg) top center no-repeat;
}
#cac a.voting {
	background: url(images/vote.jpg) top center no-repeat;
}
#cac a.driving {
	background: url(images/driving.jpg) top center no-repeat;
}
#cac a.comm-resources {
	background: url(images/comm-resources.jpg) top center no-repeat;
}

#newsevents {
	width: 640px;
	margin: 10px 0 0 0; padding: 0px;
}

#news {
	width: 310px;
	float: left;
	background: #f5f5f5;
}
#news .post {
	padding: 10px;
}
#news p.title {
	font-size: 15px;
	margin: 0; padding: 0;
	font-family: "Myriad Pro", "Trebuchet MS", Arial, Sans-Serif;
	font-weight: bold;
}
#news p.title a {
	text-decoration: none;
}
#news p.title a:hover {
	text-decoration: underline;
}
#news p.date {
	font-style: italic;
	color: #ccc;
	margin: 0; padding: 0;
}

#events {
	width: 310px;
	float: right;
	background: #f5f5f5;
}
#events ul {
	margin: 0; padding: 0;
	list-style-type: none;
}
#events ul li a {
	display: block;
	margin: 0; padding: 10px 10px 10px 20px;
	color: #424242;
	font-weight: bold;
	background: url(images/plus-bull.gif) 5px 50% no-repeat;
	text-decoration: none;
}
#events ul li.alt a {
	background: #FFF url(images/plus-bull.gif) 5px 50% no-repeat;
}
#events ul li a:hover {
	color: #033e82;
}

/*********************************************
		Post Meta Styles, if needed
*********************************************/
.meta-top {
	clear: both; /* we need this so floats in the post are cleared */
}
.meta-bottom {
	clear: both; /* we need this so floats in the post are cleared */
}
.meta-date {
}
.meta-author {
}
.meta-comments {
}
.meta-category {
}

/*********************************************
		Previous/Next Page Navigation
*********************************************/
.page-nav {
	clear: both; /* To clear any floats */
	margin: 0px; padding: 0px;
}
.nav-previous {
	text-align: left;
}
.nav-next {
	text-align: right;
}

/*********************************************
		Sidebar
*********************************************/
.sidebar {
	width: 270px;
	float: right;
	background: url(images/sidebar-bg.gif) top left no-repeat;
	margin: 0px; padding: 15px;
}
.sidebar h4 {
	margin: 0 0 10px 0; padding: 0 0 0 0;
	text-align: center;
}
.sidebar .widget {
	width: 250px;
	margin: 0 0 15px 0; padding: 10px;
	background: url(images/widget-bg.gif) top center no-repeat;
}
.sidebar .contribute {
	background: url(images/contribute-bg.png) no-repeat;
}
.sidebar .contribute p {
	color: #FFF;
}
.sidebar .contribute a {
	display: block;
	margin: 5px 0 5px 0;
}
.sidebar .newsletter {
	background: url(images/newsletter-bg.png) no-repeat;
	padding-top: 70px;
	height: 107px;
}
.sidebar .newsletter h4 {
	display: none;
}
.sidebar .newsletter p {
	margin: 0; padding: 0;
}
.sidebar .newsletter .form-input,
.sidebar .newsletter .your-email input {
	height: 12px;
	padding: 5px;
	background: #FFF;
	border: none;
	width: 240px;
	text-indent: 0px;
}
.sidebar .newsletter .form-submit {
	display: block;
	width: 69px; height: 35px;
	background: url(images/newsletter-submit.gif) bottom center no-repeat;
	text-indent: -9999px;
	border: none;
	float: right;
}
.sidebar .wpcf7-response-output {
	border: none;
	color: green;
	font-size: 10px;
}
.sidebar .poll {
	
}

.sidebar .social-links {
	text-align: center;
	margin: 20px 0px 0px 0px;
}


/*********************************************
		Comment Styles
*********************************************/
#comments {
	margin: 20px 0px; padding: 0px;
	overflow: hidden;
}
#comments .title {
	font-size: 25px;
	margin: 0px; padding: 15px 0px;
}
#comments ol.commentlist {
	margin: 0px; padding: 0px;
}
#comments ul.children {
	margin: 0px; padding: 10px 0px 0px 20px;
}
#comments .vcard {
	
}
#comments .vcard .avatar {
	display: block;
	float: left;
	margin: 0px; padding: 0px 10px 0px 0px;
}
#comments .comment-meta {
	padding: 0px 0px 20px 0px;
}
#comments li.even,
#comments li.odd {
	clear: both;
	list-style-type: none;
	border-bottom: 1px solid #CCC;
}
#comments ul.children li {
	border-bottom: 1px solid #CCC;
}
#comments li.even {
	margin: 5px 0px 5px 0px;
	padding: 10px;
	overflow: hidden;
}
#comments li.odd {
	margin: 5px 0px 5px 0px;
	padding: 10px;
	overflow: hidden;
}
#comments .alert {
	background: #fffbd6;
	border: 1px solid #ebe067;
	margin: 5px 0px; padding: 5px;
}
#comments p {
	margin: 0px 0px 10px; padding: 0px;
}

#respond {
	overflow: hidden;
}
#respond #commentform {
	margin: 5px 0px 0px 0px;
	padding: 0px;
	overflow: hidden;
}
#respond #commentform #author,
#respond #commentform #email,
#respond #commentform #url {
	width: 50%;
	margin: 0px 0px 5px 0px; padding: 5px;
}
#respond #commentform #comment {
	width: 98%;
	margin: 10px 0px 15px 0px; padding: 5px;
}

/*********************************************
		Footer Styles
*********************************************/
#footer {
	clear: both;
	width: 940px;
	background: #18559b url(images/footer-bg.png) repeat-x;
	margin: 0px; padding: 15px 10px;
	color: #FFF
}
#footer a {
	color: #FFF;
}
#footer a:hover {
	text-decoration: none;
}