@import url("dlpButtons.css");
@import url("tables.css");

@charset "utf-8";
html {min-height: 100%;}
* {padding:0; margin:0; line-height:1ems;}
a:hover {color: #CC0000;}

body {
font:normal 0.75em/1.45em "Lucida Sans Unicode", "Lucida Grande", "Trebuchet MS", sans-serif;
	background-color:#3C4145;
	margin: 0 auto; /* zero the margin and padding to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	width:960px;
	border:#FFFFFF thin solid;

}


/* Tips for this Hybrid layout
1. Since the side columns em-based sizing is based on the user's default font size, you will want to be sure that background graphics in the columns take that into account. Built correctly, this is more accessible for those that need larger font sizes, since the width of the columns remains proportionate. If this is undesirable with your design, simply change the width to a pixel size and be sure to change the margins on the #mainContent div accordingly.
2. Since the sizing of side columns in this layout are based on the 100% font size in the body element, if you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the column widths will downsize proportionately. You may want to increase their widths, and the size of the #mainContent div's side margins, to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
4. The #container div is not necessary for this layout at the 100% width. You may want to use it to create faux columns or limit the width of the layout.
5. It is not neccessary to have the 100% width on the #container div since, by nature, a div takes up 100% of the available space. It is here so that if you want to decrease the size of the overall container - perhaps leaving a bit of margin on each side - this will already be available for adjustment.
*/
.thrColHybHdr #container {
	width: 100%;
	background: #FFFFFF;
	/*margin: 0 auto;  the auto margins (in conjunction with a width) center the page if needed */
	text-align: left;
}  
.thrColHybHdr #header {
	background: #003366;
	padding-top: 10px; 
	 /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	
} 
.thrColHybHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 35px 0 20px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#FFFFFF;
	font-size: 36px;
	font-weight:normal;
	text-transform:lowercase;
	text-decoration:none;
}

.thrColHybHdr #header h2 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0 30px 25px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#FFFFFF;
	font-size: 20px;
	text-decoration: none;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
*/
.thrColHybHdr #sidebar1 {
	float: left; 
	width: 20em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 0; /* top and bottom padding create visual space within this div */
}
.thrColHybHdr #sidebar2 {
	float: right; 
	width: 20em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 0; /* top and bottom padding create visual space within this div */
}
.thrColHybHdr #sidebar1 h3, .thrColHybHdr #sidebar1 p, .thrColHybHdr #sidebar2 p, .thrColHybHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColHybHdr #mainContent {
	margin: 0 10em 0 10em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 1em 10em 0.5em 10em; /* padding here creates white space "inside the box." */
} 

.thrColHybHdr #mainContent2 {  /* the right-hand col for a two-column set up with a left bar */
	margin: 0 1em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 1em 1em 0.5em 10em; /* padding here creates white space "inside the box." */
} 

.thrColHybHdr #mainContent1 {  /* the main column for a one-column set up  */
	margin: 0 1em 0 1em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 1em 1em 0.5em 1em; /* padding here creates white space "inside the box." */
} 

.thrColHybHdr #centercol {padding:10px;}

.thrColHybHdr #footer {
	background-color:#003366;
	height: 50px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColHybHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFFFFF;
}

.thrColHybHdr #footer ul li { float:left; overflow:hidden; text-indent:-900px; }
.thrColHybHdr #footer ul li a { display:block; height:29px; }
.thrColHybHdr #footer ul li.accessibility	 { background:url("../images/footer/accessibility.gif"); width:78px; }
.thrColHybHdr #footer ul li.colophon { background:url("../images/shared/footer/colophon.gif"); width:63px; }
.thrColHybHdr #footer ul li.contact-us { background:url("../images/shared/footer/contact-us.gif") ; width:72px; }
.thrColHybHdr #footer ul li.search { background:url("../images/shared/footer/search.gif"); width:49px; }
.thrColHybHdr #footer ul li.search-utd { background:url("../images/shared/footer/search-utd.gif"); width:76px; float:right; }
.thrColHybHdr #footer ul li.site-map { background:url("../images/shared/footer/site-map.gif"); width:60px; }
.thrColHybHdr #footer ul li.uni-home { background:url("../images/shared/footer/university-home.gif") ; width:89px; float:right; }
.thrColHybHdr #footer-bottom { background:url("../images/shared/footer/footer-bottom.gif") no-repeat; margin:0 -6px; height:34px; }
.thrColHybHdr #footer-bottom p { height:0; overflow:hidden; }


/* Miscellaneous classes for reuse */
.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-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.navigation {
	background-color:#999999;
	height: 41px;
	width: 100%;
	margin: 0;
	padding: 0;
}
.navigation a {
	background:url(images/nav.gif);
	border-right: 1px solid #666666;
	color:#FFFFFF;
	display: block;
	float: left;
	font: bold 1.1em sans-serif;
	line-height: 41px;
	padding: 0 20px;
	text-decoration: none;
}
.navigation a:hover {background-position: left bottom; color: #234;}

.navigation .selected {background-color:#CCCCCC; color:#CC0000;}

p,code,ul {padding-bottom: 3px;}

p.descr {
	font-style: italic;
}

li {list-style:inside; }

h1,h2,h3 {font-family: "Lucida Sans Unicode",sans-serif; padding-top:5px; padding-bottom:5px;
}

h1, h2 {
	font-size: 1.5em;
	color: #003366;
	text-decoration: underline;
}

h2 {
	font-size: 1.3em;
	line-height:normal;
	text-decoration: none;
}

h3 {font-size: 1.2em;}

.blue {
	color:#000066;
}

.code {
	background: #FFF;
	border: 1px solid #EEE;
	border-left: 6px solid #C1CAD3;
	color: #666;
	display: block;
	font: normal 1em Tahoma,sans-serif;
	line-height: 1.6em;
	margin-bottom: 12px;
	padding: 8px 10px;
	white-space: pre;
}

.blockquote {
	background: url(../images/quote.gif) no-repeat;
	display: block;
	font-weight: bold;
	padding-left: 28px;
}


.red {color:#CC0000; }

/* misc */
.clearer {clear: both;}

.left {float: left;}

.right {float: right;}

.noBorder {border:none;}

/************************* error and warning messages ******************/
.errorMsg, .errorMsgBlink, .successMsg, .warningMsg {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	color: #FFFFFF;
	vertical-align: middle;
	padding: 3px;
	margin: 5px 0px 5px 0px; 
	line-height: normal;
	background-color: #CC0000;
	font-weight: bold;
}
.errorMsgBlink { text-decoration: blink; }

.successMsg {
	color: #FFFFFF;
	background-color: #007E3A;
}

.warningMsg {
	color: #FFFFFF;
	background-color: #CC0000;
}



/* structure */
.container {
	background: #FFF;
	font-size: 1.2em;
	margin: 0 auto;
	padding: 0 10px 10px;
	width: 780px;
}

/* header */
.top {
/*	background: url(img/clouds.gif) repeat-x; */
background-color:#CCCCCC;
	padding: 25px 10px 0;
}

/* title */
.header {
	background: #FFF;
	font-size: 1.4em;
	height: 70px;
	margin: 10px auto 0px auto;
	padding: 10px 10px 5px;
	width: 780px;
	background-color: #003366;
}

.header h1 {
	color: #FFFFFF;
}



/* main */
.main {
	border-top: 4px solid #FFF;
	background: url(../images/bgmain.gif) repeat-y;
}

/* sub navigation */
.sidenav {
	float: right;
	width: 210px;
}
.sidenav h2 {
	color: #5A5A43;
	font-size: 1em;
	line-height: 25px;
	margin: 0;
	padding:0;
	padding-left: 12px;
	padding-bottom: 5px;
}
.sidenav ul {
	padding: 2px;
	border-top: 1px solid #EAEADA;
}
.sidenav li {border-bottom: 1px solid #EAEADA; list-style:none;}
.sidenav li a {
	color: #554;
	text-decoration: none;
	width: 95%;
	padding:0;
	list-style:none;
}


.sidenav li a:hover {
	background: #F0F0EB;
	color: #654;
	list-style:none;	
}

.sidenav ul.menu ul li a {
	color:#666666;
	font-size:11px;
	font-weight: normal;
	line-height:1.2em;
	border-bottom:none;
	border-top:none;
	}
	
	.sidenav ul.menu ul li a.last {
	color:#666666;
	font-size:11px;
	font-weight: normal;
	line-height:1.2em;
	}

/* content */
.content {
	float: left;
	margin: 10px 0;
	padding: 0 16px;
	width: 531px;
}
.content .descr {
	color: #664;
	font-size: 0.9em;
	margin-bottom: 6px;
}
.content li {
	list-style:  url(../images/li.gif);
	margin-left: 18px;
}


.content p {
	font-family: "Lucida Sans Unicode",sans-serif;
	font-size: 13px;
}

.contentFull {
	float: left;
	margin: 2px 0px;
	padding: 0 5px;
	width: 760px;
	}

/* footer */
.footer {
	color: #000000;
	font: 0.9em arial,sans-serif;
	text-align: left;
	line-height: 1.3em;
	background-color:#CCCCCC;
	padding:5px;
	
}
.footer a,.footer a:hover {color: #CCCCCC;}

/********************************menus with arrows *************************************/

.sideBox {
	margin: 5px 5px 5px 5px;
	padding:4px;
	border:1px #999999 solid;
	background-color:#FFFFFF;
}

.sideBox h2 {
	font-family: "Lucida Sans Unicode",sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-variant: small-caps;
	text-align: left;
	padding-bottom:2px;
	margin-top:5px;
	color:#000000; }

.sideBox p.small {
margin:0 0 1px 0;
	font-family: "Lucida Sans Unicode",sans-serif;
	font-variant:normal;
	font-size: 10px;
	font-weight: bold;
	text-align: left;
	padding-bottom:0px;
	margin-top:0px;
	color:#000000;
	line-height: 1.2em;
}


#catNews, 
#catOutreach, 
#cat_else, #cat_nano, #cat_sponsors, #cat_researchHighlights, #cat_2, #cat_3, #cat_4, #cat_members, #cat_collabs, #cat_refs, #cat_speaking, #cat_writing, #cat_facAdvice, #cat_pdAdvice, #cat_ethics, #cat_old, #cat_new, #cat_comm, #catResearchBiomed, #catResearchResources, #catLinks, #catTeaching, #catBIT,
#catReferences, #catScienceNews, #catResearchMagnetism, #catTalks, #catUTD, 
#cat_clsTeachingLinks, #cat_clsRefLinks, #cat_clsSylLinks {
	margin: 5px 5px 5px 5px;
	padding:0px 5px;
	border:1px #999999 solid;
	background-color:#FFFFFF;
	line-height: 1em;
}

#catNews h2, #catNews h3, 
#cat_nano h2, #cat_nano h3, 
#cat_2 h2, #cat_2_h3, 
#cat_3 h2, #cat_3 h3,
#cat_4 h2, #cat_4 h3,
#cat_members h2, #cat_members h3,
#cat_collabs h2, #cat_collabs h3,
#cat_refs h2, #cat_refs h3,
#cat_facAdvice h2, #cat_facAdvice h3,
#cat_pdAdvice h2, #cat_pdAdvice h3,
#cat_ethics h2, #cat_ethics h3,
#cat_old h2, #cat_old h3,
#cat_new h2, #cat_new h3,
#cat_speaking h2, #cat_speaking h3,
#cat_writing h2, #cat_writing h3, 
#cat_comm h2, #cat_comm h3,
#catResearchBiomed h2, #catResearchBiomed h3,
#catResearchResources h2, #catResearchResources h3,
#catLinks h2, #catLinks h3,
#catTeaching h2, #catTeaching h3,
#catBIT h2, #catBIT h3,
#catReferences h2, #catReferences h3,
#catScienceNews h2, #catScienceNews h3,
#catResearchMagnetism h2, #catResearchMagnetism h3,
#catTalks h2, #catTalks h3,
#catUTD h2, #catUTD h3,
#cat_clsTeachingLinks h2, #cat_clsTeachingLinks h3,
#cat_clsRefLinks h2, #cat_clsRefLinks h3,
#cat_clsSylLinks h2, #cat_clsSylLinks h3 {
font-family: "Lucida Sans Unicode",sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-variant: small-caps;
	text-align: left;
	padding-bottom:0px;
	margin-top:3px;
	color:#000000;
	text-decoration:none; }
	
#catNews h3, 
#cat_nano h3, #cat_2 h3, #cat_3 h3, #cat_4 h3, #cat_members h3, #cat_collabs h3, #cat_refs h3, #cat_speaking h3, #cat_writing h3, #cat_facAdvice h3,
#cat_pdAdvice h3, #cat_ethics h3, #cat_old h3, #cat_new h3, #cat_comm h3, #catResearchBiomed h3, #catResearchResources h3, #catLinks h3, #catTeaching h3, #catBIT h3, #catReferences h3, #catScienceNews h3, #catResearchMagnetism h3,
#catTalks h3, #catUTD h3, 
#cat_clsTeachingLinks h3, #cat_clsRefLinks h3, #cat_clsSylLinks h3
{padding-left: 10px; text-decoration: underline; color:#000000;}

#catNews h2 a, 
#cat_nano h2 a, #cat_2 h2 a, #cat_else h2 a, #cat_sponsors h2 a, #cat_researchHighlights h2 a, #catOutreach h2 a, #cat_3 h2 a, #cat_4 h2 a, 
#cat_members h2 a, #cat_collabs h2 a, #cat_refs h2 a, #cat_speaking h2 a, #cat_writing h2 a, #cat_facAdvice h2 a, #cat_pdAdvice h2 a, #cat_ethics h2 a, #cat_old h2 a, 
#cat_new h2 a, #cat_comm h2 a, 
#catResearchBiomed h2 a, 
#catResearchResources h2 a, 
#catLinks h2 a,
#catTeaching h2 a,
#catBIT h2 a,
#catReferences h2 a,
#catScienceNews h2 a,
#catResearchMagnetism h2 a,
#catTalks h2 a,
#catUTD h2 a,
#cat_clsTeachingLinks h2 a, #cat_clsRefLinks h2 a, #cat_clsSylLinks h2 a {
	background: url(../images/drop-down-icon-small-arrow.gif) no-repeat  0px center;
	padding-left:20px;
	font-family: "Lucida Sans Unicode",sans-serif;
	font-size: 14px;
	font-weight: bold;
	font-variant: small-caps;
	text-align: left;
	padding-bottom:0px;
	margin-bottom:0px;
	color:#000000;
	text-decoration: none;
	line-height: 1em;

}

#catNews h2 a:visited, 
#cat_nano h2 a:visited,#cat_2 h2 a:visited, #cat_else h2 a:visited, #cat_sponsors h2 a:visited, #cat_researchHighlights h2 a:visited, #catOutreach h2 a:visited, #cat_3 h2 a:visited, cat_4 h2 a:visited, #cat_members h2 a:visited, #cat_collabs h2 a:visited, 
#cat_refs h2 a:visited, 
#cat_speaking h2 a:visited, 
#cat_writing h2 a:visited, 
#cat_facAdvice h2 a:visited, 
#cat_pdAdvice h2 a:visited,
#cat_ethics h2 a:visited, 
#cat_old h2 a:visited, 
#cat_new h2 a:visited, 
#cat_comm h2 a:visited
#catResearchBiomed h2 a:visited,
#catResearchResources h2 a:visited,
#catLinks h2 a:visited,
#catTeaching h2 a:visited,
#catBIT h2 a:visited,
#catReferences h2 a:visited,
#catScienceNews h2 a:visisted,
#catResearchMagnetism h2 a:visited,
#catTalks h2 a:visited,
#catUTD h2 a:visited,
#cat_clsTeachingLinks h2 a:visited,
#cat_clsRefLinks h2 a:visited,
#cat_clsSylLinks h2 a:visited {
color:#000000;
}

#catNews.closed h2 a, 
#cat_nano.closed h2 a, 
#cat_2.closed h2 a, 
#cat_3.closed h2 a,
#cat_4.closed h2 a, 
#catOutreach.closed h2 a, 
#cat_else.closed h2 a, 
#cat_sponsors.closed h2 a, 
#cat_researchHighlights.closed h2 a, 
#cat_members.closed h2 a, 
#cat_collabs.closed h2 a, 
#cat_refs.closed h2 a, 
#cat_speaking.closed h2 a, 
#cat_writing.closed h2 a, 
#cat_facAdvice.closed h2 a, 
#cat_pdAdvice.closed h2 a, 
#cat_ethics.closed h2 a,
#cat_old.closed h2 a, 
#cat_new.closed h2 a, 
#cat_comm.closed h2 a,
#catResearchBiomed.closed h2 a,
#catResearchResources.closed h2 a,
#catLinks.closed h2 a,
#catTeaching.closed h2 a,
#catBIT.closed h2 a,
#catReferences.closed h2 a,
#catScienceNews.closed h2 a,
#catResearchMagnetism.closed h2 a,
#catTalks.closed h2 a, 
#catUTD.closed h2 a,
#cat_clsTeachingLinks.closed h2 a,
#cat_clsRefLinks.closed h2 a,
#cat_clsSylLinks.closed h2 a {	
background:  url(../images/right-icon-small-arrow.gif) no-repeat 0px center; text-decoration:none; }

.closed ul { display: none; }

#catNews.closed h3, 
#cat_nano.closed h3,
#cat_2.closed h3, 
#cat_3.closed h3, 
#cat_4.closed h3,
#cat_members.closed h3, 
#cat_collabs.closed h3, 
#cat_refs.closed h3, 
#cat_facAdvice.closed h3, 
#cat_pdAdvice.closed h3, 
#cat_ethics.closed h3, 
#cat_speaking.closed h3, 
#cat_writing.closed h3, 
#cat_old.closed h3, 
#cat_new.closed h3, 
#cat_comm.closed h3
#catResearchBiomed.closed h3,
#catResearchResources.closed h3,
#catLinks.closed h3,
#catTeaching.closed h3,
#catBIT.closed h3,
#catReferences.closed h3,
#catScienceNews.closed h3,
#catResearchMagnetism.closed h3,
#catTalks.closed h3,
#catUTD.closed h3,
#cat_clsTeachingLinks.closed h3,
#cat_clsRefLinks.closed h3,
#cat_clsSylLinks.closed h3
 {display:none; }

#breadCrumb {
	padding-top:2px;
	padding-bottom:2px;
	color: #999999;
	margin-bottom:2px;
}
#breadCrumb a{color: #333333; font-size:12px} 
#breadCrumb a:hover{ color: #CC0000; text-decoration: underline }

#pageName{
	padding: 0px 0px 5px 0px;
	border-bottom:1px solid #191970;
	font-size:175%;
	font-weight: bold;
	color: #000000;
	margin-bottom: 3px;
	text-align: left;
	line-height:1.2em
}

.imgFloatLeft {float:left; margin-right:16px; }
.imgFloatRight {float:right; margin:6px; }





.container .main .content .menu li  
	{
	font-family: "Lucida Sans Unicode",sans-serif;
	color: #444;
	padding-bottom:4px;
}

.greybox {background-color:#FFFFFF; border-top:thin solid #000000; border-bottom:thin solid #000000; padding-left:10px; padding-right: 10px;
margin-top:5px; margin-bottom:5px;}
.container .footer a {
	color: #333333;
}
.container .navigation .last {
	border-style: none;
}

.imgLeftWrap {
	float: left;
	padding: 0px 10px 0px 0px;
	margin: 0 5px 5px 0;
}



/***************************** lists **************************/

ol {list-style:decimal; padding-bottom:3px;}
ol li {
	list-style:decimal;
	list-style-position:inside;
	line-height: 1.4em;
	font-weight:bold;
}

ol.menu, ul.menu, ul.related {font-size:11px; 	font-weight: 300; }

ul.menu, ul.related, ul.main { 	list-style-type: circle; 	margin-top:0;}

ul.main li { font-size:16px; list-style:none;}

ul.related li a { text-decoration: none; color: #000000; list-style:none; }
ul.related li a:hover {text-decoration:none; list-style:none;}
ul.menu li {padding-bottom:3px; list-style:none;}

ol.menu li, ul.menu li, ul.related li {
	color:#000000;
	padding-bottom:1px;
	line-height: 1.4em;
	list-style:none;
}

ol.menu li {padding-bottom:3px; list-style:none;}

ul.menu ul {
	margin:0;
	padding:0;
	padding-left: 10px;
	border-top: none;
	text-decoration:none;
	list-style:none;
}

ul.menu li a, ul.menu li a:visited {
	color::#0000CC;
	list-style-position: inside;
	list-style-type: circle;
}
ul.related li a, ul.related li a:visited { color:#0000CC;text-decoration:none; }

ul.menu li ul.menu li a { color:#333333; }
ul.menu .menu .last a, ul.menu .menu .last a:visited {text-decoration:none;color:#0000CC;
	border-bottom:none;
}

ul.nobullet {	list-style-type: none;}
ul.small {
	list-style-type: square;
	font-size: 10px;
}

ul ul ul{ list-style-type: none;}
li {font-size:100%; padding-bottom: 5px;}


/**************** List styles ****************/
.listStyle1 {
	border:none;
	margin: 0;
	padding: 0;
	text-align:left;
	text-decoration:none;
	font:"Lucida Sans Unicode", "Lucida Grande", "Trebuchet MS", sans-serif;
	margin-bottom: 7px;
	margin-top: 3px;
	list-style:none;
}

.listStyle1 ul {
list-style:none; 
margin:0px; 
padding:0 0 1px 7px; 
font-size:0.9em; 
list-style:none;
}
.listStyle1 ul li { margin-bottom:1px; border-bottom:1px #999999 solid; margin-bottom:1px; text-decoration:none;list-style:none; }
.listStyle1 ul li.lastline {/*border: thin solid yellow; */ margin-bottom:3px; border-bottom:none; text-decoration:none; list-style:none;}
.listStyle1 ul li a, 
.listStyle1 ul li a:visited
	  {text-decoration:none; color:#0000CC;}
.listStyle1 ul li a:hover {text-decoration:none; color:#CC0000;}

.listStyle1 ul li ul {font-size:0.85em !important; font-weight:200 !important; border-bottom:none;}
.listStyle1 ul li ul a, 
.listStyle1 ul li ul a:hover,
.listStyle1 ul li ul a:visited {font-weight:200; color:#CC0000;}
.listStyle1 ul li a:hover {color:#CC0000;}
.listStyle1 ul li ul {padding-bottom:0px; margin-bottom:0px; }

.listStyle1 ul li ul li.lastline a {border-bottom:none; margin-bottom: 0px; padding-bottom:0px;}


/*  List style 2 is a thinner, smaller font more for small boxes than for menus. It has bullets */
.listStyle2 {
	border:none;
	margin: 0;
	padding: 0;
	text-align:left;
	font-size:10px !important;
	font-weight:200;
}
.listStyle2 ul {
	margin:0px;
	padding:0 0 1px 7px;
	list-style:inside disc;
	line-height: 1em;
}
.listStyle2 ul li.lastline {padding-bottom:4px;}
.listStyle2 ul li a, .listStyle2 ul li a:hover, .listStyle2 ul li a:visited  {color:#0000CC;}
.listStyle2 ul li ul {font-size:0.85em !important; }
.listStyle2 ul li ul a, .listStyle2 ul li ul a:hover,.listStyle2 ul li ul a:visited {font-weight:200;color:#0000CC;}
.listStyle2 ul li a:hover {color:#000000; background-color:#F0F0F0; }
.listStyle2 h3 {color: #993366; padding-left: 0px; }

.listStyle3 {
	border:none;
	margin: 0;
	padding: 0;
	text-align:left;
	font-size:11px !important;
	font-weight:200;
}
.listStyle3 h2 {font-size:12px !important; }
.listStyle3 ul {margin:0px; padding:0 0 1px 7px; list-style:none;}
.listStyle3 ul li {
	font-weight:bold;
	border-bottom:1px #999999 solid; /* border:thin solid blue; */
	color: #666666;
}
.listStyle3 ul li.lastline {/*border: thin solid yellow; */padding-bottom:4px;}
.listStyle3 ul li a, .listStyle3 ul li a:hover, .listStyle3 ul li a:visited
	  {/* border: thin solid green; */ color:#0000CC;}
.listStyle3 ul li ul {font-size:0.85em !important; font-weight:200 !important; font-style:italic; /* border: thin dashed green; */}
.listStyle3 ul li ul a, .listStyle3 ul li ul a:hover,.listStyle3 ul li ul a:visited {font-weight:200;color:#0000CC;/* border: thin dashed purple; */}
.listStyle3 ul li a:hover {color:#000000; background-color:#F0F0F0; /* border:thin dashed black; */}



#catResearchBiomed .listStyle2 h3,
catResearchMagnetism .listStyle2 h3 {
	padding-left:0px;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 5px;
	margin: 3px;
}
