body {
	background-color: #b2c7dc;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 13px;
	line-height: 130%;
	margin-top: 13px;
	margin-bottom: 13px;
}
p {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 13px;
	line-height: 130%;
	margin-top: 13px;
	margin-bottom: 13px;
}
ul {
	padding-left:18px;
}
li {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size: 13px;
	line-height: 130%;
	padding-left:0px;
	margin-bottom:4px;
	list-style-image:url(/images/bullet.gif);
}
li.list-morespace {margin-bottom:8px;}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	line-height: 130%;
	font-weight: Bold;
	color: #990000;
	margin-top: 0px;
	margin-bottom: 13px;
}
h1.h1-top {margin-top:96px;}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: Bold;
	font-size: 16px;
	line-height: 130%;
	margin-top: 22px;
	margin-bottom: 13px;
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: Bold;
	font-size: 14px;
	line-height: 130%;
	color: #990000;
	margin-top: 18px;
	margin-bottom: 13px;
}
div.Column-Left {
	float:left;
	width:45%;
	padding-left: 15px;
	padding-right:15px;
}
div.Column-Right {
	float:right;
	width:40%;
	padding-left: 15px;
	padding-right:15px;
}
div.Column-Left-Home {
	float:left;
	width:45%;
	padding-left: 15px;
	padding-right:15px;
}
div.Column-Right-Home {
	float:right;
	width:45%;
	padding-left: 15px;
	padding-right:15px;
}
input {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    border: 1px solid #678796;
}
.button {
	background-color: #678796;
	color: #ffffff;
	border: 1px solid #678796;
}
.image-theme {
	margin-bottom:16px;
	margin-top:16px;
	float:right;
}
.footer {
	font-size: 11px;
}
.LessParagraphSpace {
	margin-bottom: 0px;
}
.ruled-text {
	margin-top: 6px;
	margin-bottom: 6px;
	padding-top: 6px;
	border-top: 1px solid #b2c7dc;
}
.title {
	font-size: 11px;
	color: #666666;
}

/* ------- COLORS ------- */
.blue-outreach {color: #42535D;}
.blue-education {color: #678796;}
.blue-connections {color: #709FBD;}
.red {color: #FF0000;}


/* ------- HYPERLINKS ------- */
a {
	color: #015C9E;
	text-decoration: none;
}
a:HOVER {
	color: #990000;
	text-decoration: underline;
}

/* ------- TABLES ------- */
td {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 130%;
}
table.table-MainFrame {
	width: 830px;
	background-color: #FFFFFF;
}
td.table-MainFrame-Left {
	width: 176px;
	padding: 0px 0px 15px 0px;
}
td.table-MainFrame-Right {
	padding: 0px 15px 15px 0px;
}


/* ------- PULLDOWN TEXT ------- */
.trigger {
	font-size: 11px;
	margin-bottom: 0;
}
.trigger-active {background-position: left bottom;}
/*--When toggle is triggered, it will shift the image to the bottom to show its "opened" state--*/

.toggle_container {
	margin: 0;
	padding: 0;
	overflow: hidden;
	clear: both;
}


<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>

<script type="text/javascript">
$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("p.trigger").toggle(function(){
		$(this).addClass("trigger-active"); 
		}, function () {
		$(this).removeClass("trigger-active");
	});
	
	$("p.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});

});
</script>