/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background-color: #101010;
	/*background-image: url("../images/body_bg.png"); if yes adjust headcap margin height */
	background-repeat: repeat-x;
	color: #E2E2E2;
	/* font-family: Arial, Helvetica, sans-serif; */
	font-family: 'Cherry Cream Soda', cursive;	
	font-size: 14px; /* was 11px */
	line-height: 16px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url("../../../images/rat-pack-show/ratpackstars.gif");
	background-repeat:repeat;
}
hr {
	color:  #F71753; /* #473647; */
	height: 1px;
	width: 85%; /* auto;  */
}
/* Commonly used to style page titles. */
h1 {
	color: #f6cb4e; /*f0d356; #F71753;  #D940DE; */
	/*font-family: "Times New Roman", Times, serif; */
		font-family: 'Luckiest Guy', cursive;
	font-size: 20px; /* 18 */
	/* font-style: italic;
	font-weight: bold;
	text-transform: uppercase; */
	line-height: 20px;
	text-align:center;
	padding: 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style section titles. */
h2 {
	color: #F71753; /* #C2BAC1;  #D940DE; */
	font-size: 15px;
	/*font-weight: bold;
	line-height: 14px;*/
}
h2 a:link {
	color: #F71753; /* #F71753; #D940DE; 
		font-family: 'Luckiest Guy', cursive;
		font-size:17px;*/
	/*font-weight:  normal; 
	text-decoration: underline;*/
}
h2 a:visited {
	color: #F71753; /* #F71753; #D940DE; 
		font-family: 'Luckiest Guy', cursive;
		font-size:17px;*/
	/*font-weight:  normal; 
	text-decoration: underline;*/
}
/* Sets the style for links on mouseover. */
h2 a:hover {
	text-decoration: underline;
	color: #ffffff; /*#ffffff;  #D940DE; 
		font-family: 'Luckiest Guy', cursive;
		font-size:17px;	*/
}
/* Sets the style for a link that has focus. */
h2 a:focus {
	color: #F71753; /* #F71753; #D940DE; 
		font-family: 'Luckiest Guy', cursive;
		font-size:17px;*/
}
/* Sets the style for a link that is being activated/clicked. */
h2 a:active {
	color: #F71753; /*#ffffff; #D940DE; */
	/* font-weight: bold;
		font-family: 'Luckiest Guy', cursive;
		font-size:17px; */
}


/* Sets the style for the h3 header. */
h3 {
	color: #C2BAC1;
	font-size: 14px;
	line-height: 15px;
}
/* Sets the style for the h4 header. */
h4 {
	color: #C2BAC1;
}
/* Sets the style for the h5 header. */
h5 {
	color: #ffffff; /* #C2BAC1;   */
	font-family: 'Fontdiner Swanky', cursive;
	font-size: 25px;
}
/* Sets the style for the h6 header. */
h6 {
	color: #ffffff;
	font-size: 13px;
	line-height: 20px;	
}
/* Sets the style for unvisited links. */
a,	a:link {
	color: #C2BAC1; /* #F71753; #D940DE; */
	/*font-weight:  normal; */
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
	color: #C2BAC1; /* #F71753; #D940DE; */
	/*font-weight:  normal; */
	text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #F71753; /*#ffffff;  #D940DE; */
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #C2BAC1; /* #F71753; #D940DE; */
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #F71753; /*#ffffff; #D940DE; */
	/* font-weight: bold; */
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto;
	text-align: left;
	width: 963px; /* was 963px */
	background-color: #101010; /* 000000 */
	background-image: url("../images/outerWrapper_bg.png");
	background-repeat: repeat-y;
	padding: 0px 13px;
}
#headerCap {
	background-image: url("../images/headerCap_bg.png");
	background-repeat: no-repeat;
	background-position: bottom;
	height: 20px;
	width: 990px;
	margin: 0px auto 0 auto;
/*	margin: 50px auto 0 auto; use with background */
}
#outerWrapper #header {
	color: #F71753; /* #B076AB; */
	font-size: 11px;
	font-weight: normal;
	padding: 0px;
	text-align: left;
	/*text-transform: uppercase;*/
}
#outerWrapper #header a, #outerWrapper #header a:link {
	color: #B076AB;
	font-weight: normal;
	text-decoration: none;
}
#outerWrapper #header a:visited {
	color: #B076AB;
	font-weight: normal;
	text-decoration: none;
}
#outerWrapper #header a:hover {
	color: #B076AB;
	font-weight: normal;
	text-decoration: none;
}
#outerWrapper #header a:focus {
	color: #B076AB;
	font-weight: normal;
	text-decoration: none;
}
#outerWrapper #header a:active {
	color: #B076AB;
	font-weight: normal;
	text-decoration: none;
}
#outerWrapper #topNavigation {
	height: 40px;
	text-align: right;
	border-bottom: solid 1px #332E33;
	border-top: solid 1px #332E33;
	/*width: 960px;
	margin-right: auto;
	margin-left: auto;*/
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	/*background-image: url("../images/contentWrapper_bg.png");
	background-repeat: repeat-y;*/
	background-image: url("../../../images/rat-pack-show/ratpackshootingstars.gif");
	background-repeat:repeat;
	
}
#outerWrapper #contentWrapper ul {
 	list-style-type:square; /*changed from list-style: circle;*/
	margin: 0 0 0 20px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 {
	color: #F71753; /* #B076AB; */
	float: left;
	padding: 15px 0px 15px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 185px; /* 190 */
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	color: #F71753; 
}
#outerWrapper #contentWrapper #content {
	padding: 15px 10px 15px 10px;
	margin-left: 200px;
}
#footer {
	background-image: url("../images/footer_bg.png");
	background-repeat: no-repeat;
	padding: 20px 13px 10px 28px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin: 0 auto;
	text-align: left;
	width: 949px;
}
#footer a {
	font-weight: normal;
}

.calendarsDayPlanner_outer {
	border: 1px solid #101010; /* f0f0f0 */
	background-color: #101010; /* fcfcfc */
	height: 52px;
	font-weight: bold;
	color: #C2BAC1; /* 222847 */
	padding: 6px;
}
.calendarsDayPlanner_outer_small {
	/* border: 1px solid #101010; f0f0f0 */
	/* background-color: #101010; fcfcfc */
	  font-family: 'Luckiest Guy', cursive;
	  font-size:16px;
	height: 12px; /* 14 */
		text-transform: uppercase;
	font-weight: bold;
	color: #f0d356;/*F71753 #C2BAC1;#fcfcfc; 222847 */
	padding: 6px 0px 6px 0px; /* 6 */
}
.calendarsDayPlanner_inner {
	margin-top: 10px;
	margin-left: 5px; /* 5 */
	margin-right: 0px; /* 5 */
}
.calendarsDayPlanner_inner h3 {
	font-weight: bold;
	font-size: 14px;
}
.calendarsDayPlanner_inner p {
	margin-top: 0px;
	font-size: 15px;
}
.page_img_left {
	float: left; 
	margin-right: 10px;
}
.page_img_right {
	float: right; 
	margin-left: 10px;
}
.page_img_right2 {
	float: right; 
	margin-left: 10px;
	margin-right: 30px;
}
.page_img_main {
	margin-top: 2px;
	margin-bottom: 2px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align:center;
}
.page_text {
	padding-bottom: 0px;
	padding-left: 5px;
	padding-right: 5px;
}
.page_text_cent{
	padding-bottom: 0px;
	padding-left: 5px;
	padding-right: 5px;
	text-align:center;
}
.page_text_right {
	float: right; 
	margin-left: 10px;
	margin-bottom: 2px;
}
.sidenav1_outer {
	border: 1px solid #101010; /* f0f0f0 */
	background-color: #101010; /* fcfcfc */
	height: 52px;
	font-weight: bold;
	color: #C2BAC1; /* #fcfcfc; 222847 */
	padding: 6px;
}
.sidenav1_outer_small {
	/* border: 1px solid #101010; f0f0f0 */
	/* background-color: #101010; fcfcfc */
	  font-family: 'Luckiest Guy', cursive;
	  font-size:16px;
	height: 12px; /* 14 */
	text-transform: uppercase;
	font-weight: bold;
	color: #F71753;/* #C2BAC1;#fcfcfc; 222847 */
	padding: 6px 0px 6px 0px; /* 6 */
}
.sidenav1_inner {
	margin-top: 10px;
	margin-left: 0px; /* 5 */
	margin-right: 0px; /* 5 */
}
.sidenav1_inner h3 {
	font-weight: bold;
	font-size: 14px;
}
.sidenav1_inner p {
	margin-top: 0px;
	font-size: 15px;
}
.sidenav1_inner a:link {
	color: #C2BAC1; /* #fcfcfc; 222847 #F71753; #D940DE; */
	text-decoration: none; /* underline; */ 
	font-weight: bold;
}
.sidenav1_inner a:visited {
	color: #C2BAC1; /* #fcfcfc; 222847 #F71753; #D940DE; */
}
.sidenav1_inner a:hover {
	color: #F71753; /*#ffffff; #D940DE; */ 	
}
.sidenav1_inner a:focus {
	color: #F71753; /* #222847; #D940DE; */
}
.sidenav1_inner a:active {
	color: #C2BAC1; /* #fcfcfc; 222847 #F71753; #ffffff; #D940DE; */
}
.bg01 {
	background-image: url("../../../images/rat-pack-show/rat-pack-live-shows.jpg"); 
		font-size: 13px;  /*18 */

}
.bg02 {
	background-image: url("../../../images/rat-pack-show/rat-pack-live-shows02.jpg"); 
}
.bg03 {
	background-image: url("../../../images/rat-pack-show/rat-pack-live-shows03.jpg"); /* 101_RatPackShow_25.jpg*/
}