/* The main calendar widget.  DIV containing a table. */

div.calendar { position: relative; }

.calendar table { margin: 0; }

.calendar, .calendar table 
{
	cursor: default;
	background: #ffffff;
	
	color: #000;
	font-family: Trebuchet MS; /* qt */
	font-size: 11px;
}

.calendar 
{
	border: 1px solid #556;	
	padding: 5px; /* qt */
}

/* Header part -- contains navigation buttons and day names. */

.calendar .button { /* "<<", "<", ">", ">>" buttons have this class */
  text-align: center;    /* They are the navigation buttons */
  padding: 2px;          /* Make the buttons seem like they're pressing */  
}

.calendar .nav {
	/* background: #778 url(menuarrow.gif) no-repeat 100% 100%; qt */
	background-color: #ffffff; /* qt */
	color: Black;
}

.calendar thead .title { /* This holds the current "month, year" */
  font-size: larger;
  font-weight: bolder;      /* Pressing it will take you to the current date */
  text-align: center;
  background: #fff;
  color: #000;
  padding: 2px;
  color: #A61633; /* qt */
}

.calendar thead .headrow { /* Row <TR> containing navigation buttons */
  background: #F0F0F0;
}

.calendar thead .daynames { /* Row <TR> containing the day names */
  /* background: #bdf; */ 
}

.calendar thead .name { /* Cells <TD> containing the day names */
  border-bottom: 1px solid #556;
  padding: 15px 2px 2px 2px;
  text-align: center;
  color: #323232;
}

.calendar thead .weekend { /* How a weekend day name shows in header */
  color: #B52121;
  
}

.calendar thead  .headrow .hilite { /* How do the buttons in header appear when hover */
  /* background-color: #aaf; qt */
  /* color: #000; qt */
  border: 1px solid #A61633; /* qt */
  padding: 1px;
}

.calendar thead .active { /* Active (pressed) buttons in header */
  background-color: #A61633; /* qt */
  padding: 2px 0px 0px 2px;
  color: White; /* qt */
}



/* The body part -- contains all the days in month. */

.calendar tbody .day { /* Cells <TD> containing month days dates */
  width: 2em;
  color: #323232;
  text-align: right;
  padding: 2px 4px 2px 2px;
}
.calendar tbody .day.othermonth {
  font-size: 80%;
  color: #bbb;
}
.calendar tbody .day.othermonth.oweekend {
  color: #fbb;
}

.calendar table .wn {
  padding: 2px 3px 2px 2px;
  border-right: 1px solid #000;
 /* background: #bdf;*/
}

.calendar tbody .rowhilite td {
  /* background: #eef; */
}

.calendar tbody .rowhilite td.wn {
 /* background: #eef;*/
}

.calendar tbody td.hilite { /* Hovered cells <TD> */
  /*background: #A61633; /* qt */
  padding: 1px 3px 1px 1px;
  border: 1px solid #A61633; /* qt */
  font-weight: bolder;
}

.calendar tbody td.weekend { /* Cells showing weekend days */
  color: #B52121;
}

.calendar tbody td.today { /* Cell showing selected date */
  background-color: #F0F0F0;
}

.calendar tbody td.active { /* Active (pressed) cells <TD> */
  padding: 2px 2px 0px 2px;
  background: #A61633; /* qt */
  color: #ffffff; /* qt */
}

.calendar tbody td.selected { /* Cell showing today date */
  font-weight: bold;
  border: 1px solid #A61633;
  padding: 1px 3px 1px 1px;
  background: #A61633; /* qt */
  color: #ffffff;
}



.calendar tbody .disabled { color: #999; }

.calendar tbody .emptycell { /* Empty cells (the best is to hide them) */
  visibility: hidden;
}

.calendar tbody .emptyrow { /* Empty row (some months need less than 6 rows) */
  display: none;
}

/* The footer part -- status bar and "Close" button */

.calendar tfoot .footrow { /* The <TR> in footer (only one right now) */
  text-align: center;
  background: #556;
  color: #fff;
}

.calendar tfoot .ttip { /* Tooltip (status bar) cell <TD> */
  background: #fff;
  color: #A61633; /* qt */
  border-top: 1px solid #556;
  padding: 5px 1px 1px 1px;
  font-weight: bolder;
}

.calendar tfoot .hilite { /* Hover style for buttons in footer */
  background: #aaf;
  border: 1px solid #04f;
  color: #000;
  padding: 1px;
}

.calendar tfoot .active { /* Active (pressed) style for buttons in footer */
  background: #77c;
  padding: 2px 0px 0px 2px;
}

/* Combo boxes (menus that display months/years for direct selection) */

.calendar .combo {
  position: absolute;
  display: none;
  top: 0px;
  left: 0px;
  width: 4em;
  cursor: default;
  border: 1px solid #655;
  background: #ffffff;
  color: #000;
  font-size: 90%;
  z-index: 100;
}

.calendar .combo .label,
.calendar .combo .label-IEfix {
  text-align: center;
  padding: 1px;
}

.calendar .combo .label-IEfix {
  width: 4em;
}

.calendar .combo .hilite {
  background: #acf;
}

.calendar .combo .active {
  border-top: 1px solid #46a;
  border-bottom: 1px solid #46a;
  background: #eef;
  font-weight: bold;
}

.calendar td.time {
  border-top: 1px solid #000;
  padding: 1px 0px;
  text-align: center;
  background-color: #f4f0e8;
}

.calendar td.time .hour,
.calendar td.time .minute,
.calendar td.time .ampm {
  padding: 0px 3px 0px 4px;
  border: 1px solid #889;
  font-weight: bold;
  background-color: #fff;
}

.calendar td.time .ampm {
  text-align: center;
}

.calendar td.time .colon {
  padding: 0px 2px 0px 3px;
  font-weight: bold;
}

.calendar td.time span.hilite {
  border-color: #000;
  background-color: #667;
  color: #fff;
}

.calendar td.time span.active {
  border-color: #f00;
  background-color: #000;
  color: #0f0;
}
/* SHARED */

/* table { margin: 0 auto; }  FF Fix for centering tables */

body { font-family: Trebuchet MS, arial, helvetica, sans-serif; }

h1 { font-size: x-large; }
h2 { font-size: large; }

* { margin: 0px; padding: 0px; }
td { vertical-align: top; }
h1, h2, h3 { padding-bottom: 0.5em }
p, ul { padding-bottom: 1em }
ul { padding-left: 1em; }

a { color:#005296; }

body { text-align: center; margin: 10px; }
body { background: #03506F url("images/bg_home.gif") repeat-x; }

.container { text-align: left; margin-left: auto; margin-right: auto; }

/* largezza sito */
body { min-width: 760px; }
.container,
.toplinks { width: 760px; }

/* DIV FIX */
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix {display: inline-block;}
/* \*/ * html .clearfix {height: 1%;} .clearfix {display: block;} /* */

fieldset { border: 0px; margin: 0px; padding: 0px; }
fieldset legend { display: none; }
fieldset p { padding-bottom: 0.5em; }
fieldset div.field { padding-bottom: 0.5em; }
label.field { font-weight: bolder; }

/* STYLES */

.innerblock { vertical-align: bottom; } /* or display: block */
.pagecontent { padding: 0 5px 0 5px; }
.invisible { display: none; }
.error { color: Red; font-size: smaller; display: block; font-weight: bold; }
.error ul { padding: 0 0 0 1.5em; margin: 5px 0 5px 0; }
.error li { }
.sitecolor { color: #A61633; }

.smallbutton { vertical-align: middle; font-weight: bolder; text-decoration: none; }

.modal_background 
{
	background-color: Gray;
	filter: alpha(opacity=70);
	opacity: 0.7;
}

.modal_instancesummary
{
	background-color: #ffffff;
	padding: 15px;
	width: 550px;
	height: 550px;	
}
.modal_editlocation
{
	background-color: #ffffff;
	padding: 15px;
	width: 550px;
	height: 550px;
	overflow: scroll;	
}

/* tabella per fieldset */
.field_table td { padding: 0 0 10px 0; }
.field_table td.lcol label  { font-weight: bolder; }
.field_table .lcol { width: 20%; }
.field_table .rcol { }
.field_table .mcol,
.field_table .rcol { padding-left: 10px; }

/* Tag */
.tag { text-transform: lowercase; }
a.tag { text-decoration: none; } 
a.tag:hover { background-color: #DEE4E8; text-decoration: underline; }

/* dimensioni tag */
/*.tagSize1 { font-size: xx-small; }
.tagSize2 { font-size: x-small; }
.tagSize3 { font-size: small; }
.tagSize4 { font-size: medium; }
.tagSize5 { font-size: large; }
.tagSize6 { font-size: x-large; }
.tagSize7 { font-size: xx-large; }
.tagSize8 { font-size: 27px; }
.tagSize9 { font-size: 29px; }
.tagSize10 { font-size: 31px; } */ 

.tagSize1 { font-size: 8px; }
.tagSize2 { font-size: 11px; }
.tagSize3 { font-size: 14px; }
.tagSize4 { font-size: 17px; }
.tagSize5 { font-size: 20px; }
.tagSize6 { font-size: 23px; }
.tagSize7 { font-size: 26px; }

.tagminiSize1 { font-size: 8px; }
.tagminiSize2 { font-size: 10px; }
.tagminiSize3 { font-size: 12px; }
.tagminiSize4 { font-size: 14px; }
.tagminiSize5 { font-size: 16px; }
.tagminiSize6 { font-size: 18px; }
.tagminiSize7 { font-size: 20px; }

/* box con tip per i tag */
.tags_tip { margin-top: 10px; font-size: small; background-color:#DEE4E8; padding: 2px;} 

.dida { font-size: small; }

.watermark { color: Gray; }
.feedlink { text-decoration: none; font-size: small; }

/* QueryParameters */
.qk {color: #5C2E0C; }
.qk {  }
.qv { font-weight: bolder; }
.qp * { margin: 0; padding: 0; }
.qp ul { margin: 0; padding: 0; list-style-type: none;}
.qp li { margin: 0;   }
/*.qk { display: block; float: left; width: 5em; } */


.rating_stars
{
	width: 120px; 
	display: inline;
}

.rating_legend
{
	font-size: small;
	display: inline;
}

.star_off, .star_on
{
	display: block;
	float: left;
	width: 21px;
	height: 20px;
	text-indent: -90000px;
	overflow: hidden;
}
.star_off { background: url("images/icon_star_off.gif") no-repeat; }
.star_on { background: url("images/icon_star_on.gif") no-repeat; }

/* PAGES */

.page_alerts_l { float: left; width: 300px; }
.page_alerts_r { float: right; width: 400px; }

.page_aboutadd_l { float: left; width: 360px; }
.page_aboutadd_r { float: right; width: 360px; }

.page_aboutmobile_l { float: left; width: 360px; }
.page_aboutmobile_r { float: right; width: 360px; }

.page_theatres h2 { color: #A61633; font-size: x-large;}
.page_theatres_l {  }
.page_theatres_r { float: right; width:45%; }
.page_theatres .searchtheatre ul { list-style-type: none; padding: 0; margin: 5px 0 0 0; }
.page_theatres .searchtheatre li { padding: 10px 0 10px 0; border-top: solid 2px #E3E3E3; } 


.page_performances_l {  }
.page_performances_l h2 { color: #A61633; font-size: x-large; }
.page_performances_r { float: right; }
.page_performances .field_searchoptions { width: 300px; }
.page_performances .searchoption_submit { text-align: right; margin: 5px 1px 0 0;  }
.page_performances_l_l, .page_performances_l_r { vertical-align: top; }
.page_performances_l_r { padding-left: 25px; }
.page_performances_l_r .dida { border: solid 1px gray; padding: 5px; }

/* Home */
.home_lcol { float: left; width: 490px; margin: 0; padding: 0; }
.home_rcol { float: right; width: 220px; margin: 0; padding: 0; }
.home_rcol h2 { padding: 0; font-size: x-large; }
.home_lcol .searchtheatre,
.home_lcol .topshows { margin-top: 15px; }

/* AccountManage */
.account_manage  { }
.account_manage ul { margin: 0; padding: 0; }
.account_manage li { margin-left: 15px; }
fieldset.account_manage .field { width: 200px; }
fieldset.account_manage label.field { display: block; float: left; width: 230px; }
.account_manage h2 { font-weight:normal; color: #A61633; }

.account_manage_contents h4 { margin-bottom: 10px; }
.account_manage_contents a { text-decoration: none; }
.itemlist { margin-bottom: 15px; }
tr.itemlist_item { }
tr.itemlist_altitem { background-color: #f0f0f0; }
td.itemlist_item { padding: 10px; border-bottom: solid 1px; }
.itemlist_itemcommand { width: 20px; }
.itemlist_itemname { font-weight: bold; }


/* AccountNew */
.account_new_lcol { width: 470px; padding: 15px; }
.account_new_rcol { width: 190px; float: right; padding: 15px;  }
.account_new_lcol { background: #ffffff url("images/bg_account_new.gif") repeat-x; }
.account_new_lcol h1 { color: #003366; }
.account_new_rcol h2 em { color: #A61633; font-style:normal; }
.field_account { width: 250px; }
.account_new_lcol .field_table .lcol { width: 150px;}

/* Search */
.search { }
.content_search_rcol h1 { margin: 0; padding: 0; }
.search_lcol { float: left; width: 185px; }
.search_rcol { float: right; width: 530px; }
.content_search_rcol { padding: 5px; }
.search_summary p { margin: 0; padding: 0; }
.search_summary { padding-bottom: 15px; }
.search_count { }
.search_sorting { margin: 0; padding: 0; font-size: small; }

.quicksearch { display: inline-block; padding: 0 10px 0 0; }
.quicksearch_menu { width: 200px; z-index: 3; padding: 10px 10px 0px 10px; background: #FFFFFF; border: solid 2px #A61633; }
.quicksearch_menu li { padding-top: 10px; font-weight: bolder;}
.quicksearch_menu p.searchtip { padding: 0; font-weight: bold; }
.quicksearch_menu { font-size: smaller; }

/* Show */
.show { }
.show_lcol { float: left; width: 520px; margin: 0; padding: 0; }
.show_lcol_l { float: left; width: 110px; }
.show_lcol_r { float: right; width: 390px; }
.show_rcol { float: right; width: 165px; margin: 0; padding: 0; }

.show h2 { color: #A61633; } 
.show_rating { margin-top: 15px; }
.show_tags { font-size: small; }
.show_siteurl { font-size: small; }
.show_text { font-size: small; margin-bottom: 15px; }
.show_lcol_r .key { font-weight: bold; }

.comment { background-color: #ECEBEF; padding: 10px; margin-bottom: 15px; }
.comment_text { font-size: small; }
.comment_footer p { padding: 0; margin: 0;  border-top: solid 1px Gray; margin-top: 10px; }
.comment_footer a { text-decoration: none; }

table.theatres { margin: 0px 0 20px 0;}
th.theatres_dates, 
th.theatres_name { border-bottom: solid 2px #C0C0C0; }
td.theatres_dates,
td.theatres_name { border-bottom: solid 1px #C0C0C0; vertical-align: top; padding: 10px 0 10px 0; }
.theatres_dates { width: 150px; padding: 0 15px 0 0; }
.theatres_name { font-weight: bolder;  }

/* about */
.about_l { width: 130px; float: left; }
.about_r { width: 560px; float: right; }
.about_l ul { list-style-type: square; }
.about_l li { margin-bottom: 15px; line-height: 0.9em; }
.about_l li a { text-decoration: none; font-weight: bold; font-size: small; color: #A61633;  }

.press .about_r ul { list-style-type: square; }
.press .about_r li { font-size: small; }

/* Location */
.location { }
.location_contacts { font-size: smaller; margin-bottom: 15px; }
.location h1 { margin: 0; padding: 0; }
.location_contacts .key {  display: block; float: left; width: 80px; font-weight:bolder; }
.location_contacts p { margin: 0; padding: 0; }
.location .alert_subscribebox { margin: 15px 0 0 0; }
.location_lcol { float: left; width: 535px; }
.location_rcol { float: right; width: 150px; }
.location_rcol .nearlocations {   }
.location_rcol .nearlocations ul { margin: 0; padding: 0; font-size: small; }
.location_rcol .nearlocations li { list-style-type: none; margin-bottom: 5px; }

.location_text { font-size: small; }
.location_description { float: left; width: 400px; }
.location_image { float: left; margin-right: 15px;width: 110px; }
.location .tabs { margin-top: 15px; }

.tabContent { padding: 5px 5px 15px 5px; }
.tabContent { border-bottom: 2px solid #005296; }
.tabContent h2 { color: #A61633; } 
.tabContent table.shows { margin: 15px 0 20px 0; clear: both; }
.tabContent th.shows { border-bottom: solid 2px #C0C0C0; }
.tabContent td.shows { border-bottom: solid 1px #C0C0C0; vertical-align: top; padding: 10px 0 10px 0; }
.tabContent td.showdates { width: 150px; }
.tabContent td.showname { font-weight: bolder; }
.tabContent td.showtags { width: 100px; font-size: small; }

/* SubscribeAlert */
.alertsubscribe { }
.alertsubscribe_lcol { vertical-align: top; width: 500px; background: #FEF9B7 url("images/bg_alert_subscribe.gif") repeat-x; padding: 15px; }
.alertsubscribe_rcol  { width: 180px; float: right; }
.alertsubscribe h1 { color: #5C2E0C; vertical-align: top; }
.alert_subscribe .title img { float: right; }
.alertsubscribe .login { padding: 0; }
.alertsubscribe .login_lcol { background: transparent; width:235px; float: left; padding: 0; text-align:left; }
.alertsubscribe .login_rcol { width:235px; float: right; padding:0; text-align:left; }

/* Tags */
.tags { }
.tags_sorting { margin-bottom: 10px; padding-bottom: 10px; }
.tags_lcol { width: 150px; float: left; }
.tags_rcol { width: 535px; float: right;}

/* Password */
.password { }

/* Comments */
.addcomment { }
.addcomment_rcol { width: 200px; float: right; }
.addcomment_lcol { width: 485px; float: left;}
.field_comment { width: 100%; height: 180px; }
label.field_comment { font-weight: bolder; }

/* EditShow */
.field_edit { width: 400px; }
.field_edit_short { width: 200px; }
.field_edit_name { font-weight: bolder; }

/*.editshow h4 { color: #A61633; }*/
.editlocation_lcol,
.editshow_lcol { float: left; width: 430px; }
.editlocation_rcol,
.editshow_rcol { float: right; width: 250px; }


/* CONTROLS */

.disclaimer { padding: 15px 0 0 0; font-size: 11px; }

/* ItemImage */
.itemimage,
.itemimage_empty { border: solid 1px #000000; width: 100px; padding: 4px; margin: 0px; }
.itemimage_empty { background-color: #f0f0f0; height: 100px; text-align: center; font-size: small; }
.itemimage_empty span { display: block; margin-top: 15px; margin-bottom: 5px; color: Gray;}
.itemimage_details { border: solid 1px; z-index: 3; padding: 4px; background: #ffffff; }
.itemimage_button { font-family: Trebuchet MS, arial, helvetica, sans-serif; border: none; text-align: left; text-decoration: underline; font-weight: bold; background: transparent; cursor: pointer; }
.itemimage_advanced { font-size: small; }

.editinstance_locationlist { margin-top: 10px; font-size: small; font-weight: bold;}

/* Breadcrumbs */
.breadcrumbs { font-size: small; }
.breadcrumbs_link { color: Gray;}
.breadcumbs_activelink { color: Black; font-weight: bold; color: #A61633; }

/* Alert */
.alert { background: #FEF9BD url("images/bg_alert.gif") repeat-x; border: solid 3px #F7AC35; }
.alert { margin: 0 15px 15px 0; padding: 10px; width: 200px; }
.alert p { padding: 0;}
.alert h4 { margin-bottom: 10px; }
.alert a { padding: 0.25em; }
.alert .alert_title img { float: left; }
.alert .alert_title { margin-bottom: 15px; color: #5C2E0C; }
.alert .alert_title a { margin: 0; }
.alert .alert_title { font-size: larger; font-weight: bolder; } 

/* Login  */
.login_wrapper { width:100%; text-align:center; }
.login { padding: 0 30px 0 30px;  text-align: left; margin-left: auto; margin-right: auto; }
.login h1 { color: #A61633; }
.login_lcol { width:300px; float: left; }
.login_rcol { width:300px; float: right; }
.content_login_lcol,
.content_login_rcol { padding: 10px; text-align:left; }
.field_login { width: 95%; }
.login_rcol li strong { color: #A61633; font-weight: normal; }

/* TopLinks */
.toplinks { color:#C0C0C0; font-size: small; margin: 0 auto; padding-bottom: 5px; }
.toplinks a { color:#ffffff; font-weight: bolder; text-decoration: none; }
.toplinks a:hover { text-decoration: underline; } 
.toplinks_l { float: left; margin: 0 0 0 0.5em; padding: 0; }
.toplinks_r { float: right; margin: 0 0.5em 0 0; padding: 0; }

/* Header */
.header { margin-bottom: 10px; }
.header img { border: none; }
.header #beta { float: right; margin-right: 4px; color: Gray; font-size: 11px; width: 350px; line-height: 1.3em; height: 65px; overflow: hidden; text-align: right; }
.header #beta a { font-weight: bolder; color: Gray; }

/* Toolbar */
.toolbar a, 
.toolbar a:link { font-weight: bolder; text-decoration: none; }
.toolbar a:hover { text-decoration: underline; } 
.toolbar *, 
.toolbar a, 
.toolbar a:link { color: #ffffff; }
.toolbar { width:100%; margin-bottom: 15px; }
.content_toolbar { vertical-align:top; padding-left: 5px;}

/* Footer */
.footer { width:100%; margin-top: 20px; text-align: center; font-size: small; }

/* SearchShow */
.searchshow h1, 
.searchshow .sectionTitle  { color: #A61633; padding: 0; }

.searchshow h1 { margin-bottom: 10px; }
.searchshow .sectionTitle { font-weight: bold; font-size: medium; overflow: hidden; white-space: nowrap;}

.section { margin-bottom: 3px; }
.submitButton { margin-top: 10px; float: right; margin-right: 4px;}

.content_searchshow { padding: 5px; }
.showform .dida { color: Black; overflow: hidden; white-space: nowrap; font-weight: normal; font-size: small;}
.showform { margin-bottom: 10px; }
.field_searchshow { width: 97%; }
.content_showform { padding:5px; }
.showform_lcol { vertical-align: middle; }
.showform_rcol { padding-left: 15px; width: 100%;  }

.geotagform h2 { color: #A61633; padding: 0; }
.content_geotagform { padding: 10px; }

.searchshow_city_menu { z-index: 3; padding: 10px 10px 0px 10px; background: #FFFFFF; border: solid 2px #A61633; }

/* SearchOptions */

.searchoptions h3 { color: #A61633; padding: 0; }
.searchoptions h3 { font-weight: bold; font-size: medium; }
.content_searchoptions { padding: 5px; font-size: small; }
.field_searchoptions { width: 158px; }
.searchoption_submit { text-align: right; margin: 5px 1px 0 0;  }
.optionsgroup { margin-bottom: 10px; }
.content_searchoptions_tags { padding: 5px; }
.searchoptions_tags { margin-bottom: 10px; }
.searchoptions .tagcloud { width:125px; overflow: hidden; }
.searchoptions,
.searchoptions .field_searchoptions {  }
.searchoptions label { font-size: small; }
.searchoptions p { margin: 0; padding: 0; }
.searchoptions p.emptyButton { font-size: small; margin: 5px 0 0 0; padding: 0; }

/* ResultList */
.results th { border-bottom: solid 2px #C0C0C0; }
.results td { border-bottom: solid 1px #C0C0C0; padding: 5px 0 5px 0; }
.results td.resultid { padding-top: 10px; }
.results .resultitem { padding-left: 10px; }
.results { vertical-align: top; }
.results p { margin: 0; padding: 0; }
.results .resultid { width: 24px; }
.resultitem .showname { font-size: large;  font-weight:bolder; margin: 0; padding: 0;}
.results .showname a, 
.resultdetails a { text-decoration: none; color: #A61633; }
.results .showname a:hover, 
.resultdetails a:hover { text-decoration: underline; }
.resultlist { margin: 10px 0 30px 0; }
.resultitem .tagcloud { display: inline; font-size: small; padding: 0; }
.results td.resultdetails {font-size: small; }
.results .resultdetails { width: 200px; padding-left: 10px; }
td.resultdetails { color: Gray }
td.resultdetails p { padding: 0; }
td.resultdetails .showdates { color: Black; }
.results .showtags { font-size: smaller; }

.results_paging li { list-style-type: none; display: block; float: left; padding: 0; margin: 0 0 0 5px; }

/* MessageBox */
.messagebox { }
.messagebox_messages { vertical-align: top; }
.messagebox_messages td.messageicon { width: 35px; padding: 4px 0 0 0;}
.messagebox_messages td { padding-bottom: 15px;}
.messagebox_messages p { margin: 0; }
.messagebox ul.searchtips  { list-style-type: circle;  font-weight: bold; } 

/* TagCloud */
.tagcloud { line-height:1.75em; text-align: justify; overflow: hidden; width: auto; word-wrap: break-word;} 
.tagcloud ul { padding: 0; margin:0; }
.tagcloud li { display: inline; list-style-type:none; padding-right: 10px; }
.tagcloud_showall { margin: 10px 0 0 0; padding: 0; text-align: right }

/* SearchTheatres */
.searchtheatre { }
.searchtheatre h2, .searchtheatre h1 { color: #114111; margin: 0; padding: 0; font-size: x-large; }
.content_searchtheatre { padding:5px; }
.searchtheatre .field_table .lcol { width: 120px; }
.content_theatreform { padding: 10px 10px 5px 10px; }
.field_searchtheatre { width: 99%; }
.searchtheatre_submit { text-align: right; padding-right: 3px; }

/* TopShow */
.topshows { padding: 5px; }
.topshows h1 { padding: 0; }
.topshows td { padding: 10px 0 10px 0; vertical-align: top; border-bottom: solid 1px #C0C0C0; }
.topshows td p, .topshows td h2 { margin: 0; padding: 0; }
td.topshows_lcol { width: 100px; }
td.topshows_rcol { padding-left: 10px; }
.topshows_name { font-size: large;  font-weight:bolder; }
.topshows_tags { font-size: small; }
.topshows_name a { text-decoration: none; color: #A61633; }
.topshows_name a:hover { text-decoration: underline; }
.topshows_location { font-size: small; margin-top: 10px; } 
.topshows_location h3 { font-size: small; font-weight: normal;} 

/* Map */

/* Map InfoWindow */
.map_infowindow { padding: 5px; width: 250px; }
.map_infowindow * { margin: 0; padding: 0; } 
.map_infowindow h2 { font-size: 16px; font-weight: bold; }
.map_infowindow h3, .map_infowindow_details { font-size: 12px; line-height: 1.2em; }
.map_infowindow ul { list-style-type: none; margin-bottom: 10px; }
.map_infowindow li { }
.map_infowindow li a { color: #A61633; }
.map_infowindow a { text-decoration: none; }
.map_infowindow a:hover { text-decoration: underline; }

.map { margin-bottom: 15px; }
.mapLegend { font-size: small; font-weight: bold; float: right; }

.mapDirections { font-size: small; padding: 5px; }

/* SubscribeAlert */
.alertsubscribebox { margin: 0; padding: 5px;}
.alertsubscribebox p, 
.alertsubscribebox h2 { margin: 0; padding: 0;}
.alertsubscribebox { background: #FEF9B7 url("images/bg_alert_subscribe.gif") repeat-x; }
.alertsubscribebox_lcol { vertical-align: top; width: 29px; padding: 5px 15px 0 5px; }
.alertsubscribebox p { font-size: smaller; }
.alertsubscribebox .alert { margin: 0 0 0 5px; float: right;}

/* StarRating */

.starrating { vertical-align: middle;}
.starrating img { margin-right: 15px; }
.field_showrating { width: 98px;  margin-right: 15px; }

/* Tabs */

.tabs { border-bottom: 2px solid #005296; padding-left: 5px; margin-bottom: 5px; }    
.tabs ul { list-style-type: none; margin: 0; padding: 0; white-space: nowrap; }
.tabs li { display: inline; margin: 0; padding:0 0 0 5px;}
.tabs li a { background-color: #f0f0f0; text-decoration: none; border: 1px solid #005296; padding: 0px 15px; }
.tabs li a:hover { background-color: #005296; color: #ffffff; }
.tabs li.selectedTab a:hover { background-color: #ffffff; color: #005296; }
.tabs li.selectedTab a { background-color: #ffffff; color: #005296; font-weight: bolder; border: 2px solid #005296; border-bottom: 2px solid #ffffff; }


/* ChooseLocation */

.address_fields { float: left; width: 180px; margin-right: 10px;}
.address_fields a { font-weight: bold; }
.address_fields .field_edit { width: 100%; }
.address_map { margin-right: 10px; width: 198px; height: 198px; overflow: hidden; border: solid 1px #000000; float: left; }

#geocodingOutput { font-size: small; }
.address_ok, .address_error { font-weight: bold; }
.address_ok { color: Green; }
.address_error { color: red; }

.popup_location_l { font-size: small; }
.popup_location_l .error { font-weight: bold; font-size: small; color: #000000; }

.address_suggestions { padding: 5px; margin-top: 5px; background-color: #ffffff; }
.address_suggestions ol { margin: 0 0 0 1.5em; }
.address_suggestions li { margin: 5px 0 0 0; cursor: pointer; text-decoration: underline; }
.address { font-weight: normal; color: #000000; }
.address_on { font-weight: bold; color: #A61633; }

.bookmarklinks img { border: none; }

#page_schools_insert .label { display: block; }
#page_schools_insert .field input.text { width: 90%; font-size: 22px; }
#page_schools_insert h2 { margin-top: 15px; }
#page_schools_insert .buy { margin-bottom: 15px; }
#page_schools_insert .istr { font-size: 12px; }

#page_school .location_text img.small { width: 150px; }
#page_school .location_text img.medium { width: 250px; }
#page_school .location_text img.left { float: left; margin: 10px 10px 10px 0; }
#page_school .location_text img.right { float: right; margin: 10px 0px 10px 10px; }
#page_school .location_text img.top { margin-top: 0px !important; }

   /* div { border: 1px solid; }  */
