/* 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;
}
/* 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: #FCFCFC;
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 14px;
	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/ks_bk_image.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-top-color: #600;
	border-right-color: #600;
	border-bottom-color: #600;
	border-left-color: #600;
}

 a:hover IMG {
	opacity:0.5;
	FILTER: alpha(Opacity=50);
	margin: 0px;
	padding: 0px;
}
/* Commonly used to style page titles. */
h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
/* 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 {
	background-color: #fff; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 97em;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding: 0px;
}
#outerWrapper #header {
	background-color: #F3F3F3; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	line-height: 15px; /* Sets the padding properties for an element using 
  shorthand notation (top, right, bottom, left) */
	height: 134px;
	background-image: url(../images/_head_bk.jpg);
	background-repeat: repeat-x;
	background-position: right top;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #topNavigation {
	background-color: #ebebeb; /* Sets the bottom border properties for an element using shorthand notation */
	height: 52px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/menu_sub2_12.jpg);
	background-repeat: repeat-x;
	background-position: left 0px;
	margin: 0px;
	padding: 0px;
	
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 124px;
	margin: 0px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 157px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height: 12px;
	color: #666;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0;
	margin-right: 180px;
	margin-bottom: 0;
	margin-left: 148px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
	margin: 0px;
	padding: 0px;
}
#outerWrapper #footer {
	background-color: #fff;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height:200px;
	background-image: url(../images/menu_sub1_12.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	margin: 0px;
}

#_div_footer_container {
	background-color: #525252;
	width: 97em;
	margin-right: auto;
	margin-left: auto;
	background-image: url(http://www.kornerstore.net/images/menu_sub_12a.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	overflow: hidden;
	padding-top: 20px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#_div_footer_container #list1 {
	float: left;
	padding-top: 10px;
	text-align: left;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#_div_footer_container #list2 {
	float: left;
	padding-top: 10px;
	text-align: left;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#_div_footer_container #list3 {
	float: left;
	padding-top: 10px;
	text-align: left;
	color: #FFF;
	margin: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#_div_footer_container li h1 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #CCC;
	letter-spacing: .2em;
	word-spacing: .2em;
	margin-bottom: 5px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

#_div_footer_container li  a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999;
	letter-spacing: 0.2em;
	word-spacing: 0.3em;
	display: block;
	margin: 0px;
	padding: 0px;
}
#_div_footer_container li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#_div_privacy_footer {
	width: 80%;
	float: left;
	padding: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
	margin: 0px;
}
#_div_footer_container #_div_privacy_footer h1 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	letter-spacing: .2em;
	word-spacing: .2em;
	margin-right: 20px;
	margin-left: 20px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#_div_footer_container #_div_privacy_footer p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #CCC;
	margin-right: 20px;
	margin-left: 20px;
	padding: 0px;
	margin-top: 0px;
	margin-bottom: 0px;
}
#_div_footer_menu {
	float: left;
	width: 80%;
	text-align: center;
	padding-bottom: 20px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
#_div_footer_container #_div_footer_menu a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #CCC;
	letter-spacing: .2em;
	margin: 0px;
	padding: 0px;
}
.copyright_txt {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #CCC;
	letter-spacing: .2em;
	word-spacing: .3em;
	margin: 0px;
	padding: 0px;
}
#_div_footer_container #list4 {
	float: right;
	padding-right: 20px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;

}
#_div_footer_container #_div_privacy_footer p a {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 10px;
	color: #999;
	letter-spacing: 0.2em;
	margin: 0px;
	padding: 0px;
}


#_div_footer_container a:hover {
	color: #F60;
	letter-spacing: 0.2em;
	margin: 0px;
	padding: 0px;
}

#Container_head_logo {
	height: 134px;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#_div_logo1 {
	background-image: url(../images/_head_logo_part1.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
	height: 134px;
	width: 233px;
	margin: 0px;
	padding: 0px;
}
#_div_logo2 {
	background-image: url(../images/_head_logo_part2.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	float: left;
	height: 134px;
	width: 285px;
	margin: 0px;
	padding: 0px;
}
#_div_logo3 {
	background-image: url(../images/_head_bk_right.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	float: right;
	height: 134px;
	width: 335px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #930;
	text-align: right;
	margin: 0px;
	padding: 0px;

}
#_div_cart_info1 {
	text-align: right;
	float: right;
	height: 15px;
	width: 300px;
	padding-right: 25px;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
#divLeftFlashMenu {
	text-align: center;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#divLeftMenuRepeat {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#divMenuLeftEdit {
	width: 100%;
}
.contentbk {
	background-repeat: repeat-x;
	background-position: left top;
}
#productOutline{
	width: 146px;
	height: 250px;
	float: left;
	margin-right: 3px;
	margin-bottom: 5px;
	background-color: #FFF;
	margin-left: 3px;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-right-style: dotted;
	border-bottom-style: dotted;
	border-left-style: dotted;
	border-top-color: #48565F;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
}
#ProductName {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	height: 40px;
	font-weight: bold;
	color: #930;
	text-align: center;
	margin-bottom: 6px;
	margin-top:10px;
	overflow: hidden;
}
#divProductImage {
	text-align: center;
	height: 87px;
	overflow: hidden;
}
#divProductButton {
	text-align: center;
}
#divProductDesc {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	text-align: center;
	height: 55px;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 5px;
	color: #666;
}
.Menu_cat_bk {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #FFF;	
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #600;
}
.ks_txt_on_black_white {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #930;
}


.ks_txt_on_black_white:hover{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFF;
	background-color:#F60;
}
#div_right_160 {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 10px;
	color: #CCC;
	background-color: #FFF;
	letter-spacing: 0.1em;
	word-spacing: 0.2em;
	padding: 5px;
	width: 150px;
	margin-bottom: 6px;
	border: 1px solid #333;
	text-decoration: none;
	background-image: url(../images/news_title.png);
	background-repeat: no-repeat;
	background-position: left top;
}
#div_profile_top {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 12px;
	font-weight: bolder;
	color: #C12026;
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 40px;
	background-color: #dcdcdc;
	padding-bottom: 5px;
	background-image: url(../images/boxGrayLeftCorner.jpg);
}
.div_profile_top_ {
	background-image: url(../images/boxGrayRightCorner.jpg);
	background-repeat: no-repeat;
	background-position: right top;
}

#div_profile_content {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	overflow: hidden;
	background-color: #E9E9E9;
	width:620px;
	position:relative;
	/*float:left;*/
		-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	margin: 0px;
	padding: 0px;
	
}

#div_slide_content {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	overflow: hidden;
	background-color: #E9E9E9;
	width:620px;
	position:relative;
	height:152px;
	
	
}



#div_profile_content_repeat {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	background-color: #F4F4F4;
	padding: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	margin-top: 10px;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thin;
	border-left-width: thick;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #999;
	border-left-color: #FFF;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	position:relative;
	
}

#div_profile_content_details {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	background-color: #F4F4F4;
	padding: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	border-top-width: thick;
	border-right-width: thick;
	border-bottom-width: thin;
	border-left-width: thick;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #999;
	border-left-color: #FFF;
	
}



#div_profile_bottom {
	background-image: url(../images/profile_wiz_steps_bottom.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 16px;
	width: 623px;
}
.Savings {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	background-image: url(../images/savebk.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 63px;
	width: 63px;
}
#divSearch {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #FFF;
	padding: 10px;
	height: 50px;
	border-top-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
	background-image: url(../images/searchbk.png);
	background-repeat: no-repeat;
	background-position: left 7px;
	margin-top: 0px;
	margin-bottom: 10px;
}
#divRoundedCorner {
	background-image: url(../images/boxGrayRightCorner.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding-top: 4px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
}
#divBlankContent {
	padding: 20px;
	float: left;
	width: 96%;
}
#divDropMenu {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #900;
	float: left;
	width: 100%;
}

#divProductSearch {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #333;
	background-color: #FFFFDF;
	padding: 15px;
	margin-top: 15px;
	margin-bottom: 15px;
	border: 1px solid #666;
	margin-right: 5px;
	margin-left: 5px;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
}
#divNotice {
	background-color: #FFFDEA;
	padding: 20px;
	border: thin dotted #930;
	margin-top: 10px;
	margin-bottom: 10px;
}
.ks_frnt_title_label {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
}
.ks_Orange_Txt {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FF6600;
}
.ks_black_txt_12 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
}
.ks_Photo_txt_left {
	padding-right: 0.63em;
	padding-bottom: 0.63em;
}
.ks_txt_on_black_gray {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #6F6F6F;
}
.style4 {color: #CCCCCC; font-family: Verdana, Arial, Helvetica, sans-serif;}
	
	
	
	.Headbk {
		background-image: url(http://www.kornerstore.net/images/tb_newsite_header_bk.jpg);
		background-repeat: repeat-x;
		background-position: left bottom;
		margin: 0px;
	}
	.HeadingText {
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #B40001;
	font-weight: bold;
	line-height: 16px;
	}
	.subHead_text {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
		font-weight: bold;
		color: #666666;
	}
	.MainTxt {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
		color: #333333;
	}
	.MainMenubk {
		background-image: url(http://www.kornerstore.net/images/newmenu_bk.jpg);
		background-repeat: repeat-x;
		background-position: left top;
	}
	.MenuSide_cat {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
		font-weight: bold;
		color: #C20000;
	}
	.MenuSide_Sub {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 11px;
		color: #550000;
		text-align: left;
	}
	.MenuSide_bk1 {
		background-color: #9D0102;
		background-repeat: repeat;
	}
	.picframe_sm {
	padding: 4px;
	border: 1px solid #C1CEFF;
	}
	.MenuSide_Cat_bk {
		border-top-width: 1px;
		border-right-width: 1px;
		border-bottom-width: 1px;
		border-left-width: 1px;
		border-top-style: none;
		border-right-style: none;
		border-bottom-style: dotted;
		border-left-style: none;
		border-top-color: #993300;
		border-right-color: #993300;
		border-bottom-color: #993300;
		border-left-color: #993300;
	}
	.seemore {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 11px;
		font-style: normal;
		font-weight: bold;
		color: #0066FF;
	}
	.submenu_bk {
		background-image: url(http://www.kornerstore.net/images/menu_sub_bk.jpg);
		background-repeat: repeat-x;
		background-position: left bottom;
	}
	.Head_Welcome_txt {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-align: right;
	}
	.flashbk1 {
		background-image: url(http://www.kornerstore.net/images/flashbk.jpg);
		background-repeat: no-repeat;
		background-position: left top;
	}
	.flashbk2 {
		background-image: url(http://www.kornerstore.net/images/flashbk1.jpg);
		background-repeat: repeat-x;
		background-position: left top;
	}
	.footerTxt {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-align: center;
	text-decoration: none;
	}
	.testbk {
		background-image: url(http://www.kornerstore.net/images/testbk1.jpg);
		background-repeat: no-repeat;
		background-position: center top;
		padding: 10px;
	}
	.JoinNow2 {
		background-image: url(http://www.kornerstore.net/images/joinnow2.jpg);
		background-repeat: no-repeat;
		background-position: center top;
	}
	.whatsnew {
		background-image: url(http://www.kornerstore.net/images/whatsnew.jpg);
		background-repeat: no-repeat;
		background-position: center top;
	}
	.mainbmenubk {
		background-color: #000000;
		background-image: url(http://www.kornerstore.net/images/mainmenubk.jpg);
		background-repeat: repeat-x;
		background-position: left;
	}
	.newReleases {
	background-image: url(http://www.kornerstore.net/images/product_bk_heading.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	}
	.newReleasestxt {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 14px;
		font-weight: bold;
		color: #FFFFFF;
	}
	.sidebk_txt {
		background-image: url(http://www.kornerstore.net/images/product_bk_heading_side.jpg);
		background-repeat: no-repeat;
		background-position: left top;
	}

.productbox_dotted {
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	padding: 5px;
	border: 1px dotted #999999;
	background-image: url(http://www.kornerstore.net/images/product_bk_x.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	float: left;
	}
	
	.tb_musicbk {
	background-image: url(http://www.kornerstore.net/images/tb_musicbk.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #D7D7D7;
	padding: 2px;
	border: thick solid #FFF;
	}
	.NowPrice {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #000;
	font-style: normal;
	line-height: normal;
	}
	.wasPrice {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
		font-weight: bold;
		color: #336633;
		text-decoration: line-through;
	}
	.ks_white_txt_12 {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 10px;
		font-style: normal;
		color: #FFFFFF;
		text-align: justify;
	}
	.footerbk_redline {
		background-color: #525252;
		background-image: url(http://www.kornerstore.net/images/menu_sub_12a.jpg);
		background-repeat: repeat-x;
		background-position: left top;
	}
	.reg_box_bk1 {
	background-repeat: no-repeat;
	background-position: left top;
	padding: 5px;
	}
	.regbkLogin2 {
	
		background-repeat: no-repeat;
		background-position: center top;
		padding: 5px;
	}
	#newHolder {
		background-color: #FFFFFF;
		padding: 0px;
		width: 729px;
		border-top-width: medium;
		border-right-width: thin;
		border-bottom-width: medium;
		border-left-width: thin;
		border-top-style: none;
		border-right-style: none;
		border-bottom-style: solid;
		border-left-style: none;
		border-top-color: #666666;
		border-right-color: #666666;
		border-bottom-color: #666666;
		border-left-color: #666666;
	}
	.tb_newsTitle {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 18px;
		font-weight: bold;
		color: #000000;
		text-transform: capitalize;
	}
	.tb_newsBody {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 12px;
		font-weight: normal;
		color: #333333;
		text-align: justify;
		line-height: normal;
	}
	.tb_news_time {
		font-family: Geneva, Arial, Helvetica, sans-serif;
		font-size: 10px;
		color: #3366CC;
	}
	#divBoxTopRed {
	background-image: url(../images/reg_bk_content_head.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	height: 17px;
	width: 378px;
}
#divBodyRed {
	background-repeat: repeat-y;
	background-position: left top;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	border: 1px solid #F00;
	padding: 10px;
	width: 96%;
}
#divFooterRed {
	background-image: url(../images/reg_bk_content_footer.gif);
	background-position: left top;
	height: 14px;
	width: 378px;
}
#GeneralContainer {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #666;
	background-color: #F4FAFF;
	letter-spacing: .02em;
	padding: 20px;
	margin-top: 10px;
	margin-right: 3px;
	margin-bottom: 10px;
	margin-left: 3px;
	border: 1px dotted #333;
}#divProductLayout {
	float: left;
	width: 100%;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
}
#divNewsSeparator {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	line-height: 12px;
	color: #333;
	margin-bottom: 4px;
	padding-bottom: 4px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #CCC;
}
#divSplitMain {
	float: left;
	height: 100%;
	width: 100%;
}
#divNotice {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #F00;
	background-color: #FFFFE1;
	padding: 14px;
	border: 1px solid #930;
	margin-bottom: 10px;
}
#divProfileSplitLeft {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	padding: 10px;
	float: left;
	width: 300px;
	border: 1px solid #666;
	margin-top: 10px;
	background-color: #FFF;
}
#divProfileSplitRight {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	padding: 10px;
	float: left;
	width: 576px;
	border: 1px solid #666;
	margin-left: 10px;
	margin-top: 10px;
	background-color: #FFF;
}
#divContentSeparator {
	padding: 10px;
	width: 94%;
	margin-bottom: 15px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #930;
	float: left;
}
#divVideoPlay {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	color: #9C0;
	background-color: #666;
	margin-right: auto;
	margin-left: auto;
	border: 1px dotted #9C0;
}
#divVideoTopMenu {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	padding: 10px;
	border: 1px dotted #666;
	margin-bottom: 10px;
}
#outerWrapper #_div_newRelease #divBlankContent #divSplitMain #divProfileSplitLeft #divVideoTopMenu strong {
	color: #9C0;
	margin: 0px;
	padding: 0px;
}
#divVideoThumbs {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #999;
	padding: 5px;
	height: 67px;
	width: 67px;
	border: 1px dotted #666;
	float: left;
	margin: 5px;
}
#divVideoThumbsScroller {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	color: #666;
	padding: 5px;
	float: left;
	border: 1px dotted #930;
	overflow-x: hidden;
    overflow-y: scroll; 
	width: 96%;
	height: 438px;
}
#divVideoDescription {
	background-color: #999;
	padding: 10px;
	width: 94%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	line-height: 14px;
	color: #FFF;
}
#divVideoUploadForm {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	color: #666;
	padding: 20px;
	margin-bottom: 10px;
	border: 1px dotted #930;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}

#divText {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #666;
	letter-spacing: 0.02em;
	text-align: justify;
	word-spacing: 0.02em;
	padding: 10px;
	width: 70%;
	clear: left;
	float: left;
}
.NewTxt {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #666;
	letter-spacing: .02em;
	text-align: justify;
	word-spacing: .02em;
	clear: left;
}
#divNewFront {
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #666;
	background-color: #FEFFFB;
	padding: 20px;
	margin-bottom: 10px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-bottom-style: dotted;
	border-top-color: #5B3400;
	border-right-color: #5B3400;
	border-bottom-color: #5B3400;
	border-left-color: #5B3400;
	width:95%;
	float:left;
	clear: left;
}
.DJPoolPicThumb {
	background-color: #FFF;
	float: left;
	width: 90px;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
}

.RecipesPicThumb {
	background-color: #FFF;
	margin-right: 20px;
	margin-bottom: 20px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	float: left;
}
#divRightJustifyPlain {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	text-align: right;
	padding: 10px;
	border: 1px dotted #666;
}
#divRegisterBody {
	background-image:url(../images/RegisterFree2.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;		
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	padding: 20px;
	border: 3px none #930;
}
#div_Reg_innerBox {
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	background-color: #E3E3E3;
	padding: 20px;
	margin-right: auto;
	margin-left: auto;
	border: 1px dotted #CCC;
	margin-top: 110px;
}
#DivWillbeRightBack {
	-webkit-border-radius: .6em;
	-moz-border-radius: 0.6em;
	font-family: Verdana, Geneva, sans-serif;
	text-align:center;
	font-size: 16px;
	color: #930;
	background-color: #FFFFE1;
	border: thick solid #930;
	position: absolute;
	height: 300px;
	width: 50%;
	left: 316px;
	top: 202px;
	right: auto;
	padding: 20px;
	margin-right: auto;
	margin-left: auto;
}
#divPleaseWait {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color: #000;
	background-color: #EAF4FF;
	padding: 10px;
	height: 200px;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
	border: 1px dotted #930;
	text-align: center;
	vertical-align: middle;
	visibility: hidden;
}
#divNoticeSelectSong {
	height: 21px;
	width: 200px;
	border: 1px solid #999;
	float: right;
	background-image: url(../images/selectbk.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 10px;
}
#divProductDetailsPicsBox {
	background-color: #999;
	padding: 3px;
	float: left;
	border: 1px solid #666;
	width:352px;
	overflow-y:hidden
	overflow-x:auto;
	
}
#outerWrapper #contentWrapper #content #div_profile_content_details table tr td #PrdDetailPicLarge {
	height: 370px;
	width: 358px;
	overflow: hidden;
	margin-bottom:12px;
	border: 1px solid #999;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}
#divLabelYellowBox {
	background-color: #FEF4CF;
	float: left;
	width: 96%;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	border: 1px solid #C60;
}
#divNotice2 {
	background-color: #FFF8E1;
	margin-top: 4px;
	margin-bottom: 4px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
	border: 1px solid #C60;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-weight: normal;
	color: #333;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
}

#divNotice2 a{
		
	color:#930;
	}
#divNotice2 a:hover{
	
	color: #990;
	}
#divMyaccountPics {
	margin-bottom: 20px;
/*	border: 1px solid #8C769D;*/
}
#divBoxGeneral {
	width:95%;
	background-color: #F5F5F5;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #CCC;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
	position:relative;
	float:left;
}
#divSlider {
	
	position: absolute;
	width:1812px;
	height:147px;
}

#divSlider img {
	float:left;
	margin-right:11px;
	-webkit-border-radius: .6em;
	-moz-border-radius: .6em;
}

#divTTTTT{
	position:relative;
	float:left;
	
	
	}
.largeHead {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
}

#musicrows{
	font-family: arial;
	font-size: 1em;
	color: #333;
	background-color: #E9E9E9;
	margin: 0px;
	padding: 0px;
	height: 15px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: dotted;
	border-right-style: none;
	border-bottom-style: dotted;
	border-left-style: none;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	background-image: url(../images/musabk23.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-bottom:3px;
}

