﻿/* ######### Default class for drop down menus ######### */

.anylinkmenu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
border-top-width: 0;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #000;
width: 200px; /* default width for menu */
}

.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.anylinkmenu ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid red;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
color:#FFFFFF;
font-size:11px
}

.anylinkmenu a:hover{ /*hover background color*/
background: red;
color: white;
}

/* ######### class for shadow DIV ######### */
.anylinkshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: #666666;
visibility: hidden;
margin-top: -3px;
margin-left: -3px;
}



/* ######### Category Dropdown Menu ######### */
.category{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
border-top-width: 0;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #fff;
width: 200px; /* default width for menu */
margin-top: -2px;
}

.category ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.category ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid #ccc;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
color:#333;
font-size:11px
}

.category a:hover{ /*hover background color*/
background: red;
color: white;
}

/* ######### class for shadow DIV ######### */
.categoryshadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: #666666;
visibility: hidden;
}

----------

/* ######### Create Poll Dropdown Menu ######### */

.create_poll_menu{
position: absolute;
left: 0;
top: 0;
visibility: hidden;
border: 1px solid black;
border-top-width: 0;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: black;
width: 200px; /* default width for menu */
margin-top: -1px;
}

.create_poll_menu{
	color:#FFFFFF;
	font-size: 13px;
	text-decoration: none;
	padding: 7px 36px;
	text-align: center;
}

.create_poll_menu:hover{
	color:#FFFFFF;
	background-color:#000000;
}

.create_poll_menu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

.create_poll_menu ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid red;
padding: 2px 0;
text-decoration: none;
font-weight: bold;
text-indent: 5px;
color:#FFFFFF;
font-size:11px;
text-align: center;
}

.create_poll_menu a:hover{ /*hover background color*/
background: red;
color: white;
}

/* ######### class for shadow DIV ######### */
.create_poll_menushadow{ /*CSS for shadow. Keep this as is */
position: absolute;
left: 0;
top: 0;
z-index: 99; /*zIndex for shadow*/
background: #666666;
visibility: hidden;
}