/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	PAGE WRAPPER

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#Wrapper
{
    width: auto;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
}

#Frame
{
    background: #FFFFFF;
}
#BackLeft
{
    width: 8px;
    margin: 0 auto;
    text-align: left;
    background: url( "../../images/bg-left.gif" ) repeat-y;
}
#BackRight
{
    width: 8px;
    margin: 0 auto;
    text-align: right;
    background: url( "../../images/bg-right.gif" ) repeat-y;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	TOP INFORMATION

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#Header
{
    background:#FFFFFF url(../../images/bg-nav-vert.gif) repeat-x left;
    width:auto;
    padding-left:0px;
    border-top:solid 1px #CCCCCC;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	MAIN NAV 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
#MainMenu-container
{
    background: url(../../images/bg-nav-vert.gif) repeat-x left;
    padding:  0.0em 0.5em 0.75em 15px;
    height: 2.2em;
    width: auto;
    font-size: 0.9em;
}

#MainMenu-search
{
    display: inline;
    margin-left: 7px;
    width: auto;
    font-size: 0.9em;   
}

/* This style sheet is intended to contain OFTEN CHANGED rules used when the Menu control adapter is enabled. */

/* When the Menu control's Orientation property is Vertical the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Vertical. */
/* Note that the example menu in this web site uses relative positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */
.MainMenu .AspNet-Menu-Vertical
{
    position: relative;
    top: 3em;
    left: 0;
    z-index: 300;
}

/* The menu adapter renders an unordered list (ul) in HTML for each tier in the menu. */
/* So, effectively says: style all tiers in the menu this way... */
.MainMenu ul
{
    background: #999999;
    text-align: center;
}

/* Top tier */
.MainMenu .AspNet-Menu-Vertical ul.AspNet-Menu
{
    width: 9em;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
.MainMenu ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 0em;
    top: -1em;
    z-index: 400;
}

.MainMenu ul.AspNet-Menu ul ul
{
    width: 11.5em;
    left: 10.4em;
}

/* The menu adapter generates a list item (li) in HTML for each menu item. */
/* Use this rule create the common appearance of each menu item. */
.MainMenu ul.AspNet-Menu li
{
    background: #999999;
}

/* Within each menu item is a link or a span, depending on whether or not the MenuItem has defined it's */
/* NavigateUrl property. By setting a transparent background image here you can effectively layer two images */
/* in each menu item.  One comes from the CSS rule (above) governing the li tag that each menu item has. */
/* The second image comes from this rule (below). */
.MainMenu ul.AspNet-Menu li a, .MainMenu ul.AspNet-Menu li span
{
    color: #FFFFFF;
    padding: 4px 4px 4px 4px;
    border: 1px solid #CCCCCC;
    border-bottom: 0;
    background: transparent url(arrowRight.gif) right center no-repeat;
}

/* When a menu item contains no submenu items it is marked as a "leaf" and can be styled specially by this rule. */
.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf span
{
    background-image: none;
}

/* Not used presently.  This is here if you modify the menu adapter so it renders img tags, too. */
.MainMenu ul.AspNet-Menu li a img
{
    border-style: none;
    vertical-align: middle;
}

/* When you hover over a menu item, this rule comes into play. */
/* Browsers that do not support the CSS hover pseudo-class, use JavaScript to dynamically change the */
/* menu item's li tag so it has the AspNet-Menu-Hover class when the cursor is over that li tag. */
/* See MenuAdapter.js (in the JavaScript folder). */
.MainMenu ul.AspNet-Menu li:hover, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover
{
    background: #7795BD;
}

.MainMenu ul.AspNet-Menu li:hover a, .MainMenu ul.AspNet-Menu li:hover span, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover a, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover span, .MainMenu ul.AspNet-Menu li:hover li:hover a, .MainMenu ul.AspNet-Menu li:hover li:hover span, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover a, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover span, .MainMenu ul.AspNet-Menu li:hover li:hover ul a:hover, .MainMenu ul.AspNet-Menu li:hover li:hover ul span.Asp-Menu-Hover, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a:hover, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span.Asp-Menu-Hover
{
    color: #FFFFFF;
}

.MainMenu ul.AspNet-Menu li:hover ul a, .MainMenu ul.AspNet-Menu li:hover ul span, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul a, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover ul span, .MainMenu ul.AspNet-Menu li:hover li:hover ul a, .MainMenu ul.AspNet-Menu li:hover li:hover ul span, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul a, .MainMenu ul.AspNet-Menu li.AspNet-Menu-Hover li.AspNet-Menu-Hover ul span
{
    color: #FFFFFF;
}

/* While you hover over a list item (li) you are also hovering over a link or span because */
/* the link or span covers the interior of the li.  So you can set some hover-related styles */
/* in the rule (above) for the li but set other hover-related styles in this (below) rule. */
.MainMenu ul.AspNet-Menu li a:hover, .MainMenu ul.AspNet-Menu li span.Asp-Menu-Hover
{
    color: #FFFFFF;
    background: transparent url(activeArrowRight.gif) right center no-repeat;
}

.MainMenu ul.AspNet-Menu li.AspNet-Menu-Leaf a:hover
{
    background-image: none;
}

/* -------------------------------------------------------------------------- */
/* When the Menu control's Orientation property is Horizontal the adapter wraps the menu with DIV */
/* whose class is AspNet-Menu-Horizontal. */
/* Note that the example menu in this web site uses absolute positioning to force the menu to occupy */
/* a specific place in the web page.  Your web site will likely use a different technique to position your */
/* menu.  So feel free to change all the properties found in this CSS rule if you clone this style sheet. */
/* There is nothing, per se, that is magical about these particular property value choices.  They happen to */
/* work well for the sample page used to demonstrate an adapted menu. */

.MainMenu .AspNet-Menu-Horizontal
{
    position: relative;
    left: 0;
    top: 0;
    z-index: 300;
}

/* This rule controls the width of the top tier of the horizontal menu. */
/* BE SURE TO MAKE THIS WIDE ENOUGH to accommodate all of the top tier menu items that are lined */
/* up from left to right. In other words, this width needs to be the width of the individual */
/* top tier menu items multiplied by the number of items. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu
{
    width:auto; 
    height:auto;
}

/* This rule effectively says: style all tiers EXCEPT THE TOP TIER in the menu this way... */
/* In other words, this rule can be used to style the second and third tiers of the menu without impacting */
/* the topmost tier's appearance. */
/* Remember that only the topmost tier of the menu is horizontal.  The second and third tiers are vertical. */
/* So, they need a much smaller width than the top tier.  Effectively, the width specified here is simply */
/* the width of a single menu item in the second and their tiers. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul
{
    width: 10.5em;
    left: 0;
    top: 100%;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    top: 0em;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul
{
    width: 11.5em;
}

/* Generally, you use this rule to set style properties that pertain to all menu items. */
/* One exception is the width set here.  We will override this width with a more specific rule (below) */
/* That sets the width for all menu items from the second tier downward in the menu. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li
{
    width: 8.5em;
}

/* This rule establishes the width of menu items below the top tier.  This allows the top tier menu items */
/* to be narrower, for example, than the sub-menu items. */
/* This value you set here should be slightly larger than the left margin value in the next rule. See */
/* its comment for more details. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul li
{
    text-align: left;
    width: 10.5em;
}

.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu ul ul li
{
    width: 11.5em;
}

/* Third tier menus have to be positioned differently than second (or top) tier menu items because */
/* they drop to the side, not below, their parent menu item. This is done by setting the last margin */
/* value (which is equal to margin-left) to a value that is slightly smaller than the WIDTH of the */
/* menu item. So, if you modify the rule above, then you should modify this (below) rule, too. */
.MainMenu .AspNet-Menu-Horizontal ul.AspNet-Menu li ul li ul
{
    margin: 0 0 0 10.35em;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	BREADCRUMB

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#breadcrumb
{
    padding: 5px 20px 5px 15px;
    background-color: #EEEEEE;
    color: #000009;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	MAIN CONTENT PLACEHOLDER

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#one-column
{
    background: #FFFFFF;
    width: auto;
    padding: 15px;
}

#two-column-outer
{
    }

#two-column-left
{
    background: #FFFFFF;
    width: 95%;
    padding: 15px;
}

#two-column-right
{
    background: #FFFFFF;
    width: 5%;
    padding: 15px;
}

#three-column-outer
{
}

#three-column-left
{
    background: #FFFFFF;
    border-right: solid 1px #CCCCCC;
    width: 5%;
    padding: 15px;
}
#three-column-right
{
    background: #FFFFFF;
    width: 5%;
    padding: 15px;
    border-left: solid 1px #CCCCCC;
}

#three-column-middle
{
    background: #FFFFFF;
    width: 90%;
    padding: 15px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	FOOTER

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#Footer
{
    /*background: url(../../images/bg-nav-vert.gif) repeat-x left;*/
    margin: 20px 15px 5px 15px;
    padding: 15px 0px 5px 0px;
    width: auto;
    border-top: solid 1px #CCCCCC;
}

#Footer a:link, #Footer a:visited
{
    text-decoration: underline;
}

#Footer a:hover
{
    text-decoration: underline;
}

#Footer a:active
{
    text-decoration: underline;
}

#Footer-sub
{
    margin-top: 10px;
    width: auto;
    border-bottom: solid 1px #CCCCCC;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    
    HOME PAGE DATALIST

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.SellerList .AspNet-DataList table
{
    width:auto;
    /*border:solid 1px #CCCCCC;*/
    border-collapse:collapse;
    margin-bottom:0px;
}

.SellerList .AspNet-DataList table caption
{
    border: #CCCCCC solid 1px;
    color:#FFFFFF;
    background:#999999;
    font-weight:bold;
    padding:2px 2px 2px 10px;
}

.SellerList .AspNet-DataList table thead tr th
{
    border: #CCCCCC solid 1px;
    color:#FFFFFF;
    background:#999999;
    font-weight:bold;
    padding:3px 3px 3px 3px;
}

.SellerList .AspNet-DataList table tbody tr td
{
    padding:0px 0px 10px 0px;
    width:auto;
    /*border:#CCCCCC solid 1px;*/
    vertical-align:top;
}


.HomeDataList .AspNet-DataList table
{
    width:100%;
    border:solid 1px #CCCCCC;
    border-collapse:collapse;
    margin-bottom:10px;
}

.HomeDataList .AspNet-DataList table caption
{
    border: #CCCCCC solid 1px;
    color:#FFFFFF;
    background:#999999;
    font-weight:bold;
    padding:2px 2px 2px 10px;
}

.HomeDataList .AspNet-DataList table thead tr th
{
    border: #CCCCCC solid 1px;
    color:#FFFFFF;
    background:#999999;
    font-weight:bold;
    padding:3px 3px 3px 3px;
}

.HomeDataList .AspNet-DataList table tbody tr td
{
    padding:2px 2px 2px 10px;
    width:auto;
    border:#CCCCCC solid 1px;
    vertical-align:top;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	HOME PAGE - THREE COLUMN SECTION

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#home-two-column-left {
	padding-right:5px;
	}

#home-two-column-right {
	padding-left:5px;
	}

#MainContent .rounded 
{
	padding:0 0 0 11px;
	margin: 10px 0px 10px 0px;
	background: url(../../images/box-l.gif) top left no-repeat;
}
#MainContent .rounded h1, #MainContent .rounded h2, #MainContent .rounded h3
{
	background: transparent url(../../images/box-r.gif) top right no-repeat;
	margin:0;
	padding: 0.6em 0 0.5em 0;
	line-height: 1.1em;
	text-transform: none;
	color: #5D7B9D;
}
#MainContent .rounded h1
{
    padding-bottom: 20px;
}

#MainContent .rounded p, #MainContent .rounded table, #MainContent .rounded ul
{
	margin:0 0 0 -11px;
	padding:0.5em 11px 0.5em 11px;
	background:#FFFFFF;
	border-left: solid 1px #d8d8d8;
}

#MainContent .rounded ul li
{
	/*padding:0 11px 0 11px;*/
	margin-left: 20px;
	margin-top: 0em; 
	margin-bottom: 0.50em;
	list-style-type:square;
}

#MainContent .rounded .roundedMain
{
    border-style: solid;
	border-color: #d8d8d8;
	border-width:0 1px 0 0;
}
#MainContent .rounded .roundedEnd 
{
	margin:0 0 0 -11px;
	padding-left:11px;
	background: url(../../images/box-l.gif) bottom left no-repeat;
}
#MainContent .rounded .roundedEnd div 
{
	padding:0 10px 10px 0;
	background: url(../../images/box-r.gif) bottom right no-repeat;
	height: 6px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	WINERY PAGE

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#WineryContainer
{
    width: auto;
    
}

#WineryLeftInfo {
	float:left; 
	margin-right:10px;
	margin-bottom:15px;
	padding-right:10px;
	}
	
#WineryCenterInfo {
	width:auto;
	margin:0px 0px 0px 300px; 
	}
	
#WineryContainer table tr td .RightColumn
{
    clear: both;
    float: right; 
}

#WineryContainer table tr td .LeftColumn
{
    float: left; 
}

.WineryShowLogo 
{
    float: left; padding: 0 30px 30px 0px;
}

div.Overview
{
    background-color: #F2EAFA; 
    padding: 5px; 
    border: solid 1px #CCCCCC;
    margin-bottom: 15px;
}

div.Overview ul li
{
    margin-top: 0em; 
    margin-bottom: 0.50em;
}

div.OverviewHome
{
    margin-bottom: 15px;
    width: 100%;
}

div.OverviewHome ul li
{
    margin-top: 0em; 
    margin-bottom: 0.50em;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	OFFER PAGE

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

#OfferContainer
{
    width: auto;   
}

#OfferDetails {
	background-color:#FFFFFF;
}

#OfferDetails #OfferPhoto
{	
	padding:20px;
	background-color: #FFFFFF;
	text-align: center;
}

div.BuyNow 
{
}

span.btnBuyNow a {
    font-weight: normal; 
    color: #0B0BFF;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #EEEEEE; 
    border: solid 1px #CCCCCC;
    text-align: center;
    margin: 0 0 0 15px; 
    padding: 0.3em 1.0em 0.3em 1.0em;
    display: inline; 
	}

span.btnBuyNow a:hover {
    font-weight: normal; 
    color: #DB2929;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FBE9E9;
    border: solid 1px #F1A9A9;
	}	
	
span.btnBuyNowHome a {
    font-weight: normal; 
    color: #0B0BFF;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #EEEEEE; 
    border: solid 1px #CCCCCC;
    text-align: center;
    float: right;
    margin: 5px 0 0 15px; 
    padding: 0.3em 1.0em 0.3em 1.0em;
	}

span.btnBuyNowHome a:hover {
    font-weight: normal; 
    color: #DB2929;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FBE9E9;
    border: solid 1px #F1A9A9;
	}	

span.SubscribeHome a {
    font-weight: normal; 
    color: #0B0BFF;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #EEEEEE; 
    border: solid 1px #CCCCCC;
    text-align: center;
    float: right;
    margin: 25px 15px 0 15px; 
    padding: 0.3em 1.0em 0.3em 1.0em;
	}

span.SubscribeHome a:hover {
    font-weight: normal; 
    color: #DB2929;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #FBE9E9;
    border: solid 1px #F1A9A9;
	}	

#OfferSellerInfo {
	background-color: #FFFFFF;
	margin-left: 0px;
	padding: 0 10px 0 10px;
	}
	
#OfferSellerInfo h2 {
	margin-top:10px;
	margin-bottom:10px;
	}
	
#OfferSellerInfo #InnerFrame {
	border:solid 1px #CCCCCC;
	margin-left:10px;
	padding-left:10px;
	padding-right:10px;
	}
	
#OfferUniqueSell
{
    background: url(../../images/bg-quote.png) top left no-repeat;
    margin: 10px 0px 0 0px;
    padding: 0 0 0 13px;
    font-style: normal;
    font-size: 95%;
    color: #663366;
}

.OfferMore
{
    background-color: #FBE9E9;
    border: solid 1px #CCCCCC;
    padding: 7px;
    margin: 15px 0 15px 0;
    clear: both;
    text-align: center;
    font-size: 100%;
    font-weight: bold;
}

.OfferError
{
    background-color: #FFFFFF;
    border: solid 1px #CCCCCC;
    padding: 10px;
    margin: 15px 0 15px 0;
    clear: both;
    font-size: 100%;
    font-weight: normal;
}

table.OfferPromo
{
    border: solid 1px #F1A9A9;
    border-collapse: collapse;
}
table.OfferPromo td
{
    border: solid 1px #F1A9A9;
    padding: 10px;
}
table.OfferPromo th
{
    border: solid 1px #F1A9A9;
    color: #FFFFFF;
    background: #F26D6D;
    font-weight: bold;
    padding: 3px 3px 3px 3px;
    text-align: center;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	HTML TAGS 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

body
{
    margin: 1% 2% 1% 2%;
    background-color: #EEEEEE;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.8em;
    line-height: 1.5em;
    color: #000009;
}

p
{
}

hr
{
    color: #CCCCCC;
    background-color: #CCCCCC;
    height: 1px;
    border: 0;
}

blockquote
{
    padding: 0 0 0 12px;
    margin: 12px 0 0 0;
    background: url(../../images/bg-quote.png) no-repeat;
}

blockquote p
{
    margin: 2px 0;
}

cite
{
    font-size: 1.0em;
    margin: 0;
    padding: 0 0 0 0px;
}

fieldset
{
    padding: 15px;
}

legend
{
    color: #333333;
    padding: 5px 3px 10px 3px;
}

li	
{
}

table.dg
{
    border: solid 1px #CCCCCC;
    border-collapse: collapse;
}
table.dg td
{
    border: solid 1px #CCCCCC;
}
table.dg th
{
    border: solid 1px #CCCCCC;
    color: #FFFFFF;
    background: #999999;
    font-weight: bold;
    padding: 3px 3px 3px 3px;
}

ul	
{ 
    list-style: square; 
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	HEADINGS 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


h1, h2, h3, h4, h5, h6
{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5em;
    color: #000009;
}

h1
{
    font-size: 1.8em;
    margin: 0px 0 15px 0;
}

h2
{
    margin-top: 15px;
    font-size: 1.3em;
    border-bottom: 1px solid #aaa; 
    padding-bottom: 0.17em;
}

h3
{
    font-size: 1.1em;
}

h4
{
    font-size: 1.1em;
}

h5
{
    font-size: 1.1em;
}

h6
{
    font-size: 1em;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	IMAGES & PHOTOS

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

img
{
    border: none;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	MISC CLASSES

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.box
{
    background-color: #EEEEEE;
    border: solid 1px #CCCCCC;
    padding: 3px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.clear
{
    clear: both;
}

.dg
{
    font-size: 100%;
}

.FieldFormatHelp
{
    
    font-size: 90%;
    font-style: normal;
    color: #666666;
}

.FieldLabel
{
    color: #000009;
}

.HighlightGreen
{
    color: #008000;
}

.none
{
    display: none;
}

.TableSpacer
{
    padding: 0px 3px 0px 10px;
}

.warning 
{
    text-transform: none; 
    font-style: normal; 
    font-weight: normal; 
    color: #FF3333; 
} 
    
/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	LOGIN

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.MainLogin
{
    width: 25em;
    padding: 0px;
}

.MainLogin .AspNet-Login
{
    font-size: 100%;
    border: solid 1px #CCCCCC;
}

.MainLogin .AspNet-Login label, .MainLogin .AspNet-Login input
{
}

.MainLogin .AspNet-Login input
{
    font-size: 1em; /* lets the form element scale */
}

/* This rule is used when AutoAccessKey is true */
.MainLogin .AspNet-Login label em
{
    text-decoration: underline;
    font-style: normal;
}

.MainLogin .AspNet-Login .AspNet-Login-TitlePanel
{
    font-weight: bold;
    color: #000000;
    background: #EEEEEE;
    text-align: center;
    margin-bottom: 0.3em;
    padding: 5px;
}

.MainLogin .AspNet-Login .AspNet-Login-FailurePanel
{
    margin-top: 0.8em;
    margin-bottom: 0.5em;
    color: Red;
    text-align: left;
    padding: 5px 5px 0px 5px;
}

.MainLogin .AspNet-Login .AspNet-Login-RememberMePanel
{
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    text-align: center;
    padding: 0px 5px 5px 0px;
}

.MainLogin .AspNet-Login .AspNet-Login-UserPanel, .MainLogin .AspNet-Login .AspNet-Login-PasswordPanel, .MainLogin .AspNet-Login .AspNet-Login-SubmitPanel
{
    padding: 5px 5px 0px 5px;
}

.MainLogin .AspNet-Login .AspNet-Login-UserPanel, .MainLogin .AspNet-Login .AspNet-Login-PasswordPanel, .MainLogin .AspNet-Login .AspNet-Login-SubmitPanel
{
    text-align: right;
}

.MainLogin .AspNet-Login .AspNet-Login-UserPanel label, .MainLogin .AspNet-Login .AspNet-Login-PasswordPanel label
{
    white-space: nowrap;
}

.MainLogin .AspNet-Login .AspNet-Login-UserPanel input, .MainLogin .AspNet-Login .AspNet-Login-PasswordPanel input
{
    width: 15em;
}

.MainLogin .AspNet-Login .AspNet-Login-SubmitPanel input
{
    background: #EEEEEE;
    color: #000000;
    border: solid 1px #CCCCCC;
    padding: 0.4em;
}

.MainLogin .AspNet-Login .AspNet-Login-InstructionPanel, .MainLogin .AspNet-Login .AspNet-Login-HelpPanel, .MainLogin .AspNet-Login .AspNet-Login-PasswordPanel, .MainLogin .AspNet-Login .AspNet-Login-RememberMePanel, .MainLogin .AspNet-Login .AspNet-Login-CreateUserPanel, .MainLogin .AspNet-Login .AspNet-Login-PasswordRecoveryPanel
{
    padding: 5px 5px 5px 5px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	PASSWORD RECOVERY

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.MainPasswordRecovery
{
    width: 28em;
    padding: 0px;
}

.MainPasswordRecovery .AspNet-PasswordRecovery
{
    font-size: 100%;
    border: solid 1px #CCCCCC;
}

.MainPasswordRecovery .AspNet-PasswordRecovery label, .MainPasswordRecovery .AspNet-PasswordRecovery input
{
}

.MainPasswordRecovery .AspNet-PasswordRecovery input
{
    font-size: 1em; /* lets the form element scale */
}

/* This rule is used when AutoAccessKey is true */
.MainPasswordRecovery .AspNet-PasswordRecovery label em
{
    text-decoration: underline;
    font-style: normal;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-TitlePanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-TitlePanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-InstructionPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-InstructionPanel
{
    text-align: center;
    margin-bottom: 0.3em;
    padding: 5px;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-TitlePanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-TitlePanel
{
    font-weight: bold;
    color: #000000;
    background: #EEEEEE;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-InstructionPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-InstructionPanel
{
    color: #000000;
    background: #EEEEEE;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-FailurePanel
{
    color: Red;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-UserPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-UserPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-SubmitPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-SubmitPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-QuestionPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-AnswerPanel
{
    padding: 5px 5px 5px 5px;
    text-align: right;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-UserPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-QuestionPanel
{
    padding-right: 1.1em;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-UserPanel label, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-UserPanel span, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-QuestionPanel span, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-AnswerPanel label
{
    white-space: nowrap;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-UserPanel input, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-AnswerPanel input, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-UserPanel input, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-QuestionPanel input
{
    width: 15em;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-UserPanel input, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-QuestionPanel input
{
    border: none;
    background: White;
    color: #333333;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-UserName-SubmitPanel input, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-Question-SubmitPanel input
{
    border: solid 1px #CCCCCC;
    background: #EEEEEE;
    color: #000000;
}

.MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-HelpPanel, .MainPasswordRecovery .AspNet-PasswordRecovery .AspNet-PasswordRecovery-SuccessTextPanel
{
    padding: 5px 5px 5px 5px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*

	GRIDVIEW

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
.MainGridView .AspNet-GridView
{
    /*width:100%;*/
    margin-bottom: 10px;
}

.MainGridView .AspNet-GridView div.AspNet-GridView-Pagination, .MainGridView .AspNet-GridView div.AspNet-GridView-Pagination a, .MainGridView .AspNet-GridView div.AspNet-GridView-Pagination span
{
    color: #FFFFFF;
    background: #999999;
    font-weight: normal;
    padding: 2px;
}

.MainGridView .AspNet-GridView table
{
    border: solid 1px #CCCCCC;
    border-collapse: collapse;
    width: 100%;
}

.MainGridView .AspNet-GridView table thead tr th
{
    color: #FFFFFF;
    background: #999999;
    font-weight: bold;
    border: solid 1px #CCCCCC;
    padding: 3px 3px 3px 3px;
}

.MainGridView .AspNet-GridView table thead tr th a
{
    color: #FFFFFF;
}

.MainGridView .AspNet-GridView table tbody tr td
{
    /*color:#333333;*/
    background: #FFFFFF;
    padding: 2px 10px 2px 5px;
    border: solid 1px #CCCCCC;
    vertical-align:top;
}

.MainGridView .AspNet-GridView table tbody tr td.AlignCenter
{
    padding: 2px 10px 2px 10px;
    text-align: center; 
}

.MainGridView .AspNet-GridView table tbody tr td.AlignCenterMiddle
{
    padding: 2px 10px 2px 10px;
    text-align: center; 
    vertical-align:middle;
}

.MainGridView .AspNet-GridView table tbody tr td.NoWrap
{
    white-space: nowrap;
}

.MainGridView .AspNet-GridView table tbody tr td .RightColumn
{
    clear: both;
    float: right; 
}

.MainGridView .AspNet-GridView table tbody tr td .LeftColumn
{
    
    float: left; 
}

.MainGridView .AspNet-GridView table tbody tr.AspNet-GridView-Alternate td
{
    background: #F7F6F3;
}

.MainGridView .AspNet-GridView table tbody tr.AspNet-GridView-Alternate td.AlignCenterMiddle
{
    background: #FFFFFF;
}

.MainGridView .AspNet-GridView table tbody tr.AspNet-GridView-Selected td
{
}

.MainGridView .AspNet-GridView table tfoot tr td
{
}
   
.t {background: url("../../images/dot1.gif") 0 0 repeat-x; width: auto; margin: 0 0 15px 0;}
.b {background: url("../../images/dot1.gif") 0 100% repeat-x;}
.l {background: url("../../images/dot1.gif") 0 0 repeat-y;}
.r {background: url("../../images/dot1.gif") 100% 0 repeat-y;}
.bl {background: url("../../images/bl.gif") 0 100% no-repeat;}
.br {background: url("../../images/br.gif") 100% 100% no-repeat;}
.tl {background: url("../../images/tl.gif") 0 0 no-repeat;}
.tr {background: url("../../images/tr.gif") 100% 0 no-repeat; padding:10px;}

.t_fill {background: url("../../images/dot1.gif") 0 0 repeat-x #F2EAFA; width: auto; margin: 0 0 15px 0;}
.bl_fill {background: url("../../images/bl_fill.gif") 0 100% no-repeat;}
.br_fill {background: url("../../images/br_fill.gif") 100% 100% no-repeat;}
.tl_fill {background: url("../../images/tl_fill.gif") 0 0 no-repeat;}
.tr_fill {background: url("../../images/tr_fill.gif") 100% 0 no-repeat; padding:10px;}

.t_grey {background: url("../../images/dot_grey.gif") 0 0 repeat-x; width: auto; margin: 0 0 15px 0;}
.b_grey {background: url("../../images/dot_grey.gif") 0 100% repeat-x;}
.l_grey {background: url("../../images/dot_grey.gif") 0 0 repeat-y;}
.r_grey {background: url("../../images/dot_grey.gif") 100% 0 repeat-y;}
.bl_grey {background: url("../../images/bl_grey.gif") 0 100% no-repeat;}
.br_grey {background: url("../../images/br_grey.gif") 100% 100% no-repeat;}
.tl_grey {background: url("../../images/tl_grey.gif") 0 0 no-repeat;}
.tr_grey {background: url("../../images/tr_grey.gif") 100% 0 no-repeat; padding:10px;}

