@charset "utf-8";
/* CSS Document */

#sidebar1 {
color: rgb(152,5,11);
font-family: "Comic Sans MS", "Comic Sans", cursive;
font-size: 1.5em; }

body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #f9f2e3;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
h1 {
	font:Arial, Helvetica, sans-serif;
	font-size:16px;
	font-weight:bold;
}
/* navigation  styles */

.navbar ul {
	list-style-type:none;
}
.navbar li {
	display:inline;
}
.navbar a {
	float:left;
	margin-right:30px;
	text-decoration:none;
	color: #000000;
	font-weight:bold;
	font-size:12px;
	padding:5px;
}
.navbar a:hover {
	color:#BC0A20;
}
/* styles for logo  */
#logo {
	position: absolute;
	left: 60px;
	z-index: 99;
}
/* styles for JrCadillac Gigs surrounding box  */
#gigbox {
	padding: 0;
	margin: 0;
	width: 308px;
/* for IE */
  filter:alpha(opacity=90);
  /* CSS3 standard */
  opacity:0.9;
}
#gigtop {
	background: url(images/gigbox_top.png) no-repeat;
	padding: 0;
	margin: 0;
	height: 48px;
}
#gigbottom {
	background: url(images/gigbox_bottom.png) no-repeat;
	padding: 0;
	margin: 0;
	height:25px;
}
/* styles content area where actual events go under JrCadillac Gigs  */
#gigs {
	background: url(images/gigbox_bg.png) repeat-y;
	padding: 2px 20px 2px 20px;
	width: 268px;
}
#gigs a  {
	color: #D6BA7E;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
}
#gigs a:hover {
	color: #000000;
	text-decoration: none;
}
/* styles for JrCadillac Featured surrounding box  */
#featurebox {
	padding: 0;
	margin: 0;
	width: 427px;

}
#featuretop {
	background: url(images/feature_top.gif) no-repeat;
	padding: 0;
	margin: 0;
	height:15px;
/* for IE */
  filter:alpha(opacity=70);
  /* CSS3 standard */
  opacity:0.7;
}
#featurebottom {
	background: url(images/feature_bottom.gif) no-repeat;
	padding: 0;
	margin: 0;
	height:15px;
/* for IE */
  filter:alpha(opacity=70);
  /* CSS3 standard */
  opacity:0.7;
}
/* styles content area for featured items thumbnails and text  */
#features {
	background: #CAA459;
	padding: 10px 20px 2px 10px;
	width: 397px;
	height: 156px;
/* for IE */
  filter:alpha(opacity=70);
  /* CSS3 standard */
  opacity:0.7;
}
/* grid styels for Features Box   */

#grid_item1, #grid_item2, #grid_item3, #grid_item4 {
	float: left;
	width: 193px;
	height: 70px;
	font: 10px Arial, Helvetica, sans-serif;
}
#grid_item3, #grid_item4 {
	margin-top: 8px;
}
#grid_item1 img, #grid_item2 img, #grid_item3 img, #grid_item4 img {
	float: left;
	border: 1px solid #330033;
	margin: 0px 10px 20px;
}
.grid_header {
	font-size:10px;
	margin-bottom: 4px;
}
#grid_item1 a:link, #grid_item2 a:link, #grid_item3 a:link, #grid_item4 a:link {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 10px;
	font-weight: bold;
	line-height: 120%;
}
#grid_item1 a:visited, #grid_item2 a:visited, #grid_item3 a:visited, #grid_item4 a:visited {
	color: #fff;
	text-decoration: none;
}
#grid_item1 a:hover, #grid_item2 a:hover, #grid_item3 a:hover, #grid_item4 a:hover {
	color: #BC0A20;
	text-decoration: underline;
}
#grid_item1 a:active, #grid_item2 a:active, #grid_item3 a:active, #grid_item4 a:active {
	color: #fff;
	text-decoration: none;
}
/* end of grid styles for Features Box */

.twoColFixRtHdr #container {
	width: 860px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #f9f2e3 url(images/bg.jpg) no-repeat 20px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixRtHdr #header {
	width: 860px;
	text-align: center;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0 10px 20px 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.twoColFixRtHdr #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 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 308px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 30px;
}
.twoColFixRtHdr #mainContent {
	position: relative;
	top:200px;
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color:#F2DFB7;
	border: 1px solid #d7b66e;
	width: 380px;
	margin-bottom: 220px;
/* for IE */
  filter:alpha(opacity=80);
  /* CSS3 standard */
  opacity:0.8;
}
.twoColFixRtHdr #mainContent img {
	border:none;
}
.twoColFixRtHdr #leftColumn {
	margin: 0 250px 20px 30px; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 420px;
}
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.twoColFixRtHdr #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 */
}
.copyright {
	margin-top: 30px;
	float:left;
	font-size: 9px;
	font-weight:bold;
	color: #CAA658;
}
.designby {
	margin-top: 30px;
	float:right;
	font-size: 9px;
	font-weight:bold;
	color: #CAA658;
}
.designby a {
	color: #D6BA7E;
	text-decoration: none;
	font-weight:bold;
}
.designby a:hover {
	color:#BC0A20;
}
.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;
}

.caldate {
color: #BC0A20;
font-family: "Arial Black", Gadget, sans-serif;
 }

.calvenue {
color: #000000;
font-family: "Arial Black", Gadget, sans-serif;
 }

.calcopy {color: #000000;
font-family: Helvetica, Arial, sans-serif;
}

.audioplayer_1 {
margin: auto;
background-color: rgb(152,5,11); }


h4 {
font-family: "Comic Sans MS", "Comic Sans", cursive;
font-size: 1.5em;
font-weight: bold;
text-align: center;
color: #ffffff; }

h5 {
font-family: "Comic Sans MS", "Comic Sans", cursive;
font-size: 1.25em;
font-weight: bold;
text-align: center;
color: #ffffff; }


