/* CSS Document */

.arrowlistmenu{
	width: 210px; /*width of accordion menu*/
	margin-top:0px;
	margin-left:0px;
	margin-right:5px;
	padding-left: 5px;
	padding-top: 10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma, Arial, "MS Sans Serif", Verdana;
color: black;
background-color: #D4F0FC;
border:1px solid #000000;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
margin-top:5px;
}

.arrowlistmenu .menuheader a { /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma, Arial, "MS Sans Serif", Verdana;
color: black;
background-color: #D4F0FC;
border:1px solid #000000;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
cursor: hand;
cursor: pointer;
text-decoration:none;
border:0px
}

.arrowlistmenu .menuheader a:hover{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 12px Tahoma, Arial, "MS Sans Serif", Verdana;
color: black;
background-color: #D4F0FC;
border:1px solid #000000;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
cursor: hand;
cursor: pointer;
text-decoration:none;
border:0px
}


.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-color: #80d6fa;
border:1px solid #000000;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
background:  #013963 !important;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #013963 !important;
}

.arrowlistmenu ul li a{
	color: #ffffff; /*custom bullet list image*/
	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #FFFFFF;
	background-color: #f99d24;
	font-size: 12px;
	background-image: url(http://travelindiahub.com/java/arrowbullet.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.arrowlistmenu ul li a:visited{    /*hover sub menu sub places CSS*/
color: #ffffff;
}

.arrowlistmenu ul li a:hover{  /*hover sub menu sub places CSS*/
background-color: #03346C;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}




.side_arrow { float:right; position:relative; right:10px; bottom:14px; width:10px }

