/*







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 {
	background-color: #e0dddd;
	background-image:url(http://www.groupersandwich.com/images/chiles-background.jpg);
	background-repeat:repeat;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 120%;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}

.custom #grouper {
	margin: 0 auto 0 auto; 
	padding: 0 0 0 0;
	text-align: center;
    width: 785px;
       }

.custom #grouper .nav {
	margin: 20px 5px 8px 5px;
	padding: 0 0 0 0;
	text-align: left;
    font-size: 13px;
	color: #333;
	font-weight: bold;
}

.custom .nav A:link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.custom .nav A:visited {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.custom .nav A:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.custom .nav A:active {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.custom .menu a { text-transform: uppercase; letter-spacing: 1px; font-weight: bold; }

.custom .sidebar h3 { font-variant: small-caps; letter-spacing: 0px; font-weight: bold;}
.custom #footer {
margin: 0;
padding: 10; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
line-height: 15px;
text-align: left;
}

.custom #footer a { border-bottom: none; }

.custom #footer a:hover {
  color: #333;
  text-decoration: underline;
}

	.social { border: dashed #ddd; border-width:1px 0 1px 0; margin: -15px auto 5px; display:block; padding: 3px 0 1px 0px;  overflow: hidden; }
	.social .social_button {float: left; display: inline; overflow: hidden; height:22px; }
	.social .social_button.dg { margin: 0px 0 0 10px ; padding-top: 2px;}
	.social .social_button.tm { margin: 0px 0 0 15px;  padding-top: 4px;}
	.social .social_button.fb { margin: 0 0 0 0px;  padding-bottom:0px;}
	.social .social_button.su { margin: 0px 0 0 5px;  padding-top: 2px;}
        .social .social_button.em { margin: 0 0 0 10px;  padding-top: 0px;}
        .social .social_button.em a{background:#eee url(images/emailthis.gif) 3px 50% no-repeat; padding:2px 3px 2px 20px;  font-size:10px; border:#ddd 1px solid; text-decoration:none; -moz-border-radius: 3px; -webkit-border-radius: 3px;}

		.social .social_button.em a:hover {background:#ddd url(images/emailthis.gif) 3px 50% no-repeat}

	.social .social_button a img { border: 0; padding: 0; }

	.social strong { font-size: 11px; float: left; margin:2px 0 0 0; color:#555;}

.clear{clear:both;}

.center {

	text-align: center;

}





