  /* css reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1.5;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* global styles */

body {
	background-color: #121212;
	background-image: url(/faculty/uzzi/htm/images/background_uzzi3.jpg), url(/faculty/uzzi/htm/images/background_uzzi2.jpg);
	background-repeat: no-repeat, repeat-x;
	font-size: 12px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 20px;
}
h1, h2, h3, h4, h5, h6, p {
	padding: 0 0 18px 0
 }
h1 {
	font-size: 16px;
	color: #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	}
h2 {
	font-size: 14px;
	color: #666666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	}
p {
	}
	
ol {
	padding: 6px 0 18px 0;
	margin: 0 0 10px 0;
	}
ul {
	padding: 6px 0 18px 0;
	margin: 0 0 12px 0;
	list-style-type: circle;
	}
li	{
	padding: 0 0 4px 0;
	}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
strong {
	font-weight:bold
}
em {
	font-style: italic
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #06C;
	text-decoration: none; 
}
a:visited {
	color: #06C;
	text-decoration: none;
}
a:hover, a:active, a:focus { 
	color: #06C;
	text-decoration: underline;
	background: none;
}

/* layout styles */

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 950px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	background: #ffffff url(../images/background_footer.png) bottom no-repeat;
}

/* ~~the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo~~ */
.header {
	background: #6F7D94 url(../images/uzzi-header.jpg);
	padding: 0;
	height: 134px
}

/* ~~ This is the layout information. ~~ */
.content {
	padding: 15px 15px 5px 15px;
	min-height: 500px;
}
.content a:link {
	color: #06C;
	text-decoration: none; 
}
.content a:visited {
	color: #06C;
	text-decoration: none;
}
.content a:hover, a:active, a:focus { 
	color: #06C;
	text-decoration: underline;
	background: none;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 5px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
.content p {
	padding: 0px 40px 18px 0px
}

/* ~~ The footer ~~ */
.footer {
	padding: 15px 15px 5px 15px;
	border-top: #333333 6px solid;
	margin: 0 0 10px 0;
	font-size: 11px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 16px;
}
.footer a:link {
	color: #000000;
	text-decoration: none; 
}
.footer a:visited {
	color: #000000;
	text-decoration: none;
}
.footer a:hover, a:active, a:focus { 
	color: #06C;
	text-decoration: underline;
	background: none;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin: 0 0 10px 15px;
	width: 280px;
}
.fltrt-img { 
	float: right;
	margin: 0 0 20px 15px;
	padding: 10px 10px 5px 10px;
	width: 400px;
	border: solid 1px #ccc;
	color: #999999;
	font-size: 10px;
	text-align: right;
	-moz-border-radius: 10px;
   	-webkit-border-radius: 10px;
  	-khtml-border-radius: 10px;
    border-radius: 10px;
}

.fltrt-footer {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	text-align: right;
}
.fltrt-header {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
	}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* ~~ home page boxes~~ */
.homebox1 { 
	padding: 0;
	margin: 0 0 15px 0;
	width: 280px;
	border: 1px solid #CCC;
	font-size: 11px;
}
.homebox1 p.heading {
 	color: #ffffff;
	background-color: #486AAB;
	padding: 8px 15px 8px 15px;
	margin: 0 0 15px 0;
	font-weight: bold;
}

.homebox1 ul {
	list-style-image:url(/faculty/uzzi/htm/images/listbullet.png);
	font-size: 11px;
}
.homebox2 { 
	padding: 0;
	margin: 0;
	width: 280px;
	border: 1px solid #CCC;
	font-size: 11px;
}
.homebox2 p.heading {
 	color: #ffffff;
	background-color: #87AB3E;
	padding: 8px 15px 8px 15px;
	margin: 0 0 15px 0;
	font-weight: bold;
}
.homebox2 ul {
	list-style-image:url(/faculty/uzzi/htm/images/listbullet2.png);
	font-size: 11px;
}
.homebox3 {
	padding: 9px 15px 0 15px;
	margin: 15px 0 15px 0;
	width: 593px;
	border: 1px solid #CCC;
	font-size: 11px;
	background: url(/faculty/uzzi/htm/images/bioboxbg.png);
}

.homebox3 p {
		padding: 0 0 18px 0
}

/* ~~ navigation bar ~~ */

ul.menu
{
	list-style-type:none;
	margin:0;
	padding:0;
	overflow:hidden;
	position: absolute;
	top: 97px;
	width: 950px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
ul.menu li
{
float:left;
}
ul.menu li a:link,a:visited
{
display:block;
width:114px;
font-weight:bold;
color:#FFFFFF;
text-align:center;
padding:8px 0 0 0;
text-decoration:none;
text-transform:uppercase;
height: 29px;
border-right: solid 1px #CCC;
}
ul.menu li a:hover,a:active
{
background: url(/faculty/uzzi/htm/images/bgmenu.png);
}
ul.menu li a.end:link,a.end:visited
{
border-right: hidden;	
}
ul.menu li a.long:link,a.long:visited
{
width:145px;
}

ul.menu li a.special:link, a.special:visited
{
background: url(/faculty/uzzi/htm/images/bgmenu.png);
}

/* ~~ miscellaneous ~~ */

.media img {
	padding: 4px 10px 25px 0;
}

#bordertable1 {border: 1px solid #CCCCCC; padding: 10px}

#bordertable1 td {border-bottom: 1px solid #CCCCCC; padding: 4px}
