
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
    width: 900px;
	padding-left: 100px;
	height: 110px;
	float: left;
	overflow: hidden;
}

/* accordion header */
#accordion a{
    float:left;
    cursor: pointer;
	padding-top: 40px;
	width: 116px;
	height: 66px;
	border: 1px solid #d1d3d4;
	font-size: 20px;
	color: #b45341;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
}

/* currently active header */
#accordion a.current {
	background: #b45341;
	border: 1px solid #b45341;
	color: #fff;
}

/*
  accordion pane. should initially have zero width and display:none.
  the first pane should override these with inline style
  */
#accordion #loc-cont{
    width: 0px;
    float: left;
    display: none;
    margin-right: 10px;
	padding-left: 15px;
	background: #fff;
}

/* content inside a pane should have fixed width */

#loc-cont div{
	float: left;
    width: 220px;
	margin-right: 20px;
}

#loc-cont div h4{
	color: #b45341;
	text-transform: uppercase;
}
#loc-cont div p{
    font-size: 12px;
	line-height: 18px;
}
	 #loc-cont div p strong{
		color: #393939;
		text-transform: uppercase;
	}