/*



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/

*/


.custom .menu {padding: 0 1.1em; font-weight: bold; }



.custom #header {padding-top: 0; }



.custom #footer	{padding-bottom: 0; }



v



.custom a.hover {background: CC0000; }



body.custom { background: url(http://www.seovirgin.com/wp-content/themes/thesis_16/custom/images/pinkpurple1250750.png) 50% 0 no-repeat fixed; }

.custom #container { margin-top: 0em; margin-bottom: 0em; }



.custom #page { background: #fff; }



h2 { font-family: Verdana; font-size: 16px; font-weight: bold; color: #4E0840; text-align: left; }



/* pullquotes with double bar above and below */

.custom blockquote.left, .custom blockquote.right {

   width: 200px;

   margin: 5px 15px 5px 4px;

   padding: 5px 0;

   border: 3px double #5e1558;

   border-width: 3px 0;

   font-size: 1.4em;

   text-align: center;

font-color: 56115c

}

.custom blockquote.left { float: left; }

.custom blockquote.right { float: right; }



.custom #feedback { background: transparent; width: 3.2em; position: fixed; top: 40%; left: 0.25%; }



.custom #feedback a { display: block; text-indent: -9999px; height: 32px;}



.custom #feedback #twitter { background: url('http://thesistutor.com/wp-content/uploads/2009/07/twittericon.png') no-repeat 0 -32px; }

	.custom #feedback #twitter:hover { background-position: 0 0; }





.custom #feedback #rss { background: url('http://thesistutor.com/wp-content/uploads/2009/07/rssicon.png') no-repeat 0 -32px; }

	.custom #feedback #rss:hover { background-position: 0 0; }



.custom #feedback #email { background: url('http://thesistutor.com/wp-content/uploads/2009/07/emailicon.png') no-repeat 0 -32px; }

	.custom #feedback #email:hover { background-position: 0 0; }
	

.custom .comments_closed p {display: none ;}





















































































































