﻿/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

/* 
  DoDEA Specific Styles and layout by DoDEA Webmaster Martin Fernandez
*/

@import url('/style/cs_overrides.css');
@import url("/style/menu.css");
@import url("/style/school.css");
@import url("/style/overlay.css");
@import url('/style/style_eu.css'); /* test only */


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #000; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; line-height: 150%; }
/*ol { list-style-type: decimal; }*/
ol {margin-bottom: 10px;margin-top: 10px;}
ol li {margin-bottom: 5px;}
/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
 	border-radius: 1px;
	-moz-box-shadow: 0px 0px 5px red; 
	-webkit-box-shadow: 0px 0px 5px red; 
    box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #FF5E99; color:#fff; text-shadow: none; }
::selection { background:#FF5E99; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

.clearAll { clear: both; }

/* Primary Styles
* Author: DoDEA Webmaster: Martin Fernandez
    
* Common broswer vendor prefixes

-khtml- Konqueror
-moz-  Mozilla
-ms- Microsoft
mso- Microsoft Office
-o- Opera
-webkit- Safari, Google Chrome and other webkit browsers

a.action {
	-webkit-border-radius : .8em;
	-moz-border-radius : .8em;
	border-radius : .8em;
}

for multiple bgs - first imag is on top
*/

/* Global Body and layout Settings
* These styles define layout
* Typography section below defines 
* Specifci definitions for individual menus are defined in
* menu.css for global menu
* dMenu.css for district menu
* school.css for school menu
*/

/* These styles define the header, footer and banner
* color images for the specific area sites */

/* Body style declaration moved to template-basepage.head to 
* prevent any conflicts when opening native dialogs in CS */
body {
	margin:0;
	padding: 0;
	background:#fff url('/templates/assets/body_bg.jpg') repeat-x 0 0;
}

.addMargin {
	margin: 10px 0 0 0;
}

/*HEADER SECIOTN SETTINGS */
/* Hq Settings*/
body.hq {
	background:#fff url('/templates/assets/body_bg.jpg') repeat-x 0 0;
}

body#partnership {
	background:#fff url('/templates/assets/body_bg.jpg') repeat-x 0 0;
}

body#ndsp {
	background:#fff url('/templates/assets/body_bg.jpg') repeat-x 0 0;
}

#DoDEALogo {
	display: block;
	height: 100px; 
	width: 215px;
	text-indent: -9999px;
/*	border: 1px solid #333;*/
	position: absolute;
	left: 0;
	top: 0;
}

#DoDEALogoFooter {
	display: block;
	height: 100px; 
	width: 215px;
	text-indent: -9999px;
/*	border: 1px solid #333;*/
	position: absolute;
	left: 0;
	top: 0;
}

#DoDLogo {
	display: block;
	height: 130px; 
	width: 130px;
	text-indent: -9999px;
/*	border: 1px solid #333;*/
	position: absolute;
	left: 41px;
	top: 125px;
}



#AreaLogo {
	display: block;
	height: 50px; 
	width: 150px;
	text-indent: -9999px;
/*	border: 1px solid #333;*/
	position: absolute;	
	left: 215px;
	top: 50px;
}

#DistrictLogo {
	display: block;
	height: 50px; 
	width: 250px;
	text-indent: -9999px;
/*	border: 1px solid #333;*/
	position: absolute;
	right: 75px;
	top:50px;
}



div.header ul{
	margin: 0;
	padding: 0;
	float: right;
}

div.header ul li{
	float:left;
	padding-right: 10px;
	position: relative; /*--Important--*/	
}

body.hq div.banner {
	background-image: url('/templates/assets/DoDEA.png');
}

div.banner {
	width: 940px;
	margin: 0 auto;
	position: relative;
	height: 147px;
	z-index: 110;
	background-position: top left;
	background-repeat: no-repeat;
}

/* Non DoD School Settings*/


body.ndsp div.banner {
	background-image: url('/templates/assets/ndsp-header.png');
}

/* Partnership Settings*/


body.partnership div.banner {
/*	background-image: url('/templates/assets/partnership.png');*/

background-image: url('/templates/assets/DoDEA.png');}


/* Virtual School Settings*/


body.dodea div.banner {
	background-image: url('/templates/assets/DoDEA.png');
}


/* Americas Settings*/
body.americas {

}



body.americas div.banner {
	background-image: url('/templates/assets/DoDEA-Americas.png');
}

/*Americas District/Community Specific Banner Images */
body.gaal div.banner,body.fortrucker div.banner,body.fortbenning div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-SouthEast.png');
}

body.ky div.banner,body.fortcampbell div.banner,body.fortknox div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-SouthEast.png');
}

body.ncfort div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-MidAtlantic.png');
}

body.nccamp div.banner{
	background-image: url('/templates/assets/DoDEA-Americas-MidAtlantic.png');
}

body.camp div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-MidAtlantic.png');
}

body.fortbragg div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-MidAtlantic.png');
}

body.nyvapr div.banner, body.puerto div.banner, body.dahlgren div.banner, body.quantico div.banner, body.west div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-MidAtlantic.png');
}

body.scft div.banner,body.fortstewart div.banner,body.fortjackson div.banner,body.mcas div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-SouthEast.png');
}

body.southeast div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-SouthEast.png');
}


body.midatlantic div.banner {
	background-image: url('/templates/assets/DoDEA-Americas-MidAtlantic.png');
}



/*Communities*/


/* Europe Settings*/
body.europe {

}



body.europe  div.banner{
	background-image: url('/templates/assets/DoDEA-Europe.png');
}

/*Europe District Specific Banner Images */
body.bavaria div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-Bavaria.png');
}

body.heidelberg div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-Heidelberg.png');
}

body.isles div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-Isles.png');
}

body.kaiserslautern div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-Kaiserslauten.png');
}

body.mediterranean div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-Mediterranean.png');
}

body.eueast div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-East.png');
}

body.euwest div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-West.png');
}

body.eusouth div.banner {
	background-image: url('/templates/assets/DoDEA-Europe-South.png');
}



/* Pacific Settings*/
body.pacific {

}



body.pacific div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific.png');
}

/*Pacific District Specific Banner Images */

body.guam div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-Guam.png');
}

body.japan div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-Japan.png');
}

body.korea div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-Korea.png');
}

body.okinawa div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-Okinawa.png');
}

body.paceast div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-East.png');
}

body.pacwest div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-West.png');
}

body.pacsouth div.banner {
	background-image: url('/templates/assets/DoDEA-Pacific-SOuth.png');
}


/*FALLBACK FOR BROWSERS THAT DO NOT SUPPORT MLTIPLE BACKGROUNDS */ 
.no-multiplebgs .header, .no-multiplebgs body#europe .header, .no-multiplebgs body#americas .header, .no-multiplebgs body#pacific .header {
	border: 0;
	margin: 0;
	padding: 0;
	background: url('/templates/assets/header_bg_bottom.jpg') bottom left repeat-x #006666;
}

.no-multiplebgs body#europe .header{
	background-color: #01597f;
}

.no-multiplebgs body#americas .header {
	background-color: #3f0068;
}

.no-multiplebgs body#pacific .header {
/*	background-color: #5d2407;*/
background-color: #4c040c;
}


/*Place holder for internal search widget */
div.headerBase {
	width: 980px;
	margin: 0 auto;
	padding: 0 0 20px 0;
}

/*internal Search Widgets */
div.search_container {
	position: absolute;
	z-index:5;
	background-color: #EEE;
	border: 5px solid #FFF;
	border-top: 0;
	padding: 5px 10px 2px 10px;
	/*box radius*/
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-bottomright: 15px;
	-moz-border-radius-bottomleft: 15px;
	-o-border-bottom-right-radius: 15px;
	-o-border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	/*box shadow*/
	-webkit-box-shadow: 5px 5px 5px #ccc;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-o-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc;
	margin-left: 700px;
}

.search_container .up {
	margin: 0;
	padding: 0;
	width: 230px;
	background:url('/templates/assets/search_up_btn.png') no-repeat bottom right;
	height:10px;
	cursor:pointer;
}

.search_container .down {
	margin: 0;
	padding: 0;
	width: 230px;
	background:url('/templates/assets/search_down_btn.png') no-repeat bottom right;
	height:10px;
	cursor:pointer;
	}
	
/*internal Search Widgets */
div.search_calendar_container {
	position: absolute;
	z-index:5;
	background-color: #EEE;
	border: 5px solid #FFF;
	border-top: 0;
	padding: 5px 10px 2px 10px;
	/*box radius*/
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	-moz-border-radius-bottomright: 15px;
	-moz-border-radius-bottomleft: 15px;
	-o-border-bottom-right-radius: 15px;
	-o-border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	/*box shadow*/
	-webkit-box-shadow: 5px 5px 5px #ccc;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-o-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc;
	margin-left: 420px;
}

.search_calendar_container .up {
	margin: 0;
	padding: 0;
	width: 230px;
	background:url('/templates/assets/search_cal_up_btn.png') no-repeat bottom right;
	height:10px;
	cursor:pointer;
}

.search_calendar_container .down {
	margin: 0;
	padding: 0;
	width: 230px;
	background:url('/templates/assets/search_cal_down_btn.png') no-repeat bottom right;
	height:10px;
	cursor:pointer;
	}

/* /HEADER SECTION SETTINGS */




/* MAIN CONTENT AREA SETTINGS */

#schoolHeader {
	position: relative;
	width: 940px;
	margin: 0 auto;
	padding: 0;
	background:url('/templates/assets/schoolNameBG.png') no-repeat bottom left;
	height: 60px;
}

div.wrapper {
	position: relative;
	width: 940px;
	margin: 0 auto;
	border-bottom: 2px solid #333;
}


/*MAIN WRAPPER */
div.main {
	width: 970px;
	margin: 0 auto;
	background-color: #EEE;
	border: 5px solid #FFF;
	padding: 0px 0px 20px 0;
	position: relative;
	margin-top: 30px;
	/*box radius*/
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-o-border-bottom-right-radius: 20px;
	-o-border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	/*box shadow*/
	-webkit-box-shadow: 5px 5px 5px #ccc;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-o-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc;
}

/* FEATURES AND SEARCH AREA */
div.featuresContainer {
	float: left;
	width: 640px;
	padding-right: 20px;
	position: relative;
	top: -15px;
	left: -15px;
}

div.galleryImages {
	width:420px;
	float:left;
	margin: 0;
	padding: 0;
}

div.img_container img{
	border: 10px solid #fff;
	/*box shadow*/
	-webkit-box-shadow: 5px 5px 5px #ccc;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-o-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc;	
}
	
ul.thumb_img {
	float:right;
	list-style:none;
	padding:10px 20px 0 0
}

ul.thumb_img li {
	float:left;
	margin:0 5px 0 0;
	display:inline;
	height:50px
}

ul.thumb_img li.current {
	background:url('/templates/assets/arrow_up.jpg') no-repeat bottom center;
}

ul.thumb_img li img {
	float:left;
}

ul.thumb_img li a {
	background:#FFFFFF;
	border:1px solid #bdbdbd;
	padding:2px;
	float:left
}

ul.thumb_img li a:hover {
	background:#FFFFFF;
	border:1px solid #7a7a7a;
}	

div.features {
	width: 200px;
	padding: 0;
	margin: 35px 0 0 20px;
	float: right;
}

div.actions {
	margin-top: 20px;
	width: 310px;
	float: right;
}

div.schoolSearch {
	margin-bottom: 20px;
}

div.schoolSearch select{
	height: 19px;
	width: 160px;
	margin-right: 10px;	
}

div.siteSearch {
	margin-bottom: 20px;
}

div.siteSearch input{
	border: 0;	
}

div.siteSearch .input{
	color: #333;
	height: 19px;
	width: 160px;
	background:url('/templates/assets/input_bg.jpg') no-repeat 0 0;
	padding:2px 7px 0 7px;
	border: 0;
	margin: 0 10px 5px 0;
}

div.siteSearch .sButton{
	color: #B3B3B3;
	padding:3px 7px;
	border: 0;
	margin: 0 10px 10px 0;
	border: 1px solid #ccc;
	
		/*box radius*/
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	border-radius: 5px;
	/*box shadow*/
	-webkit-box-shadow: 3px 3px 3px #ccc;	
	-moz-box-shadow: 3px 3px 3px #ccc;
	-o-box-shadow: 3px 3px 3px #ccc;
	box-shadow: 3px 3px 3px #ccc;
}

div.quicklinks ul{
	margin: 10px 0 0 0;
}

div.quicklinks ul li{
	margin-bottom: 5px;
}

div.quicklinks ul li:last-child{
	margin-bottom: 0px;
}

div.quicklinks a{
	font-weight: bold;
}

div.moreCals ul{
	margin: 10px 0 0 10px;
}

div.moreCals ul li{
	margin: 0 0 5px 10px;
}

div.moreCals ul li:last-child{
	margin-bottom: 10px;
}

div.moreCals a{
	font-weight: bold;
}

div.moreCals h1{
	font-size: 140%;
	color: #006666;
	background:url('/templates/assets/icons/icon4.gif') no-repeat center left;
	padding: 0 0 0 30px;
	height: 26px;
	margin-bottom: 10px;
}

/* School Logo */

.schoolLogo {
	position: relative;
	top: -55px;
	margin: 0 0 -55px 0;
	padding: 0;
	width: 180px;
}

.schoolLogo2 {
	position: relative;
	top: -55px;
	display: block;
	margin: 0 auto;
	margin-bottom: -55px;
	padding: 0;
	width: 220px;
}

/* PROMO Carousel */
div.promos {
	width: 940px;
	margin: 0 auto;
	margin-top: 20px;
	background-color: #fff;
	border: 1px solid #b8b8b8;
	padding: 0 20px 10px 20px;
	box radius
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	box shadow
	-webkit-box-shadow: 5px 5px 5px #ccc;	
	-moz-box-shadow: 5px 5px 5px #ccc;
	-o-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc;
}

/**
 * This <div> element is wrapped by jCarousel around the list
 * and has the classname "jcarousel-container".
 */

.jcarousel-container {
    position: relative;
}

.jcarousel-clip {
    z-index: 2;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.jcarousel-list {
    z-index: 1;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.jcarousel-list li,
.jcarousel-item {
   float:left;
	padding:0;
	width:940px;
	list-style:none
}

/**
 * The buttons are added dynamically by jCarousel before
 * the <ul> list (inside the <div> described above) and
 * have the classnames "jcarousel-next" and "jcarousel-prev".
 */
.jcarousel-next {
    z-index: 3;
    display: none;
}

.jcarousel-prev {
    z-index: 3;
    display: none;
}

.jcarousel-skin-tango .jcarousel-container {
	width:940px;
	float:left;
	margin: 0;
	/*padding:0 15px 0 15px;*/
}

.jcarousel-skin-tango .jcarousel-clip {
	margin-left: 20px;
	padding:0 20px 0 20px;
    width:  860px;
}

.jcarousel-skin-tango .jcarousel-item {
    float:left;
	width:205px;
	padding: 0 15px 0 0;
	text-align: center;	
	border-right: 1px solid #b8b8b8;
}

/**
 *  Horizontal Buttons
 */
.jcarousel-skin-tango .jcarousel-next {
    position: absolute;
    top: 52px;
    right: 0px;
    width: 17px;
    height: 18px;
    cursor: pointer;
    background: transparent url('/templates/assets/right_arrow.jpg') no-repeat 0 0;
}

.jcarousel-skin-tango .jcarousel-prev {
    position: absolute;
    top: 52px;
    left: 0px;
    width: 17px;
    height: 18px;
    cursor: pointer;
    background: transparent url('/templates/assets/left_arrow.jpg') no-repeat 0 0;
}

/* PROMO Carousel */



/*Full Content */

div.fullContent {
	width: 940px;
	margin: 0 auto;
	margin-top: 20px;
	background-color: #fff;
	border: 1px solid #b8b8b8;
	padding: 20px;	
	/*box radius*/
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-o-border-radius: 20px;
	border-radius: 20px;
	/*box shadow*/
	-webkit-box-shadow: 5px 5px 5px #ccc;
	-moz-box-shadow: 5px 5px 5px #ccc;
	-o-box-shadow: 5px 5px 5px #ccc;
	box-shadow: 5px 5px 5px #ccc;
}

.school .fullContent {
	margin-top: 0;
}

div.fullContent ul{
/*	list-style: disc;*/
}

div.highLight {
	margin: 0 0 10px 0;
	border: 1px solid #b8b8b8;
	padding: 10px;	
	/*box radius*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	/*gradient*/	
	background: #F3FDDD;
	background: -moz-linear-gradient(top, #F3FDDD, #fff);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#F3FDDD), to(#fff));
}

div.mainContent-R {
	width: 660px;
	float: right;
}

div.mainContent-L {
	width: 660px;
	float: left;
}

div.callOut {
	float: right;
	margin: 0;
	width: 220px;
	border: 1px solid #b8b8b8;
	padding: 10px;	
	/*box radius*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	/*gradient*/	
	background: #ccc;
	background: -moz-linear-gradient(top, #ccc, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ccc), to(#EEEEEE));
}

div.callOut-L {
	float: left;
	margin: 0 10px 0 0;
	width: 220px;
	border: 1px solid #b8b8b8;
	padding: 10px;	
	/*box radius*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	/*gradient*/	
	background: #ccc;
	background: -moz-linear-gradient(top, #ccc, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ccc), to(#EEEEEE));
}


.callOut img, .callOut-L img {
	margin: 5px 0 10px 0;
/*	border-bottom: 5px solid #fff;
	border-top: 5px solid #fff;*/
}


#half_left {
	width:450px;
	float:left;
}

#half_left_narrow {
	width:330px;
	float:left;
	margin-right: 10px;
}

#half_left_narrow_B {
	width:330px;
	float:left;
	margin: 0 20px 0 0;
}

#half_right {
	width:450px;
	float:right;
}

#half_right_narrow {
	width:330px;
	float:left;
}

#half_right_narrow_B {
	width:330px;
	float:right;
}

#2colContainerR {
	margin: 0 0 20px 0;
	padding: 0;
	width: 680px;
	border-top: 10px solid #333;
	}
	
#2colContainerL {
	margin: 0 0 20px 0;
	padding: 0;
	width: 680px;
	border-top: 10px solid #333;
	}	

#doubleSpan {
	width: 660px;
	margin-bottom: 10px;
	/*border: 2px solid #ccc;*/
	padding: 0 0 20px 0;
	/*background-image: url('/SiteImages/images/divider640.png');*/
	background-position: bottom center;
	background-repeat: no-repeat;

} 

#doubleSpanBot {
	width: 660px;
	margin: 10px 0 10px 0;
	/*border: 2px solid #ccc;*/
	padding: 20px 0 20px 0;
	background-image: url('/SiteImages/images/divider640.png');
	background-position: bottom center;
	background-repeat: no-repeat;
}

#left_container {
	width:184px;
	float:left;
	margin:0 20px 0 0;
}

#middle_container {
	float: left;
	width:466px;
	margin:0 20px 0 0;
	height: 100%;
}

#full_container {
	float: left;
	width:716px;
	margin:0 20px 0 0;	
}

.school #full_container {
	float: left;
	width:640px;
	margin:0 20px 0 0;	
}

#right_container {
	width:229px;
	float:right;
	margin:0;
	padding: 0 0 0 10px;
	border-left: 1px solid #ccc;
	height: 100%;
}

.schoolFeatureImage {
	width: 473px;
	border: 1px solid #333;
	margin-bottom: 10px;
}

.audienceFeatureImage {
	width: 658px;
	border: 1px solid #333;
	margin-bottom: 10px;
}

.promo {
	/*box radius*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	border: 1px solid #b8b8b8;
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
	padding: 10px 3px;
}

.promo img{
	border: 0;
}

div.promoRow {
	border-right: 1px solid #b8b8b8;
	text-align: center;
	margin-top: 20px;
	font-weight: bold;
	padding: 10px 3px;
	float:left;
	width:205px;
	text-align: center;	
	margin-right: 25px;
}
div.promoRow.last {
	margin-right: 0;
	border-right: 0;
}
div.promoRow img{
	border: 0;
}



/*/Full Content */

/*Section Nav Bar */
#topHnav {
	border-bottom: 1px Solid #333;
	margin-bottom: 20px;
}

#topHnav ul {
	padding:15px 0 20px 0;
	margin: 0;
	}
	
#topHnav ul li{
	float: left ;
	list-style: none ;
	}	

#topHnav ul li a {
	text-decoration:none;
	color:#2A75A9;
	font-weight:bold;
	margin-right: 20px;
}

#topHnav ul li a:hover {
	color:#274257;
	text-decoration: underline;
}

#topHnav ul li.current {
	color:#ccc;
	font-weight:bold;
	margin-right: 20px;	
}

/*Section SubNav Bar */
#topHnavSub {
	border-bottom: 1px Solid #333;
	margin-bottom: 20px;
	margin-top: -20px;
}

#topHnavSub ul {
	padding:10px 0 20px 0;
	margin: 0;
	}
	
#topHnavSub ul li{
	float: left ;
	list-style: none ;
	}	

#topHnavSub ul li a {
	text-decoration:none;
	color:#2A75A9;
	font-weight:bold;
	margin-right: 20px;
}

#topHnavSub ul li a:hover {
	color:#274257;
}

#topHnavSub ul li.current {
	color:#274257;
	font-weight:bold;
	margin-right: 20px;	
}

/*Area Content */

div.areaContent {
	float: left;
	width: 269px;
	padding: 0 20px 0 20px;
	border-right: 1px solid #b8b8b8;
}

div.areaContentDouble {
	float: left;
	width: 578px;
	padding: 0 20px 0 20px;
	border-right: 1px solid #b8b8b8;
}

div.last {
	border-right: 0;
}

div.areaContent img {
	float: left;
	padding: 5px;
	/*border: 1px solid #b8b8b8;*/
	margin: 0 5px 5px 0;
}

div.areaContent a.more{
	font-weight: bold;
	font-style: italic;
	text-decoration: none;
}

div.areaContent ul li {
	margin-bottom: 5px;	
}

div.areaContent ul li a {
	font-weight: bold;
	text-decoration: none;
}

/*Area Content */

/*Bot Content */

div.botContent {
	float: left;
	width: 269px;
	padding: 0 20px 0 20px;
	border-right: 1px solid #b8b8b8;
}

div.botContentDouble {
	float: left;
	width: 578px;
	padding: 0 20px 0 20px;
	border-right: 1px solid #b8b8b8;
}

div.last {
	border-right: 0;
}

div.botContent img {
	float: left;
	padding: 5px;
	/*border: 1px solid #b8b8b8;*/
	margin: 0 5px 5px 0;
}

div.botContent a.more{
	font-weight: bold;
	font-style: italic;
	text-decoration: none;
}

div.botContent ul li {
	margin-bottom: 5px;	
}

div.botContent ul li a {
	font-weight: bold;
	text-decoration: none;
}

/*Bot Colum Content */



/*activities styles */

.actD {
Border-top: 2px solid #ccc;
margin-bottom: 5px;
margin-top: 10px;
padding-bottom: 10px;
}

.actD h1, .actD h2, .actD h3{
margin-top: 10px;
}

.actD a{
font-weight: bold;
}


.quickF {
	float: right;
	width: 200px;
	border: 1px solid #ccc;
	border-top: 0;
	padding: 5px;
	background-color: #EEEEEE;
	/*box radius*/
	-webkit-border-radius: 0px 0px 10px 10px;
	border-radius: 0px 0px 10px 10px; 
	/*gradient*/	
	background: #ccc;
	background: -moz-linear-gradient(top, #ccc, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ccc), to(#EEEEEE));
	margin-left: 10px;
}

.quickFemail {
	background:url('/templates/assets/icons/mail_icon.gif') no-repeat center left;
	color:#0094d0;
	padding: 0 0 0 18px;
}

.quickFinfo {
	background:url('/templates/assets/icons/info.gif') no-repeat center left;
	color:#0094d0;
	padding: 0 0 0 18px;
}

.quickFgroups {
	background:url('/templates/assets/icons/users.gif') no-repeat top left;
	color:#0094d0;
	padding: 0 0 0 18px;
}

/*Multimedia Content */
div.multimedia {
	width: 940px;
	margin: 20px auto;
	padding: 0 0 0 40px;
	background-color: #fff;
}

div.multimedia {
	padding-bottom: 10px;
}

div.multimedia ul {
	margin: 0;
	padding: 0;
}

div.multimedia ul li {
	float:left;
	text-align: left;
	width: 142px;
	border-right: 1px solid #b8b8b8;
	border-bottom: 1px solid #b8b8b8;
	padding-right: 23px;
	margin-right: 20px;
	padding-bottom: 10px;
}

div.multimedia ul li img {
	border: none;
	margin-bottom: 5px;
}

div.multimedia ul li a {
	font-weight: bold;
	text-decoration: none;
}

div.multimedia ul li .name {

}

div.multimedia ul li .date {
	display: block;
	margin: 5px 0 10px 0;
}

div.multimedia ul li .archives {

}

div.multimedia ul li .multimediaThumbnail {
	width: 141px;
}


/* FOOTER SETTINGS */


div.footer ul{
	float: left;
	margin: 10px 0 0 30px;
}

div.footer ul.first{
	float: left;
	margin-left: 245px;
}

div.footer ul li{
	padding-left: 10px;
	margin-bottom: 5px;
}

.links_heading {
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 5px;
	margin-left: 0px;
	padding-left: 0px;
	color: #fad67e;
/*	border-bottom: 1px solid #fff;*/
}

.base {
	background-image: url('/templates/assets/footer_logo.png');
	background-position: 0 0;
	background-repeat: no-repeat;
	width: 940px;
	margin: 0 auto;
	position: relative;
	min-height: 300px;
}

.footer .smi{
	text-align: center;
}

.footer .smi img {
	border: none;
	padding: 0 5px;
}
/* Calendar Items */

#events-list {
	width: 100%;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0px;
	list-style-type: none;
	padding-left: 0px;
}

#events-list li {
	font-weight: bold;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 5px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	vertical-align: middle;
}

.events_date {
	text-align: center;
	background-color: #0094d0;
	color: #fff;
	white-space: nowrap;
	/*box radius*/
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	vertical-align: middle;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 5px;
	padding-left: 5px;
}



#months {
	padding-top: 10px;
	font-size: 95%;
}

#months a{
	padding: 2px;
	border: 1px solid #ccc;
	text-decoration:none;
	color:#a9b2b9;
	font-weight:bold;
	margin-right: 3px;
/*box radius*/
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;	
}


#months a:hover {
	color:#000;
}

#months a.current {
	padding: 2px;
	border: 1px solid #333;
	background-color: #333;
	color:#fff;
	font-weight:bold;
}




/*TYPOGRAPHY */

body {
	font-size: 0.75em;
	font-family:Arial, Helvetica, sans-serif;
}

p {
	line-height: 150%;
	margin-bottom: 10px;
}

.footer p{
	font-size: 90%;
	color: #BCBCBC;
	width: 940px;
	margin: 10px auto;
	border-top: 1px solid #BCBCBC;
	border-bottom: 1px solid #BCBCBC;	
	padding: 10px 0;
}

div.features p {
	font-size: 1.25em;
	margin-top: 1em;
	line-height: 175%;
	color: #666;
}

/* HEADERS */

h1 {
	color: #ab5b1e;
	font-size: 160%;
	margin-bottom: 10px;
}

h1.schoolName {
	color: #0094d0;
	font-size: 200%;
	margin: 0 0 0 180px;
	font-weight: normal;
	padding: 20px 0 0 0;
}


h2 {
	color: #666;;
	font-size: 140%;
	margin-bottom: 10px;
}


/* HQ, Area Features Box */
div.features h2 {
	font-size: 1.5em;
}

div.multimedia h2 {
	font-size: 120%;
	text-transform: uppercase;
	margin-bottom: 10px;
}


h2.findYourSchool {
	color: #0094d0;
	background:url('/templates/assets/icons/icon1.gif') no-repeat center left;
	padding: 0 0 0 30px;
	height: 26px;
	margin-bottom: 10px;
}

h2.searchDoDEA {
	color: #ab5b1e;
	background:url('/templates/assets/icons/icon2.gif') no-repeat center left;
	padding: 0 0 0 30px;
	height: 26px;
	margin-bottom: 10px;
}

h2.quickLinks {
	color: #006666;
	background:url('/templates/assets/icons/icon3.gif') no-repeat center left;
	padding: 0 0 0 30px;
	height: 26px;
	margin-bottom: 10px;
}

h2.calendarH2 {
	color: #006666;
	background:url('/templates/assets/icons/icon4.gif') no-repeat center left;
	padding: 0 0 0 30px;
	height: 26px;
	margin-bottom: 10px;
}

.H2Header {
	color: #666;;
	font-size: 140%;
	margin-bottom: 10px;
}

.H3Header {
	color: #06C;
	font-size: 130%;
	margin-bottom: 5px;
}

.bigMargin {
	margin-bottom: 25px;
}

span.CS_PgIndex_Primary_Category {
	color: #06C;
	font-size: 140%;
	margin-bottom: 10px;
}


/* HQ, Area Features Box */

h3 {
	color: #06C;
	font-size: 130%;
	margin-bottom: 5px;
}

h4 {
	color: #0094d0;
	font-size: 120%;
	margin-bottom: 5px;
}

h5 {
	color: #0094d0;
	font-size: 110%;
	margin-bottom: 5px;
}

h6 {
	color: #0094d0;
	font-size: 106%;
	margin-bottom: 5px;
}

/* LINKS */
a {
	color: #0094d0;
	text-decoration: none;
}

div.promos a{
	font-weight: bold;
}

a.ppt-link {
	background:url('/templates/assets/icons/ppt-icon.png') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}


a.doc-link {
	background:url('/templates/assets/icons/doc_icon.gif') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.pdf-link {
	background:url('/templates/assets/icons/pdf_icon.gif') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.video-link {
	background:url('/templates/assets/icons/video_icon.gif') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.audio-link {
	background:url('/templates/assets/icons/speaker-blue.gif') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.xcl-link {
	background:url('/templates/assets/icons/xcl_icon.gif') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.image-link {
	background:url('/templates/assets/icons/photoshop-file.gif') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.rss-link {
	background:url('/templates/assets/icons/rss.jpg') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

.rss-link {
	background:url('/templates/assets/icons/rss.jpg') no-repeat bottom left;
	padding: 2px 0 0 20px;
	line-height: 18px;
	font-weight: bold;
}

a.eMailLink {
	background:url('/templates/assets/icons/mail_icon.gif') no-repeat center left;
	color:#0094d0;
	padding: 0 0 0 18px;
	font-weight: bold;
}

a.externalLink {
	background:url('/templates/assets/icons/room_icon.gif') no-repeat center right;
	color:#0094d0;
	padding: 0 12px 0 0;
}

a.externalLinkPadded {
	background:url('/templates/assets/icons/room_icon.gif') no-repeat center right;
	color:#0094d0;
	padding: 0 12px 0 20px;
}

a.fancyLink {
	padding:0 0 5px 20px;
	background:url('/templates/assets/grey_arrow.gif') no-repeat 0 0;
	color:#0094d0;
}

a.nextLink {
	background:url('/templates/assets/grey_arrow.gif') no-repeat center right;
	padding: 0 15px 0 0;
}

a.nextLinkAlt {
	background:url('/templates/assets/icons/arrow_right.png') no-repeat center right;
	padding: 0 26px 0 0;
}

a.doc-link:hover, a.pdf-link:hover, a.video-link:hover, a.audio-link:hover, a.xcl-link:hover, a.image-link:hover, a.eMailLink:hover, a.externalLink:hover {
	color: #333333;
}

a.doc-link:visited, a.pdf-link:visited, a.video-link:visited, a.audio-link:visited, a.xcl-link:visited, a.image-link:visited, a.eMailLink:visited, a.externalLink:visited {
	color: #999999;
}

div.footer ul li a{
	color:#fff;
}

div.footer ul li a:hover{
	color:#ffcd66;
}

/* LISTS */


ul {
	list-style:none;
}


ul.vColumnNavBar {
	list-style: none;
	padding: 0px;
	margin: 0;
	margin-bottom: 10px;
}

ul.vColumnNavBar li {
	padding:5px 0;
	color: #333;
	font-weight: bold;
	border-bottom: 1px solid #fff;
}

ul.vColumnNavBar li.topLink {
	padding:5px 0;
	color: #333;
	font-weight: bold;
	border-bottom: 1px solid #fff;
	border-top: 1px solid #fff;
	margin-top: 10px;
}

ul.checkList {
	list-style: none;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
}

ul.checkList {
	list-style: none;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
}

ul.checkList li {
	padding:0 0 5px 25px;
	background:url('/templates/assets/green-check.gif') no-repeat 0 0;
}


div.callOut ul.fancyList {
	padding: 0;
	margin-left:0;
}

ul.fancyList {
	list-style: none;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
	width: 95%;
}

ul.fancyList {
	list-style: none;
	padding: 0 0 0 15px;
	margin-bottom: 10px;
}

ul.fancyList li {
	padding:0 0 5px 25px;
	background:url('/templates/assets/grey_arrow.gif') no-repeat 0 5px;
}


ul.standardList li{
	padding:0 0 5px 15px;
	background:url('/templates/assets/list-r.gif') no-repeat 0 5px;
	margin-bottom: 10px;
	margin-top: 10px;
}

ul.defaultList li{
	list-style: disc;
}



dt { font-weight: bold; text-decoration: none; margin-top: 10px; border-bottom: 1px solid #ccc;border } dd { margin: 5px 0 0 10px; padding: 0; }

/* SECTION SPECIFIC TYPE STYLES */

/*HEADER SECIOTN SETTINGS */
.header {
	color: #fff;
}

body.americas .header {
	color: #fff;
}

body#europe .header {
	color: #fff;
}

body#pacific .header {
	color: #fff;
}

.no-multiplebgs .header {
	color: #fff;
}

/* FOOTER SETTINGS */
body#hq .footer {
	color: #fff;
	background-color: #006666;	
}

body#americas .footer {
	color: #fff;
	background-color: #3f0068;	
}

body#europe .footer {
	color: #fff;
	background-color: #01597f;	
}

body#pacific .footer {
	color: #fff;
	background-color: #4c040c;	
/*	background-color: #5d2407;*/
}

body#virtual .footer {
	color: #fff;
	background-color: #006666;	
}

body#partnership .footer {
	color: #fff;
/*	background-color: #3e4852;	*/
	background-color: #006666;
}

body#ndsp .footer {
	color: #fff;
	background-color: #3e4852;	
}

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
*/

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; } 
.header, .headerBase, #topHnav,#topHnavSub, .footer {
	display: none;
}

}



/* for text around image element*/
.tai table {
	width: auto;
}

.tai table td{
	padding: 10px;
}

.tai img{
	border: 1px solid #333;
	padding: 5px;
	margin: 5px;
}

.tai .CS_TAI_Caption {
	color: #06C;
	font-size: 130%;
	margin-bottom: 5px;
	font-weight: bold;
}

/*.CS_Textblock_Caption {
	color: #06C;
	font-size: 130%;
	margin-bottom: 5px;
	font-weight: bold;
}

.CS_BL_HeaderCaption {
	color: #06C;
	font-size: 130%;
	margin-bottom: 5px;	
}*/

div.TAI_Custom_Caption {
	font-size: 130%;
	color: #06C;
	margin-bottom: 5px;
	font-weight: bold;		
}

div.TAI_Custom_Caption span.TAI_Custom_Caption  {
	font-size: 100%;
}

.CS_TAI_Custom_Image {
	float: left;
}

.CS_TAI_Custom_Image_R {
	float: right;
}


/* Press Release image caption classes */

.captionleftAuto { float: left; margin: 0 1.5em 1em 0; padding: 0.5em; text-align: left; width: auto; border: 1px solid #ccc;}
.captionleft { float: left; margin: 0 1.5em 1em 0; padding: 0.5em; text-align: left;}
.captionright { float: right; margin: 0 0 1em 1.5em; padding: 0.5em; text-align: left; }
.captionfull { margin: 0 0 1em 0; padding: 0; text-align: left; }
.captionleft img, .captionright img, .captionfull img { margin: 0; display: block; }
.captionleft p, .captionright p, .captionfull p { background: #333; margin: 0; line-height: 1.6em; padding: 5px; border-bottom: 2px solid #000; border-top: 2px solid #fff; font-size: 0.9em; color: #fff; }
.captionleft p a, .captionright p a, .captionfull p a { color: #fff; }
.captionleft p a:hover, .captionright p a:hover, .captionfull p a:hover { color: #ccc; }

div.prContactInfo p {
	margin: 0 0 10px 0;
	border-top: 1px solid #b8b8b8;
	border-bottom: 1px solid #b8b8b8;
	background-color: #eee;
	padding: 5px;
}



/*NewsRoom Downloads*/

.downloadsThumb {
	padding: 5px;
	margin: 0 10px 10px 0;
	border: 1px solid #333;
	float: left;
}

.downloadsContainer {
	margin-bottom: 15px;
	border-bottom: 1px solid #333;
}



/* Selects for Data Sheets */

.fancySelect {
	margin: 0 10px 10px 0;	
	padding: 3px 3px 3px 10px;
	line-height: 125%;
}






/*LEGACY TABLE STYLES */

/* TABLE STYLES ... FROM DATACENTER */

table.eData {
	font: .85em Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	padding: 5px;
	width: 100%;
}
table.schoolGroup2 {
	margin: 10px 0px 20px 0px;
	border-top: 10px solid #ccc;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 1px solid #ccc;
}
table.blendGroup {
	margin: 10px 0px 20px 0px;
	padding: 10px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-left: 1px solid #ccc;
	background: url(/templates/assets/bg_15xblend.gif) repeat-x top;
}
td.eData, th.eData {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 2px 5px 2px 2px;
	vertical-align: bottom;
	width:auto;
	text-align:left;
}
td.eLabel {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 2px 5px 2px 2px;
	text-align:left;
}
td.eTotal {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
}
td.eData2 {
	font: .85em Verdana, Arial, Helvetica, sans-serif;
}
td.scoresData {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
	text-align:right;
}
td.eBordered {
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 5px 5px 5px 5px;
}
td.bordered2 {
	border-bottom: 2px solid #ccc;
	padding: 5px 5px 5px 5px;
}
td.colHeading, th.colHeading {
	border-bottom: 2px solid #0099FF;
	font-weight:bold;
	vertical-align: bottom;
	padding: 2px 5px 5px 2px;
}
td.colHeading2, th.colHeading2 {
	border-right: 1px solid #ccc;
	border-bottom: 2px solid #ccc;
	font-weight:bold;
	vertical-align: bottom;
	padding: 2px 5px 2px 2px;
}

td.colHeading3, th.colHeading3 {
	border-right: 1px solid #ccc;
	border-bottom: 2px solid #ccc;
	font-weight:bold;
	vertical-align: top;
	text-align: left;
	padding: 2px 5px 2px 2px;
}


td.colFooter1 {
	border-top: 1px solid #999999;
	font-weight:bold;
}
td.colFooter2 {
	border-top: 2px solid #0099FF;
	font-weight:bold;
	padding: 5px 5px 5px 2px;
}
.left { text-align:left; }
.right { text-align:right; }

.eData .colLabel {
	font-weight: bold;
}
.w30 {
	width:30px;
}

caption {
	text-align:center;
	margin: 10px 0px 0px 0px;
	color: #06C;
	font-size: 130%;
	margin-bottom: 5px;	
}
td.highlight {
	background: #efefef;
}

.regRow {
	border-bottom: 1px solid #ccc;
}

.regRowAlt {
	background-color: #D9F7FF;
	border-bottom: 1px solid #ccc;
}


.noDisplay {
    display: none;
}



/* BEGIN TESTING | DALLISON */
/* DoDDS Europe related styles | Dave Allison  @import url('/style/style_eu.css');  */
/* Begin EU style additions */

body#europe H1 {}
body#europe H1.headingPageGroup { color:#ab5b1e; margin-bottom:0px;} /* original color: #ab5b1e; */
body#europe H2 {}
body#europe H3 {}
body#europe H4 {}

a { color: #0094d0;text-decoration: none; }


/* Testing: Lists */

ul.listBasic { line-height: 1.35em; } 
ul.listBasic li { margin: 5px 0px 5px 10px; list-style: disc outside; line-height: 1.35em; } 
ul.listBasic ul li a { text-decoration:none; color:#333; }
ul.listBasic ul li a:hover { text-decoration:underline; color:#0066cc;}

ol.listBasic { line-height: 1.35em; } 
ol.listBasic li { margin: 5px 0px 5px 10px; line-height: 1.35em; list-style:decimal; } 
ol.listBasic ul li a { text-decoration:none; color:#333; }
ol.listBasic ul li a:hover { text-decoration:underline; color:#0066cc;}

ul.listPdf li{
	padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_pdf_1.gif') no-repeat 0 0px;
}

ul.listLinks li{
	padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_link_1.gif') no-repeat;
	/* background:url('/templates/assets/icons/room_icon.gif') no-repeat 0 0px; */
}
ul.listLinksLeft li{
	padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_link_left.gif') no-repeat;
}



ul.listDocs li{ padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_doc_1.gif') no-repeat 0 0px; }
ul.listExcel li{ padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_excel_1.gif') no-repeat 0 0px; }
ul.listPowerpoint li{ padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_powerpoint_1.gif') no-repeat 0 0px; }
ul.listContacts li{ padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/images/ico_email_1.gif') no-repeat 0 4px;	 }
ul.listNone li{ padding:0 0 5px 21px; margin: 2px 0; background:none; no-repeat 0 0px; }


ul.listSchools {}
ul.listSchools { margin-bottom:20px; }
ul.listSchools li { padding:0 0 2px 0px; margin: 2px 0; font: 0.9em/1.3em Verdana, Arial, Helvetica, sans-serif; color: #333; }
ul.listSchools li a { padding-left: 16px; color:#0066CC; text-decoration: none; }
ul.listSchools li a:hover { text-decoration:none; color:#000000; }
ul.listSchools li.email{ padding: 2px 0 2px 5px; margin: 2px 0; background:bottom; background:url('/Europe/images/ico_email_1.gif') no-repeat 0 3px; }
ul.listSchools li.website{
	padding: 2px 0 2px 5px; margin: 2px 0; background:bottom; background:url('/Europe/images/ico_link_1.gif') no-repeat 0 0px;
}

/* testing something */
ul li.itemEmail { list-style-image:url('/Europe/images/ico_email_1.gif') }
ul li.itemWebsite { list-style-image:url('/Europe/images/ico_link_1.gif') }
ul li.itemPdf { list-style-image:url('/Europe/images/ico_pdf_1.gif') }

/* ul li.itemEmail { padding: 2px 0 2px 5px; margin: 2px 0; background:bottom; background:url('/Europe/webadmin/images/csthumbnail_large/ico_email_1.gif') no-repeat 0 3px; } 
ul li.itemWebsite { padding: 2px 0 2px 5px; margin: 2px 0; background:bottom; background:url('/Europe/webadmin/images/csthumbnail_large/ico_link_1.gif') no-repeat 0 0px; }
ul li.itemPdf { padding:0 0 5px 21px; margin: 2px 0; background:url('/Europe/webadmin/images/csthumbnail_large/ico_pdf_1.gif') no-repeat 0 0px; }
*/
body#europe ul.listICE {}
body#europe ul.listICE { margin:0px; }
body#europe ul.listICE li { padding:0 0 2px 0px; margin: 2px 0; }


body#europe ul.listSLOs {}
body#europe ul.listSLOs { margin:0px 0px 10px 0px; }
body#europe ul.listSLOs li { padding: 0; margin-bottom: 10px; }
body#europe ul.listSLOs li .communityName { font-weight:bold }
body#europe ul.listSLOs li .communityDetails { font: 0.9em/1.5em Verdana, Arial, Helvetica, sans-serif; color: #333; }




ul.jumpListVert {}
ul.jumpListVert li { padding:0 0 5px 0px; margin: 2px 0; }
ul.jumpListVert li a {
	padding-left: 16px; color:#0066CC; text-decoration: none;
	background: url('/Europe/images/ico_bullet_rtdown_blue_1.jpg') no-repeat 0px 5px;
}
ul.jumpListVert li a:hover { 
	background-image: url('/Europe/images/ico_bullet_rtdown_or_1.jpg');
	text-decoration:none; color:#000000; }
	
	
ul.jumpListHorz {}
ul.jumpListHorz li { display:inline; margin:10px 10px 0px 20px; }
ul.jumpListHorz li a {
	padding-left: 16px; color:#0066CC; text-decoration: none;
	background: url('/Europe/images/ico_bullet_rtdown_blue_1.jpg') no-repeat 0px 5px;
}
ul.jumpListHorz li a:hover { 
	background-image: url('/Europe/images/ico_bullet_rtdown_or_1.jpg');
	text-decoration:none; color:#000000; }	
	
	
	
body#europe ol {
	line-height:1.45em;
	margin-bottom: 1.5em;
	}

body#europe ol li {
	margin: .3em 0; 
	}	


body#europe dl.listFAQs {}
body#europe dl.listFAQs { margin: 5px 0px 5px 0px; line-height: 1.35em;}
body#europe dl.listFAQs dt {
	margin: 0px 0px 5px 0px;
	font-weight: normal;
	color: #0033CC; }
body#europe dl.listFAQs dd { margin: 5px 0px 15px 21px; }


body#europe dl.studentActivities {}
body#europe dl.studentActivities { margin: 5px 0px 5px 0px; line-height: 1.35em;}
body#europe dl.studentActivities dt {
	margin: 0px 0px 5px 0px;
	font-weight: bold;
	color: #0033CC; }
body#europe dl.studentActivities dd { margin: 5px 0px 15px 21px; }

body#europe dl.studentActivities .saDate { display:block; margin: 5px 5px 5px 10px; color:#666; }


/* Testing: Data Table Default Display */
table.tableDisplay_Data { border-collapse:separate; border-spacing:5px; }
table.tableDisplay_Data tr {}
table.tableDisplay_Data th { font-weight: bold; color: #06C; border-bottom: 5px solid #ddd; padding:5px; }
table.tableDisplay_Data td { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 5px; }
table.tableDisplay_Data td strong { font-weight:bold; }
table.tableDisplay_Data td.center { align: center; }

/* Testing: School Curriculum Chooser */
body#europe table.display { border-collapse:separate; border-spacing:5px; }
body#europe table.display tr {}
body#europe table.display tr.odd { background-color: #fff; }
body#europe table.display tr.even { background-color:  #fff; }
body#europe table.display th { font-weight: bold; color: #06C; border-bottom: 5px solid #ddd; padding:5px; vertical-align:bottom }
body#europe table.display td { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 3px; }
body#europe table.display td strong { font-weight:bold; }
body#europe table.display td a { color:#06C; }


/* .Offices.HR.salary */
table.tableDisplay_SalarySchedules { border-collapse:separate; border-spacing:5px; }
table.tableDisplay_SalarySchedules tr {}
table.tableDisplay_SalarySchedules th { font-weight: bold; color: #06C; border-bottom: 5px solid #ddd; padding:5px; }
table.tableDisplay_SalarySchedules td { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 5px; }
table.tableDisplay_SalarySchedules td strong { font-weight:bold; }



/* Testing: Landing Page Features */

body#europe .listLandingFeaturesVert ul { margin: 0px 60px 0px 60px; }
body#europe .listLandingFeaturesVert li { margin: 10px 0px 20px 0px; clear:left; }
body#europe .listLandingFeaturesVert li img { float:left; margin: 0px 10px 10px 0px; }
body#europe .listLandingFeaturesVert li .head { font-weight:bold; display:block; }
body#europe .listLandingFeaturesVert li a { color:#333; text-decoration:none; }
body#europe .listLandingFeaturesVert li a:hover { text-decoration:underline; }

body#europe .listLandingFeaturesHorz ul { margin: 0px 0px 0px 0px; }
body#europe .listLandingFeaturesHorz li { margin: 0px 0px 10px 0px; padding:10px; list-style: none; display:inline;	float:left; width:30%; height: 190px; }
body#europe .listLandingFeaturesHorz .first { margin-left: -20px; border: 0px solid #ccc;}
body#europe .listLandingFeaturesHorz li img { margin: 0px 10px 10px 0px; }
body#europe .listLandingFeaturesHorz li .head { font-weight:bold; display:block; }
body#europe .listLandingFeaturesHorz li a { color:#333; text-decoration:none; }
body#europe .listLandingFeaturesHorz li a:hover { text-decoration:underline; }

/* Testing: Miscellaneaous */
.highlight { background-color:#ffffcc;}
.fontNormal { font-weight:normal; }
.floatLeft { float:left; }
.floatRight { float:right; }
.picRight { float:right; margin: 3px 0 10px 10px; }
.picLeft { float:left; margin: 3px 10px 10px 0; }
.border { border: 1px solid #ccc; padding:10px; }
.borderNone { border: 0px solid #ccc; }


body#europe p.pageTop {text-align:right; font: 0.9em/1.5em Verdana, Arial, Helvetica, sans-serif; color: #666; margin:10px;}
body#europe p.pageTop a { background-repeat:no-repeat; background-position:right;
	background-image: url('/Europe/images/ico_bullet_rtUp_blue_1.jpg'); padding-right:15px;
	}

/* Testing: Boxed Column Divs */
.boxedCols1x { border: 1px solid #ccc; padding:10px; margin-right:10px; width:auto }
.boxedCols2x { border: 1px solid #ccc; padding:10px; margin-right:10px; width:45%; float:left; }
.boxedCols3x { border: 1px solid #ccc; padding:10px; margin-right:10px; width:28%; float:left; }
.boxedCols4x { border: 1px solid #ccc; padding:10px; margin-right:10px; width:20%; float:left; }
.boxedCols5x { border: 1px solid #ccc; padding:6px; margin-right:8px; width:16%; float:left; }
.boxedRight { border: 1px solid #ccc; padding:10px; margin-left:10px; float:right; }
.boxedLeft { border: 1px solid #ccc; padding:10px; margin-right:10px; float:left; }

.hqHpCols2x { border: 0; padding:4px 4px 4px 4px; margin: 0 4px 0 0; width:115px; float:left; }
.hqHpCols2xLast { border:  0; padding:4px 4px 4px 4px; margin:0px; width:115px; float: right;}

.hqHpCols2x ul { margin: 0; }
.hqHpCols2xLast ul { margin: 0; }

.hqHpCols2x ul li { margin-bottom: 0; padding-bottom: 0;}
.hqHpCols2xLast ul li { margin-bottom: 0;  padding-bottom: 0;}

.boxedCols5xSpecial { border: 1px solid #ccc; padding:6px; margin-right:8px; width:16%; float:left;}

body#europe .newsFeatureImg {
	color: #666;
	border: 1px solid #ccc;
	margin:10px;
	padding:10px;
}

body#europe .caption { font: 0.9em/1.5em Verdana, Arial, Helvetica, sans-serif; color: #666666; }


/* Testing: Image Blend Section Dividers ... various widths */



hr.divider640I { 
	display: block;
	background:url('/SiteImages/images/divider640I.png');
	filter: alpha(opacity=0);
	width: 640px;
	height: 20px;
	margin: 20px auto 10px auto;
	border: none;
} 


hr.divider640 { 
	display: block;
	background:url('/SiteImages/images/divider640.png');
	filter: alpha(opacity=0);
	width: 640px;
	height: 20px;
	margin: 20px auto 10px auto;
	border: none;
} 

hr.divider640NM { 
	display: block;
	background:url('/SiteImages/images/divider640.png');
	filter: alpha(opacity=0);
	width: 640px;
	height: 20px;
	margin: 0px auto 10px auto;
	border: none;
} 


hr.divider440 { 
	display: block;
	background:url('/Europe/images/divider440.jpg');
	filter: alpha(opacity=0);
	width: 440px;
	height: 20px; 
	margin: 20px auto 10px auto;
	border: none;
}

hr.divider340 { 
	display: block;
	background:url('/Europe/images/divider340.jpg');
	filter: alpha(opacity=0);
	width: 340px;
	height: 20px; 
	margin: 20px auto 10px auto;
	 border: none;
}

hr.divider240 { 
	display: block;
	background:url('/Europe/images/divider240_1.jpg') no-repeat;
	filter: alpha(opacity=0);
	width: 240px;
	height: 14px; 
	margin: 0px auto 10px auto;
	border: none;
}

hr.divider218 { 
	display: block;
	background:url('/images/divider218_1_1.png') no-repeat;
	filter: alpha(opacity=0);
	width: 218px;
	height: 14px; 
	margin: 0px auto 10px auto;
	border: none;
}

.autoMargins {
	margin: 0 auto;
}


body#europe .schoolLogo {} /* left column school mascot */

/* right column school mascot ... adjustments made to close up the space beneath the school logo */
body#europe .schoolLogo2 {
	position: relative;
	display: block;
	margin: -20px 0 -45px 0;
	padding: 0;
} 

body#europe div.euNewsList .listItem { clear:left; margin-bottom:20px;}
body#europe div.euNewsList .listImage { float:left; margin:0 10px 10px 0;}
body#europe div.euNewsList .listHeadline a { color:#06C; margin-bottom:8px;}
body#europe div.euNewsList .listDate { float: right; margin: -10px 0 10px 10px; font: 0.9em/1.3em Verdana, Arial, Helvetica, sans-serif; color: #666; width:150px; }
body#europe div.euNewsList .listAbstract {}

body#europe div.euNewsDisplay .headline {}
body#europe div.euNewsDisplay .headlineSub {}
body#europe div.euNewsDisplay .byline { font: 0.9em/1.6em Verdana, Arial, Helvetica, sans-serif; color: #666; margin:10px 0 10px 0 }
body#europe div.euNewsDisplay .caption { font: 0.9em/1.6em Verdana, Arial, Helvetica, sans-serif; color: #666; margin:0 0 0 0 }
body#europe div.euNewsDisplay .credit { font: 0.9em/1.6em Verdana, Arial, Helvetica, sans-serif; color: #666; margin:5px 0 0 0; text-align:right; }


body#europe .CS_DataSheet_Table { font: 1em/1.6em Arial, Sans-Serif; color: #666; background-color:#fff; }
body#europe .CS_DataSheet_Header_Row { color:#333; }
body#europe .CS_DataSheet_Data_Row { color:#333;  }
body#europe .CS_DataSheet_Data_Row_Alternate { color:#333; background-color:#E5E5E5; }
body#europe .CS_DataSheet_Summary_Row { color:#333; }
body#europe .CS_DataSheet_HeaderItem_Column { color:#333; }
body#europe .CS_DataSheet_HeaderItem_First_Column { color:#333; }
body#europe .CS_DataSheet_Data_First_Column { color:#333; }
body#europe .CS_DataSheet_Data_Column { color:#333; }
body#europe .CS_DataSheet_Data_Column .dsRecordName a .externalLink { color:#F00; }

.boxed { border: 1px solid #ccc; padding:10px; }
.boxedCols2x { width: 44.5%; border: 1px solid #ccc; float: left; margin-right:10px; padding:10px; position:relative; }
.boxedCols3x { width: 28.25%; border: 1px solid #ccc; float: left; margin-right:10px; padding:10px; position:relative; }

body#europe div .width675 {
	border: 0px solid #ddd;	
	width: 675px;
}

/* Testing: Full Layout - main content section page-width fix 
body#europe div.fullContent section #CS_Element_mainContentContainer {
	border: 0px solid #ddd;	
	width: 675px;
}
*/

/* Testing: Data Table Default Display 
table.tableDisplay_Data { border-collapse:separate; border-spacing:5px; }
table.tableDisplay_Data tr {}
table.tableDisplay_Data th { font-weight: bold; color: #06C; border-bottom: 5px solid #ddd; padding:5px; }
table.tableDisplay_Data td { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 5px; }
table.tableDisplay_Data td strong { font-weight:bold; }
*/





/* END TESTING | DALLISON */




/* END TESTING | DALLISON */

.forceWrap {
max-width: 500px;
}


/*MARTIN's Columns */

#mfern div { 
        /*height:200px; 
        width:100px;*/
        border:1px solid #ccc; 
        margin-left:5px; 
        float:left; /*Here you can also used display-inline:block instead of float:left*/
        background: #e4eff6;
        text-align: center;
        padding: 3px;
}

#mfern div.first { 
	 margin-left: 0;
}


.menuEdit {
	background-color: #333;
	padding: 15px;
	color: #fff;
}

.menuEdit a{
	color: #fff;
}

ol {
	padding-left: 5px;
}



/* Form Styles */


/*.customForm input{
	color: #B3B3B3;
	height: 19px;
	width: 160px;
	background:url('input_bg.png') no-repeat 0 0;
	padding:2px 7px 0 7px;
	border: 0;
	margin: 0 10px 5px;
}*/



.customForm input, textarea { 
	padding: 9px;
	border: solid 1px #E5E5E5;
	outline: 0;
	font: normal 13px/100% Verdana, Tahoma, sans-serif;
	width: 200px;
	background: #FFFFFF url('/templates/assets/15.png') left top repeat-x;
	background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
	background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
	box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-moz-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	-webkit-box-shadow: rgba(0,0,0, 0.1) 0px 0px 8px;
	margin: 5px;
	}

.customForm textarea { 
	width: 400px;
	max-width: 400px;
	height: 150px;
	line-height: 150%;
	}

.customForm input:hover, textarea:hover,
.customForm input:focus, textarea:focus { 
	border-color: #C9C9C9; 
	-webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 8px;
	}

.customForm  label {
	padding-top: 10px; 
	margin-right: 10px; 
	color: #333333; 
	}

.customForm submit {
	width: auto;
	padding: 9px 15px;
	background: #617798;
	border: 0;
	font-size: 14px;
	color: #FFFFFF;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	}

.customForm select {
    border: 0 none;
    color: #333333;
    background: #fff;
    font-size: 12px;
    line-height: 18px;
    font-weight: bold;
    padding: 5px;
    width: 378px;
    *width: 350px;
    *background: #617798;
    height:32px;
    border:1px solid #d8d8d8;
	-webkit-appearance: none;
	margin: 15px 5px 5px 5px;
    }


.customForm .mainselection {
    overflow:hidden;
    width:350px;
    margin-left:35px;
    background: url("/template/assets/dropdown_arrow.png") no-repeat #fff 319px 2px;
}

.customForm .biggerText {
	font-size: 12px;
	text-align: right;
	padding-top: 10px;
}

.customForm .required {
	font-size: 12px;
	text-align: right;
	padding-top: 10px;
	font-weight: bold;
	color: #2d77ff;
}

.colWidth {
	width: 250px;
}

/* Cyndi's Styles */

table.dataTable_HrL { border-collapse: collapse; border-spacing:5px; }
table.dataTable_HrL tr {}
table.dataTable_HrL th {
	font-weight: bold;
	color: #06C;
	border-bottom: 1px solid #ddd;
	padding:5px;
	text-align: left;
}
table.dataTable_HrL td {
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ddd;
}
.halfWidth {
	width: 330px;
}
.bigger_Form_Label { 
	font-size:12px; 
}
.bigger_Form_Description { 
	font-size:12px;
}

img.pageThumb {
	float: left;
	margin: 0;
	margin-right: 5px;
	margin-bottom: 5px;
	padding: 3px;
	border: 1px solid ##333;
	}
	
.topContainer {

}

.botContainer {
 margin-top:20px;
}

#featuredSearchResults {
	border: 1px solid #333;
	margin-bottom: 0;
	padding: 10px;
	background: #fffcc6
}

.rowClick {
	cursor:pointer;
	color: #0094d0;
	
}

.rowClick:hover {
	color: #607890;
	text-decoration: underline;	
}
/* START - Events Feed Link */
.events-rss-link-wrapper { 
	margin-bottom: 16px;
}
.events-rss-link {	
 	background: url("/ADF/apps/pt_calendar/images/rss-16x16.png") no-repeat scroll left bottom transparent;
   	/*  font-weight: bold; */
    line-height: 18px;
    padding: 2px 0 0 20px;
}
/* END - Events Feed Link */

.floater {
	width: 200px;
	padding: 5px;
	border: 1px solid #333;
	float: right;
	margin: 0 0 10px 10px;
	border: 1px solid #b8b8b8;
	padding: 10px;	
	/*box radius*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-o-border-radius: 10px;
	border-radius: 10px;
	/*gradient*/	
	background: #ccc;
	background: -moz-linear-gradient(top, #ccc, #EEEEEE);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ccc), to(#EEEEEE));	
}

/*Table cell callout */

.callTable {
		font: .95em Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	padding: 5px;
	width: 100%;
margin-bottom: 20px;
border-bottom: 1px solid #333;	
}

.cellCall {
padding: 0 0 0 15px;
margin: 0 0 10px 20px;
border-left: 1px solid #ccc;	
}

.cellPaddedLeft {
padding-right:20px;	
}

/*Social Media Menu*/

.social-media-menu {
	float: left;
	font-size: 0.8em;
	list-style: none outside none;
	margin: 0.5em 0 0;
	padding: 0;
	position: absolute;
	text-transform: uppercase;
	z-index: 15;
	top:100px;
	left:0;
}

.social-media-menu li {
	float: left;
	margin: 0 0 0 0;
	list-style: none;
	padding: 0;
}

.social-media-menu li.schoolCube a,
.social-media-menu li.facebook a,
.social-media-menu li.twitter a,
.social-media-menu li.pinterest a,
.social-media-menu li.flickr a,
.social-media-menu li.smugmug a,
.social-media-menu li.youTube a,
.social-media-menu li.rss a {
	background-image: url('/templates/assets/Social-Icon-Set.png');
	text-indent: -9999em;
	float: left;
	padding: 0 0 0 0;
	height: 22px;
}
/*SchoolCube Styles*/
.social-media-menu .schoolCube a {
	width: 24px;
	background-position: 0px -25px;
}
.social-media-menu .schoolCube a:hover {
	background-position: 0px 0px;
}
/*Facebook Styles*/
.social-media-menu .facebook a {
	width: 24px;
	background-position: -26px -25px;
}
.social-media-menu .facebook a:hover {
	background-position: -26px 0px;
}
/*Twitter Styles*/
.social-media-menu .twitter a {
	width: 24px;
	background-position: -52px -25px;
}
.social-media-menu .twitter a:hover {
	background-position: -52px 0px;
}
/*Pinterest Styles*/
.social-media-menu .pinterest a {
	width: 24px;
	background-position: -78px -25px;
}
.social-media-menu .pinterest a:hover {
	background-position: -78px 0px;
}
/*Flickr Styles*/
.social-media-menu .flickr a { 
width: 24px; 
background-position: -104px -25px; 
} 
.social-media-menu .flickr a:hover { 
background-position: -104px 0px; 
}
/*SmugMug Styles*/
.social-media-menu .smugmug a { 
width: 24px; 
background-position: -131px -25px; 
} 
.social-media-menu .smugmug a:hover { 
background-position: -131px 0px; 
} 
/*youTube Styles*/
.social-media-menu .youTube a {
	width: 26px;
	background-position: -157px -25px;
}
.social-media-menu .youTube a:hover {
	background-position: -157px 0px;
}
/*RSS Styles*/
.social-media-menu .rss a {
	width: 24px;
	background-position: -184px -25px;
}        
.social-media-menu .rss a:hover {
	background-position: -184px 0px;
}



	div.class1415 {
	padding: 10px 0px 5px 65px;
	background: url("/StudentServices/Graduation/images/GRC-14-15.png") no-repeat #fff left center;
}

div.class1618 {
	padding: 10px 0px 5px 65px;
	background: url("/StudentServices/Graduation/images/GRC-16-18.png") no-repeat #fff left center;
}

div.class19plus {
	padding: 10px 0px 5px 65px;
	background: url("/StudentServices/Graduation/images/GRC-19-purple.png") no-repeat #fff left center;
}


/* Table Left TH Display */

table.tableTHleft { border-collapse:separate; border-spacing:5px; }
table.tableTHleft tr {}
table.tableTHleft th { font-weight: bold; color: #06C; border-bottom: 1px solid #ddd; padding:5px; text-align: left; }
table.tableTHleft td { border-right: 1px solid #ddd; border-bottom: 1px solid #ddd; padding: 5px; }
table.tableTHleft td strong { font-weight:bold; }

/* Table Left TH Display */

/*PDF List*/
ul.pdfList {
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
}

ul.pdfList li {
	padding:0 0 5px 25px;
	background:url('/templates/assets/icons/pdf_icon.gif') no-repeat top left;
	padding: 2px 0 0 20px;	
}

/*Video List*/
ul.videoList {
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
}

ul.videoList li {
	padding:0 0 5px 25px;
	background:url('/templates/assets/icons/video_icon.gif') no-repeat 0 6px;	
	padding: 2px 0 0 20px;	
}

/*Video List*/
ul.linkList {
	list-style: none;
	padding: 0;
	margin-bottom: 10px;
}

ul.linkList li {
	padding:0 0 5px 25px;
	background:url('/templates/assets/icons/room_icon.gif') no-repeat 0 6px;	
	padding: 2px 0 0 20px;	
}

.noPadding {
padding: 0;
margin: 0;
border: 0;}
}