/* =================================
Copyright 2009
Fifth Gear Marketing Systems Inc.  
DNN Skin Container - Victoria Specialty Hardware
Version: 1.0
================================== */    

/* GLOBAL DEFAULTS */

	* { margin: 0px; padding: 0px; }
	* a:hover { text-decoration: none; }
	body { background: #42768d url(img/background.gif) top repeat; }
	table { border-collapse: collapse; }	 
	body, input, textarea { font-size: 8.5pt; font-family: Verdana, Tahoma, 'Lucida Grande','Lucida Sans Unicode', Arial, Sans-Serif; color: #666; line-height: 1.3em; }
	a,
	a:visited,
	a:active { color: #edb012; text-decoration: none; }
	a:hover { color: #edb012; text-decoration: underline; }	

	object { outline:none; }
	#controlPanelContainer { padding: 0 0 8px 0; }

/* PAGE CONTAINER */

	#pageContainer { width: 986px; margin: auto;}
	#pageContainer .shadowTop { width: 911px; height: 38px; background: transparent url(img/shadowTop.png) top no-repeat; }
	#pageContainer .topText { padding: 12px 8px 0 0; text-align: right; color: #fff; font-size: 11pt; letter-spacing: .1em;}
	#pageContainer .shadowLeft { width: 38px; height: 690px; background: transparent url(img/shadowLeft.png) top no-repeat;}
	#pageContainer .shadowRight { width: 38px; height: 690px; background: transparent url(img/shadowRight.png) top no-repeat;}
	#pageContainer .shadowBottom { width: 903px; height: 38px; background: transparent url(img/shadowBottom.png) top no-repeat; text-align: right; padding: 4px 8px 0 0; color: #edb012; font-size: 8pt; letter-spacing: .1em; }

	#pageContainer .shadowBottom .sideBarLinks a,
	#pageContainer .shadowBottom .sideBarLinks a:visited,
	#pageContainer .shadowBottom .sideBarLinks a:active { text-decoration: none; }
	#pageContainer .shadowBottom .sideBarLinks a:hover { text-decoration: underline; }

	.pageBody { width: 911px; height: 614px; background-color: #42768d; }

	.contentBackgroundHome { background: transparent url(img/homeFlashImg01.jpg) top no-repeat;  }
	.contentBackgroundGreen { background: #7d8748 url(img/backgroundGreen.gif) top no-repeat; }
	.contentBackgroundGrey { background: #595a5c url(img/backgroundGrey.gif) top no-repeat; }
	.contentBackgroundRed { background: #6b241e url(img/backgroundRed.gif) top no-repeat; }
	.contentBackgroundOrange { background: #865930 url(img/backgroundOrange.gif) top no-repeat; }
	.contentBackgroundTan { background: #7c6850 url(img/backgroundTan.gif) top no-repeat; }				

	.pageContent { width: 683px; height: 424px; }


	#pageContainer .menuLoginLink { color: #fff; padding: 0px 10px 0; text-transform: lowercase; line-height: 1em;}
	#pageContainer .menuLoginLink { color: #fff; padding: 0px 10px 0; text-transform: lowercase; line-height: 1em;}	
	#pageContainer .menuLoginLink a,
	#pageContainer .menuLoginLink a:visited,
	#pageContainer .menuLoginLink a:active { color: #fff; text-decoration: none; }
	#pageContainer .menuLoginLink a:hover { color: #fff; text-decoration: underline; }	


/* HOME */

	.sideBarTop { width: 220px; height: 424px; background: transparent url(img/sideBarTop.gif) top no-repeat; }
	.sideBarLinks { padding: 36px 24px; font-size: 9pt; letter-spacing: .1em; line-height: 3em; }
	.sideBarLinks a,
	.sideBarLinks a:visited,
	.sideBarLinks a:active { color: #aca89f; text-decoration: none; }
	.sideBarLinks a:hover { color: #fff; text-decoration: underline; }
	.lineHorizontal { height: 7px; background-color: #fff; }
	.lineVertical { width: 8px; background-color: #fff; }		
	.sideBarBottom { width: 220px; height: 183px; background: transparent url(img/sideBarBottom.gif) top no-repeat; }
	.homeflashImg { background-color: #6f94a7; width: 220px; height: 424px;	}
	.introText { width: 611px; height: 111px; background: transparent url(img/introTextBackground.jpg) no-repeat; padding: 36px; font-size: 10pt; letter-spacing: .1em; line-height: 1.5em; }

/* CSS SIDEBAR MENU */	

/* - - - ADxMenu: BASIC styles - - - */

/* VERY IMPORTANT! Set this to appropriate value, either here on down in the design section */

.menu {	width: 10em; }

/* remove all list stylings */

.menu, .menu ul { margin: 0; padding: 0; border: 0; list-style-type: none; display: block; }

/* position each LI, thus creating potential IE.win overlap problem */
/* thus we need to apply explicit z-index here... */

.menu li { margin:0 ; padding: 0; border: 0; display: block; position: relative; z-index: 5; text-transform: lowercase; color: #ACA89F; }

.menu li .highlightOff { padding-left: 6px; }
.menu li .highlightOn { padding-left: 6px; color: #fff; /*  background-color: #575b4c; */ }

.menu li .sideMenu1 a,
.menu li .sideMenu1 a:visited,
.menu li .sideMenu1 a:active { color: #ACA89F; text-decoration: none; }
.menu li .sideMenu1 a:hover { color: #fff; text-decoration: none; }

.menu li .sideMenu2 a,
.menu li .sideMenu2 a:visited,
.menu li .sideMenu2 a:active { color: #fff; text-decoration: none; }
.menu li .sideMenu2 a:hover { color: #fff; text-decoration: underline; }


/* ...and here. this makes sure active item is always above anything else in the menu */
/* "white-space: normal" required to resolve IE7 :hover bug (z-index above is ignored if this is not present) see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */

.menu li:hover { z-index: 10000; white-space: normal; }

.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}

/* -- float.clear --
	force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu { width: 170px; font-size: 9pt; font-family: Verdana, Tahoma, 'Lucida Grande','Lucida Sans Unicode', Arial, Sans-Serif; color: #413e34;  }

.menu ul li { font-size: 8pt; background-color: #aca89f; padding: 5px 0; }
.menu ul { width: 170px;  border: 0px solid #fff; line-height: 1.2em; }
.menu a { text-decoration: none; color: #eee; padding: .1em .5em; display: block; }
.menu a:hover,
.menu li:hover >a { color: #fff; }

/* create borders around each item */

.menu li { border: 1px solid #515547; }

/* and remove the top border on all but first item in the list */

.menu>li + li,
.menu ul>li + li { border-top: 0; }

/* inset submenus, to show off overlapping */

.menu li:hover>ul { top: 5px; left: 90%; }

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu placed here to clarify the terminology I use when referencing submenus in posts 

.menu>li:first-child>a,
.menu li + li + li li:first-child>a { color: #567; }

*/

	

	



