@charset "utf-8";
body  {
	background-color: white;
	margin: 0;
	text-align: center;
	color: black;
	font-family: 'Droid Sans', sans-serif;
	font-size: 100%;
}

h1 {
	font-size: 1.3em;
	color: #10499E;
	text-align: left;
}
h2 {
	font-size: 1.0em;
	text-align: left;
	font-weight: bold;
}
h3 {
	font-size: 1.1em;
	color: #10499E;
}
p, li {
	font-size: 13px;
	text-align: left;
}
.underline { text-decoration: underline; }
.home-page h1 { font-family: 'Droid Sans', sans-serif; font-weight: normal; font-size: 24px; text-align: center; }
ul#home-banner { height: 200px !important; clear: both; padding: 0 0 10px 10px; margin:0 ; }
ul#home-banner li { display:none; list-style: none; }
.home-page h1 br { margin-bottom: 15px; }
.home-page h2 {
	text-align: center;
}
.home-page .georgia { font-family: 'Droid Sans', sans-serif; font- }
.BlueMediumBold { color: #10499E; }
#sampleDownload { padding-left: 5px; }
.reg { font-size: 10px; vertical-align: top; }

#container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #FFF;
	text-align: left;
	color: #000;
} 
#header {
	background: #FFF;
	padding: 0;
	margin-bottom: 30px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar1 p" rule.
*/
#sidebar1 {
	float: right;
	width: 190px; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	text-align: center;
}
#sidebar2 {
	float: right;
	width: 270px; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px0; /* top and bottom padding create visual space within this div */
	text-align: left;
}
#sidebar3 {
	float: left; 
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.home-page #sidebar3 {
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
}
#sidebar1 h3, #sidebar1 p, #sidebar2 h3, #sidebar2 p, #sidebar3 h3, #sidebar3 p {
	margin-left: 0px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 0px;
	text-align: center;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	margin: 0 13em 0 10px; /* the left margin will look best if you match the padding amount to the header and footer. */
	border-color: #CCC;
	color: #000;
} 
#mainContent2 {
	width:510px;
	margin: 0 10px; /* the left margin will look best if you match the padding amount to the header and footer. */
	border-color: #CCC;
	color: #000;
} 
#mainContent3 {
	border-color: #CCC;
	color: #000;
	float:right;
} 


#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	color: #666;
	font-size: 0.8em;
	text-align: center;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: left;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.redHighLt{}

a:link {
	color: #10499E;
	text-decoration: none;
}
a.logo-link {
	outline: none;
	}
a.logo-link img {
	outline: none;
	border: none;
	}
a:active {
	color: #D6D6D6;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #333;
}
a:hover {
	text-decoration: underline;
	color: #10499E;
	text-align: center;
}
#container #footer p {
	text-align: center;
}
#footer sup { font-size: 8px; }
.h2BlueBold {
	color: #10499E;
	float: none;
	font-size: small;
}
.fontSmall {
	font-size: .8em;
	text-align: left;
}
#container #sidebar2 pLeftAlign {
	text-align: left;
}
.sup {
	vertical-align: super;
	font-size: 9px;
}
#container #sidebar2 p {
	text-align: left;
	padding-left: 15px;
}
#container #sidebar1 p {
	text-align: center;
}
.Italic {
	font-style: italic;
}
#container #mainContent3 p strong a {
	text-align: left;
}
#container #mainContent3 p strong a {
	text-align: left;
}

#servicesReports {}
#servicesReports td {text-align: center; width:190px;}
.noRightBorder {border-right:none !important;}
.preview {cursor: pointer;}
.preview:hover {color:#10499E;}

#slider1, #slider2, #slider3{ margin:20px auto 0 -9999999px }
#slider2, #slider3 {margin-top: -600px;}

#slider1 ul, #slider1 li, #slider2 ul, #slider2 li, #slider3 ul, #slider3 li{
	margin:0;
	padding:0;
	list-style:none;
	}
#slider1 li, #slider2 li, #slider3 li{ 
	/* 
		define width and height of list item (slide)
		entire slider area will adjust according to the parameters provided here
	*/ 
	width:491px;
	height:600px;
	overflow:hidden; 
	}	
	
p#controls1, p#controls2, p#controls3{
	margin:0;
	margin-left: -999999px;
	position:relative;
	} 

#prevBtn1, #nextBtn1, #prevBtn2, #nextBtn2, #prevBtn3, #nextBtn3{ 
	display:block;
	margin:0;
	overflow:hidden;
	text-indent:-8000px;		
	width:30px;
	height:77px;
	position:absolute;
	left:12px;
	top:-580px;
	}	
#nextBtn1, #nextBtn2, #nextBtn3{ 
	left:541px;
	}														
#prevBtn1 a, #nextBtn1 a, #prevBtn2 a, #nextBtn2 a, #prevBtn3 a, #nextBtn3 a{  
	display:block;
	width:30px;
	height:77px;
	background:url(images/btn_prev.gif) no-repeat 0 0;	
	}	
#nextBtn1 a, #nextBtn2 a, #nextBtn3 a{ 
	background:url(images/btn_next.gif) no-repeat 0 0;	
	}
#sliderAnchor {height:1px;}


.sampleFormTable td { font-size: 12px; }
.sampleFormTable td.col1 { width: 150px; }
.sampleFormTable input.text, .sampleFormTable select.countrySelect { width: 200px; border: 1px solid #999999; }
.errorMSG { color:#FF0000; font-size: 13px; font-weight: bold; }

ul.MenuBarHorizontal a { font-weight: bold !important; font-size: 14px !important; }
ul.MenuBarHorizontal li { width:160px !important; height:35px !important; }
ul.MenuBarHorizontal ul { width:10em !important; }
ul.MenuBarHorizontal ul.wide { width:16em !important; }
ul.MenuBarHorizontal ul.wide li { width:16em !important; }
ul.MenuBarHorizontal ul.contact-menu { width:10em !important; }
ul.MenuBarHorizontal ul.contact-menu li { width:10em !important; }

table.workshop-content { width:800px; padding: 0; margin: 10px 0; }
table.workshop-content td.workshop-narrow { width:190px; padding: 0; margin: 0; background: #EEE; }
table.workshop-content td.workshop-wide { width:420px; padding: 0; margin: 0; }

#workshop-col1, #workshop-col2, #workshop-col3 { padding: 10px; font-size: 12px; }

.Blue1emBold {
	font-size: 1em;
	font-weight: normal;
	color: #000;
}

.focus-link { clear:both; padding: 10px 0 10px 11px; }

.float-right { float:right !important; }
.float-left { float:left !important; }
.center { text-align: center !important; }
.justify { text-align: justify !important; }
.align-left { text-align: left !important; }
.align-right { text-align: right !important; }
.clear { clear: both !important; float: none !important; }

div#header img { margin: 0px 10px 0 0; }
div#sidebar3 p { text-align: left; }
div#sampleDownload { margin: 0 5px; }
div#sidebar3 h3 { margin-top: 0px; }
div#sidebar3 div.speakers { padding-left: 10px; margin-top: 10px; }
div#sidebar3 div.speakers div { float:left; width: 100px; font-size: 11px; text-align: center; }
div#mainContent3 h1 { text-align: center; }
div#mainContent3 .p1 { text-align: center; color:#1F497D; font-size: 20px; font-weight: bold; margin-top: 20px; }
div#mainContent3 .p2 { text-align: center; color:#1F497D; font-size: 16px; font-weight: bold; }
div#mainContent3 .p3 { text-align: center; color:#000; font-size: 16px; font-weight: bold; border-bottom: 1px dotted #DDD; padding-bottom: 10px; }
div#mainContent3 .p4 { text-align: center; color:#000; font-size: 16px; font-weight: bold; font-style: italic; }
div#mainContent3 .p4 span { font-style: normal; margin-left: 20px; }
div#mainContent3 h3 { text-align: center; color:#1F497D; font-size: 19px; font-weight: bold; font-style: italic; }
div#mainContent3 h4 { text-align: left; color:#000; font-size: 20px; font-weight: bold; }
div#mainContent3 img#title-image { margin:0 0 15px 5px; }

table.workshop-agenda { border: 1px solid #1F497D; }
table.table2 { border:none; border-left: 1px solid #1F497D; }
table.workshop-agenda thead { background: #1F497D; color: #FFF; text-align: center; }
table.workshop-agenda tfoot { background: #1F497D; line-height: 5px; }
table.workshop-agenda thead td { padding: 9px; font-size: 14px; border: none; }
table.table2 thead td { font-size: 11px; }
table.workshop-agenda tbody td { vertical-align: top; border: 1px solid #1F497D; background: transparent url(images/workshop-table-td.jpg) 0 0 repeat-x; }
table.workshop-agenda tbody td.col1 { font-size: 10px; width:130px; font-weight: bold; text-align: center; padding: 5px 0 ; border-left: 1px solid #FFF; border-top:  1px solid #FFF; border-right: 1px solid #1F497D; }
table.workshop-agenda tbody td.col2 { font-size: 12px; padding: 5px; border-left: 1px solid #FFF; border-top:  1px solid #FFF; border-right: none; }
table.workshop-agenda tbody tr.last-row td { border-bottom: none; }
table.workshop-agenda tbody td.col2 span { font-weight: bold; }
table.workshop-agenda tbody td.col2 ul { margin: 0px; }
table.workshop-agenda tbody td.col2 li { font-size: 12px; }

.workshop p.report-links { margin-left: 10px; }
.workshop p.report-links a { margin-right: 15px; }

.workshop-staff { background: #FFF; padding: 5px; font-size: 13px;}
.workshop-staff img { width: 90px; height:auto; border: 1px solid #DDD;}
.workshop h5 { margin-bottom: 5px; }
.workshop p { margin-top: -1px; }

ul.numbered { list-style-type: decimal; }
ul.lettered { list-style-type: upper-latin; }

div#casestudies { border-bottom: 1px dotted #DDD; padding-bottom: 20px; }
.img-case-study-wrapper-left { float: left; width: 290px; }
.img-case-study-wrapper-right { float: left; width: 290px; margin-left: 10px; }
img.img-case-study { width:290px; height:204px; }
div.case-study-overlay { background:transparent url(images/case-study/mask.png) 0 0 no-repeat; position:absolute; width:290px; height:204px; display:none; color:#FFF;}
div.case-study-overlay h3, div.case-study-overlay p { color: #FFF; text-align: center; padding: 0 20px; }
div.case-study-overlay a:link, div.case-study-overlay a:visited { color: #FFF; }
div.case-study-overlay a:hover { color: #FF0000; }

.home-page h3#workshop-banner { margin-top: -5px; }
.img48 { width: 48px; height: 48px; }

.creative-services-title { padding-top: 10px; }
.creative-steps-wrapper { background: transparent url(images/creative-steps-bg.png) 50% 0 repeat-y; }
.creative-steps { width: 33%; float: left; }
.creative-steps h3 { text-align: center; margin-top:5px; }
.creative-steps p { padding: 0 20px; text-align: justify; }
#creative-banner {  }

#faq-popup, #agree-popup { display: none; width:700px; height: 400px; background: #fff; text-align: left; padding: 20px; overflow: hidden; overflow-y: scroll; }
#faq-popup h4 { margin-bottom: 5px; }
#faq-popup p, #agree-popup p { margin: 0px; }
#agree-popup-link { text-decoration: underline; cursor: pointer; }
#simplemodal-container a.modalCloseImg {
	background:url(images/x.png) no-repeat; /* adjust url as required */
	width:25px;
	height:29px;
	display:inline;
	z-index:3200;
	position:absolute;
	top:-15px;
	right:-18px;
	cursor:pointer;
}
.btn-faq {
  padding: 5px 15px 5px 15px;
  font-family: 'Droid Sans', Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  color: #ffffff;
  background-color: #245191;
  cursor: pointer;
  text-shadow: -1px -1px 2px #465f97;
}
.btn-faq-wrap { float: right; padding-top: 5px; }
.social-tab { background: transparent url(images/social-tab-bg.png) 0 0 no-repeat; width:242px; height:26px; display: block; margin: 0; padding: 0; position: absolute; top:0; text-align: center; }
.social-tab div#tab-tweet, .social-tab div#tab-plus, .social-tab div#tab-like { float:left; margin-top: 2px; width:70px; text-align: center; }
.social-tab div#tab-plus { margin-left: 10px; }
.social-tab div#___plusone_0 { width: 60px !important; }


