/*
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-image: url(../lib/images/background.jpg);
background-position: top center;
background-repeat: no-repeat;
background-color: #000000;
}

#container {
margin-top: 219px;
}

#page {
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
}

#header {
	display: none;	
}

#content_box {
	padding-top: 15px;
        margin-top: 1px;	
}

#custom_footer {
        margin: auto;
        width: 750px;
        color: #999999;
        font-size: 11px;
        text-align: center;
        padding: 20px 0;
}

#custom_footer_links {
        text-align: center;
}

#custom_footer_links a {
	text-decoration: none;
	color: #0088d0;
	border: none;
}

#custom_footer_links a:hover {
	text-decoration: underline;
	color: #1B9EDF;	
}

/* CUSTOM NAVIGATION */
.menu {
        margin-top: -50px;
        border: none;
        border-style: none;	
}

.menu li {
	
}

.menu li {
	border: none;	
}

.menu a {
	border-top: none;
        border-bottom: none;
        -moz-border-radius-topleft: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-left-radius: 4px;
	-webkit-border-top-right-radius: 4px;
}

.menu .rss {
        position: absolute;
        margin-left: 715px;
        margin-top: 30px;
        color: #000000;
}

.menu .rss a {
        color: #000000;	
}

/***********************************************************************************************

							Styles for the Social Icons

************************************************************************************************/

#socialContainer {
	width: 220px;
	margin: auto;
	padding-top: 10px;
}

#socialContainer ul {
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
}

#socialContainer ul li {
	display: block;
	height: 32px;
	margin: 0 0 20px 40px;
	padding: 0;
	position: relative;
	width: 180px;
}

#socialContainer .twitter {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../lib/images/twitter-32x32.png) no-repeat scroll 0 0;
}

#socialContainer .facebook {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../lib/images/facebook-32x32.png) no-repeat scroll 0 0;
}

#socialContainer .feeds {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../lib/images/feed-32x32.png) no-repeat scroll 0 0;
}

#socialContainer .youtube {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background: transparent url(../lib/images/youtube-32x32.png) no-repeat scroll 0 0;
}

#socialContainer li .socialFont {
	font-size: 14px;	
}

#socialContainer .icon {
	height:32px;
	left:-40px;
	position:absolute;
	width:32px;
}

#socialContainer li a, #socialContainer li a:link , #socialContainer li a:visited {
	-moz-background-clip: border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background: #FFFFFF url(../lib/images/social_bg.jpg) repeat-x scroll 100% 0;
	border: 1px solid #CBCBCB;
	color: #2F5385;
	display: block;
	height: 18px;
	margin: 0;
	padding: 8px 0 4px 14px;
	text-decoration: none;
	text-shadow: 0 1px 0 #FFFFFF;
	text-transform: lowercase;
	width: 164px;	
}

#socialContainer li a:hover {
	border: 1px solid #999999;
	color: #143264;
}

/***********************************************************************************************

							Styles for the Form Code

************************************************************************************************/

#formCode {
  margin-top: -25px;
  padding-top: 166px;
}

#af-footer-825320505 {
  display: none;
}

#af-form-825320505 {
  background-color: transparent !important;
  width: 234px !important;
}

/***********************************************************************************************

							Styles for the Form Background

************************************************************************************************/

#formBg {
  background: #d2d2d2 url(../lib/images/form_bg.jpg) no-repeat scroll top center;
  height: 295px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  margin-left: 20px;
  margin-top: -25px;
  border: 1px solid #d5d5d5;
}

#formBg2 {
  background: url(../lib/images/form_bg.jpg) no-repeat scroll top center;
  height: 344px;
  width: 262px;
  margin: 20px auto;
  border: 1px solid #dfdfdf;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

/***********************************************************************************************

							Styles for the Front Page

************************************************************************************************/

ul.frontpageList li {
  padding-bottom: 10px;
}