@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Arial, Verdana, Helvetica, sans-serif;
	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;
}

/* 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: #sidebar1 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.
*/

.index #container { 
	width: 100%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	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. */
} 
.index #header {
	height: 100px;
	background: #92C740 url(../images/mast_rep_bg.jpg) repeat-x; 
	 /* 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. */	 
	 padding: 0 0 0 120px;
} 

.index #header img#mastHead {
	position: absolute;
	margin-top: 10px;	
}

.index #header .header_links{
	position: absolute;
	left: 950px;
	top: 10px;
}

.index #header .header_links a{
	font-size: 12px;
	text-decoration: none;
	color: #FFF;
	padding: 3px 7px;
	display: block;
	border: 2px solid #FFF;
	float: left;
	margin-left: 10px;
}

.index #header .header_links a:hover{
	border: 2px solid #DDD;
	color: #EEE;
}

.index #header .nav_bar {
	position: absolute;
	margin: 0;
	padding: 0;
	width: 687px;
	top: 67px;
	left: 450px;
}

.index #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 *//* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
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 ".index #sidebar1 p" rule.
*/
.index #sidebar1 {
	float: left; 
	width: 21em; /* since this element is floated, a width must be given */
	margin-left: 6em;/* top and bottom padding create visual space within this div */
}

.index #sidebar1 #side_ad{
	margin: 10px 0;
}

.index .join_kids {
	
	background: #999 url(../images/join_kids_bg.jpg) no-repeat;
	width: 335px;
	height: 110px;
	
}

.index .join_kids img {
	
	margin: 65px 0 0 210px;
	
}

.index #sidebar1 #side_ad #sidebar_content{
	width: 335px;
}

.index #sidebar1 #side_movies{
	margin: 10px 0;
}

.index #sidebar1 #side_movies #side_attract{
	float: left;
	position: absolute;
	margin: 10px 0 0 -50px;
}

.index #sidebar1 h2 {
	font-size: 14px;
	color: white;
	padding: 5px 10px;
	margin: 10px 0 5px;
	background: #0C0 url(../images/header_rep2.jpg) repeat-x;
	font-weight: lighter;
}

.index #sidebar1 #side_news {
	background: #F0F0F0;
	margin: 5px 0 10px;
}

.index #sidebar1 .side_content, .index #sidebar1 .side_content2 {
	margin-bottom: 5px;
}

.index #sidebar1 .side_content img {
	float: left;
	padding: 5px;
}

.index #sidebar1 .side_content2 img {
	float: left;
	padding: 5px 10px 5px 5px;
	width: 100px;
}

.index #sidebar1 .side_content2 .side_content_words {
	margin: 0 5px 0 110px;
	padding: 5px;
}

.index #sidebar1 .side_content2 .side_content_words p{
	margin: 0;
	padding: 5px 0;
	font-size: 12px;
}

.index #sidebar1 .side_content .side_content_words {
	margin: 0 5px 0 70px;
	padding: 5px;
}

.index #sidebar1 .follow_content {
	padding: 0;
	background: #F3F3F3;
}

.index #sidebar1 #follow_side {
	float: left;
	width: 130px;
	padding: 10px 5px 10px 10px;
}

.index #sidebar1 #follow_side h3, .index #sidebar1 #follow_side h4{
	padding: 0;
	margin: 0;
	font-weight: lighter;
	font-size: 16px;
}

.index #sidebar1 #follow_side h4 {
	font-weight: bold;
	font-size: 20px;
	color: #600;
}

.index #sidebar1 .follow_content a{
	text-decoration: none;
}

.view_all_holder {
	text-align: right;
	border-top: 1px solid #ccc;
	padding: 5px 10px;
	margin: 0;
}

.sidebar_view_all {
	color:#666;
	font-size: 14px;
	text-decoration: none;
}

.sidebar_view_all:hover {
	color: #C00;
	text-decoration: underline;
}

.sidebar_ratings p{
	
	display: inline;
	margin: 0;
	padding: 0;
	font-weight: bold;
	
}

#rating_title {
	position: relative;
	top: -10px;
	margin: -5px 0 0 0;	
}

.index #sidebar1 #rating{
	display: inline;
	float: none;
}

.index #sidebar1 .follow_content a img {
	
	margin: 10px 0 5px 7px;
	
}

.index #sidebar1 .follow_content a span {
	float: left;
	position:absolute;
	margin-top: -10px;
	background:#333;
	font-size: 12px;
	color:#FFF;
	padding: 2px 5px;
	display: none;
}

.index #sidebar1 .follow_content a #arrow {
	float: left;
	position: absolute;
	margin: 9px 0 0 0;
	display: none;
}

.index #sidebar1 .follow_content a:hover span {
	display: inline;
}

.index #sidebar1 .follow_content a:hover #arrow {
	display: inline;
}

.index #sidebar1 .side_content_words h4,  .index #sidebar1 .side_content_words a{
	margin:0;
	padding: 0;
	color: #3A53A4;
	font-size: 14px;
}

.index #sidebar1 .side_content_words a {
	text-decoration: none;
	color: #666;
	font-size: 12px;
}

.index #sidebar1 .side_content_words a:hover {
	color: #C00;
}

.sidebar_bullet_tips {
	margin-bottom: 10px;	
}

.sidebar_bullet_tips ul{
	
	padding: 0 10px 0 20px;
	margin: 0;
	color: #06F;
	font-size: 20px;
	
}

.bullet_shorter {

	width: 320px;
	float: left;

}

.sidebar_bullet_tips li {
	
	font-size: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #CCC;
	list-style: url(../images/bullet1.png);
	line-height: 18px;
	color: #000;
	
}

.sidebar_bullet_tips li#last_bullet {
	
	border-bottom: none;
	
}


/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 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 sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 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.
*/
.index #mainContent {
 	margin: 0 143px 0 450px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	width: 687px;
} 

img {
	margin:0;
	padding:0;
	border:none;
}

.slideshow {

	background: #999;

}

.index .category, .index .news_category, .index .a_zcategory, .index .kids_category {
	padding-left: 20px;
	background: url(../images/divider_18.gif) no-repeat;	
}

.index .category h3, .index .a_zcategory h3, .index .kids_category h3{
	padding: 0;
	margin: 20px 0 0 0;
	font-size: 18px;
	color: #C00;
}

.index .a_zcategory h3, .index .kids_category h3 {
	font-size: 24px;
	font-weight: lighter;
}

.index .category h3 a, .index .a_zcategory h3 a, .index .kids_category h3 a{
	color: #C00;
	text-decoration: none;
}

.index .category h3 a:hover, .index .a_zcategory h3 a:hover, .index .kids_category h3 a:hover{
	color: #06C;
	text-decoration: underline;
}

.index .category a {
	padding: 0;
	text-decoration: none;
	float: left;
	margin: 10px 15px 0 0;
}

.index .cat_container {
	margin:0;
	padding: 0;
	border: 3px solid #DDD;
	width: 200px;
	text-align: right;
}

.index .category a:hover .cat_container {
	border: 3px solid #CCC;
}

.index .cat_container .description {
	z-index: 2;
	display: block;
	padding: 4px 4px 0 0;
}

.index .cat_container img {
	margin:0;
	padding: 0;
	float: left;
}

.index .cat_container p{
	margin:0;
	padding: 0;	
	font-size: 15px;
	font-weight: bold;
	color: #676767;
}

.index .category a:hover .description p{
	color: #C00;
}

.clear {
	clear: both;
}

#footer { 
	color: #FFF;
	font-size: 12px;
	/* this padding matches the left alignment of the elements in the divs that appear above it. */
	padding: 5px 0 5px 100px;
	background: url(../images/mast_rep_bg2.jpg) repeat-x;
} 
#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 on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding: 0;
}

#footer a {
	padding: 0;
	margin: 5px 5px;
	text-decoration: none;
	color: #EBFEF9;
}

#footer a:hover {
	color: #FFF;
	text-decoration: underline;
}

#footer .links {
	float: right;
	margin-right: 130px;
}

/*this defines the style rule for the news page*/

.index .news_category {
	margin: 20px 0 0 0;
}

.index .news_category .main_news h3{
	color: #C00;
	margin: 0 0 10px 0;
	font-weight: lighter;
	font-size: 24px;
}

.best_buy h2 {
	color: #C00;
	margin: 0 0 5px 0;
	font-size: 16px;	
}

.index .news_category .archive h5, .index .news_category .main_news h4{
	margin: 0;
	padding: 0;
}


.index .news_category .archive {
	width: 200px;
	float: right;
}

.index .news_category .archive h5{
	font-size: 14px;
	color:#FFF;
	padding: 5px;
	background: #92C740 url(../images/header_rep2.jpg);
}

.index .news_category .archive a{
	font-size: 12px;
	color: #999;
	display: block;
	border-top: 1px dashed #ddd;
	padding: 7px 4px;
	text-decoration: none;
}

.index .news_category .archive a.weird{
	border-top: none;
}

.index .news_category .archive a:hover{
	color: #FFF;
	background:#333;
}


.index .news_category .main_news {
	margin-right: 215px;
}

.index .news_category .main_news h4 {
	color: #066;
	font-size: 16px;
	font-weight: lighter;
}

.news_element {
	margin-top: 5px;
	padding: 5px 0;
	border-top: 1px dotted #CCC;
}

.index .news_category .main_news .news_element p {
	margin: 5px 0;
	color: #000;
	font-size: 14px;
}

.index .news_category .main_news a {
	margin: 5px 0 0 0;
	padding: 0;
	font-size: 12px;
	display: block;
	text-align: right;
	color:#666;
	text-decoration: none;
}

.index .news_category .main_news a:hover {
	color:#C00;
}

/*these define the styling rules for the a-z listing page*/
.index .a_zcategory .filter{
	padding: 10px;
	background:#333;
}

.index .a_zcategory .filter a {
	padding: 4px;
	color: #FFF;
	text-decoration: none;
}

.index .a_zcategory .filter a:hover {
	color:#0F3;
	outline: 1px solid #0F3;
}

.index .a_zcategory #store_header {
	border-bottom: 1px solid #ddd;
	height: 30px;
}

.index .a_zcategory #store_header ul{
	margin: 0;
	padding: 0;
}

.index .a_zcategory #store_header li{
	margin: 0;
	padding: 5px 140px 5px 10px;
	float: left;
	list-style: none;
}

.index .a_zcategory .define_listing {
	margin: 0;
	padding: 5px 10px 7px;
	border-bottom: 1px solid #ddd;
}

.index .a_zcategory .define_listing a{
	text-decoration: none;
	font-size: 14px;
}

.index .a_zcategory .define_listing a:hover{
	text-decoration: underline;
}

.index .a_zcategory .define_listing a#first {
	float: left;
	width: 235px;
}

.index .a_zcategory .define_listing a#second{
}

.index .a_zcategory .define_listing a#third {
	float: right;
}


/*defines the style for the kids page*/
#kids_form {
	background: #EEE;
	padding: 5px;
}

#kids_form h4 {
	
	font-size: 14px;
	margin: 4px 0 0 0;
	
}

#club_join .form_contents {
	border: none;	
}

#club_join .form_contents .spacer {
	margin: 0 0 5px 0;	
}

#club_join .form_contents .spacer .words {
	text-align: left;	
}

#kids_form h5{
	border-bottom: 1px solid #999;
}

#club_join h5 {
	padding: 0;
	font-size: 16px;
	border-bottom: 2px solid #930;
}

.club_intro img, .club_events img{
	margin: 0 10px 10px 0;
}

.club_intro .margin_left_align {
	margin: 0 0 0 260px;
}

.club_intro .margin_left_align .spacer{
	padding: 0 5px;
}

.club_intro .margin_left_align .gray{
	background: #F0F0F0;
}

.club_intro .margin_left_align .words{
	margin-left: 0;
}

.club_intro .margin_left_align .words h4{
	color: #099;
	font-size: 14px;
}

.club_intro .margin_left_align h5{
	padding: 0 0 5px 0;
	margin: 0;
	font-weight: lighter;
	border-bottom: 1px solid #CCC;
}

.club_intro #event_pix {
	float: left;
	width: 250px;
}

.left_small{
	float: left;
	width: 240px;
}

.right_small{
	float: right;
	width: 240px;
	margin: 20px 50px 0 10px;
}

.club_events {
	border-top: 1px dotted #666;
	padding-top: 10px;
	margin: 0 0 10px 0;
}

.club_events .events {
	border-bottom: 1px dotted #666;
	margin-bottom: 10px;
}

.index .club_events h3{
	color: #000;
	font-size: 18px;
	font-weight: lighter;
	margin: 0 0 5px 0;
	padding: 0;
	color: #666;
}

.club_events p{
	font-size: 12px;
	line-height: 25px;
	margin: 0;
	padding: 0;
}

.club_intro p{
	font-size: 12px;
	line-height: 20px;
}

.club_events .features {
	margin: 0 0 0 250px;	
}

.club_events .features h4 {
	font-size: 14px;
	border-bottom: 1px solid #999;
	margin: 0;
	padding: 5px 0;
}

.club_events .features h5 {
	font-size: 12px;
	margin: 0;
	padding: 5px 0;
	color:#C00;
}

.specs{
	background: #CCCCCC;
	margin: 10px 0;
	padding: 0 10px;
}

.specs p{
	padding: 0;
	margin: 0;
}

.specs p.rate_header{
	font-weight: bold;
	padding: 0 5px 0 0;
	margin: 0;
}

p.link_to_more{
	font-size: 14px;	
	text-align: right;
	margin-bottom: 5px;
}

.link_to_more a{
	text-decoration: none;	
	color: #999;
	border: 2px solid #0C0;
	padding: 2px 5px;
}

.link_to_more a:hover{
	color: #fff;
	background: #0C0;
}

.form_contents {
	border: 1px solid #ddd;
	padding: 10px 0;
}

#form_roles {
	border: none;
	padding: 0 0 10px 0;
}

.form_contents .words{
	margin: 5px 0 0 10px;
	text-align: right;
	width: 150px;
	float: left;
}

.form_contents .word h4{
	font-size:16px;
	padding: 0;
	margin: 10px 0 0 0;
	font-weight: lighter;
	color: #066;
}

.form_contents .word{
	margin: 0;
	text-align: left;
	float: left;
}

.form_contents .controls p{
	line-height: 20px;
	font-size: 12px;
}

.form_contents .words h4{
	margin: 0;
	font-size:12px;
	font-weight: lighter;
}

.form_contents .spacer{
	margin-bottom: 10px;
}

.form_contents .spaced{
	margin-bottom: 10px;
	border-top: 1px solid #EEE;
}

.form_contents input, .form_contents select, .form_contents textarea{
	margin: 5px 0 0 3px;
}

.form_contents .beginner{
	margin-top: 0;
}

.form_contents .controls{
	margin: 0 0 0 170px;
}

.form_contents .related {
	margin-top: 0;
}

.form_contents textarea{
	width: 250px;
}

.form_contents .ender{
	margin-bottom: 0;
}

.form_contents .longer_txt{
	width: 250px;
}

/*defines the style rules for the careers page*/

.job_definitions {
	margin-top: 5px;
	padding: 5px 15px 5px 10px;
	background: #EEE;
}

.job_definitions h4{
	padding: 5px 0;
	margin: 0;
	font-size: 14px;
	border-bottom: 1px solid white;
	color: #36F;
}

.job_definitions p{
	padding: 0;
	margin: 0;
	color: #666;
}

.job_definitions a{
	font-size: 14px;
	padding: 0;
	text-align: right;
	display: block;
	text-decoration: none;
	color: #36F;
}

.job_definitions a:hover {
	text-decoration: underline;
	color: #009;
}

/*styles define rules for stores page*/

.store_info {
	margin-bottom: 2px;
	background: #EEE;
}

.store_info p{
	padding: 0;
	margin: 0;
}

.store_info .desc, .store_info .data {
	padding: 5px 0 5px 10px;
}

.store_info .desc {
	float: left;
	width: 130px;
}

.store_info .desc p{
	font-weight: bold;
}

.store_info .data {
	margin-left: 150px;
	border-left: 3px solid #FFF;
}

.store_info .data a{
	margin: -2px 4px 0 0;
	padding: 0;
	background: #333;
	padding: 5px;
	text-decoration: none;
	color: #FFF;
	float: right;
}

.store_info .data a:hover{
	background: #92C740;
}

/*Style definitions for the categories page*/
.store_desc {
	margin-bottom: 2px;
	background: #EEE;
	height: 67px;
}

.store_desc .store_pic, .store_desc .store_data {
	padding: 5px;
}

.store_desc .store_pic img{
	margin: 0;
	padding: 0;
}

.store_desc .store_pic {
	float: left;
	width: 120px;
}

.store_desc .store_data {
	margin-left: 130px;
	border-left: 3px solid #FFF;
	line-height: 10px;
}

.store_desc .store_data p, .store_desc .store_data h5{
	margin: 0;
	padding: 0;
}

.store_desc .store_data a{
	margin: 25px 0 0 0;
	background: #333;
	padding: 5px;
	text-decoration: none;
	color: #FFF;
	float: right;
}

.store_desc .store_data a:hover{
	background: #92C740;
}

/*Style defines rules for the classified Ads page*/
#classified {
	margin: 10px 0 0 0;
}

#classified a{
	padding: 0;
	text-decoration: none;
	float: left;
	margin: 0 10px 10px 0;
}

#classified a:hover .cad_block{
	background: #DDD;
	color: #000;
}

#classified .cad_block {
	padding: 5px;
	background: #EEE;
	width: 200px;
	color: #666;
}

#classified .cad_block p{
	margin: 0;
	padding: 5px 0 0 0;
	font-size: 14px;
	font-weight: bold;
}


/* 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;
}

/*style rule define for the movie page*/
.now_showing{
	padding: 0 5px;
}

.now_showing h3 {
	padding: 0;
	margin: 0;
	font-size: 16px;
	font-weight: lighter;
	color: #960;
}

.now_showing .spacer p {
	padding: 2px 5px;
	margin: 0 0 10px 0;
	font-size: 12px;
	background: #FFF;
}

.now_showing .spacer .words {
	float: left;
	width: 100px;
}

.now_showing .spacer .words img#kids {
	width: 90px;
	height: 80px;
}


.now_showing .spacer .data {
	margin: 5px 0 5px 100px;
	border-left: 1px solid #CCC;
	padding: 2px 5px 5px 10px;
	
}

.now_showing .spacer .data a {
	font-size: 14px;
	text-decoration: none;
}

.now_showing .spacer .data a:hover {
	text-decoration: underline;
}

.now_showing .spacer .data h5{
	margin: 0;
	padding: 2px 0 2px 5px;
	background:#999;
	color:#FFF;
	font-weight: lighter;
}

.now_showing .spacer .data h4{
	margin: 5px 0;
	padding: 0;
	color: #C00;
}

/*for small product review*/
.product_review_small {
	padding: 0 5px 0 0;
}

.product_review_small .review_image_small {
	
	width: 100px;
	float: left;
	
}

.product_review_small .review_image_small img{
	
	width: 100px;
	
}

.product_review_small .review_details_small {
	
	margin: 0 0 0 110px;
	
}

.product_review_small .review_details_small p{
	
	background: none;
	
}

.article_pix{
	
	margin: 15px 0 10px 0;
	
}

.article_pix img{
	
	width: 100px;
	margin: 0 5px 0 0;
	border: 5px solid #DDD;
	padding: 2px;
	
}

#article_words img{
	
	float: left;
	width: 200px;
	margin: 0 10px 5px 0;
	
}

#article_words h3{
	
	margin: 5px 0 5px 0;
	
}

/*for thumbnail of expert interview page*/

.interview {
	padding-left: 20px;
	background: url(../images/divider_18.gif) no-repeat;
	margin: 20px 0 0 0;
	font-size: 18px;
}

.interview h3 {
	font-size: 22px;
	font-weight: lighter;
	padding: 0;
	color: #C00;
	margin: 0;
}

.interview p {
	font-size: 12px;
	padding: 0;
	margin: 0;
}

#interview_images {
	
	float: left;
	margin: 0 10px 5px 0;
	width: 200px;
	
}

.expert_details {
	
	margin: 10px 0 15px 0;
	text-align: right;
	border-bottom: 3px solid #DDD;
	
}

.expert_details img{
	
	float: right;
	margin: 0 0 0 10px;
	border: 5px solid #DDD;
	width: 75px;
	
}

.expert_details h4{
	
	font-size: 20px;
	font-weight: lighter;
	color: #09C;
	margin: 10px 0 0 0;
	padding: 0;
	text-align: right;
	
}

.expert_details p{
	
	font-size: 14px;
	color: #999;
	margin: 0;
	padding: 0;
	text-align: right;
	
}

#fitness .review_image_small {
	
	width: 200px;
	
}

#fitness .review_image_small img{
	
	width: 200px;
	
}


#fitness .review_details_small {
	
	margin-left: 210px;
	
}

#fitness h4 {
	
	font-weight: lighter;
	font-size: 16px;
	margin: 5px 0;
	color: #06F;
	
}

/*Style rules for the artist profiler albums*/

.media_profiler {
	
	margin: 10px 0;
	
}

.album_picture {
	
	float: right;
	width: 100px;
	
}

.album_picture img {
	
	width: 75px;
	padding: 1px;
	border: 4px solid #F0F0F0;
	
}

.album_info {
	
	text-align: right;
	margin: 0 110px 0 0;
		
}

.album_info h4{
	
	font-weight: lighter;
	font-size: 16px;
	margin: 5px 0;
	color: #06F;
	border-bottom: 4px solid #F0F0F0;
	
}

.album_info p {
	
	line-height: 20px;
		
}

.album_info p.bolder {

	font-weight: bold;
	display: inline;

}

.album_info p.desc {
	
	margin: 0 0 0 10px;
	display: inline;

}