/* ---------------------
	Title: Celsion Corporation working stylesheet
	Filename: screen.css
	
	Table of Contents:
		Section Title (Searchstring)			Description
		
		General Styles(=General):				Set font sizes, Page backgrounds, etc
		Master #container Styles(=Master):		Placing, sizing, styling the main container
		Branding Styles(=Branding):				Logos, taglines, branding info
		Navigation Styles(=Nav):				The navigation bar; internal and external
		Content Styles(=Content):				The main content of the page
		Multi-Column Styles(=Multicol):			The cases where the content needs to be in multiple columns
		Credit/Footer Styles(=Footer):			The footer
		Universal Styles(=Uni):					Classes and elements that apply throughout ('clear', 'blue', etc)
---------------------- */

/* =General
---------------------- 
	General Styles applied to 'normalize' things
	Notes:
		EM styling generally following (http://www.clagnut.com/blog/348/) from this point 10px=1em, 11px=1.1em, etc
---------------------- */
html {
	text-align: left;
	width: 95%;}

body {
	padding: 0px;
	margin: 10px;
	font-family: Arial, Verdana;
	text-align: left;
	width: 100%;
	height: auto;
}

/************************/
/* Disabled Screen Items */
/************************/

#nav, ul#nav-main, #content-left, #siteinfo {
	display: none;
}
label, input, select, textarea,  {
	display: none;
}

p {
	padding: 0;
	margin: 0 0 12px 0;
	text-align: left;
}

INPUT, SELECT, TH, TD {font-size: 12px}
H1 {font-size: 18px; color: #1A2674;} 
H2 {font-size: 16px; color: #1A2674;} 
H3 {font-size: 14px; color: #1A2674;} 
H4 {font-size: 13px; color: #1A2674;}  
H5 {font-size: 12px; color: #1A2674;} 


img, a img {
	border: none;
}
hr {
	height: 1px;
	color: #bbb;
}

a:link {
	color: #1B9EEE;
	text-decoration: none;
}

#container {	
	margin: 10px 10px;	
	text-align: left;
	width: 100%;
}
/* body.home #container { This is in case the home header graphic exceeds 770, which would be bad.
	width: 820px;
} */

	/* =Content
----------------------
	Main Content styles
	Notes:
		font-size: 1em makes the text 10px but expandable in IE
		Remember: The font is inherited, so some math will be necessary to size children up or down correctly
---------------------- */
#content {
	font-size: 13px; /* 12px */	
	text-align: left; /* undo centering at higher levels */		
	height: auto;
}

#content-right {
  float: left;
  text-align: left;
  font-size: 13px;
}	

#content-right a {
	color: #1B9EEE;
	text-decoration: none;
}

#content-right .newsBox {background: url(../images/box3.jpg) no-repeat; width: 159px; padding: 35px 10px 10px 15px; margin-right: 10px;}
#content-right .newsBox p {font-size: 11px;}

/* Headings */
h3, h4, h5, h6 {margin: 0 0 1em 0; padding: 0;}


/* =Uni
----------------------
	Universal styles: Styles that apply to elements found throughout the site
	Notes:
		The best example of this is the "clear" div
---------------------- */
.clear {
	clear: both;
	height: 1%;
	font-size: 1%;
	line-height: 1;
	width: 100%;
	margin: 0;
	padding: 0;
}



