
/*This style will be applied to the div element holding the menu*/
.custom {
  background-color: white;
}

/* Link styles*/

.custom a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 10pt;
  font-family: Verdana, Arial, sans-serif;
}

.custom a:hover {
  color: #993300;
}

/* Hide bullets in unordered list*/
.custom ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
  cursor:default;
}

/* Set li styles*/

.custom li {
  background-color: #CC6633;
  border: 1px solid #F60;
  width: 120px;
  /* this is to make the submenus position relative to this li */
  position: relative; 
  padding:0 0 0 6px;
  color:#FFF;
  font-weight:bold;
}

/* Mouseover li style*/
.custom li:hover {
  border: 1px solid #C60;   
  background-color: #F93;
  color:#930;
}
.custom ul ul li:hover {
  background-color: #fff;
  border:none;
}

/*Initially hide second level (or higher) pop-up*/
.custom ul ul {
  position: absolute;
  left:128px;
  top: 0;
  visibility: hidden;
  width:190px;
}
.custom ul ul ul {
	position:relative;
  	left:0;
  	visibility: hidden;
}

.custom ul ul li{
	border:none;
  	margin-left:6px;
	width:166px;
	background:url(../images/custom/bullet1.gif) left top no-repeat; 
	padding-left:12px;
	color:#000;
	font-weight:normal;
}
.custom ul ul p{
	margin:12px 0 0 0 ;
	padding:0;
	font-size:10px;
	font-weight:bold;
	border-top:1px solid #666;
	border-bottom:1px solid #666;
}

.custom ul ul ul li{
	color:#666;
	background:none;
	margin:0;
	list-style:circle inside;
	padding:0;
}
/*Mouseover: display second level (or higher) pop-up*/
.custom li:hover > ul {
  visibility: visible;
}
.custom li:hover > ul li >ul {
  visibility: visible;
}

.div_pic{
	float:left;
	width:350px;
}
.div_list{
	float:right; 
	width:316px
}

#custom_head h1{
	color:#000;
	background:none;
	font-size:18px;
	margin:0;
	padding:0;
	
}
#custom_head h2{
	background:none;
	font-size:14px;
	margin:0;
	padding:0 0 12px 0;
	
}
#custom_head p{
	padding:0;
	margin:0 0 12px 0;
}

.custom_col1{
	float:left;
	width:320px;
}

.custom_col2{
	float:right;
	width:320px;
}

