@charset "UTF-8";
body  {
	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;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: 100%;
	background-color: #FFF;
}
a {
	color: #FD4614;
	text-decoration: none;
}
a:hover {
	color: #B0300D;
	text-decoration: underline;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebarL is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
#container {
	width: 850px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
#header_slice {
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	display: block;
	position: relative;
	height: 120px;
	width: 850px;
}
#header_slice h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 80px;
	height: 135px;
	color: #FD6B3C;
	font-size: 2em;
	font-weight: normal;
	position: relative;
}
#header_slice .phone{
	color: #FD6B3C;
	font-size: 2em;
	font-weight: normal;
	display: block;
	top: -100px;
	overflow: hidden;
	padding: 0px;
	float: right;
	position: relative;
	text-align: right;
	width: 300px;
	margin: 0px;
	clear: right;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
}
#header_slice .phone span {
	font-size: 0.4em;
	color: #333;
	float: right;
	padding-left: 12px;
	padding-top: 6px;
	padding-right: 8px;
}
#mmenu  {
	padding: 0px;
	height: 47px;
	width: 844px;
	text-align: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	clear: both;
}
#mmenu ul  {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	text-align: center;
	width: 100%;
	height: 47px;
}
#mmenu ul li  {
	height: 32px;
	width: 168px;
	display: block;
	float: left;
	text-align: center;
	background-image: url(i/menu_buttons.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	vertical-align: middle;
	list-style-type: none;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#mmenu ul li.active {
	height: 32px;
	width: 168px;
	display: block;
	float: left;
	text-align: center;
	background-image: url(i/menu_buttons.jpg);
	background-repeat: no-repeat;
	margin: 0px;
	background-position: -170px;
	color: #000;
	padding-top: 14px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#mmenu ul li a  {
	text-decoration: none;
	color: #666;
	margin: 0px;
	padding: 0px;
}
#mmenu ul li a.active {
	text-decoration: none;
	color: #000;
	margin: 0px;
	padding: 0px;
}
#mmenu ul li a:hover {
	text-decoration: underline;
	color: #666;
	margin: 0px;
	padding: 0px;
}
#mmenu ul li a.active:hover {
	text-decoration: none;
	color: #FFF;
	margin: 0px;
	padding: 0px;
}
#tag_photo  {
	width: 844px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0px;
	height: 348px;
	background-color: transparent;
}
#ad {
	text-align: center;
}
#adtop {
	text-align: center;
}
#ads {
	text-align: center;
	background-color: #FFF;
}

/* Tips for sidebarL:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebarL p" rule.
*/
#sidebarL {
	float: left;
	width: 330px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebarL h3   {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
}
#sidebarL p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 12px;
	font-size: .9em;
}
#sidebarL ul {
	margin: 0px;
	padding-top: 24px;
	padding-right: 0px;
	padding-bottom: 32px;
	padding-left: 0px;
}
#sidebarL li {
	background-image: url(i/bullet.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 0.85em;
	list-style-type: none;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 36px;
}

.fans ul {
	margin: 0px;
	padding-top: 24px;
	padding-right: 0px;
	padding-bottom: 32px;
	padding-left: 0px;
}
.fans li {
	background-image: url(i/bullet.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 0.85em;
	list-style-type: none;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 36px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebarL div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebarL div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebarL is created with the left margin on the mainContent div.  No matter how much content the sidebarL div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebarL space when the content in #sidebarL ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	margin: 0;
	padding-left: 350px;
} 
#mainContent h1 {
	color: #FD4915;
	font-size: 1.7em;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
}
#mainContent h2 {
	font-size: 1.4em;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
}
#mainContent p {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 12px;
	font-size: .9em;
}
#widearea {
	background-color: #FEFEFE;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #F2F2F2;
	border-left-color: #F2F2F2;
	padding: 8px;
}
#widearea h1 {
	color: #FD4915;
	background-image: url(i/heading_tags.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 26px;
	padding-top: 22px;
}
#widearea h3 {
	color: #FD4915;
}
#footer {
	height: 105px;
	width: 100%;
	background-image: url(i/bg_footer.jpg);
	background-repeat: repeat-x;
	background-position: center top;
	color: #FFF;
	text-align: left;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 0.8em;
	font-weight: normal;
	padding: 0;
} 
#footer p {
	font-weight: normal;
	padding-top: 18px;
	padding-right: 12px;
	padding-bottom: 12px;
	padding-left: 22px;
	width: 1000px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#footer p a {
	color: #FFF;
	text-decoration: none;
}
#footer #copyright {
	text-align: right;
	padding-top: 32px;
	padding-right: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
#footer #copyright .footer {
	color: #FFF;
	text-decoration: none;
}
.small {
	font-size: .8em;
}

/* Miscellaneous classes for reuse */
.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;
}
#imgcode {
	font-size: 1.7em;
}
.fans ul {
	margin: 0px;
	padding-top: 24px;
	padding-right: 0px;
	padding-bottom: 32px;
	padding-left: 0px;
}
.fans li {
	background-image: url(i/bullet.gif);
	background-repeat: no-repeat;
	background-position: left center;
	font-size: 0.85em;
	list-style-type: none;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 6px;
	padding-left: 36px;
}
#Gallery_home {
	height: 260px;
	width: 510px;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

#Gallery {
	width: 505px;
	height: 260px;
	display: block;
	overflow: hidden;
	position: relative;
	background-color: transparent;
}
#Ticker {
	height: 260px;
	display: block;
	overflow: hidden;
	list-style: none;
	margin: 0;
	padding: 0;
	background-color: transparent;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#Ticker li {
	display: block;
	height: 250px;
	line-height: 16px;
	color: #900;
	font-family: arial;
	font-size: 0.8em;
	margin: 0;
	padding: 0;
	float: left;
	min-width:100px;
	width: 500px;
	background-color: transparent;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	list-style-image: none;
	list-style-type: none;
}
.warning {
	font-size: 1.4em;
	font-style: italic;
	font-weight: bold;
	color: #C00;
}
