/*
File:			custom.css
Description:	Custom styles for Your Theme

HOW TO USE THIS FILE:

Override any class you want and it will change default styling to suit your needs.

For example, if you wish to change the default text blog title to grey, you would add the 
following declarations to this file:

	#header .blog-title a{ background:#cccccc }     <--- This makes blog title background grey

*/

#header { height:113px; background:url(/images/spacer.gif) repeat-x center top; margin-top:7px;  }

/** You can use this style for your INPUT, TEXTAREA, SELECT elements **/
.myinputstyle {
	border: 1px solid #ffffff;
	/** remember to change image path **/
	background: url(http://www.quesoblancowestfield.com/images/inputbkg.png) repeat-x #ffffff;
	font-family: tahoma, helvetica, sans-serif;
	font-style: normal;
	font-size: 14px;
	color: #454743;
}

/** You can use this style for your LABEL elements **/
.mylabelstyle {
	font-family: tahoma, helvetica, sans-serif;
	font-style: bold;
	font-size: 13px;
	color: #82983e;
}

table.padded-table { 
	border-collapse:collapse;
	border: 1px solid black;
	}
table.padded-table td { 
	padding:5px; 
	}

