/* Seneca Libraries Web Site CSS */
/* last updated on June 23, 2010 by Jane Foo*/

/* GLOBAL SETTINGS */

body {
  margin:0;
  padding: 0;
  background-color: #f8f8f8;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  background-image:url(../_site_graphics/background.jpg);
  background-repeat:repeat;
}
p,span,div {
	font-size: small;
	margin-top: 0px;
}
p.doublespace {
	line-height: 2;	
}
a	{
	color: blue;
	text-decoration:none;
	}

a:visited {
  	color: blue;
}	

a:hover	{
	color: blue;
	text-decoration: underline;	
	background-color:#fffff0;
}

h3, h4, h5 {
	margin-bottom: 0;
}
form {
	margin: 0;
	padding-top:10px;
}

ul {
	list-style: url(../_site_graphics/bullet.gif) disc;	
	margin-top: 0;
	margin-bottom: 0;
}

table {
	margin-bottom: 8px;
	background-color:#fff;
}
th {
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	background-color:#f0f0f0;
	border: 1px solid #ccc;
}
td {
	background-color:#f0f0f0;
	text-align: left;
	vertical-align: top;
	border: 1px solid #ccc;
}
td.transparent{
	background-color:#ffffff;
}
td.yellow{
	background-color:#ffff99;
}
td.transparentnb{
	background-color:#ffffff;
	border: 0;
}
th.transparent{
	background-color:#ffffff;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	border: none;
}
td.highlight  {
	background-color:#FFFFCC;
}
caption {
	font-weight: bold;
}

.hidden	{
	position:absolute;
 	left:0px;
 	top:-500px;
 	width:1px;
 	height:1px;
 	overflow:hidden;
}
.skiplink {
	display: none;
}

/* TEXT STYLING */
.specialtext {
	font-size: small;
	font-weight:bold;
}
.specialtextital {
	font-size: small;
	font-weight:bold;
	font-style:italic;
}
.indicator {
	font-weight:bold;
	color: #ff3333;
}
.name {
	font-weight:bold;
	color: #ff3333;
}
.tiny {
	font-size: x-small;
}
.tiny_black {
	font-size: x-small;
	color: #000000;
}
.tiny {
	font-size: x-small;
}

.footnote {
  font-size: x-small;
  /*font-style: italic;*/
  color: #888;
}

.sublist {
	margin-bottom: 1px;
	margin-top: 0px;
	list-style-type: none;
}
.box {
	border-color: #FF9933;
	border-style: solid;
	text-shadow:black;
	margin-left: 50px;
	margin-right: 50px;
	background-color: #FFCC99;
	border-width: 2px;
	padding: 10px;
}

.clear {
  clear: both;        /* extend height of .main to longest column */
  height: 0px;
  overflow: hidden;   /* prevent IE expanding the container */
  margin: 0;          /* keep flush with surrounding blocks */
}

/*  CSS POPUP */
span.popuplinks a{
	text-decoration: none;
	color: #000;
}

span.popuplinks a span {
	display: none;
}

span.popuplinks a:hover span {
	display: block;
   position: relative;
   width: 400px;
   padding: 5px; margin: 10px; z-index: 100;
   color: #000; background: #eee;
   border: thin #FF0000 solid;
   font: 10px Arial, Verdana, sans-serif; text-align: left;
   text-decoration: none;
}


/* BEGIN BreadCrumbs Styling*/
.trail {
	color: #000;
	font-size: x-small;
}
.trailCurrent {
	color: #FF0000;
	font-size: x-small;
}
.trail a:link{
	color: blue;
	text-decoration: none;
}
.trail a:visited{
	color: blue;
	text-decoration: none;
}
.trail a:hover{
	color: #000066;
	font-weight: bold;
	background-color: #FFFFCC;
	text-decoration: underline overline;
}
.trail a:active{
	color: blue;
	text-decoration: none;
}
/* END BreadCrumbs Styling*/

/* button styling courtesy of WebDesignerWall at http://www.webdesignerwall.com/tutorials/css3-gradient-buttons */

.button {
	width: 5em;
	height: 3em;
	margin: 2%;
	display: inside-block;
	float:left;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	font: 14px/100% Arial, Helvetica, sans-serif;
	padding: .5em 2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em;
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}

.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

/* gray */
.gray {
	color: #9e9e9e;
	background: #6e6e6e;
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
	background: -moz-linear-gradient(top,  #888,  #575757);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
	background: #616161;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
	color: #*afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top,  #575757,  #888);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}

/* green */
.green {
	color: #e8f0de;
	background: #64991e;
	background: -webkit-gradient(linear, left top, left bottom, from(#7db72f), to(#4e7d0e));
	background: -moz-linear-gradient(top,  #7db72f,  #4e7d0e);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#7db72f', endColorstr='#4e7d0e');
}

.green:hover {
	background: #538018;
	background: -webkit-gradient(linear, left top, left bottom, from(#6b9d28), to(#436b0c));
	background: -moz-linear-gradient(top,  #6b9d28,  #436b0c);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#6b9d28', endColorstr='#436b0c');
}

.green:active {
	color: #a9c08c;
	background: -webkit-gradient(linear, left top, left bottom, from(#4e7d0e), to(#7db72f));
	background: -moz-linear-gradient(top,  #4e7d0e,  #7db72f);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#4e7d0e', endColorstr='#7db72f');
}

/* BANNER */
#banner {
  background-color: #ffffff; 
  margin: 0;
  padding: 0;
  border-bottom: 1px #666 dotted;
}
#askon{
	margin: 0;
	float: right;
	background-color: #ffffff;
}

/* MAIN: BREADCRUMBS + CONTENT + FOOTER */
#main {
  width: 98%;
  padding: 1%;
  color: #000;
  background-color: #ffffff;
}

#footer {
  width: 100%;
  background-color: #ffffff;  /* same bg color as h1 */
  border-top: 1px #666 dotted;
  margin-top: 2%;
  padding-top: 3px;
  font-size: x-small;
  color: #888;
}

/* defines when the layout CSS is visible */
@media screen, projection, print {
/* exploit a parsing bug so @media rules are visible to MacIE5 */
.BeNiceToMacIE5 {
  font-family: "\"}\"";
  font-family: inherit;
}

#wrapper {
  margin: auto;
  min-width: 740px;
  max-width: 960px;
  padding: 2px; /* to make the rounded corners look good */
  /*width: 960px; */
  /* workaround for IE who does not use min-width and max-width \ */
  width: expression(document.body.clientWidth > 960? "960px": "auto" );
  background-color:#ffffff;
  border: thin solid #ddd;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;  
  -webkit-border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-radius-bottomright: 10px;
  -webkit-border-radius-bottomleft: 10px; 
  -moz-box-shadow: 3px 3px rgba(0,0,0,0.3);
  -webkit-box-shadow: 3px 3px rgba(0,0,0,0.3);
}

#content {
	  background-color:#ffffff;
}
/* Below CSS styles for printing pages */
@media print {
} /* end @media rules */
