/*
	custom version of /templates/popups/template.css
	for HSA popups
*/

/*
	==============
	generic layout
	==============
*/

* {
	padding: 0;
	margin: 0;
}

/*
	if you want to do custom styling for a single popup, you
	can use an id attribute in the body tag. make it unique
	among all popups.
	Example: http://mdk12.org/assessments/high_school/look_like/2005/english/resources/starwalking.html
*/

body {
	background-color: white;
	margin-top: 0.5em;
	margin-bottom: 1em;
}

div.popup {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid black;
}

/*
	=======================
	generic text for links.
	=======================
*/

a.popupLink {
	font-family: arial, helvetica;
	font-size: 12px;
	text-decoration: none;
	float: right;
	font-weight: normal;
	color: white;
}


a.popupLinkLeft {

	font-family: arial, helvetica;
	font-size: 12px;
	text-decoration: none;
	font-weight: normal;
	color: white;
}

/*
	=======================================================
	topnavbar, botnavbar
	the top and bottom areas which hold the popup title and
	the print and close buttons
	=======================================================
*/

div.topnavbar, div.botnavbar {
	height: 1.3em;
}

div.topnavbar p, div.botnavbar p {
	font-family: arial, helvetica;
	font-size: 12px;
	font-weight: bold;
	margin-left: 0;
	text-indent: 0;
	padding-top: 2px;
	padding-left: 0.3em;
	padding-right: 0.7em;
}

div.topnavbar {
	border-bottom: 1px solid black;	
}

div.botnavbar {
	border-top: 1px solid black;
}

/*
	title is in the topnavbar
*/

.title {
	float: left;
}

a {
	text-decoration: none;
}

/*
	====================
	generic content area
	====================
*/

div.popuptext {
	padding-left: 1em;
	padding-right: 1em;
}

/*
	=============
	Color schemes
	=============
*/

/*
	HSA color schemes
	white text on blue backgrounds
	this will override the generic unless removed
*/

div.topnavbar, div.botnavbar {
	background-color: #666699;
}

div.topnavbar p, div.botnavbar p {
	color: #cccccc;
}

a.popupLink {
	color: white;
}

/*
	the content area has a gray border on top and
	a pale green border on the bottom.
	div.popuptext surrounds all the content in the
	popup.
*/

div.popuptext {
	border-top: 10px solid #e5e5e5;
	border-bottom: 10px solid #ccffcc;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
}

dt {
	font-weight: bold;
	display: run-in;
}

dd {
	margin-bottom: 1.5em;
}

dl {
	margin-top: 1.5em;
	margin-bottom: 3em;
}




