﻿@charset "UTF-8";
@font-face {
  font-family: noto-serif;
  src: url(fonts/NotoSerif-Regular.ttf);
}
/* 
==========
!DEFAULTS
==========
*/
* { margin: 0; }
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body {
	
    font-weight: 300;
	color: #333;
    font-size: 14px;
    line-height: 20px;
	
	
}
a { color: #a6093d; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; border: 0; }
time { white-space: nowrap; }

#iUserWelcome {vertical-align: middle;margin-top:10px;text-align:right; margin-bottom: 10px;}



/* 
==========
!LAYOUT
==========
*/
/*body { background: url(../images/bg-image.jpg) #D2C3B5; }*/
.bg-image {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	background-color:#13415D;
	/*background: url(../images/bg-image.jpg) no-repeat center center;*/
	-webkit-background-size: cover;
	-moz-background-size:    cover;
	-o-background-size:      cover;
	background-size:         cover;
	-webkit-box-shadow: 0px 0px 15px 0px #333;
	box-shadow:         0px 0px 15px 0px #333;
	z-index: -5000;
}
.wrap { width: 90%; margin: 0 auto; max-width:1800px; }
/* !GRID DEFAULTS */
[class^='col-'] {
	float: left;
	-webkit-transition: width 0.5s ease-out, height 0.5s ease-out; 
	-moz-transition:    width 0.5s ease-out, height 0.5s ease-out; 
	-o-transition:      width 0.5s ease-out, height 0.5s ease-out; 
	transition:         width 0.5s ease-out, height 0.5s ease-out; 
}
.col-nav { width: 22.22222222%;background-color: #EEE9E7; }
.col-aside { width: 22.22222222%; }
.col-body { width: 77.77777778%; }
.col-nav-body { width: 77.77777778%; }
.col-footer { width: 50.00000000%; }
.grid:after {
	content: "";
	display: table;
	clear: both;
}
[class^='col-'] { padding-right: 50px; }
[class^='col-']:last-of-type { padding-right: 0; }
.grid-pad { padding: 50px 0 50px 50px; }
.grid-pad > [class^='col-']:last-of-type { padding-right: 50px; }
/* !GRID LAYOUT FOR LARGE SCREENS */
[class^='col-nav-body grid grid-pad'] { padding: 0; }
.col-nav { padding: 0; }
.grid-pad > .col-body:last-of-type { padding: 0; }
.col-footer, .grid-pad > .col-footer:last-of-type { padding: 20px; }
aside.grid-pad { padding: 0; }
.col-aside [class^='col-'] {
	float: none;
	width: 100%;
}
footer { padding: 20px; }
.content { padding: 10px 50px 50px 50px; }

/*
==========
!DESIGN
==========
*/
.logo-wrap {
	/*background-color: #ffffff;*/
    background-color: #EEE9E7;
	/*padding: 15px;*/
	padding: 30px 50px 40px 20px;
        display: ''
}
/*.col-nav-body {
	background: #eee9e7;
}*/
.col-nav-body {
    background-color: #dfdad7;
}

.col-body { background-color: #fff; }
.aside-bg { background-color: #554943; }
footer {
	background-color: #DDD4CF;
	color:#6C4E35;    
	/*background-image: url(../images/bg-footer-gradient);
	background-repeat: repeat-x;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(0.07, #2A2522), to(#2A2522));
	background-image: -webkit-linear-gradient(top, #000000, #2A2522 7%, #2A2522);
	background-image:    -moz-linear-gradient(top, #000000, #2A2522 7%, #2A2522);
	background-image:      -o-linear-gradient(top, #000000, #2A2522 7%, #2A2522);
	background-image:         linear-gradient(to bottom, #000000, #2A2522 7%, #2A2522);*/

}
.col-aside {
	background-color: #554943;
	background-image: url(../images/bg-aside-gradient);
	background-repeat: repeat-x;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2A2522), color-stop(0.05, #554943), to(#554943));
	background-image: -webkit-linear-gradient(top, #2A2522, #554943 5%, #554943);
	background-image:    -moz-linear-gradient(top, #2A2522, #554943 5%, #554943);
	background-image:      -o-linear-gradient(top, #2A2522, #554943 5%, #554943);
	background-image:         linear-gradient(to bottom, #2A2522, #554943 5%, #554943);
}
@media all and (min-width : 1224px) {
	.col-aside {
		/* no gradient on large screens */
		background-color: #554943;
		background-image: none;
	}
}
/* !BUTTONS */
a[class^='btn-'],
button[class^='btn-'] {
	display: inline-block;
	margin: 5px 5px 0 0;
	padding: 6px 10px;
	/*color: #333;*/
    color:white;
	font-size: 1.0em;
	/*text-shadow: 0 1px 0 #fff;*/
	/*background-color: #e6e6e6;*/
	background-color:#8d211f;
    border: none;
	-webkit-transition: all 0.2s ease-out; 
	-moz-transition:    all 0.2s ease-out; 
	-o-transition:      all 0.2s ease-out; 
	transition:         all 0.2s ease-out; 
}
a[class^='btn-light'],
button[class^='btn-light'] {
	background-color: #14415D;
}
a[class^='btn-dark'],
button[class^='btn-dark'] {
	background-color: #D2C3B5;
}
a[class^='btn-']:hover,
button[class^='btn-']:hover {
	text-decoration: none;
	text-shadow: none;
	-webkit-box-shadow: 0px 2px 5px 0px #333;
	box-shadow:         0px 2px 5px 0px #333;
}
/* !Navigation */


a.nav-button {
        
	display: none;
	width: 100%;
	padding: 20px;
	margin: 10px 0;
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	-webkit-transition: all 0.2s ease-out; 
	-moz-transition:    all 0.2s ease-out; 
	-o-transition:      all 0.2s ease-out; 
	transition:         all 0.2s ease-out;
}
.nav-buttonBG {
    padding-left:5px;
    padding-top:2px;
    
    background-image: url(../images/logosmallN.png);
    background-size: 112px 58px;
    background-repeat: no-repeat;
    
}
ul.menu { margin: 0; padding: 0; list-style: none; }
ul.menu li {
	font-size: 0.875em;
	border-bottom: #DDD4CF 1px solid;
}
ul.menu li a {
	display: block;
	color: #6C4E35;
	padding: 5% 10%;
	text-shadow: 0 1px 0 #fff;
	-webkit-transition: background-color 0.2s ease-out; 
	-moz-transition:    background-color 0.2s ease-out; 
	-o-transition:      background-color 0.2s ease-out; 
	transition:         background-color 0.2s ease-out; 
}
ul.menu li a:hover {
	text-decoration: none;
	background-color: #DDD4CF;
	text-shadow: none;
}
/* !ASIDE */
aside { color: #F1DECD; font-size: 0.875em; }
aside [class^='col-'] { padding-bottom: 0; }

aside [class^='col-'] article,
aside [class^='col-'] .special-wrap {
	line-height: 1.6em;
	margin-bottom: 1.4em;
}
aside [class^='col-'] article {
	background: url(../images/bullet-news.png) no-repeat left top;
	padding-left: 31px;
}
aside [class^='col-'] .special-wrap {
	background: url(../images/bullet-special.png) no-repeat left top;
	padding-left: 31px;
}

#iNewsandSpecialFooter{display:none}

@media all and (min-width : 1800px) {
	/* no bullets on large screens */
	aside [class^='col-'] article,
	aside [class^='col-'] .special-wrap {
		background: none;
		padding-left: 0;
	}
}
aside [class^='col-'] article time.pubdate {
	color: #A99386;
	font-style: italic;
}
aside [class^='col-'] .special-wrap .special {
	padding: 10px;
	background-color: #5F534C;
	-webkit-border-radius: 6px;
	border-radius:         6px;
	background-clip: padding-box;
	-webkit-transition: all 0.3s ease-out; 
	-moz-transition:    all 0.3s ease-out; 
	-o-transition:      all 0.3s ease-out; 
	transition:         all 0.3s ease-out; 
}
aside [class^='col-'] .special-wrap .special:hover { background-color: #8d211f; }
/* !FOOTER */
footer { font-size: 0.75em; color: #8d211f; }
footer a {
	color: #8d211f;
	-webkit-transition: color 0.3s ease-out; 
	-moz-transition:    color 0.3s ease-out; 
	-o-transition:      color 0.3s ease-out; 
	transition:         color 0.3s ease-out; 
}
footer a:hover { color: #DDD4CF; text-decoration: none; }
footer nav { float: right; margin-top: -3px; }
footer a[class^='social-'] {
	display: inline-block;
	height: 24px;
	width: 24px;
	margin-left: 10px;
	vertical-align: middle;
}
footer a.social-li { background: url(../images/social-li.png) no-repeat 0 0; }
footer a.social-fb { background: url(../images/social-fb.png) no-repeat 0 0; }
footer a.social-tw { background: url(../images/social-tw.png) no-repeat 0 0; width: 30px; }
footer a[class^='social-']:hover { background-position-y: -24px; }
/* !TABLE STYLES */
.basic-tbl {
	background-color: #fff;
	/*font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;*/
	
	border-collapse: collapse;
	font-size: 0.875em;
	width: 100%;
}
.basic-tbl tbody tr:nth-child(odd) { background-color: #f7f7f7; }
.basic-tbl tbody td { padding: 1%; font-size: 90%;border-top: 2px solid #EEE9E7;}
.basic-tbl thead {/*background-color: #CBBEB7;*/background-color:#970b2f; }
.basic-tbl thead th {
	padding: 1.3%;
	font-weight: normal;
	/*text-shadow: 0 1px 0 #fff;*/
	white-space: nowrap;
    color:white;
}

.RowBgColor {
    background-color: #f7f7f7;
}


.basic-tbl-no-top-border {
	background-color: #fff;
	/*font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;*/
	
	border-collapse: collapse;
	font-size: 0.875em;
	width: 100%;
}
.basic-tbl-no-top-border tbody tr:nth-child(odd) { background-color: #f7f7f7; }
.basic-tbl-no-top-border tbody td { padding: 1%; font-size: 90%;}
.basic-tbl-no-top-border thead { background-color: #CBBEB7; }
.basic-tbl-no-top-border thead th {
	padding: 1.3%;
	font-weight: normal;
	/*text-shadow: 0 1px 0 #fff;*/
	white-space: nowrap;
    color:white;
}



/* !FOOTABLE */
.footable-toggle {
	font-size: 16px;
	display: inline-block;
	vertical-align: middle;
}
td.footable-first-column { text-align: left; }
/* ensure that the detail-name and detail-value divs are left aligned */
.footable-row-detail-name, .footable-row-detail-value { text-align: left; }
/* ensure input and select are "regular" size when revealed */
.footable-row-detail-value input[type='text'],
.footable-row-detail-value select {
	font-size: 100%;
	height: 20px;
	padding: 1px;
	margin: 2px;
}


/*
==========
!TYPOGRAPHY
==========
*/
/* !Typography */

.typography ul, .typography ol {
	margin: 0 0 1.4em 0;
	padding: 0;
	font-size: 0.875em;
}
.typography ol li {
	padding: 0 0 0 0.5em;
	margin: 0 0 0 1.6em;
	line-height: 1.6em;
	list-style: decimal;
}
.typography ul li {
	padding: 0 0 0 0.5em;
	margin: 0 0 0 1.6em;
	line-height: 1.6em;
	list-style: disc;
}
.typography ul ul,
.typography ol ol {
	margin: 0 0 1% 0;

}
.typography li li {
	font-size: 99%;
}
.typography .small-print {
	font-size: 10px;
}
.typography hr {
	border: 0;
	height: 0;
	border-top: 1px solid #333;
	border-top: 1px solid rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid #999;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin: 1.5em 0;
}
.typography .justifyleft { /* class name determined by Tiny editor */
	text-align: left;
}
.typography .justifyright { /* class name determined by Tiny editor */
	text-align: right;
}
.typography .justifyfull { /* class name determined by Tiny editor */
	text-align: justify;
	text-justify: inter-word;
}
.typography [class^='image-'] { border: 8px solid #EEE9E7; }
.typography .image-left {
	float: left;
	margin: 0 0.9em 0.9em 0;
}
.typography .image-right {
	float: right;
	margin: 0 0 0.9em 0.9em;
}
.typography .two-col {
	-webkit-column-count: 2;
	-moz-column-count:    2;
	column-count:         2;
	-webkit-column-gap: 20px;
	-moz-column-gap:    20px;
	column-gap:         20px;
}
.typography .three-col {
	-webkit-column-count: 3;
	-moz-column-count:    3;
	column-count:         3;
	-webkit-column-gap: 20px;
	-moz-column-gap:    20px;
	column-gap:         20px;
}

/*
==========
!FORMS
==========
*/
input[type='text'],
input[type='password'] {
	height: 34px;
	border: solid 1px #b3b3b3;
	font-size: 1.3125em;
	color: #333333;
	padding: 5px 5px;
}

.inputPromotion{
	height: 34px;
	border: solid 1px #b3b3b3;
	font-size: 1.3125em;
	color: #333333;
	padding: 5px 8px;
}

input[type='checkbox'] { vertical-align: middle; }
label { font-size: 1.3125em; }

select {
	font-size: 16px;
	padding: 3px;
    border: 1px solid #AAA;
	border-bottom-color: #CCC;
	border-top-color: #999;
    color: #8d211f;
}

/*select {
	font-size: 18px;
	padding: 5px;
	border: 1px solid #AAA;
	border-bottom-color: #CCC;
	border-top-color: #999;
}*/

/*
==========
!CALENDAR
==========
*/
#tblCalendar { text-align: center; }

/*
==========
!SHOPPING CART
==========
*/
/* DEFAULT STYLES FOR ALL TABLES IN CART FORM */
#frmShoppingCart [id^='txtQty'] { width: 36px; text-align: center; }
#frmShoppingCart [id^='txtPromo'] { width: 52px; text-align: center; }
#frmShoppingCart [id^='selTicketType'] { width: 70%; }
#frmShoppingCart table { text-align: center; }
#frmShoppingCart h2 { display: inline-block; }
#frmShoppingCart #btnUpdateGeneralItems,
#frmShoppingCart #btnUpdateTickets,
#frmShoppingCart #btnRemoveGC,
#frmShoppingCart #btnUpdateGC,
#frmShoppingCart #btnRemoveTickets { float: right; }
/* fix to prevent sub-total from collapsing in on itself. Mostly for IE */
#frmShoppingCart #tblGeneralItems thead tr th:last-of-type,
#frmShoppingCart #tblTickets thead tr th:last-of-type { min-width: 60px; }
/* align Subtotal column to the right for all tables */
#frmShoppingCart table tbody tr td:last-of-type { text-align: right; }
#frmShoppingCart tr.subtotal { background-color: #f2f2f2; }
#frmShoppingCart tr.subtotal td {
	border-top: 2px solid #CBBEB7;
	text-align: right;
	font-size: 1.125em;
	padding: 10px;
}



/* STYLES FOR TICKETS TABLE */
/* target checkbox column */
#frmShoppingCart #tblTickets tbody tr td:first-of-type { white-space: nowrap; }
/* target Seat column of tickets table */
#frmShoppingCart #tblTickets tbody tr td:nth-of-type(4) { white-space: nowrap; }
/* fix to prevent sub-total from collapsing in on itself. Mostly for IE */
#frmShoppingCart #tblTickets select[id^='selTicketType'] { max-width: 160px; }
/* STYLES FOR TOTAL TABLE */
#frmShoppingCart #tblTotal {
	text-align: left;
	font-size: 1.125em;
}
#frmShoppingCart #tblTotal td { padding: 8px 10px; }

#frmShoppingCart #tblTotal2 {
	text-align: left;
	font-size: 1.125em;
}
#frmShoppingCart #tblTotal2 td { padding: 8px 10px; }


/*
==========
!LOGIN HEADER FORM
==========
*/
.col-body {
	position: relative;
	overflow: hidden;
}
.login-wrap {
	/*background-color: #F8EEE6;*/
    background-color:#EEE9E7;
	position: relative;
	top: 0;
	left: 100%;
	margin-left: -90px;
}
.login-wrap * { vertical-align: middle; margin-right: 5px; }
.login-wrap .login-form { width: 100%; }
.login-button, .login-label {
	display: inline-block;
	height: 50px;
	width: 90px;
	padding-top: 10px;
	/*background-color: #EACDB4;*/
    background-color:#8d211f;
	text-align: center;
	font-size: 1.5em;
	/*color: #6C4E35;*/
    color:white;
	/*text-shadow: 0 1px 0 #fff;*/
}
.login-label { display: none; }
.login-button:hover {
	text-decoration: none;
	text-shadow: none;
}
.login-wrap input { width: 150px; }
.login-wrap [class^='btn-'] { margin: 0; }
.login-form {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.leftDivNowrap{float:left;padding: 0px;margin: 2px;display: inline-block;white-space: nowrap;font-size: 20px;vertical-align: middle;}
.rightDiv{font-size: 16px;float:right;vertical-align: middle;}

.leftDivNowrapForTix{float:left;padding: 5px;margin: 2px;display: inline-block;white-space: nowrap;font-size: 20px;vertical-align: middle;}
.rightDivForTix{float:right;vertical-align: middle;padding:5px}
.cmboboxSelection{font-size: 18px;padding: 5px;border: 1px solid #AAA;border-bottom-color: #CCC;border-top-color: #999;}
/*
==========
!STYLES FOR DESKTOPS & LAPTOPS 
==========
*/

@media all
and (max-width : 4000px)
{
	.rightDivGView {
	width: 234px; min-height: 226px; float:left;padding:5px 5px 5px 5px;text-align:center; margin: 3px; border:1px solid #565246; border-radius:7px;
	
	

	}
	.rightDivGViewNew {float:right;  padding-right: 5px; margin-top: 25px;}
        .rightDivGV {float:right; padding: 0px;margin-top:-25px;display:inline-block;clear:both;} 
        
        .logo-wrap { display : '' }
        #iGridImage { height: 137px}
        #iLogout {display:none}
        #iNewsandSpecialFooter{display:none}
        #iNewsandSpecial{width:100%;}
}



@media all
and (max-width : 2000px)
{
	.rightDivGView {width: 234px;min-height: 226px; float:left;padding:5px 5px 5px 5px;text-align:center; margin: 3px; border:1px solid #9c8464; background-color:#eee9e7;border-radius:7px;}
	.rightDivGViewNew {float:right;  padding-right: 5px; margin-top: 25px;}
        .rightDivGV {float:right; padding: 0px;margin-top:-25px;display:inline-block;clear:both;} 
        
        .logo-wrap { display : '' }
        #iGridImage { height: 137px}
        #iLogout {display:none}
        #btnInvoicePage {display:block}
        #iNewsandSpecialFooter{display:none}
        #iNewsandSpecial{width:100%;}
}



@media all 
and (min-width : 690px)
and (max-width : 1523px) { /* 1223px */
	.col-nav-body { width: 100%; }
	.col-aside { width: 100%; }
	.col-footer { padding: 0 50px 0 0; }
	aside.grid-pad {/* padding: 50px 0 50px 50px;*/ background: #EEE9E7;color: #13415D; }
	.col-aside [class^='col-'] { float: left; }
	.col-aside .col-footer { width: 50%; }
	.grid-pad > .col-footer:last-of-type { /*padding: 0 50px 0 0;*/ }
	#tblEventInfo {display: ''; }
	#iUserWelcome {vertical-align: middle;margin-top:10px;text-align:right; margin-bottom: 10px;}
	.cmboboxSelection{max-width: 350px;}
	.rightDivGView {width:260px; min-height: 244px; float:left;padding:5px 5px 5px 5px;text-align:center; margin: 3px; border:1px solid #9c8464; background-color:#eee9e7;border-radius:7px;}
  	.rightDivGViewNew {float:right;  padding-right: 5px; margin-top: 25px;}
        .rightDivGV {float:right; padding: 0px; margin-top: -25px; display:inline-block;clear:both;}
        
        .logo-wrap { display : '' }
#iLogout {display:none}
#iGridImage { height: 155px}

   	    #btnInvoicePage {display:block}
   	    #iNewsandSpecialFooter{display:none}
}

/*
==========
!LAYOUT FOR SMALLER SCREENS LIKE TABLETS
========== 
*/
@media all 
and (max-width : 689px) {

	.dropdown-m {display: block !important}
	[class^='col-'] { float: none; }
	.col-nav-body { width: 100%; }
	.col-nav {
		width: 100%;
		padding: 0px;
	}
	.grid-pad > .col-body:last-of-type {
		width: 100%;
		padding: 0;
	}
	.col-aside { width: 100%; }
	.grid-pad > .col-footer:last-of-type { padding: 20px; }
	.content { padding: 20px; }
	.logo-wrap { text-align: center; padding: 10px;  display : '' }
	.logo-wrap img { max-width: 33.3333%;  }
	tr.cell-one-item-row td { display: inline-block; }
	a.nav-button { display: inline-block; margin-top:0px;margin-bottom:0px; }
	ul.menu { display: none; }
	ul.menu li { text-align: center; }
	ul.menu li a { padding: 2%; }
	/* The !IMPORTANT declarations below are to correct any conflicts
	   if the user expands login-wrap and then resizes the browser */
	.login-wrap { left: 0 !important; margin-left: 0 !important; text-align: center; }
	.login-wrap input, .login-wrap button { margin: 5px 0; }
	.login-button { display: none}
	.login-label {
		display: inline-block;
		width: 100%;
		font-size: 0.875em;
		text-transform: uppercase;
		padding: 5px;
		height: auto;
	}
	footer { text-align: center; }
	footer nav { float: none; margin-top: 10px; }

	.cmb8pt{width:200px;}
	#tblEventInfo {display: none; }
	#iUserWelcome {vertical-align: middle;margin-top:10px;text-align:center; margin-bottom: 10px;}

	.leftDivNowrapForTix{float:left;padding: 0px;margin: 2px;display: inline-block;white-space: nowrap;font-size: 15px;vertical-align: middle;background-color: #f7f7f7;width:100%}
	.rightDivForTix{float:left;vertical-align: middle;padding: 0px;display:inline-block;clear:both;width:100%;background-color: #ffffff;}
	.cmboboxSelection{max-width: 300px; font-size: 12px;padding: 5px;border: 1px solid #AAA;border-bottom-color: #CCC;border-top-color: #999;}
	.ChangeWidth{width:100%}
	.loginWidth{width:10px;height:10px}

    .leftDivNowrap{float:left;padding: 0px;margin: 2px;display: inline-block;white-space: nowrap;font-size: 16px;vertical-align: middle;width:100%}
    .rightDiv{font-size:16px; float:left;vertical-align: middle;padding: 0px;display:inline-block;clear:both;width:100%;}


    .rightDivGView {width:260px; min-height: 242px; float:left;padding:5px 5px 5px 5px;text-align:center; margin: 3px; border:1px solid #9c8464; background-color:#eee9e7;border-radius:7px;}
   	.rightDivGViewNew { float:right; padding-right: 5px; margin-top: 25px;}   	
   	.rightDivGV {float:right; padding: 0px;display:inline-block;clear:both;}
        
        .logo-wrap { display : none }
     	#iLogout {display:block}
     	#iGridImage { height: 155px}
   	    #btnInvoicePage {display:block}
   	    #iNewsandSpecialFooter{display:block}
   	    #iNewsandSpecial{display:none}
     	
}

/*
==========
!LAYOUT FOR MOBILE
==========
*/
@media all 
and (max-width : 480px) {
		.dropdown-m {display: block !important}
	.bg-image { display: none; }
	.wrap { width: 100%; }
	.grid-pad > .col-body:last-of-type { padding: 0; } 
	.col-footer { padding: 20px; }
	footer { padding: 10px; }
	tr.cell-stack-row td { display: inline-block; }
	tr.cell-one-item-row td { display: inline-block; }
	.cmb8pt{width:200px;}
	#tblEventInfo {display: ''; }
	#txtDatePicker { width: 150px; }
	#frmShoppingCart h2 { display: block; }
	#frmShoppingCart #btnUpdateGeneralItems,
	#frmShoppingCart #btnUpdateTickets,
	#frmShoppingCart #btnRemoveTickets { float: none; margin-bottom: 5px; }


	.leftDivNowrapForTix{float:left;padding: 0px;margin: 2px;display: inline-block;font-size: 15px;font-weight:normal;vertical-align: middle;background-color: #f7f7f7;width:100%}
	.rightDivForTix{float:left;vertical-align: middle;padding: 0px;display:inline-block;clear:both;width:100%;background-color: #ffffff;}
	.cmboboxSelection{max-width: 300px; font-size: 14px;padding: 0px;border: 1px solid #AAA;border-bottom-color: #CCC;border-top-color: #999;}

    .leftDivNowrap{float:left;padding: 0px;margin: 2px;display: inline-block;font-size: 16px;font-weight:normal;vertical-align: middle;width:100%}
    .rightDiv{font-size:16px;float:left;vertical-align: middle;padding: 0px;display:inline-block;clear:both;width:100%;}
    
    .rightDivGView {width:260px; min-height: 242px; margin-top: 5px !important; float:left;padding:5px 5px 5px 5px;text-align:center; margin: 3px; border:1px solid #9c8464; background-color:#eee9e7;border-radius:7px;}
	.rightDivGViewNew { padding-right: 5px; margin-top: -25px;}

	.rightDivGV {float:right; width:80px; margin-bottom:-25px;}


	#iUserWelcome {vertical-align: middle;margin-top:5px;text-align:center; margin-bottom: 10px;}
	#iTixhubLogo {display:none}
	#iGeoTrust {display:none}	
	#iUserGuide {display:none}
	#iLogout {display:block}
	
    #iPFReceipt {display:none}
    #btnInvoicePage {display:none}
    .logo-wrap { display : none }
    
    #iGridImage { height: 155px}
    
    #iNewsandSpecial{display:none}
 	#iNewsandSpecialFooter{display:block}

}