@charset "utf-8";
/* CSS Document */

.container {
   height: auto;
   overflow: hidden;
}

.right {
    width: 200px;
    float: right;
    background: #aafed6;
}

.left {
    float: none; /* not needed, just for clarification */
    background: #e8f6fe;
    /* the next props are meant to keep this block independent from the other floated one */
    width: auto;
    overflow: hidden;
}​​

#centeredmenu {
   float:left;
   width:100%;
   background:#fff;
   border-bottom:4px solid #000;
   overflow:hidden;
   position:relative;
}
#centeredmenu ul {
   clear:left;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   left:50%;
   text-align:center;
}
#centeredmenu ul li {
   display:block;
   float:left;
   list-style:none;
   margin:0;
   padding:0;
   position:relative;
   right:50%;
}
#centeredmenu ul li a {
   display:block;
   margin:0 0 0 1px;
   padding:3px 10px;
   background:#666;
   color:#000;
   text-decoration:none;
   line-height:1.3em;
}
#centeredmenu ul li a:hover {
   background:#369;
   color:#fff;
}
#centeredmenu ul li a.active,
#centeredmenu ul li a.active:hover {
   color:#fff;
   background:#000;
   font-weight:bold;
}

.directions {
	float: left;
	width: 300px;
	font-size: 12px;
}
.directions p {
	margin-top: 0;
}
.qrcode {
	float: left;
	margin-right: 35px;
	width:181px;
	height:308px;
	background-color: #2e0e35;
}
.qrcode p {
	color:#000;
	font-size:18px;
	font-weight: bold;
}
.qrcode p.small {
	font-size: 12px;
}

.clear {
	background: none;
	clear: both;
}

.wrapper {
	width: 980px;
	background: none;
	margin: 0 auto;
}

.contactform {
	width: 420px;
	float: left;
	color: #FFFFFF;
	margin-right: 35px;
}