@charset "utf-8";
/* CSS Document */
/* #cc0000 = red 
   #666699 = purple	
*/
body{
	margin: 0px auto;
	width: 1030px;
	padding: 10px;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #F2F2F2; /* off white */
}

#wrapper{
	/* box shadow only on the left and right sides */
	box-shadow: 6px 0 5px  -5px #222 , -6px 0 5px  -5px #222;   
	-moz-box-shadow: 6px 0 5px  -5px #222 , -6px 0 5px  -5px #222;   
	-webkit-box-shadow: 6px 0 5px  -5px #222 , -6px 0 5px  -5px #222;   
	width:1030px;
	background-color: #F2F2F2; /* off white */
	float: left;
}

#head{
	height: 76px; /* height of the image */
	background-color: #e7b3ca; /* pink, */
	padding: 10px;
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	text-align: center;
}

#head h2{
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	color: #fff;
}

#content{
	padding: 10px;
	background-color: #F2F2F2;	/* off white */
	width: 780px;
	height: 450px;
	margin-left: 225px;
	color:#000;
}

#content img{
	/* MedGuide Cover */
	border:1px solid #000;
	float: left;
	margin: 15px;
}

#content a,
#content a:hover,
#content a:visited{
	color:#000;
}

#content table{
	/* gives the cells room and spaces them appropriately */
	border-collapse:separate; 
	border-spacing:1.25em;
}

#content td{
	padding: 20px;
	margin: 20px;
	background-color:#e7b3ca; /* pink color */
	color: #F2F2F2;
	border-radius: 5px;
	text-align:center;
}

#content td:hover{
	background-color:#e7b3ca; /* pink color */
	color: #F2F2F2;
	border-radius: 5px;
	text-align:center;
	
}

#content td a,
#content td a:visited{
	color: #F2F2F2;
	text-decoration: none;
	font-weight: bold;
}

#content td a:hover{
	color: #F2F2F2;
	text-decoration: underline;
}

#leftcolumn{
	margin-top: 25px;
	width: 225px;
	float: left;
	padding: 0px;
	background-color: #e7b3ca; /* pink color */
}

.pad{
	padding-right:5px;
	margin-right:5px;
}

#footer{
	border-top: 3px solid #000;
	border-bottom: 3px solid #000;
	padding: 10px;
	height: 75px;
	color: #F2F2F2;
	text-align: center;
	background-color: #e7b3ca; /* pink color */
}

#footer a,
#footer a:visited{
	color: #F2F2F2;
	text-decoration: none;
}

#footer a:hover{
	color: #F2F2F2;
	text-decoration: underline;
}

a,
a:visited{
	color:#06F;
	text-decoration:underline;
}

a:hover{
	color:#03C;
	text-decoration:none;
}

span {
	font-weight:normal;
	font-style:italic;
}

/* MENU SYSTEM */

.sidebarmenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none; /* REMOVE BULLETS */
	font: bold 13px Verdana;
	width: 225px; /* Main Menu Item widths */
}
 
.sidebarmenu ul li{
	position: relative;
}

/* Top level menu links style */
.sidebarmenu ul li a{
	display: block;
	overflow: auto; /*force hasLayout in IE7 */
	color: #F2F2F2;
	text-decoration: none;
	padding: 6px;
	border-bottom: 1px solid #e7b3ca; /* pink color */
	border-right: 1px solid #e7b3ca; /* pink color */
	border-left: 4px solid #e7b3ca; /* pink color */
	border-right: 4px solid #e7b3ca; /* pink color */
}

.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{
	background-color: #e7b3ca; /* pink background of tabs (default state)*/
	border-right: 1px solid #e7b3ca; /* pink color */
}

.sidebarmenu ul li a:visited{
	color: #F2F2F2;
}

.sidebarmenu ul li a:hover{
	background-color: #e7b3ca; /* pink color */
	border-left: 4px solid #e7b3ca; /* pink color */
	border-right: 4px solid #e7b3ca; /* pink color */
}

/*Sub level menu items */
.sidebarmenu ul li ul{
	position: absolute;
	width: 225px; /*Sub Menu Items width */
	top: 0;
	visibility: hidden;
}

.sidebarmenu a.subfolderstyle{
	background: url(file:///Z|/Sites/lubbockmedguide/medguide-2016/right.gif) no-repeat 97% 50%;
}

 
/* Holly Hack for IE \*/
* html .sidebarmenu ul li { float: left; height: 1%; }
* html .sidebarmenu ul li a { height: 1%; }
/* End */