/*
	Here is the stylesheet for the site. If you change the name of this file you will also have to change the corrosponding line
	in the html file. I have documented the things that you will probably want to change which is mainly color and font styles.
	If you are completely unfamiliar with CSS you should definitely visit http://w3schools.com for a brush up on how things
	work. Also I often times use a 3 digit color format which some people may not be familiar with. It's just a shorthand
	way of writing colors. You just duplicate each number and you will get the 6 digit hex code.
	Examples:
	#fff = #ffffff
	#000 = #000000
	#43f = #4433ff
*/

/*
	body
	This is the body tag. The main items you may want to change are background, font, line-height, and color.
	In the background tag change the hex code to the color of your background that you figured out.
	DO NOT change the font size from 0px. It is set that way to fix a design issue, the size of the text for each
	panel is set later in this document. If you change the color tag it will set the default color for text.
*/
body {	font: 1px Arial, Tahoma, sans-serif;
}


p {
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

h1 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 20px;
	color: #D13516;
	width: 100%;
}

h2 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 18px;
	color: #3656b0;
}

h3, h4, h5, h6 {
	margin: 0px 0px 5px 0px;
	padding: 0px;
	font-size: 16px;
	color: #3656b0;
}

img {
	display: block;
	margin: 7px;
	padding: 0px;
}

a, .jsLink {
	color: #3656b0;
	text-decoration: none;
	cursor: pointer;
}

a:hover, .jsLink:hover {
	color: #3656b0;
}

.jsImgLink{
	cursor: pointer;
}

.fullImage {
	width: 100%;
	overflow: scroll;
}

.dojoTabPane {
  padding : 10px 10px 10px 10px;
  overflow: auto;
}

dojoDialog {
	background : #ffffff;
	border : 1px solid #999;
	-moz-border-radius : 5px;
	padding : 4px;
	width: 700px;
	height: 100%;
	overflow: scroll;
	}
