/* CSS Document */
body {
	margin:0px 0px 0px 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#main {
	width:780px;
	margin-left:auto;
	margin-right:auto;
}

#main_left {
	width:15px;
	background-image:url(../images/shadow_l.jpg);
	background-repeat:repeat-y;
}

#main_right {
	width:15px;
	background-image:url(../images/shadow_r.jpg);
	background-repeat:repeat-y;
}

a {
	color:#FFD371;
	font-weight:normal;
	text-decoration:underline;
}

.link {
	color:#6287A4;
	text-decoration:underline;
	font-weight:bold;
}

h1 {
	color:#FFFFFF;
	font-size:20px;
	font-weight:bold;
	margin:0px;
	padding:5px 10px 5px 10px;
}

h2 {
	color:#FFFFFF;
	font-size:16px;
	font-weight:bold;
	margin:0px;
	padding:5px 10px 5px 10px;
}

h3 {
	font-size:14px;
	font-weight:bold;
	margin:0px;
	padding:0px;

}

.desc {
	font-size:12px;
	color:#FFFFFF;
	padding:0px 10px 5px 10px;
	text-align:justify;
}

.box {
	background:url(../images/panel.png);
	background-repeat:no-repeat;
	width:181px;
	height:217px;
	padding:18px 0px 0px 0px;
	color:#FFFFFF;
	font-size:11px;

}

.text {
	color:#FFFFFF;
}

.box p {
	color:#FFFFFF;
	padding:0px 3px 0px 20px;
	margin:2px 0px 0px 0px;
	font-size:11px;
}

.box a {
	color:#FFD371;
	font-weight:bold;
}

.onsale {
	color:#FFFF00;
	font-weight:bold;
}

.footer {
	font-size:10px;
}

.footer a {
	color:#FFD371;
}

/* menu style */
/* This is the part for the CSS menu - these settings are for a horizontal menu */
#dmenu{                         /* menu list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	margin: 0px;  /* space around the list container */
	padding: 0px;               /* space within the list container */
	position: static;           /* need this so that the z-index stuff works correctly */
    color: #000;                /* the default font color (not links) within the main menu container */
    z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
	line-height:23px;			/* height of the menu */
}
#dmenu li{                      /* top-level menu element */
	list-style-type: none;      /* disable the display of the list item bullets */
	float: left;                /* this is to allow for the horizontal main menu */
	background-color: #6287A4;     /* main menu item background color */
	color: #000;                /* main menu item font color (not links) */
	margin: 0px;                /* spacing between main menu items */
	padding: 0px;               /* padding within main menu items */
	display: block;
	white-space:nowrap;
	z-index: 20;
}

#dmenu ul {                     /* third-level (or greater) menu element list elements */
	position: absolute;         /* this is so that it doesn't push that page content around on hover */
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	display: none;
	width: 420px;               /* should be the same as #dmenu li width */
	background-color:#6287A4;  /* sub-menu default background color */
	border: #000 solid 0px;     /* the border around the sub-menu list */
	color: #000;                /* sub-menu default font color (not links) */
	z-index: 99;                /* want to be sure this is above the rest of the menu */
}

#dmenu ul li{                   /* second-level or greater menu element links */
	background-color:#6287A4;     /* default background color for sub-menu container */
	color: #000;                /* default font color (not links) for sub-menu container */
	border: none;               /* sub-menu item border settings */
	margin: 0px;                /* spacing between sub-menu containers */
	padding: 0px 5px 0px 5px;               /* This is for padding between menu items in the drop-downs */
	width: 420px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. */
	background-image:none;
	z-index: 30;
}

#dmenu li a{                    /* top-level menu element links */
	text-align: center;         /* text alignment in main menu item links */
	display: block;
	padding: 0px 0px 0px 0px;
	color:#FFFFFF;
	font-weight:bold;
	text-decoration:none;
}

#dmenu ul a {                   /* all the other level menu link elements */
	padding: 3px;
	margin: 0px;
	width: 420px;               /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. */
	display: block;
	text-align:left;
}

#dmenu a:hover,                 /* top-level hovering properties */
#dmenu li:hover{
	display: block;
/*	background-color: #ff0; */
	color:#FFFFFF;
/*	background-image:url(../images/menu_bg.jpg);
	background-position:right 25px; */
}

#dmenu ul li:hover,             /* higher level hovering properties */
#dmenu ul li a:hover{
	display: block;
	width: 420px;               /* should be set to the same value as #dmenu ul li width */
	background-color:#61594E;
/*	color: red; */
	background-image:none;
}

#dmenu ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: absolute;
	margin-left: 420px;         /* this should be the width of #dmenu ul li */
	margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
}

/* only non-MSIE browsers use this */
#dmenu ul li>ul,
#dmenu ul ul li>ul{
	margin-top: -2em;           /* should be set to the same as #dmenu ul ul margin-top */
}

/* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
#dmenu li:hover ul ul,              
#dmenu li:hover ul ul ul,
#dmenu li:hover ul ul ul ul,
#dmenu li:hover ul ul ul ul ul{
	display:none;
}

#dmenu li:hover ul,
#dmenu ul li:hover ul,
#dmenu ul ul li:hover ul,
#dmenu ul ul ul li:hover ul,
#dmenu ul ul ul ul li:hover ul{
	display:block;
}

li>ul {
	top: auto;
	left: auto;
}

.content {                      /* This is used for the content that will appear below the menu */
	clear: left;
}
/* End of menu style */

