.chromestyle{
	/*background: #000;  							--- SET MENU BACKGROUND COLOR  --- */
	background-image: url(images/paisley.jpg);
	height: auto;  					 			/* --- MENU  BAR HEIGHT  --- */
	width: 100%; 									/* --- SET MENU BAR WIDTH  --- */
	
	color: #fff;        									/* --- SET FONT COLOR  --- */
	font-family: Arial, Helvetica, sans-serif;	
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;        							/* --- SET FONT SIZE  --- */
	font-weight: normal;        						/* --- SET FONT WEIGHT  --- */
	text-align: left;        							/* --- SET FONT ALIGN  --- */

	text-decoration: none;        			/* --- SET FONT DEC  --- */
	letter-spacing: 0px;        				/* --- SET FONT SPACING  --- */
	
	margin-left: 0; 								/* --- MENU LEFT inset SPACING  --- */
	margin-right: 0; 								/* --- MENU RIGHT inset SPACING  --- */

	/*border: 0px solid #ffcc00; 				/* --- MENU BORDER AND COLOR  --- 
	border-bottom: 0px solid #191970; 		/* --- MENU BORDER BASE AND COLOR  --- */
}

.chromestyle ul li a{
	/*background-color: #000;				--- SET MENU BACKGROUND COLOR as above for overflow  --- */
	border-right: 1px solid #757575; /* --- MENU DIV LINE COLOUR AND THICKNESS SETTING  --- */
	line-height:28px;				 		/* --- TEXT  LINE HEIGHT  --- */
	color: #ccc;  				     		/* --- FONT COLOR  --- */
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	overflow: hidden;
	float: left;
}
.chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
	content: "."; 
	display: block;
	visibility: hidden;
	clear: both; 
}
.chromestyle ul{
	border: 0px solid #BBB;
	width: 100%;
	padding:0;
	margin:0;
	text-align: center;
}
.chromestyle ul li{
	display: inline;
}
.chromestyle ul li a:hover{
	color: #fff;
	background: #4F4F4F;
	text-decoration: underline;
/*background: url(chromebg-over12.gif) center center repeat-x; /*THEME CHANGE HERE*/
}
.chromestyle ul li a[rel]:after{ /*HTML to indicate drop down link*/
/*content: " v";
/*content: " " url(downimage.gif); /*uncomment this line to use an image instead*/
}


/* ---------------- Style for Drop Down Menu ---------------------------------------------- */
.dropmenudiv{
	width: 200px;					 	/* --- SET WIDTH FOR SUB MENU BLOCK  --- */
	background-color: #000;  		/* --- SET SUB MENU BACKGROUND COLOR  --- */
	position: absolute;
	top: 0;
	z-index: 100;
	visibility: hidden;
}
.dropmenudiv a{
	display: block;
	border-top: 1px solid #757575; /* --- MENU  DIV LINE SETTING  --- */
	color: #fff;						 /* --- SET FONT COLOR --- */
	padding: 4px;						 /* --- SET BLOCK PADDING COLOR --- */
	width: auto;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	text-indent: 3px;
}
* html .dropmenudiv a {/*IE only hack*/
	width: 100%;
	color: #fff;						/* --- SET FONT COLOR --- */
	background-color: #000;
}

.dropmenudiv a:hover{ 			
	color: #f1f1f1;					/* --- SET SUB MENU HOVER FONT COLOR --- */
	background-color: #4F4F4F;		/* --- SET SUB MENU HOVER BACKGROUND COLOUR ---*/
	text-decoration: underline;
}