/*
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/
*/

/* MISC */
.clear { clear: both; }
.special-offer { position: relative; width: 100%; height: auto; }
	.underoffer { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background: transparent url('images/underoffer.png') no-repeat center center; }

/* BODY */


/* HEADER */
.custom #header_area { background: #262775 url('images/header.png') repeat-x left bottom; border-bottom: 1px solid #fff; position: relative; }
	.custom #header_area .page { background: transparent; }
	#grey_stripe { position: absolute; left: 0; right: 0; bottom: 0; height: 32px; background: #e0e0e0 url('images/navmenu.png') repeat-x left top; border-top: 1px solid #fff; }
	.custom #header { position: relative; }
		#wpdev_social { position: absolute; bottom: 0; right: 0; width: 100px; height: 55px; list-style-type: none; }
			#wpdev_social li { float: left; position: relative; width: 50px; }
		.wpdev_navmenu { float: right; position: relative; list-style-type: none; padding-top: 5px; }
			.wpdev_navmenu li { float: left; position: relative; }
				.wpdev_navmenu li .sub-menu { display: none; }
				.wpdev_navmenu li:hover .sub-menu { display: block; position: absolute; width: 100px; z-index: 3000; background: #e0e0e0; left: 10px; }
					.wpdev_navmenu li:hover .sub-menu li { display: block; float: none; }
						.wpdev_navmenu .sub-menu li a, .wpdev_navmenu .sub-menu li a:visited { font-size: 12px; padding: 4px 10px; display: block; color: #181818; }
						.wpdev_navmenu .sub-menu li a:hover, .wpdev_navmenu .sub-menu li.current-menu-item a { background: #f0f0f0; color: #262775; }
				.wpdev_navmenu li a, .wpdev_navmenu li a:visited { font-size: 12px; color: #fff; padding: 0 10px; }
				.wpdev_navmenu li a:hover, .wpdev_navmenu li.current-menu-item a { color: #c0c0c0; }

/* MENU */
.custom ul.menu { background: #E0E0E0 url('images/navmenu.png') repeat-x left top; border-top: 1px solid #fff; }
	.custom ul.menu a { background-image: url('images/navmenu.png'); background-position: left top; background-repeat: repeat-x; font-weight: bold; text-transform: none; }
	.custom ul.menu .current-menu-item a, .custom ul.menu .current-menu-ancestor a { background-image: url('images/navmenu_hover.png'); background-position: left top; background-repeat: repeat-x; }
	.custom ul.menu ul.sub-menu { border: 1px solid #a0a0a0; border-top: none; }
		.custom ul.menu ul.sub-menu a { background-image: none; background-color: #efefef; color: #1B1C58; border-top: 1px solid #fff; }
		.custom ul.menu ul.sub-menu li:first-child a { border: none; }
		.custom ul.menu ul.sub-menu a:hover, .custom ul.menu ul.sub-menu .current-menu-item a { background: #d0d0d0; color: #1B1C58; }

/* SIDEBARS */
.custom ul.sidebar_list { padding: 0 10px; background: #e5e5e5; }
	.custom #sidebar_1 ul.sidebar_list { border-right: 1px solid #bbb; }
	.custom #sidebar_2 ul.sidebar_list { border-left: 1px solid #bbb; padding-top: 2.2em; }
		.custom ul.sidebar_list ul li { background: transparent url('images/bullet.png') no-repeat left 6px; padding-left: 10px; }
	.custom .sidebar h3 { font-variant: normal; text-transform: uppercase; font-size: 12pt; font-weight: bold; text-shadow: 1px 1px 0 #fff; color: #1c1c1c; }
	/* .custom .widget { background: transparent url('images/widget_separator.png') no-repeat center bottom; margin-bottom: 1em; padding-bottom: 1.5em; } */

/* CONTENT */
.custom #content { background: #fff; }
	.custom .post_box, .custom .teasers_box, .custom .full_width #content_box .page { margin: 0 .5em; position: relative; }
	.custom #archive_intro, .custom .prev_next { padding: 1.1em .5em; }

/* FOOTER */
.custom #footer_area { background: #262775 url('images/footer.png') repeat-x left bottom; border-top: 1px solid #fff; position: relative; }
	.custom #footer_area .page { background: transparent; }
	ul#footer_sidebar { list-style-type: none; color: #fff; }
		ul#footer_sidebar a, ul#footer_sidebar a:visited { color: #fff; }
		ul#footer_sidebar a:hover { color: #e0e0e0; }
		ul#footer_sidebar h2.widgettitle { text-align: left; color: #fff; margin-bottom: 10px; }
		ul#footer_sidebar li { float: left; position: relative; width: 32%; margin-left: 1%; text-align: left; margin-bottom: 0; }
		ul#footer_sidebar li:first-child { margin-left: 0; }
			ul#footer_sidebar li ul li { display: block; float: none; width: 100%; margin: 0; }


#messagebox {
	background-color: #D7EEFF;
	border:solid 1px #A0BAD3;
	margin:0 10px;
	padding:0 15px;
}

#attentionbox {
	background-color: #FFCECE;
	border:solid 2px #CC3300;
	margin:0 10px;
	padding:0 15px;
}

#alertbox {
	background-color:#CC0000;
	margin:0 30px;
	padding:2px 10px;
}

#alertbox p {
	color:#FFFFFF;
}

#postitnote {
	background-color: #FFFF66;
	border:solid 0px #FFCC00;
	border-right: solid 2px #999999;
	border-bottom: solid 2px #999999;
	margin:0 40px;
	padding:0 15px;
}

.wufoo .info{display:none}


.submit {
  border: 1px solid #000000;
  background-color: #FFFFFF;
  padding: 2px;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 12px;
  cursor: default;

}
#submitpad {
  padding: 5px;
  background-color: #ff0000;
  margin: 0px;
  border-width: 3px;
  border-color: #ff0000;
  border-spacing: 0;
}