		/*
Theme Name: TIYS
Theme URI: http://jodiwarren.com/
Description: Custom built for The Iyengar Yoga Studio
Author: Jodi Warren
Version: 1.0
*/


/* @group presets */

/*
  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/
*/

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: #444;
  /* set your base font here, to apply evenly */
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; 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: #3388A6; }
a:hover { color: #E37F1C; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

ol ol {
	list-style-type: lower-alpha;
}

ol ol ol
{
	list-style-type: lower-roman;
}

ul ul {
	list-style-type: circle;
}

ul ul ul
{
	list-style-type: square;
}

/* 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: #5da7ff; color:#fff; text-shadow: none; }
::selection { background:#5da7ff; 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; }






 /* Primary Styles
    Author:
 */

 @font-face {
 	font-family: 'icomoon';
 	src: url('fonts/icomoon.eot');
 }
 @font-face {
 	font-family: 'icomoon';
 	src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggi/LcAAAC8AAAAYGNtYXAaVcxYAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZrB5wXAAAAFwAAABWGhlYWT/3QtHAAACyAAAADZoaGVhA+IB5wAAAwAAAAAkaG10eAUAAAAAAAMkAAAAGGxvY2EA1AB6AAADPAAAAA5tYXhwAAwANQAAA0wAAAAgbmFtZUQYtNYAAANsAAABOXBvc3QAAwAAAAAEqAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAQHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYB//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAA/+AB4AHAADIAACUOAyMiLgInLgM1ND4CNzYuAiMiDgIxFB4CFx4DMzA+AjU0LgIHAWAMDgwODAwYGBgMDBcSCwsSFwwMEiQqDAwhHhUWJS4XF0RJRBgeJB4fKisMoAwXEgsLEhcMDBgYGAwMDgwODAwrKh8eJB4YRElEFxcuJRYVHiEMDCokEgwAAAAABQAAAAACAAGgABgAHAAgACYAKgAAASEiDgIVERQeAjMhMj4CNRE0LgIjBQc1FychBycfATcXITc/ARUnAdD+YAoRDQgIDREKAaAKEQ0ICA0RCv73h4dvAVCoqHUzM2r+xmpsh4cBoAgNEQr+wAoRDQgIDREKAUAKEQ0I02r7kZN+fpk3N4eHBpH7agABAAAAAQAA/Nt+6l8PPPUACwIAAAAAAM9e5VUAAAAAz17lVQAA/+ACAAHAAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAIAAAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAIAAAACAAAAAAAAAAAKABQAHgBmAKwAAAABAAAABgAzAAUAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoAKABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoAKABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'),
 		 url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAATcAAoAAAAABJQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAVsAAAFbU20xiU9TLzIAAAJQAAAAYAAAAGAIIvy3Y21hcAAAArAAAABMAAAATBpVzFhnYXNwAAAC/AAAAAgAAAAIAAAAEGhlYWQAAAMEAAAANgAAADb/3QtHaGhlYQAAAzwAAAAkAAAAJAPiAedobXR4AAADYAAAABgAAAAYBQAAAG1heHAAAAN4AAAABgAAAAYABlAAbmFtZQAAA4AAAAE5AAABOUQYtNZwb3N0AAAEvAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAAB8Dx0AAACBER0AAAAJHQAAAVISAAcBAQgPERMWGyBpY29tb29uaWNvbW9vbnUwdTF1MjB1RTYwMHVFNjAxAAACAYkABAAGAQEEBwoNU8j8lA78lA78lA77lA739Pc0FWtri2tri2uLa6trq2ura6uLq4urq4urq6urK+tri2uLSyuLi4tLzfsWyU3JTfcWScuLCIuL68uLq4urK+trawgO+GT4NBX8NIsFcYt1dYtxCIv71AWLcaF1pYsI+DSLBaWLoaGLpQiL99QFi6V1oXGLCPud+2cV+xshi/eP9xv7JQX7A/cnFffki/s8+xL7PPcSBfcJ+y0VvlS+wvX7G/vOi/X3GwX3AJEV9xv3JYv7j/sb9QUO+JQU+JQViwwKAAADAgABkAAFAAABTAFmAAAARwFMAWYAAAD1ABkAhAAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAOYBAeD/4P/gAeAAIAAAAAEAAAAAAAAAAAAAACAAAAAAAAIAAAADAAAAFAADAAEAAAAUAAQAOAAAAAoACAACAAIAAQAg5gH//f//AAAAAAAg5gD//f//AAH/4xoEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAQAA+etDZ18PPPUACwIAAAAAAM9e5VUAAAAAz17lVQAA/+ACAAHAAAAACAACAAAAAAAAAAEAAAHg/+AAAAIAAAAAAAIAAAEAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAAAAAAAAAQAAAAIAAAACAAAAAABQAAAGAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgAoAGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgAoAGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('woff');
 	font-weight: normal;
 	font-style: normal;
 }

 [class^="ss_"], [class*=" ss_"] {
 	font-family: 'icomoon';
 	speak: none;
 	font-style: normal;
 	font-weight: normal;
 	font-variant: normal;
 	text-transform: none;
 	line-height: 1;

 	/* Better Font Rendering =========== */
 	-webkit-font-smoothing: antialiased;
 	-moz-osx-font-smoothing: grayscale;
 }

 .ss_telephone:before {
 	content: "\e600";
 }
 .ss_email:before {
 	content: "\e601";
 }


.ss_sprite {
color: #3388A6;
}


/*
 * 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; }
}


p           { margin: 0 0 .75em; }
/*
	These can be used to pull an image at the start of a paragraph, so
	that the text flows around it (usage: <p><img class="left">Text</p>)
 */
.left  			{ float: left !important; }
p .left			{ margin: 1.5em 1.5em 1.5em 0; padding: 0; }
.right 			{ float: right !important; }
p .right 		{ margin: 1.5em 0 1.5em 1.5em; padding: 0; }


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }

/* @end */

/* Tables
-------------------------------------------------------------- */

/*
	Because of the need for padding on TH and TD, the vertical rhythm
	on table cells has to be 27px, instead of the standard 18px or 36px
	of other elements.
 */
table       { margin-bottom: 1.4em; width:100%; text-align: center; }
tr
{
	border-left: solid 1px #eee;
}
th          { font-weight: bold; background-color:#eee;}
th,td,caption { padding: 4px 8px 10px 5px; border-right:1px solid #eee; border-bottom:1px solid #eee;}
/*
	You can zebra-stripe your tables in outdated browsers by adding
	the class "even" to every other table row.
 */
/*tbody tr:nth-child(even) td,
tbody tr.even td  { background: #e5ecf9;}*/
tfoot       { font-style: italic; }
caption     { background: #eee; }

html
{
	}

body
{
	}



body
{
	padding: 0 40px;
	position: relative;
	/*background-color: floralwhite;*/
}

#container
{
	padding: 0 20px;
	margin: 0 auto;
	width: 950px;
	background-color: white;
	overflow:auto;
	/*-webkit-box-shadow: 0px 0px 8px #555*/
}

h1, h2, h3, h4, h5, h6{

  font-family: 'BergamoProRegular', sans-serif;
  font-style: normal;
  font-weight: 400;
}

h1
{
  font-size: 42px;
  text-shadow: none;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.08em;
  word-spacing: 0.244em;
  line-height: 1.13em;
}

h2
{

	/*border-bottom: #be5e00 1px solid;*/
	margin-bottom: 10px;
	line-height: 18px;
}

h3
{
	margin-top: 6px;
}

ul, ol
{
	padding-bottom: 4px;
}

/* @group Navbar */

#navbar
{
	float: none;
	clear: both;

}

#navbar li
{
	display: inline;
}

#navbar li ul
{
	float: left;
}

#navbar li li
{
	display: block;
}

.noBorder a
{
	border-right-width: 0 !important;
}

#nav .sf-parent a
{
	padding-right: 21px;
}

#nav li a:hover
,#nav li a:focus {


	border-right-color: #63cdf3;
	border-right-width: 4px;
	padding-right: 12px;
}


#nav .sf-parent a:hover
{

	border-right-color: #63cdf3;
	border-right-width: 4px;
	padding-right: 18px;
}


#nav ul li a:hover
,#nav ul li a:focus {
opacity: 1;
border-top: 1px solid rgba(220,220,220,1);
border-bottom: 1px solid rgba(220,220,220,1);
}

.noBorder a:hover
{
border-bottom: 1px solid rgba(220,220,220,.7);
	border-right-color: #63cdf3 !important;
	border-right-width: 4px !important;
	padding-right: 12px !important;
	}

li .sf-arrow
{
	margin-right: 5px;
}

/* @end */

/* @group Teacher's Details ul>li>ul>li */

.teacherList
{
	margin-left: 10px;
}

.teacherList li
{
	list-style-type: none;

}

.teacherList .teacher
{
	margin-bottom: 10px;
}

h4.teacherName
{
	margin-bottom: 4px;
	border-bottom: 1px solid #ccc;
	width: 230px;
}

.contactDetails
{
	padding-top: 6px;
	padding-left: 10px;
	padding-bottom: 4px;
	margin-top: -5px;
	margin-left: 0px;

  margin: 0;
  padding: 0;
}


#teachersDetails .contactDetails
{
    border-left: 4px solid;
    border-left-color: #E37F1C;
    padding-top: 10px;

}
#teachersDetails .contactDetails li {
  padding-left: 1em;
  margin-left: 0;
}



.contactDetails li
{
	margin-left: 10px;
	display: compact;
	padding-bottom: 0;
	padding-bottom: 1px;
  list-style: none;

}

.contactDetails .email, .contactDetails .telephoneNumber
{

  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.contactDetails .email:before,
.contactDetails .telephoneNumber:before {
  margin-right: 10px;
  line-height: 1.5;
}

h4.teacherName
{
	color: #607890;
}

.teacher h4:hover
{
	color: #036;
	cursor: pointer;
	border-bottom: solid 4px #E37F1C;
	margin-bottom: -3px;
}

.teacher.selected h4
{
	color: #036;
	cursor: pointer;
	border-bottom: solid 4px #E37F1C;
  margin-bottom: 0px;
}

.contactDetails
{

}

/* @end */



/* @group Teacher's Details Table */

/*Teacher's Details
--------------------------------------------------------------*/

table.teachersDetails
{
	margin: 0;
	padding: 0;
	text-align: left;

}

table.teachersDetails th.contactDetails
{
	padding-left: 40px;
}

table.teachersDetails tr
{
	border: 0px;
	border-bottom: solid 1px #eee;
}


td.teacherName
{
	font-weight: bold;
}

table.teachersDetails td
{
	border-color: white;
	border-width: 0;
}

table.teachersDetails tr.highlighted
{
	background: #eee;
	text-shadow: #e1e1e2 2px 2px 1px;

}

/* @end */

dl
{
	float: left;

	margin: 1em 0;
	padding: 0;
}

dt
{
	clear: left;
	float: left;
	width: 140px;
	margin: 0 0 10px 0;
	padding: 5px;
	border-top: 1px solid #ccc;
	font-weight: bold;
}

dt.gallery-icon {
width: 80%;
border-top: none;
}

dd
{
	float: left;
	width: 300px;
	margin: 0;
	padding: 5px;
	border-top: 1px solid #ccc;
}

#guideToClasses dt
{
	border-left: 4px solid #ccc;
}

/* Customisations
---------------------------------------------------------------*/

body .timetable table td.highlighted
{
	background: #fafafa;
	text-shadow: #e1e1e2 2px 2px 1px;
}

body .timetable thead th    { background: #9EE9FF; }

body .timetable td
{
	width: 160px;
	padding: 6px 40px;
}


body .timetable td p:nth-child(1)
{
	margin-bottom: 3px;
	margin-top: 4px;
}

body .timetable td p:nth-child(2)
{
	border-top: 1px solid #efefef ;
	border-bottom: 1px solid #efefef;
	padding-top: 4px;
	padding-bottom: 4px;
}

body .timetable td p:nth-child(3)
{
	border: none;
	margin-top: 3px;
	margin-bottom: 4px;
}

body .timetable td.betterhover p:nth-child(2)
{
	border-top: 1px solid;
	border-top-color: #CC6E56;
	border-bottom: solid 1px #CC6E56;
}

.betterhover
{
	background: #9EE9FF;
}

body .timetable thead tr th span
{
	border-bottom: 4px solid;
	border-bottom-color: #9EE9FF;
	padding: 0 4px;
	margin: 0 -4px -4px -4px;
	-webkit-transition-property: border-bottom-color;
	-webkit-transition-duration: .2s;
	-webkit-transition-timing-function: ease-in-out;
}

body .timetable thead tr th:hover span
{
	border-bottom-color: #CC7E6A;


}


/*.timetable table td p
{
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
	        border-radius: 6px;
}


.timetable table td p:nth-child(1)
{
	background-color: #eef;
}

.timetable table td p:nth-child(2)
{
	background-color: #eee;
}

.timetable table td p:nth-child(3)
{
	background-color: #fcdfc0;
}*/


#thumbs ul li
{
	list-style-type: none;
}

#thumbs ul li a
{
text-decoration: none;
}

footer
{
	margin-top: 20px;
	height: 20px;
	clear: both;
	display: block;
}

footer p
{
text-align: right;
padding-right: 80px;
clear: both;
}

a.advance-link {
text-decoration: none;
}

div.caption
{
	bottom: 30px;
	left:0px;
	padding-left: 10px;
/*	background-color: rgba(204,204,204,0.85);*/
	background-image: url('style/bg.png');
	padding: 10px 10px;
	padding-bottom: 0px;
	position: absolute;
}
/*
div.caption.ie6, div.caption.ie7, div.caption.ie8
{

}
*/
div.caption h2
{
	border-top: 1px solid black;
	padding-top: 14px;
}

div.caption p
{
	border-bottom: 1px solid black;
	padding-bottom: 10px;

}

div.caption h2, div.caption p
{
	line-height: 8px;
	color: #444;
}

.thumbs li a, .thumbs li a:visited, .thumbs li a:active
{
	text-decoration: none;
}

#carousel
{
	width: 590px;
	height: 210px;
	position: relative;
	float: left;
	zoom:1;
}

#carousel .thumbs.noscript:hover li div.caption.thumbTextLink h2, #carousel .thumbs.noscript:hover li div.caption.thumbTextLink p {
	color: #1f2123;
}


#carousel .thumbs.noscript li div.caption.thumbTextLink h2, #carousel .thumbs.noscript li div.caption.thumbTextLink p
{
	color: #474c51;
}

#carousel .thumbs.noscript li div.caption:hover.thumbTextLink h2, #carousel .thumbs.noscript li div.caption:hover.thumbTextLink p {
	color: #1f2123;
}

.thumbs
{
	margin-left: 0;
	list-style-type: none;
}

#footer{
	bottom: 0;
	padding-top: 100px;
}

#footer p{
	text-align: right;
}

/* @group Type Adjustments */

.kerningin8 {
	letter-spacing: -8px;
}
.kerningin6 {
	letter-spacing: -6px;
}

.kerningin4 {
	letter-spacing: -4px;
}
.kerningin2 {
	letter-spacing: -2px;
}

.kerningin1 {
	letter-spacing: -1px;
}

.trackingin1{
	word-spacing: -1px;
}

/* @end */

#header
{
	display: block;
	position: relative;
	/*background: url(images/header.jpg) no-repeat 448px 4px;*/
	padding-top: 1.5em;
}

a.header, a.newsItemLink {
	text-decoration: none;
}

#header a.header:hover .homeIcon{
	display: block;
}

a.header #theIyengarYogaStudio .homeIcon {
	opacity: 0;
	-webkit-transition: .4s;
	background: url(style/go-home.png) no-repeat;
	position: absolute;
	width: 250px;
	margin-top: 20px;
	margin-left: 6px;

}


a.header #theIyengarYogaStudio .homeIcon:after
{
	content: "Home";
	position: absolute;
	margin-left: 20px;
	margin-top: 6px;
	font: 14px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	color: #444;
	text-shadow: none;
	letter-spacing: normal;
}

a.header:hover #theIyengarYogaStudio .homeIcon {
	opacity: 100;
	display: inline;
}

a.header h1#theIyengarYogaStudio {
	/*color: #be5e00;*/
	text-shadow: #d7d8d9 1px 1px 2px;

	-webkit-transition: .4s;
	   -moz-transition: .4s;
	     -o-transition: .4s;
	        transition: .4s;
}

a:hover.header h1#theIyengarYogaStudio {
	color: #A66623;
	}


#socialMedia
{
	right: 10px;
	position: absolute;
	display: inline;
	padding-right: 20px
}


#socialMedia a
{
	display: inline-block;
}
	#socialMedia a
	{
	padding: 0px 10px;
	list-style-type: none;
}

	#socialMedia .facebook
	{
	background-image: url(images/facebook.png);
	width: 32px;
	height: 32px;
}

	#socialMedia .twitter
	{
	background-image: url(images/twitter.png);
	width: 48px;
	height: 32px;
	}

/*Wordpress*/

#access div.skip-link.screen-reader-text a {
	position: absolute;
	right: -999px;
}

/* Text meant only for screen readers */
.screen-reader-text {
	position: absolute;
	left: -9000px;
}

#pageContent img {
	margin: 0;
	height: auto;
	max-width: 640px;
	width: auto;
}
#pageContent .attachment img {
	max-width: 900px;
}
#pageContent .alignleft,
#pageContent img.alignleft {
	display: inline;
	float: left;
	margin-right: 24px;
	margin-top: 4px;
}
#pageContent .alignright,
#pageContent img.alignright {
	display: inline;
	float: right;
	margin-left: 24px;
	margin-top: 4px;
}
#pageContent .aligncenter,
#pageContent img.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
#pageContent img.alignleft,
#pageContent img.alignright,
#pageContent img.aligncenter,
#pageContent .wp-caption {
	background: #f1f1f1;
	line-height: 18px;
	margin-bottom: 20px;
	padding: 4px;
	text-align: center;
}
#pageContent .wp-caption img {
	margin: 5px 5px 0;
}
#pageContent .wp-caption p.wp-caption-text {
	color: #888;
	font-size: 12px;
	margin: 5px;
}
#pageContent .wp-smiley {
	margin: 0;
}
#pageContent .gallery {
	margin: 0 auto 18px;
}



#pageContent .gallery .gallery-item {
	float: left;
	margin-top: 0;
	text-align: center;
	width: 33%;
}
#pageContent .gallery img {
	border: 2px solid #cfcfcf;
}
#pageContent .gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	margin: 0 0 12px;
	width: 80%;
}
#pageContent .gallery dl {
	margin: 0;
}
#pageContent .gallery img {
	border: 10px solid #f1f1f1;
}
#pageContent .gallery br+br {
	display: none;
}
#pageContent .attachment img { /* single attachment images should be centered */
	display: block;
	margin: 0 auto;
}

div.classLeftContent {
}

div.classLeftContent {
	padding-right: 20px;
	width: 300px;
	/*border-right: 1px solid #efefef;
	border-bottom: 1px solid #efefef;*/
	margin-left: 20px;
	margin-bottom: 20px;
	min-height: 180px;
	float: left;
}

#wp-table-reloaded-id-2-no-1 tbody tr.row-1 {
	border-top: 1px solid #eee;
}

#wp-table-reloaded-id-2-no-1 {
	margin: 40px 0;

}

#footer span
{
	float: left;
	clear: both;
	font-size: 11px;
}


blockquote {
	font-style: italic;
	margin-right: 40px;
	margin-left: 25px;
	margin-bottom: 10px;
	position: relative;
	background-color: #f3f9fe;
	padding-left: 44px;
	padding-top: 11px;
	padding-bottom: 1px;
}

blockquote:before{
	content: "\201C";
	position: absolute;
	left: 8px;
	top: 0;
	background-color: transparent;
	color: #747474;
	font: 74px "Adobe Caslon Pro", "Hoefler Text", Caslon, Georgia, "Times New Roman", sans-serif;
}
