@charset "utf-8";
/* CSS Document */

html, body {
	font: 100% "Trebuchet MS", "Times New Roman", serif;
	background: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element 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;
	min-height:100%;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}

h1{
font-size:22px;
margin:0;
color:#000000; 
}

p{
font-size:13px; 
line-height:17px;}

h2{
font-size:16px;
line-height:40px;
margin:0;
color:#000000; 
text-transform:uppercase;
}

h3{
font-size:14px;
margin:0;
color:#000000;
}

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;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:#414958;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #4E5869;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width:80%;
	background:#ffffff;
	margin: 0 auto;
	text-align: left;
	padding:0;
	border:1px solid #999999;
	-moz-box-shadow: 1px 2px 4px 3px #999999;
	-webkit-box-shadow: 1px 2px 4px 3px #999999;
	box-shadow: 1px 2px 4px 3px #999999;
	-moz-border-radius-bottomleft:25px; 
	-moz-border-radius-bottomright:25px; 
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px;
	min-height:100%;

}

/* ~~ 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:url(hector_banner.jpg) #6F7D94 no-repeat;
	height:150px;
	/*hpadding: 0 10px 0 20px;   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. 
	margin-bottom:20px;*/

}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.aside {
	float: right;
	width: 20%;
	background: #93A5C4;
	padding:15px;
    margin-right:1.5em;
	margin-left:1em;
}

ul.sources{list-style-type:none;margin:0;padding:0; padding-bottom:20px; font-size:13px;line-height:20px;}
li.sources{}


.notepaper{
	-webkit-box-shadow: 0 2px 10px 1px #999999; 
	-moz-box-shadow: 0 2px 10px 1px #999999; 
	box-shadow: 0 2px 10px 1px #999999; 
	
	
	-webkit-border-bottom-left-radius: 10px 100px;
	-webkit-border-bottom-right-radius: 500px 30px;
	-webkit-border-top-right-radius: 5px 100px;
	
	-moz-border-radius-bottomleft: 100px 10px;
	-moz-border-radius-bottomright: 70px 300px;
	-moz-border-radius-topright: 5px 100px;	
	
	border-radius-bottomleft: 20px 500px;
	border-radius-bottomright: 500px 30px;
	border-radius-topright: 5px 100px;

background: #f7e9db;
	background: 
		-webkit-gradient(
			linear,
			left top, left bottom,
			from(#81cbbc),
			color-stop(5%, #f7e9db)
		);
		
	background: 
		-moz-repeating-linear-gradient(
			top,
			#f7e9db,
			#f7e9db 19px,
			#81cbbc 20px
		);
		
	background: 
		repeating-linear-gradient(
			top,
			#f7e9db
			#f7e9db 27px,
			#81cbbc 28px
		);		
		
	-webkit-background-size: 100% 40px;

	
}

.notepaper p{font-size:13px; line-height:20px;}

.notepaper img{	
}

.content {
	padding: 30px 0;
	width: 65%;
	margin-left:1.5em;

}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 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. */
}


nav{    
 float:left;
    width:93%;
	font-size:12px;
	margin-bottom:1em; 
	margin-top:1em;
	margin-left:1em;
	z-index:1000;
	border-bottom:1px solid #ccc;
}

    nav ul {
      margin:0;
      padding:10px 10px 0;
      list-style:none;
	 
      }

 nav li {
    float:left;
	width:15.6%;
    background:url("button_left_on.png") no-repeat left top;
    margin-right:1px;
    padding:0px 0 0 10px;
	text-align:center;


    }
nav a, nav strong, nav span {
    display:block;
	margin:0;
    background:url("button_right_on.png") no-repeat right top;
    padding:10px 10px 8px 0px;
	text-decoration:none;
    }
  nav #current {
    background:url("button_left.png") no-repeat left top;
    padding:0px 0 0 10px;
	color:#FFFFFF;

    }
  nav #current a {
    background:url("button_right.png") no-repeat right top;
    padding:10px 10px 8px 0px;
color:#FFFFFF;

    }


/* ~~ The footer ~~ */
.footer {
	padding: 8px 1.5em;
	background:#DDDDDD;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
		-moz-border-radius-bottomleft:25px; 
	-moz-border-radius-bottomright:25px; 
	border-bottom-left-radius:25px;
	border-bottom-right-radius:25px;
}

.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 */
	text-align:right;
}


/* ~~ 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-left: 8px;
}
.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;
}

.shadybox{
padding:10px;
margin:0;
background:#E4E4E4; 	
-moz-border-radius-bottomleft:20px; 
-moz-border-radius-bottomright:20px; 
	border-bottom-left-radius:20px;
	border-bottom-right-radius:20px;	
	
-moz-border-radius-topleft:20px; 
-moz-border-radius-topright:20px; 
	border-top-left-radius:20px;
	border-top-right-radius:20px;
}


.box{background:#FFFFFF; padding:5px; margin-top: 1em; border:none; text-decoration:none; width:10%;-moz-box-shadow: 1px 2px 4px 3px #999999;
	-webkit-box-shadow: 1px 2px 4px 3px #999999;
	box-shadow: 1px 2px 4px 3px #999999; vertical-align:top;}
	
	
.hector {background:#FFFFFF; padding:5px; margin-top: 1em; border:none; text-decoration:none; width:24%;-moz-box-shadow: 1px 2px 4px 3px #999999;
	-webkit-box-shadow: 1px 2px 4px 3px #999999;
	box-shadow: 1px 2px 4px 3px #999999; vertical-align:top;}	
	
ul.lists{list-style-type:none;margin:0;padding:0; padding-bottom:20px; font-size:13px;line-height:19px;}
li.lists{}

#map {background:#fff; padding-top:2em;}
#map p{color:#999}

#hectorlogo{
	border:none;
	width:446px;
	position:absolute;
	z-index:999;
	margin-top:7.5em;
	margin-left:16em;
	left: 69px;
	top: -94px;
	height: 100px;

}

#hectorlogo a i {visibility:hidden; text-decoration:none; display:block; height:110px;}

#unilogo{
	border:none;
	width:90px;
	z-index:1000;
	position:absolute;
	margin-top:0.5em;
	margin-left:2em;	
}

#unilogo a i {visibility:hidden; text-decoration:none; display:block; height:130px;}

/*hector map for iDevices*/

#Table_01 {
	position:absolute;
	left:0px;
	top:0px;
	width:4000px;
	height:3485px;
}

#Hector-01 {
	position:absolute;
	left:0px;
	top:0px;
	width:800px;
	height:697px;
}

#Hector-02 {
	position:absolute;
	left:800px;
	top:0px;
	width:800px;
	height:697px;
}

#Hector-03 {
	position:absolute;
	left:1600px;
	top:0px;
	width:800px;
	height:697px;
}

#Hector-04 {
	position:absolute;
	left:2400px;
	top:0px;
	width:800px;
	height:697px;
}

#Hector-05 {
	position:absolute;
	left:3200px;
	top:0px;
	width:800px;
	height:697px;
}

#Hector-06 {
	position:absolute;
	left:0px;
	top:697px;
	width:800px;
	height:697px;
}

#Hector-07 {
	position:absolute;
	left:800px;
	top:697px;
	width:800px;
	height:697px;
}

#Hector-08 {
	position:absolute;
	left:1600px;
	top:697px;
	width:800px;
	height:697px;
}

#Hector-09 {
	position:absolute;
	left:2400px;
	top:697px;
	width:800px;
	height:697px;
}

#Hector-10 {
	position:absolute;
	left:3200px;
	top:697px;
	width:800px;
	height:697px;
}

#Hector-11 {
	position:absolute;
	left:0px;
	top:1394px;
	width:800px;
	height:697px;
}

#Hector-12 {
	position:absolute;
	left:800px;
	top:1394px;
	width:800px;
	height:697px;
}

#Hector-13 {
	position:absolute;
	left:1600px;
	top:1394px;
	width:800px;
	height:697px;
}

#Hector-14 {
	position:absolute;
	left:2400px;
	top:1394px;
	width:800px;
	height:697px;
}

#Hector-15 {
	position:absolute;
	left:3200px;
	top:1394px;
	width:800px;
	height:697px;
}

#Hector-16 {
	position:absolute;
	left:0px;
	top:2091px;
	width:800px;
	height:697px;
}

#Hector-17 {
	position:absolute;
	left:800px;
	top:2091px;
	width:800px;
	height:697px;
}

#Hector-18 {
	position:absolute;
	left:1600px;
	top:2091px;
	width:800px;
	height:697px;
}

#Hector-19 {
	position:absolute;
	left:2400px;
	top:2091px;
	width:800px;
	height:697px;
}

#Hector-20 {
	position:absolute;
	left:3200px;
	top:2091px;
	width:800px;
	height:697px;
}

#Hector-21 {
	position:absolute;
	left:0px;
	top:2788px;
	width:800px;
	height:697px;
}

#Hector-22 {
	position:absolute;
	left:800px;
	top:2788px;
	width:800px;
	height:697px;
}

#Hector-23 {
	position:absolute;
	left:1600px;
	top:2788px;
	width:800px;
	height:697px;
}

#Hector-24 {
	position:absolute;
	left:2400px;
	top:2788px;
	width:800px;
	height:697px;
}

#Hector-25 {
	position:absolute;
	left:3200px;
	top:2788px;
	width:800px;
	height:697px;
}