/*
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/

/*round page edges*/

.custom #page {
-moz-border-radius:10px;
-webkit-border-radius:10px ;
border-radius:10px ;
}

/* custom footer */

.custom #footer {
text-align: center;
font-size: 12px;
}

/* end custom footer */


/* custom widget */
li.widget p a { text-decoration: none; }
li.widget p a:hover { text-decoration: underline; }
/* end custom widget */

/* custom widget */
.custom #widget_content {
background: #fff;
color: #1111FF;
padding-left: 1em;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
padding: 1em 1em 1em 1em;
border: 4px solid #777777;
}

.custom #widget_content .widget_icon {
float: right;
margin-right: 0.5em;}

.custom li.widget .my_widget_header {
background: #07a3f0;
-moz-border-radius:5px;
-webkit-border-radius:5px ;
border-radius:5px ;
}

.custom li.widget .my_widget_header h3 {
color: #111111;
font-size: 1.5em;
text-align: center;
}
/* end custom widget */

/*---:[ main nav menu styles ]:---*/

.menu { 
float: right;
}
.menu a { 
letter-spacing: 0px; text-transform: none; font-size: 1.5em; 
}
.custom .menu .tab a:hover {
text-decoration: underline;
}

/* page background image */
.custom #page {
    background: #fffff;
}
/* end page background image */

/* home page divs */
#customss {
    float: right;
    width: 440px;
    }
#customhome {
    float: left;
    clear: left;
    width: 420px;
    }
/* end home page divs */




/*------> Form Styles */

.formin {
font-family: georgia, verdana, sans-serif;
float: left;
}

#formin_2 {
font-family: georgia, verdana, sans-serif;
float: left;
background: none;
width: 250px;
}

#formin_2 .asp {
size: 50;
}

.formlabel {
font-family: georgia, verdana, sans-serif;
clear: left;
float: left;
width: 30%;
}

.form {
font-family: georgia, verdana, sans-serif;
clear: left;
padding: 3em;
text-align: center;
}

#button {
-moz-border-radius:7px;
-webkit-border-radius:7px ;
border-radius:7px ;
cursor: pointer;
width: 100px;
}

.formdiv {
-moz-border-radius:7px;
-webkit-border-radius:7px ;
border-radius:7px ;
border: 1px solid #9e9e9e;
padding: 8px;
}

/*------> Small Text*/
.small_text {
font-size: 10px;
clear: all;
float: left;
}

/* End Form Styles */

/*J accordian Div */
.jacc {
clear: all;
float: left;
}

/*------->Text to clear photos*/

.txtl {
clear: left;
}

/* ------> Add social buttons to post */

.custom div.fb_share {
float: left;
padding: 8px;
}

.custom div.tweetbutton {
padding: 8px;
float: left;
}

.custom .my-plus-one {  
padding: 8px;
float: left;
}

/* End Social Buttons on Post */

#twitter {
	background: #1f1f1f;
	border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;
}

	#twitter h1 a {
		display: block; margin: 0 0 15px 0;
		font: 75px; 
		color: rgba(255,255,255,0.2);
		text-decoration: none;
		padding: 5px;
	}
		#twitter h1 a:hover { color: rgba(255,255,255,0.3); }

	#twitter ul {
		list-style: none;
		padding: 20px;
	}
		#twitter ul li {
			background: rgba(255,255,255,0.1);
			border-radius: 20px; -moz-border-radius: 20px; -webkit-border-radius: 20px;
			padding: 10px;
		}

			#twitter ul li a {
				font-style:italic;
				color: #214EFF;
			}
				#twitter ul li a:hover { color: #f1f1f1; 
}
#twitter ul li span {
			color: #fff;
}
#flwbtn {
padding: 20px;
}