/* CSS Document */

/* Vertical menu */

#accordion1 	{ margin:30px 0px; }

#menu li 		{ margin: 0 0 3px 0; list-style-type:none; }

#menu a {
	display: block;
	*display: inline-block;
  	*width:100%;
	width:100%;
	text-decoration: none;
	background:#F97C00;
	background-color:#FFCE9D;
	color: #fff;
	padding: 10px 5px;
	text-transform: uppercase;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:16px;
	}

#menu a:hover {
	color: #000;
	background:#F97C00;
	}

#menu .expandable { position: relative; }

#menu .expandable:before, #menu .expandable:after {
	content: '';
	position: absolute;
	right: 5px;
	margin-top: 5px;
	border-top: 6px solid #444;
	border-right: 6px solid transparent;
	border-left: 6px solid transparent;
	}

#menu .expandable:before {
	border-top-color: #fff;
	margin-top: 6px;
	}

#menu .expanded:after {
	border-top: 0;
	border-bottom: 6px solid #444;
	}

#menu .expanded:before {
    border-top: 0;
    border-bottom: 6px solid #fff;
	}

#menu ul a {
    background: #f2f2f2;
    text-transform:uppercase;
    font-weight: normal;
	}

#menu ul a:hover {
    background: #fafafa;
    color: #444;
	