﻿/*Horizontal menu formats*/

.menuhorizontal {
	font-size: small;
	border-width: thin;
	padding-top: .5em;
	padding-bottom: .5em;
	margin-top: 1em;
	margin-bottom: 2em;
	text-align: center;
	line-height: 2em;
	border-top-style: ridge;
	border-right-style: none;
	border-bottom-style: ridge;
	border-color: #C0C0C0;
	background-color: #FFF6BC;
}
.menuhorizontalwhite {
	font-size: small;
	border-width: thin;
	padding-top: .5em;
	padding-bottom: .5em;
	margin-top: 1em;
	margin-bottom: 2em;
	text-align: center;
	line-height: 2em;
	border-top-style: ridge;
	border-right-style: none;
	border-bottom-style: ridge;
	border-color: #C0C0C0;
	background-color: #FFFFFF;		
}



/**Navbar menu*/
.dropdown {
	list-style: none;
	font-weight: bold; /* Clear floats */;
	float: left;
}
/*.dropdown li{
	float: left;/
	/*position: relative;*/
	/*left:-1em;*/
}
.dropdown a {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	/*line-height: 2em;*/
	padding-left: 1em;
	padding-right: 1em;
	}
.dropdown a:hover{
	color: #FFFFFF;
	text-decoration: underline;
}


/*--- Dropdown Menu ---*/

.dropdown ul{
	margin: 0em;
	list-style: none;
	/*position: absolute;*/
	padding-left: 0;
	padding-right: 0;
	z-index: 8;
}
.dropdown ul li{
	padding-top: .5em/* Introducing a padding between the li and the a give the illusion spaced items */;
	padding-bottom: .5em;
	height: 2em;
	margin-left: 1em;
	width:100%;
background-image: url('../images/slice75.png');
}

}
.dropdown ul li:hover{
}
.dropdown ul a {
	white-space:nowrap;
	padding-left:1em;
	padding-right:1em;
	line-height: 2em;
}
.dropdown li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
.dropdown li:hover a {
	/* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	text-decoration: none;
}
.dropdown li:hover ul a{
}
.dropdown li:hover ul li a:hover{
	/* Here we define the most explicit hover states--what happens when you hover each individual link. */
background-position: center center;
	background-image: url('../images/slice.png');
	text-decoration: underline;
	background-repeat: inherit;
}

/*** REDPOPUPS***/


.redpopup {
	color: #FF0000;
}

a.redpopup span {
	left: -9999px;
	position: absolute;
	color: #000000;
}
a.redpopup:hover span {
	padding: 1em;
	display: block;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
	color: #FFFFFF;
	width: 25em;
	height: auto;
	position: absolute;
	left: 49.5em;
	border-radius: 1em;
	background-image: url('../images/slice.png');
	background-repeat: inherit;
}
/*******SIDEBAR MENU*/

.nav-main {
	border-color: #000000;
	border-width: 1em;
	border-radius: 1em;
}
.nav-main a {
	float:left;
	width:100%;
	padding: .5em;
	border: 1px solid #ddd;
	background: #eee;
	color: #000;
	text-decoration: none;
	margin-bottom:1em;
	}
.nav-main a:hover
/*.nav-main*/ {
	background:#000;
	color:#fff;
}
/**********************************/

/*ORIGINAL OF SIDEBAR MENU
.nav-main {
	display:table;
	border-collapse:collapse;
	width:100%;
	margin:0 0 20px;
}
.nav-main a {
	display: table-row;
	width: 1%;
	padding: 10px;
	border: 1px solid #ddd;
	outline: none;
	background: #eee;
	color: #000;
	text-decoration: none;
	vertical-align: middle;
	text-align: center;
}
.nav-main a:hover,
.nav-main a:focus {
	background:#000;
	color:#fff;
}


