
/* 
CSS by Reid Stott http://reidstott.com/
Revised 12:41 8/6/2009

TOC
	Tags/Reset
	Structure
		Grid Divs & Combos
	Typography
		Paragraphs
		Headings
		Lists
		Links
		Font trimmings
		Images
	Header
	Nav
	Main
	Footer
COLORS:
dark purple			#220022
med. dark purple	#443344
medium purple		#665566
light gray-purple	#ddd9ee
gold				#eecc44
brown				#cc9969
*/
/* ----------------------------------------------------------------------- */
/* -------------------------- Tags / Reset ------------------------------- */
/* ----------------------------------------------------------------------- */
body {
	font-family: Helvetica, Arial, Verdana, sans-serif;
	font-size: 62.5%;
	line-height: 140%;
	color: #222222;
	background: #e9e9e9 url(../gfx/bodyback.jpg) repeat-x scroll 0% 0%;
	text-align: center;
        margin: 0;
        padding: 0;
	}
html {
	font-size: 100.01%
        margin: 0;
        padding: 0;
	height: 100%;
	margin-bottom: 1px;
	}
h1, h2, h3, h4, h5, h6, blockquote, ul, ol, dl, dt, dd, pre, form, fieldset, input, textarea, td {
        margin: 0px;
        padding: 0px;
	font-weight: normal; 
	}
li, blockquote {
        margin-left: 15px;
	}
ol, ul { 
	list-style:none; 
} 
p { 
	margin: 0px 0px 1em 0px;
	}
table { 
	border-collapse: collapse; 
	border-spacing: 0; 
	} 
q:before,q:after { 
	content:''; 
	} 
abbr, acronym, fieldset, img { 
	border: 0; 
	} 
a {
	color: #3344aa;
	text-decoration: none;
	}
a:visited {

	text-decoration: none;
	}
a:hover {
	color: #990000;
	text-decoration: underline;
	}

/* |||||||||||||||||||||||||||||||||| */
/*            GRID DIVS               */
/* |||||||||||||||||||||||||||||||||| */
/* Set common styles - all grid divs must be assigned this class */
.generic {
	float: left;
	padding-top: 0;
	margin-bottom: 0;
}
/* this class must be given to a grid div that is the first in a horizontal series */
.break, .clear {
	clear: both;
}
/* this class must be given to a grid div that is the last in a horizontal series */
.end {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.grid180 {
	width: 180px;
	margin-right: 20px;
}
.grid220 {
	width: 220px;
	margin-right: 20px;
}
.grid260 {
	width: 260px;
	margin-right: 20px;
}
.onethird {
	width: 285px;
	margin-right: 20px;
	}
.grid300 {
	width: 300px;
	margin-right: 20px;
}
.grid340 {
	width: 340px;
	margin-right: 19px;
}
.grid380 {
	width: 380px;
	margin-right: 20px;
}
.grid420 {
	width: 420px;
	margin-right: 20px;
}

.grid440, .onehalf {
	width: 440px;
	margin-right: 20px;
}
.grid460 {
	width: 460px;
	margin-right: 20px;
}
.grid500 {
	width: 500px;
	margin-right: 20px;
}

.grid540 {
	width: 540px;
	margin-right: 20px;
}
.grid580 {
	width: 580px;
	margin-right: 20px;
}
.grid620 {
	width: 620px;
	margin-right: 20px;
}

.grid660 {
	width: 660px;
	margin-right: 20px;
}
.grid700 {
	width: 700px;
	margin-right: 20px;
}
.grid900, .full {
	width: 900px;
	margin-right: 20px;
}
/* ----------------------------------------------------------------------- */
/* ------------------------ Typography Base ------------------------------ */
/* ----------------------------------------------------------------------- */
/*|||||||||||| PARAGRAPHS ||||||||||||| */
.generic p {
	font-size: 1.3em;
	line-height: 150%;
	margin-bottom: 1.5em;
	text-align: left;
}
/* Assign this class to the first paragraph in an article */
p.intro:first-line {
	font-variant:small-caps;
}
/* Styles a drop cap on each paragraph with this class */
p.drop:first-letter {
	float:left;
	font-size:3em;
	margin-top:-0.05em;
	margin-right:0.1em;
	margin-bottom:-0.5em;
}
/* |||||||||||||HEADINGS ||||||||||||||| */
h1, h2, h3, h4, h5, h6 {
/*	font-family:  "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", Times, serif; */
	font-family: Verdana, Helvetica, Arial, sans-serif;
	}
h1 {
	color: #000;
	font-size: 3.2em;
	margin-bottom: 0.6em;
	font-style:italic;
	line-height: 1.2em;
}
h2 {
	color: #000;
	font-size: 2.4em;
	font-weight: 900;
	margin-bottom: 0.9em;
	line-height: 0.9em;
}
h3 {
	color: #000;
	font-size: 1.9em;
	margin-bottom: 1.2em;
	line-height: 1.2em;
	font-variant: small-caps;
}
h4 {
	color:#000;
	font-size: 1.6em;
	font-weight: 900;
	margin-bottom: 1.5em;
}
h5 {
	color:#000;
	font-size: 1.2em;
	margin-bottom: 1.8em;
	line-height: 1.8em;
	font-variant: small-caps;
}
h6 {
	color: #000;
	font-size: 1.1em;
	margin-bottom: 1.8em;
	line-height: 1.8em;
}
/* ||||||||||||||| LINKS |||||||||||||| */
p a {
	color:#3344aa;
	border-bottom: 1px dotted #3344aa;
}
p a:hover {
	text-decoration:none;
}
h1 a {
	color:#000;
}
h1 a:hover {
	text-decoration:none;
}
li a {
	color:#000;
}
li a:hover {
	text-decoration:none;
}
/* |||||||||||||||| LISTS |||||||||||||||| */
ul{
	margin-bottom: 1.5em;
	list-style: square inside;
}
ul li{
	font-size: 1.3em;
	line-height: 150%;
	text-align: left;
}
ul li.caption{ /* Apply this class to the first list item in a list to give it a caption */
	font-variant: small-caps;
	list-style: none;
	color: #000;
}
li > ul, li > ol {
	margin-bottom: 0;
	margin-left: 3em;
}
li > ul li, li > ol li {
	font-size: 1em;
}
ol{
	margin-bottom: 1.5em;
	list-style: decimal inside;
}
ol li{
	font-size: 1.3em;
	line-height: 150%;
	text-align: left;
}
/* |||||||||||||| FONT TRIMMINGS ||||||||||| */
blockquote p {
	font-size: 1.3em!important;
	line-height: 1.5em!important;
	margin-bottom: 1.5em!important;
	font-style: italic;
	font-weight: bold;
}
blockquote p cite {
	font-style: normal;
}
.generic strong.caps {
	font-variant:small-caps;
}
.generic em {
	font-style: italic;
	font-weight: inherit;
}
.amp { 
	font-family: Baskerville, "Goudy Old Style", "Palatino", "Book Antiqua", serif;
	font-style: italic;
	font-weight: normal;
	line-height: inherit;
}
abbr {
	border-bottom:1px dotted #666;
	border-color:inherit;
	cursor: help;
}
.clear{
	clear: both;
}
.floatright { 
	float:right;
	margin-left: 2em;
	margin-right: 0;
}
.floatleft {
	float: left;
	margin-right: 2em;
	margin-left: 0;
}
/* ||||||||||||||| IMAGES ||||||||||||||||||||| */
img {
	font-size: 1em;
}
img.imgleft { 
	font-size: 1em;
	float: left;
	padding: 4px;
	border: 1px solid #ccc;
	margin-bottom: 1.8em;
	margin-right: 2em;
	margin-top: 0.3em;
}
img.imgright { 
	font-size: 1em;
	float: right;
	padding: 4px;
	border: 1px solid #ccc;
	margin-bottom: 1.8em;
	margin-left: 2em;
	margin-top: 0.3em;
}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Structure -------------------------------- */
/* ----------------------------------------------------------------------- */
#wrap {
	text-align: center;
	}
#container {
	background-image: url(../gfx/mainback.jpg);
	background-repeat : repeat-y; 
	background-position : center top;
	width: 920px;
	margin: 0 auto;
	}
div.hr {
	clear: both;
	}
div.hr hr {
	display: none;
	}
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix { display: inline-block; }
/* Hides from IE-mac \*/
.clearfix { display: block; }
* html .clearfix { height: 1%; }
/* End hide from IE-mac */
/* ----------------------------------------------------------------------- */
/* ---------------------------- Header ----------------------------------- */
/* ----------------------------------------------------------------------- */
#header {
	margin: 0 auto;
	text-align: center;
	}
#fixed-head {
	width: 920px;
	height: 110px;
	margin: 0 auto;
	background: #220022;
	background-image: url(../gfx/headback.jpg);
	background-repeat: no-repeat;
	background-position : left top;
	}
#fixed-head h1, #fixed-head h2 {
	display: none;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Nav -------------------------------------- */
/* ----------------------------------------------------------------------- */


div#navlist {
	margin: 0px 0px 0px 0px;
	padding-top: 75px;
	}
body#contact ul.MenuBarHorizontal li#contact_link a:link,
body#contact ul.MenuBarHorizontal li#contact_link a:visited,
body#careers ul.MenuBarHorizontal li#careers_link a:link,
body#careers ul.MenuBarHorizontal li#careers_link a:visited,
body#trials ul.MenuBarHorizontal li#trials_link a.MenuBarItemSubmenu:link,
body#trials ul.MenuBarHorizontal li#trials_link a.MenuBarItemSubmenu:visited,
body#programs ul.MenuBarHorizontal li#programs_link a.MenuBarItemSubmenu:link,
body#programs ul.MenuBarHorizontal li#programs_link a.MenuBarItemSubmenu:visited,
body#products ul.MenuBarHorizontal li#products_link a.MenuBarItemSubmenu:link,
body#products ul.MenuBarHorizontal li#products_link a.MenuBarItemSubmenu:visited,
body#about ul.MenuBarHorizontal li#about_link a.MenuBarItemSubmenu:link,
body#about ul.MenuBarHorizontal li#about_link a.MenuBarItemSubmenu:visited,
body#about ul.MenuBarHorizontal li#about_link a:link,
body#about ul.MenuBarHorizontal li#about_link a:visited {
	background-color: #665566;
	color: #fff;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
}
div#navcolumn {
	float: left;
	clear: left;
	width: 200px;
	display: inline;
	}
div#navcolumn ul {
	margin: 0 0 0 0;
	}
div#navcolumn ul li {
	list-style-type: none;
	margin: 0 0 0 0;
	}
div#navcolumn ul li a:link,
div#navcolumn ul li a:visited {
	display: block;
	height: 35px;
	line-height: 34px;
	text-align: right;
	padding: 0px 20px 0px 0px;
	color: #222939;
	}
body.exec div#navcolumn li#executive-link a:link,
body.exec div#navcolumn li#executive-link a:visited,
body.d1mt div#navcolumn li#d1mt-link a:link,
body.d1mt div#navcolumn li#d1mt-link a:visited,
body.ip div#navcolumn li#ip-link a:link,
body.ip div#navcolumn li#ip-link a:visited,
body.bio div#navcolumn li#bio-link a:link,
body.bio div#navcolumn li#bio-link a:visited,
body.arginase div#navcolumn li#arginase-link a:link,
body.arginase div#navcolumn li#arginase-link a:visited,
body.ido div#navcolumn li#ido-link a:link,
body.ido div#navcolumn li#ido-link a:visited,
body.programs-overview div#navcolumn li#overview-link a:link,
body.programs-overview div#navcolumn li#overview-link a:visited,
body.hyperacute div#navcolumn li#hyperacute-link a:link,
body.hyperacute div#navcolumn li#hyperacute-link a:visited,
body.hyperacute-lung div#navcolumn li#lung-link a:link,
body.hyperacute-lung div#navcolumn li#lung-link a:visited,
body.hyperacute-pancreas div#navcolumn li#pancreas-link a:link,
body.hyperacute-pancreas div#navcolumn li#pancreas-link a:visited,
body.pipeline-overview div#navcolumn li#overview-link a:link,
body.pipeline-overview div#navcolumn li#overview-link a:visited,
body.home div#navcolumn li#overview-link a:link,
body.home div#navcolumn li#overview-link a:visited,
div#navcolumn ul li.on a:link,
div#navcolumn ul li.on a:visited {
	background: #220022;
	color: #eecc44;
	background-image: url(../gfx/linkback.jpg);
	background-repeat: no-repeat;
	background-position : right center;
	}
div#navcolumn ul li a:hover {
	background: #b9b9b9;
	color: #000;
	background-image: url(../gfx/linkback1.jpg);
	background-repeat: no-repeat;
	background-position : right center;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Main ------------------------------------- */
/* ----------------------------------------------------------------------- */
#main {
	padding-left: 0px;
	}
div#content {
	float: left;
	width: 720px;
	color: #222;
	padding-top: 1em;
	display: inline;
	}
div#printlink {
	width: 200px;
	float: right;
	text-align: left;
	}
div#printlink a {
	text-transform: uppercase;
	color: #999;
	}
body#about div#content .margins {
	margin: 0px 100px 0px 75px;
	}
div#content .margins h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #cc9969;
	text-align: left;
	letter-spacing: 0.1em;
	font-size: 2.5em;
	font-weight: 400;
	}
h4.subhead {
	color: #443344;
	text-align: left;
	margin: 1em 0px 0.75em 0px;
	font-size: 1.4em;
	line-height: 130%;
	}
div#sidebar {
	float: right;
	width: 270px;
	margin: 0px 0px 20px 20px;
	}
#content .margins {
	clear: right;
	}
/* ------------------ products ----------------------------*/
body#products div#content .margins {
	margin: 0px 100px 0px 75px;
	}
body#products div#content .margins {
	margin: 0px 100px 0px 75px;
	}
img#products-image { display: none; }
img#matrix {
	border: 1px solid #999;
	}
table#prodtable {
	width: 545px;
	border-top: 1px solid #999;
	border-left: 1px solid #999;

	margin: 0px 0px 10px 0px;
	}
table#prodtable th {
	font-size: 1.2em;
	font-weight: 400;
	padding: 0.5em 0.5em;
	background: #220022;
	color: #fff;
	border-right: 1px solid #999;
	}
table#prodtable th#no1 {
	width: 140px;
	}
table#prodtable th#phase1,
table#prodtable th#phase2.
table#prodtable th#phase3 {
	width: 65px;
	}
table#prodtable td {
	font-size: 1.2em;
	font-weight: 900;
	padding: 0.6em 0.5em;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	}
table#prodtable tr.odd td {
	background: #fff;
	}
table#prodtable tr.even td {
	background: #ddd9ee;
	}
table#prodtable tr td.full {
	background-image: url(../gfx/arrow-stalk.gif);
	background-repeat: no-repeat;
	background-position : left center;
	}
table#prodtable tr#row1 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -30px center;
	}
table#prodtable tr#row2 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -40px center;
	}
table#prodtable tr#row3 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -70px center;
	}
table#prodtable tr#row4 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -10px center;
	}
table#prodtable tr#row5 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -10px center;
	}
table#prodtable tr#row6 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -30px center;
	}
table#prodtable tr#row7 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -40px center;
	}
table#prodtable tr#row8 td.end {
	background-image: url(../gfx/arrow-point.gif);
	background-repeat: no-repeat;
	background-position : -50px center;
	}
body.d1mt #wrap div#content .margins {
	margin: 0px 0px 0px 75px;
	}
body.d1mt .margins  p {
	margin: 0px 100px 1em 0px;
	}
body.d1mt .margins #sidebar {
	background: #ddd9ee;
	padding-top: 1em;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	}
body.d1mt .margins  #sidebar p {
	margin: 0px 12px 1em 15px;
	}
body.hyperacute-lung #wrap div#content .margins {
	margin: 0px 0px 0px 75px;
	}
body.hyperacute-lung .margins  p {
	margin: 0px 100px 1em 0px;
	}
body.hyperacute-lung .margins #sidebar {
	background: #ddd9ee;
	padding-top: 1em;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	}
body.hyperacute-lung .margins  #sidebar p {
	margin: 0px 12px 1em 15px;
	}
.margins  #sidebar h4 {
	margin: 0px 12px 0.5em 15px;
	font-size: 1.3em;
	}
/* ------------------ programs ----------------------------*/
body#programs div#content .margins {
	margin: 0px 100px 0px 75px;
	}
body.hyperacute #wrap div#content .margins {
	margin: 0px 0px 0px 75px;
	}
body.hyperacute .margins  p {
	margin: 0px 100px 1em 0px;
	}
body.hyperacute .margins #sidebar {
	background: #ddd9ee;
	padding-top: 1em;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	}
body.hyperacute .margins  #sidebar p {
	margin: 0px 12px 1em 15px;
	}
body.programs-overview #wrap div#content .margins {
	margin: 0px 0px 0px 75px;
	}
body.programs-overview .margins  p {
	margin: 0px 100px 1em 0px;
	}
body.programs-overview .margins #sidebar {
	background: #ddd9ee;
	padding-top: 1em;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	}
body.programs-overview .margins  #sidebar p {
	margin: 0px 12px 1em 15px;
	}

/* ------------------ trials ----------------------------*/
body#trials div#content .margins {
	margin: 0px 100px 0px 75px;
	}
/* ------------------ company ----------------------------*/
body#company div#content .margins {
	margin: 0px 100px 0px 75px;
	}
/* ------------------ careers page ----------------------------*/
body#careers div#content .margins {
	margin: 0px 100px 0px 75px;
	}
body#careers .margins h4 {
	text-align: left;
	margin-bottom: 0;
	border-bottom: 2px solid #443344;
	line-height: 150%;
	}
body#careers .margins li a {
	color: #3344aa;
	border-bottom: 1px dotted #3344aa;
	}
/* ------------------ contact page ----------------------------*/
body#contact div#content .margins {
	margin: 0px 40px 0px 75px;
	min-width: 560px;
	padding-bottom: 20px;
	}
body#contact div#content .margins img {
	border: 1px solid #333;
	}
body#contact div#content .margins ul li {
	margin: 0px 0px 0.5em 0px;
	}
body#errors div#content .margins {
	margin: 0px 100px 0px 75px;
	height: 300px;
	}
body#errors div#printlink {
	display: none;
	}
/* ----------------------------------------------------------------------- */
/* ---------------------------- Footer ----------------------------------- */
/* ----------------------------------------------------------------------- */
#footer {
	clear: both;
	margin: 0 auto;
	text-align: center;
/*	background-image: url(../gfx/footback1.jpg);
	background-repeat: repeat-x;
	background-position : left top; */
	}
#fixed-foot {
	width: 920px;
	height: 120px;
	margin: 0 auto;
	padding-top: 20px;
	background-image: url(../gfx/footback.jpg);
	background-repeat: repeat-x;
	background-position : left top; 
	}
#fixed-foot h5 {
	margin: 0px 0px 0px 0px;
	}