/* CSS Document */

/*

Organized by:

Typography
General Layout

Navigation
Header
Main
Footer

Forms and Tables
Overlay
Home Page
Misc.

*/



/* Typography
-------------------------------------------------------------- */

body { 
	color: #2D2D2D; 
	font-family: Arial, Helvetica, sans-serif;
	}

a { color: #3399CC; text-decoration: underline; }
a:hover { color: #3399CC; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { color: #FFF; }
h2 { font-size: 1.7em; font-weight: bold; }
h4 { font-size: 1.3em; font-weight: bold; }
h5 { font-size: 1.2em; margin-bottom: 0.5em; }
h6 { color: #99CC00; letter-spacing: 1px; }



/* General Layout
-------------------------------------------------------------- */

html, body, #wallpaper, #wallpaper table, #wallpaper td, #content {
	width: 100%;
	height: 100%;
	overflow: hidden;
	}

body { 
	margin: 0;
	background-color: #000;
	}
	
#header {
	position: fixed;
	width: 1000px;
	height: 158px;
	z-index: 15;
	background: url(/img/bg_header.png) no-repeat 0 83px;
	}
body#home #header {
	top: 20%;
	left: 0;
	width: 100%;
	height: 130px;
	background: url(/img/bg_header_repeat.png) repeat-x 0 55px;
	}

#content {
	position: relative;
	overflow: auto;
	z-index: 5;
	}
body#home #content {
	width: 608px;
	margin: 0 auto;
	padding: 10px 0 50px 392px;
	}
	
.container {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	background: url(/img/bg_content.png) no-repeat 345px 173px;
	}
.container-full {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	}	
#main {
	float: right;
	width: 480px;
	margin: 183px 35px 50px 0;
	padding: 40px 70px;
	background: url(/img/bg_main.png) no-repeat bottom left;
	}
#main-wide {
	float: right;
	width: 945px;
	margin: 183px 35px 50px 0;
	padding: 40px 75px;
	}
#main-pop {
	float: right;
	width: 480px;
	margin: 183px 35px 50px 0;
	padding: 40px 70px;
	background: url(/img/bg_main.png) no-repeat bottom left;
	padding-left:50px;
	}	
#sidebar {
	position: fixed;
	top: 173px;
	width: 270px;
	margin-left: 60px;
	}

#footer {
	position: fixed;
	bottom: 0;
	height: 30px;
	z-index: 10;
	background: url(/img/bg_footer.png) repeat-x top left;
	}
body#home #footer {
	width: 100%;
	background: url(/img/bg_footer_repeat.png) repeat-x top left;
	}



/* Navigation
-------------------------------------------------------------- */

#header ul {
	float: right;
	margin: 90px 60px 0 0;
	padding: 0;
	list-style: none;
	}
#header li {
	position: relative;
	float: left;
	height: 55px; 
	margin-right: 25px;
	}
#header li.selected { background-position: bottom right; }
#header li:hover, #header li.sfhover { background-position: top right; }
#header li a {
	display: block;
	float: left;
	width: 175px;
	height: 55px;
	text-indent: -9000px;
	overflow: hidden;
	}

li.learn { background: url(/img/nav_learn.png) no-repeat top left; }
li.grow { background: url(/img/nav_grow.png) no-repeat top left; }
li.start { background: url(/img/nav_start.png) no-repeat top left; }

/* First-level Dropdown */

#header li ul {
	position: absolute;
	left: -999em;
	width: 185px;
	height: auto;
	margin: 36px 0 0 -20px;
	padding: 10px 15px 15px;
	list-style: none;
	background: url(/img/bg_nav_dropdown.png) no-repeat bottom right;
	z-index: 20;
	}
#header li:hover ul, #header li.sfhover ul { left: 0; }
#header li ul li {
	float: none;
	height: auto;
	margin: 0;
	background: none;
	}
#header li ul a {
	float: none;
	width: auto;
	height: 15px;
	padding: 5px 15px;
	text-indent: 0;
	color: #FFF;
	font: 1em Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
	}
#header li ul a:hover { background: url(/img/bg_dropdown_link.png) no-repeat top left; }
	


/* Header
-------------------------------------------------------------- */			

#header div {
	position: absolute;
	right: 0;
	top: 0;
	width: auto;
	margin: 10px 80px 0 0;
	}

#header h1 {
	float: left;
	margin: 28px 0 0 0;
	padding-bottom: 10px;
	width: 224px;
	height: 120px;
	text-indent: -9000px;
	background: url(/img/logo.png) no-repeat top left;
	}
#header h1 a {
	display: block;
	height: 120px;
	background: url(/img/logo.png) no-repeat top left;
	}
#header h1 a:hover { background-position: top right; }

#header p {
	margin-top: 10px;
	color: #CCC;
	font: 0.83em Georgia, "Times New Roman", Times, serif; 
	}
#header p a {
	color: #FFF;
	text-decoration: none;
	}
#header p a:hover { text-decoration: underline; }
	
#header div h6 { margin-left: 10px; }
	
#header .arrow {
	display: block; 
	height: 25px;
	padding-left: 11px;
	background: url(/img/bg_gray_capsule_left.png) no-repeat top left; 
	}
#header .arrow span {
	display: block;
	height: 20px;
	padding: 5px 25px 0 0;
	background: url(/img/bg_gray_capsule_right.png) no-repeat top right;
	cursor: pointer; 
	}
	
#header .note {
	position: absolute;
	left: 204px;
	top: 100px;
	}
#header .note span { margin-left: 10px; }
#header .note a, #header .note a:visited {
	color: #CCC;
	text-decoration: underline;
	}
#header .note a:hover { text-decoration: none; }



/* Main
-------------------------------------------------------------- */

h2.title {
	width: 530px;
	height: 118px;
	margin: 0 -25px 20px;
	text-indent: -9000px;
	}
	
h2.available { background: url(/img/title_available.png) no-repeat top left; }
h2.downtown-developments { background: url(/img/title_downtown_developments.png) no-repeat top left; }
h2.community { background: url(/img/title_community.png) no-repeat top left; }
h2.community-partners { background: url(/img/title_community_partners.png) no-repeat top left; }
h2.connect { background: url(/img/title_connect.png) no-repeat top left; }
h2.information { background: url(/img/title_information.png) no-repeat top left; }
h2.neighborhood_overview { background: url(/img/title_neighborhood_overview.png) no-repeat top left; }
h2.neighborhood_directory { background: url(/img/title_neighborhood_directory.png) no-repeat top left; }
h2.news { background: url(/img/title_news.png) no-repeat top left; }
h2.additional-resources { background: url(/img/title_additional_resources.png) no-repeat top left; }
h2.opening { background: url(/img/title_opening.png) no-repeat top left; }
h2.resources { background: url(/img/title_resources.png) no-repeat top left; }
h2.vision { background: url(/img/title_vision.png) no-repeat top left; }
h2.working { background: url(/img/title_working.png) no-repeat top left; }
h2.help { background: url(/img/title_help.png) no-repeat top left; }
h2.privacy { background: url(/img/title_privacy.png) no-repeat top left; }
h2.terms { background: url(/img/title_terms.png) no-repeat top left; }

h6.subtitle {
	width: 150px;
	height: 25px;
	margin: 0;
	text-indent: -9000px;
	}

h6.eastvillage { background: url(/img/neighborhood-eastvillage.png) no-repeat top left; }
h6.northpine { background: url(/img/neighborhood-northpine.png) no-repeat top left; }
h6.pine { background: url(/img/neighborhood-pine.png) no-repeat top left; }
h6.waterfront { background: url(/img/neighborhood-waterfront.png) no-repeat top left; }
h6.westgateway { background: url(/img/neighborhood-westgateway.png) no-repeat top left; }

.neighborhood-flash {
	margin: 0 -25px 20px;
}

#main h6 {
	margin-bottom: 5px;
	color: #3399CC;
	font-family: Georgia, "Times New Roman", Times, serif; 
	font-style: italic;
	}	
	
#main h6.heading-eastvillage {
	color: #A77B48;
	font-size: 18px;
	padding-bottom: 10px;
	margin-top: -10px;
	margin-left: -25px;	
}
#main h6.heading-northpine {
	color: #F2991E;
	font-size: 18px;
	padding-bottom: 10px;
	margin-top: -10px;
	margin-left: -25px;
}
#main h6.heading-pine {
	color: #862A8B;
	font-size: 18px;
	padding-bottom: 10px;
	margin-top: -10px;
	margin-left: -25px;
}
#main h6.heading-westgateway {
	color: #0CACD1;
	font-size: 18px;
	padding-bottom: 10px;
	margin-top: -10px;
	margin-left: -25px;
}
#main h6.heading-waterfront {
	color: #9EC744;
	font-size: 18px;
	padding-bottom: 10px;
	margin-top: -10px;
	margin-left: -25px;
}

#main h6.green-bubble {
	width: 480px;
	height: 21px;
	margin: 0 -25px 10px;
	padding: 4px 25px 0;
	background: url(../img/bg_bubble_green.png) no-repeat top left;
	color: #FFF;
	}
	
#main p, #main li { font-size: 0.92em; }
#main li li { font-size: 100%; }

ul.directory {
	margin: 0 -25px;
	padding: 0;
	list-style: none;
	}
.directory li {
	float: left;
	width: 249px;
	margin-bottom: 20px;
	padding-left: 15px;
	border-left: 1px solid #92278F;
	}
li.heading-eastvillage { border-color: #A77B48; }
li.heading-northpine { border-color: #F2991E; }
li.heading-pine { border-color: #92278F; }
li.heading-westgateway { border-color: #0CACD1; }
li.heading-waterfront { border-color: #9EC744; }

.directory h5 {
	margin-bottom: 0.2em;
	color: #92278F;
	font: italic bold 1.5em Georgia, "Times New Roman", Times, serif;
	}
h5.heading-eastvillage { color: #A77B48; }
h5.heading-northpine { color: #F2991E; }
h5.heading-pine { color: #92278F; }
h5.heading-westgateway { color: #0CACD1; }
h5.heading-waterfront { color: #9EC744; }	
	
#main .directory h6 {
	margin-bottom: 0.75em;
	color: #999;
	font: normal normal bold 1em Arial, Helvetica, sans-serif;
	}
#main .directory p {
	margin: 4px 0;
	font-size: 100%; 
	}
.directory a {
	padding-left: 17px;
	background: url(../img/arrow_green.png) no-repeat 0 50%;
	color: #9CC83B;
	text-decoration: none;
	}
.directory a:hover { text-decoration: underline; }

ul.spaces {
	margin: 0 -25px;
	padding: 0;
	list-style: none;
	}
.spaces li {
	width: 510px;
	height: 136px;
	padding: 10px;
	margin-bottom: 10px;
	background: url(../img/bg_spaces.png) repeat-x top left;
	}
.spaces img {
	float: left;
	margin-right: 20px;
	}
.spaces div {
	float: right;
	width: 297px;
	}
.spaces h4 {
	margin-bottom: 8px;
	color: #28A9D6;
	font-style: italic;
	font-family: Georgia, "Times New Roman", Times, serif;
	}
.spaces p { margin-bottom: 8px; }	
.spaces a.bubble {
	display: block;
	width: 261px;
	height: 21px;
	padding: 4px 15px 0;
	background: url(../img/bg_bubble_link_large.png) no-repeat top left;
	color: #FFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-decoration: none;
	}
.spaces a.bubble:hover {
	color: #FFF;
	text-decoration: underline;
	}	

.call-out {
	float: right;
	width: 180px;
	margin: 10px -25px 10px 10px;
	padding: 10px;
	background-color: #ACDB43;
	}
#main .call-out p { color: #FFF; }



/* Sidebar
-------------------------------------------------------------- */

#sidebar ul {
	position: relative;
	width: 270px;
	height: 530px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: url(/img/bg_sidebar.png) no-repeat top left;
	}

#sidebar li {
	width: 233px;
	height: 134px;
	margin: 0;
	padding: 20px 15px;
	}
#sidebar .extended{
	line-height: 15px;
}	
	
li.map { background: url(/img/bg_mod_map.png) no-repeat top left; }	
li.queen-mary { background: url(/img/bg_mod_queen_mary.png) no-repeat top left; }	
li.george-loizides { background: url(/img/bg_mod_george_loizides.png) no-repeat top left; }
li.bicycles { background: url(/img/bg_mod_bicycles.png) no-repeat top left; }
li.freeway { background: url(/img/bg_mod_freeway.png) no-repeat top left; }
li.outdoor { background: url(/img/bg_mod_outdoor_dining.png) no-repeat top left; }
li.sunlight { background: url(/img/bg_mod_sunlight.png) no-repeat top left; }
li.lofts { background: url(/img/bg_mod_lofts.png) no-repeat top left; }
li.pedestrians { background: url(/img/bg_mod_pedestrians.png) no-repeat top left; }
li.palms { background: url(/img/bg_mod_palms.png) no-repeat top left; }

li.ace-hardware { background: url(/img/bg_mod_trent_barnes.png) no-repeat top left; }
li.allen { background: url(/img/bg_mod_cindy_allen.png) no-repeat top left; }
li.benaderet { background: url(/img/bg_mod_bob_benaderet.png) no-repeat top left; }
li.ghiassi { background: url(/img/bg_mod_ghiassi.png) no-repeat top left; }
li.kripps { background: url(/img/bg_mod_kripps.png) no-repeat top left; }
li.kwan { background: url(/img/bg_mod_kwan.png) no-repeat top left; }
li.shekerdemian { background: url(/img/bg_mod_varouj_shekerdemian.png) no-repeat top left; }

#sidebar a, #sidebar a:visited {
	color: #FFF;
	font-weight: normal;
	text-decoration: none;
	}
#sidebar a:hover { text-decoration: underline; }

h3.title {
	margin: 0 0 10px;
	text-indent: -9000px;
	}
h3.ace-hardware { height: 52px; background: url(/img/title_ace_hardware.png) no-repeat top right; }
h3.allen { height: 52px; background: url(/img/title_allen.png) no-repeat top right; }
h3.benaderet { height: 52px; background: url(/img/title_benaderet.png) no-repeat top right; }
h3.did-you-know { height: 52px; background: url(/img/title_did_you_know.png) no-repeat top right; }
h3.enterprise-zone { height: 52px; background: url(/img/title_enterprise_zone.png) no-repeat top right; }
h3.george-loizides { height: 52px; background: url(/img/title_george_loizides.png) no-repeat top right; }
h3.ghiassi { height: 52px; background: url(/img/title_ghiassi.png) no-repeat top right; }
h3.kripps { height: 52px; background: url(/img/title_kripps.png) no-repeat top right; }
h3.kwan { height: 52px; background: url(/img/title_kwan.png) no-repeat top right; }
h3.shekerdemian { height: 52px; background: url(/img/title_shekerdemian.png) no-repeat top right; }

#sidebar p {
	color: #FFF;
	font: bold 0.83em Georgia, "Times New Roman", Times, serif;
	text-align: right; 
	}
#sidebar p em { color: #3399CC; }

#sidebar .arrow  {
	display: block;
	float: right; 
	height: 25px;
	padding-left: 11px;
	background: url(/img/bg_green_capsule_left.png) no-repeat top left; 
	}
#sidebar .arrow span {
	display: block;
	height: 20px;
	padding: 5px 23px 0 0;
	background: url(/img/bg_green_capsule_right.png) no-repeat top right;
	cursor: pointer; 
	}	



/* Footer
-------------------------------------------------------------- */

#footer div {
	width: 960px;
	margin: 0 auto;
	padding: 5px 20px 0;
	}
	
#footer p {
	color: #FFF;
	font-size: 0.92em; 
	}
#footer a, #footer a:visited {
	margin-right: 20px;
	color: #FFF;
	text-decoration: none;
	}
#footer a:hover { text-decoration: underline; }
#footer p.right a { margin-right: 0; }


/* Forms and Tables
-------------------------------------------------------------- */

#register label {
	display: inline;
	float: left;
	width: 140px;
	padding: 3px 5px;
	color: #3399CC;
	font: italic normal bold 1em Georgia, "Times New Roman", Times, serif;
	}
#register input {
	display: inline;
	width: 173px;
	margin: 0;
	padding: 3px 2px;
	border: 1px solid #C1C1C1;
	border-top: none;
	background: url(../img/bg_input.gif) repeat-x top left;
	font-size: 1em;
	}
#register div { clear: both; margin-bottom: 10px; }
#register div.submit input {
	display: block;
	margin-top: 20px;
	margin-left: 150px;
	padding: 3px 5px;
	background-color: #3399CC;
	background-image: none;
	border: none;
	color: #FFF;
	font: normal normal bold 1.25em Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	}



/* Overlay
-------------------------------------------------------------- */

#profile { padding: 20px; }

#profile #main {
	float: left;
	display: inline;
	width: 490px;
	margin: 0;
	padding: 0;
	background: none;
	}

#profile #sidebar {
	position: relative;
	top: 0;
	left: 0;
	float: left;
	display: inline;
	width: 270px;
	margin: 0 30px 0 0;
	z-index: auto;
	background: none;
	}
	
#profile .column {
	float: left;
	display: inline;
	width: 240px;
	margin-right: 10px;
	}
#profile .last { margin-right: 0; }

#profile h2.title {
	width: 490px;
	height: 84px;
	margin: 0;
	text-indent: -9000px;
	}
h2.george-loizides { background: url(/img/title_george_loizides.gif) no-repeat top left; }
h2.ace-hardware { background: url(/img/title_ace_hardware.gif) no-repeat top left; }
h2.andy-allison-kripp { background: url(/img/title_andy_allison_kripp.gif) no-repeat top left; }
h2.bob-benaderet { background: url(/img/title_bob_benaderet.gif) no-repeat top left; }
h2.cindy-allen { background: url(/img/title_cindy_allen.gif) no-repeat top left; }
h2.did-you-know { background: url(/img/title_did_you_know.gif) no-repeat top left; }
h2.enterprise-zone { background: url(/img/title_enterprise_zone.gif) no-repeat top left; }
h2.michael-marcus-kwan { background: url(/img/title_michael_marcus_kwan.gif) no-repeat top left; }
h2.pizza-pi { background: url(/img/title_pizza_pi.gif) no-repeat top left; }
h2.varouj-shekerdemian { background: url(/img/title_varouj_shekerdemian.gif) no-repeat top left; }

h2.business-retention { background: url(/img/popup_header_retention.png) no-repeat top left; }
h2.tax-incentives { background: url(/img/popup_header_tax.png) no-repeat top left; }
h2.grants { background: url(/img/popup_header_grants.png) no-repeat top left; }
h2.loans { background: url(/img/popup_header_loans.png) no-repeat top left; }
h2.planning { background: url(/img/popup_header_planning.png) no-repeat top left; }
h2.training { background: url(/img/popup_header_training.png) no-repeat top left; }
h2.other { background: url(/img/popup_header_other.png) no-repeat top left; }
h2.open { background: url(/img/popup_header_open.png) no-repeat top left; }

#profile h3 {
	color: #CCC;
	font: italic normal bold 1.5em Georgia, "Times New Roman", Times, serif;
	}



/* Home Page
-------------------------------------------------------------- */

body#home #header div {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	background: url(../img/bg_header.png) no-repeat 0 55px;
	}

body#home #header h1 { margin: 0; }
	
body#home #header .note { top: 72px; }
	
body#home #header ul { margin-top: 62px; }
body#home #header li ul { margin-top: 36px; }

.register {
	position: relative;
	width: 920px;
	margin: 0 auto;
	padding: 10px 80px 0 0;
	text-align: right;
	z-index: 5;
	}
.register p {
	margin-top: 10px;
	color: #CCC;
	font: 0.83em Georgia, "Times New Roman", Times, serif; 
	}
.register p a {
	color: #FFF;
	text-decoration: none;
	}
.register p a:hover { text-decoration: underline; }	
.register h6 { margin-right: 28px; }
.register .arrow {
	float: right;
	display: block; 
	height: 25px;
	padding-left: 11px;
	background: url(/img/bg_gray_capsule_left.png) no-repeat top left; 
	}
.register .arrow span {
	display: block;
	height: 20px;
	padding: 5px 25px 0 0;
	background: url(/img/bg_gray_capsule_right.png) no-repeat top right;
	cursor: pointer; 
	}
	
body#home #content ul {
	position: fixed;
	bottom: 10%;
	width: 552px;
	height: 174px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: url(/img/bg_modules_home.png) no-repeat top left;
	}
body#home #content li {
	float: left;
	width: 233px;
	height: 134px;
	margin: 0 21px 0 0;
	padding: 20px 15px;
	}
body#home #content li.last { margin-right: 0; }

body#home #content a, body#home #content a:visited {
	color: #FFF;
	font-weight: normal;
	text-decoration: none;
	}
body#home #content a:hover { text-decoration: underline; }

body#home #content p {
	color: #FFF;
	font: bold 0.83em Georgia, "Times New Roman", Times, serif;
	text-align: right; 
	}
body#home #content p em { color: #3399CC; }

body#home #content .arrow {
	display: block;
	float: right; 
	height: 25px;
	padding-left: 11px;
	background: url(/img/bg_green_capsule_left.png) no-repeat top left; 
	}
body#home #content .arrow span {
	display: block;
	height: 20px;
	padding: 5px 23px 0 0;
	background: url(/img/bg_green_capsule_right.png) no-repeat top right;
	cursor: pointer; 
	}



/* Misc.
-------------------------------------------------------------- */

.left { float: left; }
.right { float: right; }
.last { margin-right: 0; }
img.left { margin-right: 5px; }

.arrow {
	padding-right: 20px;
	background: url(/img/arrow_green.png) no-repeat 100% 50%;
	}

.arrow-left {
	padding-left: 15px;
	background: url(/img/arrow_green.png) no-repeat 0% 50%;
	}	
a.bubble {
	display: block;
	width: 210px;
	height: 21px;
	margin-bottom: 5px;
	padding: 4px 15px 0;
	background: url(/img/bg_bubble_link.gif) no-repeat top left;
	color: #FFF;
	text-decoration: none;
	}
a.bubble:hover {
	color: #FFF;
	text-decoration: underline;
	}

.dropshadow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	z-index: 5;
	background: url(/img/dropshadow.png) repeat-x top left;
	}	
	
.header-bar {
	position: fixed;
	top: 83px;
	width: 100%;
	height: 75px;
	z-index: 1;
	background: url(/img/bg_header_repeat.png) repeat-x top left;
	}
	
.footer-bar {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 30px;
	z-index: 1;
	background: url(/img/bg_footer_repeat.png) repeat-x top left;
	}
	
#wallpaper div {
	position: absolute;
	width: 200%;
	height: 200%;
	top: -50%;
	left: -50%;
	}
#wallpaper td {
	vertical-align: middle;
	text-align: center;
	}
#wallpaper img {
	min-height: 50%;
	min-width: 50%;
	margin: 0 auto;
	}
	
.content-image-right{
	float:right;
	padding: 0px;
	padding-left: 5px;
	margin: 0px;
}


.content-image-left{
	float:left;
	padding: 0px;
	padding-right: 5px;
	margin: 0px;

}

.pad{
	padding:5px;
}
.padding-top-10{
	padding-top: 10px;
}
#space-neighborhood{
	border-color: white;
	background-repeat: repeat;
	background-image: url(/img/bg_white_50_transparent.png);
	border-style: solid;
	border-width: 1px;
	padding:10px;
	margin-bottom: 10px;
	padding-bottom: 0px;
}

#space-neighborhood-thumbnail{
	width:150px;
	float:left;	
}

#space-detail-content{
	margin-left: -20px;
}
#space-detail-agent{
	margin-left: 130px;
}
.agent-thumbnail{
	float:left;
	padding-right:10px; 
	padding-bottom:10px;
	padding-top:15px;
}

.margin-top-neg-10{
	margin-top: -10px;
}

#stwrapper{
	margin-top:-315px;
	margin-left:-25px;
}

#overview-btn-container {
	height: 89px;
	margin: 0 -21px;
}
.overview-btn {
	margin: 0;
	padding: 0;
	list-style: none;
}
.overview-btn li { float: left; }
.overview-left-btn { margin-right: 10px; }

.resources-pop{
padding-left:15px;
padding-right:15px;
}

.resources-pop a{
margin-top:15px;
}

.resources-body h3{
	margin-top:-25px;


}

.resources-pop p, .resources-pop{
		font-size: 0.92em
}

