/* page styling, unimportant for the menu. only makes the page looks nicer */
body {
	font-family: Arial, sans-serif;
	background-image: url('/images/Back_slice4.gif');
	background-color: #ffffff;
	background-repeat: repeat-x;
	

}

h1, h2, h3, p, ul, ol, blockquote { text-align:left; }

h1  { text-align: left }
h2 {font-size: 1.25em; line-height: .5em;}
h3 {font-size: 1.15em;}

.navbg
{
	margin: 0px;
	background-color: #000;

}


#container
{
width: 95%;
margin: 2px auto;
background-color: #ffffff;
color: #333;
border: 0px solid gray;
/* line-height: 130%; */
min-width: 935px;
}

#top
{
padding: 0em;
margin: 0px;
/*background-color: #fff442;*/
background-repeat: repeat-x;
background-image: url('/images/logo_slice.gif');
min-width: 750px;
}

#navbar
{
font-size: 82%;
background-color: #fff442;
min-width: 750px;
margin-top: -5px;
margin-bottom: 0px;
}

#navbar h1, ul, img
{
padding: 0;
margin: 0;
}

#content
{
text-align: center;
float: left;
width: 98%;
margin: 0px;
padding: 4px;

}

#content ul, ol
{
padding-left: 2.5em;
}

img.border {
	padding: 3px;
}
#footer
{
clear: both;
margin: 0;
padding: .5em;
color: #333;
background-color: #ddd;
border-top: 1px solid gray;
}

#leftcol
{
float: left;
width: 300px;
margin: 0;
padding: 1em;
}

#leftcol ol, ul
{
padding-left: 2em;
}

#rightcol
{
margin-left: 340px;

border-left: 1px solid gray;
padding: 1em;
max-width: 36em;
min-width: 400px;
}

#rightcol ul, ol
{
padding-left: 2.5em;
}

#leftcol p { margin: 0 0 1em 0; }
#rightcol h2 { margin: 0 0 .5em 0; }

#formbox {
background-color: #999;
}

#formbox .xb2, #formbox .xb3, #formbox .xb4 {background:#42322D; border-left:1px solid #42322D; border-right:1px solid #42322D;}
#formbox .xb1 {margin:0 5px; background:#42322D;}


#sponsor
{
/* Style for sponsored tag box */
clear: both;
margin:10px auto;
text-align: left;
padding: 3px;
color: #333;
background-color: #fff;
border: 1px solid gray;
width: 500px;
height: 70px;

}

#sponsor p {
	font-size: 10px;
	margin-top: 0px;
}

#sponsor img {
	padding-left: 5px;
	padding-right: 5px;
}

#license
{
/* Style for sponsored tag box */
clear: both;
margin:10px auto;
text-align: left;
padding: 3px;
color: #333;
background-color: #FFF;
border: 1px solid gray;
width: 200px;
height: 70px;

}

#license p {
	font-size: 12px;
	margin-top: 0px;
}

#license img {
	padding-left: 5px;
	padding-right: 5px;
}







/* Style for colored rows in the shopping cart */
.color {
	background-color: #ead29f;
}


.error {
	background-color: #ff3366;
}

/* Style for start here links on index page */

.start_here {
	text-align: left;
	font-size: 90%;
	list-style-type: none;
	display: block;
	padding-bottom: 3px;
	padding-top: 2px;
	padding-left: 7px;
	margin: 0px;
	background: #440000;
}

.start_here li {
	margin-bottom: .5em;
}
.start_here a {
	text-decoration: none;
	color: #fff;
}

.start_here a:hover, .start_here li:hover>a {
	color: #FFB6C1;
}
/* *** End of Start Here links *** */

/* ***Start of styling for rounded corners on start here links *** */

.spiffy{display:block}
.spiffy *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#660000}
.spiffy1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #919191;
  border-right:1px solid #919191;
  background:#3f3f3f}
.spiffy2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #e5e5e5;
  border-right:1px solid #e5e5e5;
  background:#303030}
.spiffy3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #303030;
  border-right:1px solid #303030;}
.spiffy4{
  border-left:1px solid #919191;
  border-right:1px solid #919191}
.spiffy5{
  border-left:1px solid #3f3f3f;
  border-right:1px solid #3f3f3f}
.spiffyfg{
  background:#660000}

/* *** End of spiffy links links *** */



/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0px;
	padding: 0px;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu li {
	margin: 0px;
	padding: 0;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}

.menu li:hover {
	z-index: 10000;	/* ...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 li {
	float: none;/* items of the nested menus are kept on separate lines */
}

.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 */
	top: 100%;	/* 1st level go below their parent item */
}

.menu li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* -- 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(/images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */






/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.xtop, .xbottom {display:block; background:transparent; font-size:1px;}
.xb1, .xb2, .xb3, .xb4 {display:block; overflow:hidden;}
.xb1, .xb2, .xb3 {height:1px;}
.xb2, .xb3, .xb4 {background:#42322D; border-left:1px solid #42322D; border-right:1px solid #42322D;}
.xb1 {margin:0 5px; background:#42322D;}
.xb2 {margin:0 3px; border-width:0 2px;}
.xb3 {margin:0 2px;}
.xb4 {height:2px; margin:0 1px;}

input.styled {
	background-color: #7c0000; 
	font-weight: bold; 
	font-size: 90%; 
	color: white;}

input.textstyled {
	font-size: 90%;
	}


.menu, .menu ul li {
	color: #eee;
	background: #42322D;
}

.menu ul {
	width: 11em;
}

.menu i { 
	font-style: normal;
	text-decoration: none;
	color: #eee;
	padding: .3em .4em;
	display: block;
	position: relative;

}

.menu a {
	text-decoration: none;
	color: #eee;
	padding: .3em .4em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #fef200;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #7c0000;
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}


.searchform{display:block}
.searchform *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  background:#999}
.searchform1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  border-left:1px solid #d39591;
  border-right:1px solid #d39591;
  background:#b2463f}
.searchform2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;
  border-left:1px solid #f4e6e5;
  border-right:1px solid #f4e6e5;
  background:#ac3730}
.searchform3{
  margin-left:1px;
  margin-right:1px;
  border-left:1px solid #ac3730;
  border-right:1px solid #ac3730;}
.searchform4{
  border-left:1px solid #d39591;
  border-right:1px solid #d39591}
.searchform5{
  border-left:1px solid #b2463f;

  border-right:1px solid #b2463f}
.searchformfg{
  margin: 10px;
  background:#999;
  text-align: center;
  }

div.box {
	display: block;
	float: left;
	padding: 2px 10px 2px 10px;
	border: 2px;
	border-color: #42322D;
	border-style: solid;
	font-size: 1em;
	margin: 2px 10px 10px 2px;
  }


div.float {
	text-align: left;
	display: inline;
	float: left;
	padding: 2px 10px 2px 10px;
	border: 2px;
	border-color: #42322D;
	border-style: solid;
	font-size: 1em;
	margin: 2px 10px 10px 2px;
  }
  
div.float p.title {
	margin: 0px;
	text-align: center;
	font-weight: bold;
	color:#FFFFFF;
	background-color:#7c0000;
  }

div.float td {
	vertical-align: top;
}

div.orgdetail {
	text-align: left;
	display: inline;
	float: left;
	padding: 2px 10px 2px 10px;
	font-size: 1em;
	margin: 2px 10px 10px 2px;
  }
  
div.orgdetail p.title {
	margin: 0px;
	text-align: center;
	font-weight: bold;
	color:#FFFFFF;
	background-color:#7c0000;
  }


/* Special Classes for tag update forms  */

div.ownerfloat {
	width: 95%;
	min-width: 500px;
	text-align: left;
	display: inline;
	float: left;
	padding: 2px 10px 2px 10px;
	border: 2px;
	border-color: #42322D;
	border-style: solid;
	font-size: 1em;
	margin: 2px 10px 10px 2px;
  }

div.ownerfloat p.title {
	margin: 0px;
	text-align: center;
	font-weight: bold;
	color:#FFFFFF;
	background-color:#7c0000;
  }

div.ownerfloat td {
	vertical-align: top;
}

div.rtcolfloat {
	width: 92%;
	min-width: 360px;
	text-align: left;
	display: inline;
	float: left;
	padding: 2px 10px 2px 10px;
	border: 2px;
	border-color: #42322D;
	border-style: solid;
	font-size: 1em;
	margin: 2px 10px 10px 2px;
  }

div.rtcolfloat p.title {
	margin: 0px;
	text-align: center;
	font-weight: bold;
	color:#FFFFFF;
	background-color:#7c0000;
  }

div.rtcolfloat td {
	vertical-align: top;
}


/* End Special Classes for tag update forms  */


/* Accordion Styles */
* {margin:0; padding:0}

#accordion {width:459px; margin:50px auto}
.accordion {width:459px; font:12px Verdana,Arial; color:#033}
.accordion dt {width:439px; border:2px solid #9ac1c9; padding:8px; font-weight:bold; margin-top:5px; cursor:pointer; background:url(images/header.gif)}
.accordion dt:hover {background:url(images/header_over.gif)}
.accordion dd {overflow:hidden; background:#fff}
.accordion span {display:block; width:425px; border:2px solid #9ac1c9; border-top:none; padding:15px}

#accordion2 {width:259px; margin:50px auto; border:1px solid #333; border-top:none}
.accordion2 {width:259px; font:12px Verdana,Arial; color:#333}
.accordion2 dt {width:247px; padding:4px 6px; font-weight:bold; cursor:pointer; background-color:#666; background-image:url(images/arrow_down.gif); background-position:right center; background-repeat:no-repeat; color:#fff; border-top:1px solid #333}
.accordion2 dt:hover {background-color:#555}
.accordion2 .open {background-color:#444; background-image:url(images/arrow_up.gif)}
.accordion2 dd {overflow:hidden; background:#fff}
.accordion2 span {display:block; width:229px; border-top:none; padding:15px}
/* End Accordion Styles */


/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */
