.clear {
	clear: both;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
img {
	border: 0;
}
ul {
	margin: 0;
	padding: 0;
}
li {
	list-style: none;
}

/*------------------------------------*\
FIXED FOOTER
\*------------------------------------*/
* {
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
	background: url('../images/pattern.png') repeat;
}
#wrap {
	min-height: 100%;
	background: #fff;
	margin: 0 auto;
	width: 1000px;
	-webkit-box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 5px 10px rgba(0, 0, 0, 0.2);
}
#main {
	padding-bottom: 46px;
}
#footer {
	position: relative;
	margin-top: -46px;
	height: 46px;
	clear: both;
}

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
	content:"";
	height: 100%;
	float: left;
	width: 0;
	margin-top: -32767px;/* thank you Erik J - negate effect of float*/
}

/*------------------------------------*\
GENERAL LAYOUT
\*------------------------------------*/
body {
	margin: 0;
	padding: 0;
	font-family: 'Conv_Gotham-Book',Sans-Serif;
	color: black;
	font-size: 12px;
}
.container {
	margin: 0 auto;
	width: 948px;
	padding: 26px;
}
.container.body-copy {
	padding: 36px 26px;
	font-size:10pt;
}
.container, .navigation {
	background: #fff;
}
.body-copy h1 {
	border-bottom: 1px dotted #929292;
	margin: 0;
	padding: 0 0 10px 0;
	font-weight: normal;
	font-family: 'Conv_Gotham-Medium';
	font-size: 10pt;
	text-transform: uppercase;
	color: #333333;
	margin-bottom: 26px;
}
.body-copy h1 span{
	color: #929292;
}
#logo {
	background: url('../images/hopkins-consultants.gif') top left no-repeat;
	width: 431px;
	height: 75px;
	display: block;
}
#phone {
	font-family: 'Conv_Gotham-Medium';
	font-size: 20pt;
	float: right;
	margin-top: 27px;
}
#phone span{
	display:block;text-transform:uppercase;font-size:16.5pt;
}
#navigation {
	height: 20px;
	background: #fff;
}
#navigation .inner {
	background: #4673b4;
	height: 20px;
	padding: 10px;
}
#footer {
	text-transform: uppercase;
	color: #000;
	font-family: 'Conv_Gotham-Medium';
}
#footer p {
	margin: 0 auto;
	width: 948px;
	padding: 10px 0;
	font-size: 8pt;
	border-top: 1px dotted #929292;
}
#footer p span {
	color: #929292;
	padding: 0 10px;
}

.body-copy{
	color:#3a3a3a;
}
.body-copy .layout-right{
	float:right;width:560px;
}
.body-copy p{
	margin: 0 0 15px 0;line-height:17pt;
}
.body-copy ul li{
	list-style: disc;margin-left:15px;margin-bottom:0;
}
.body-copy .slide-show-left{
	float:left;width:362px;height:400px;
}
.body-copy .slide-show-left img{
	position:absolute;border:1px solid #929292;
}

/*------------------------------------*\
	LAYOUTS
\*------------------------------------*/

.project span{
	display:block;
}

/*------------------------------------*\
	NAV / DROP DOWN
\*------------------------------------*/
#nav {
	list-style: none;
	margin-bottom: 10px;
	width: 100%;
}
#nav li {
	float: left;
	margin-right: 10px;
	position: relative;
	width: 146px;
}
#nav a {
	display: block;
	padding: 3px 0;
	color: #ffffff;
	border-top: 1px solid #fff;
	text-transform: uppercase;
	font-size: 8.5pt;
	font-family: 'Conv_Gotham-Medium';
	letter-spacing: 1px;
}
#nav li.last{
	margin-right:0;
}
#nav a:hover {
	color: #fff;
	background: #4673b4;
}
#nav ul {
	background: #fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position: absolute;
	left: -9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	z-index: 5;
}
#nav ul li {
	padding-top: 1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a {
	white-space: nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	float:left;
	width: 165px;
	padding-left: 5px;
}
#nav li:hover ul {/* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
#nav li:hover a {/* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
background:#4673b4;
text-decoration: underline;
}
#nav li:hover ul a {/* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
text-decoration:none;
}
#nav li:hover ul li a:hover {/* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#333;
}
