/* CSS Document */

/* 

reset styles
form fields
links 
lists
breadcrumbs
paddings
header
footer
tool -- sidebar e.g. print, send to friend, bookmark
   
*/

/* ***************************************************************************** reset styles */


html{
overflow:-moz-scrollbars-vertical;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
caption {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
body {
	line-height: 1.4;
	font-size: 12px;
}
ol, ul {
	/*
	list-style: none;
	*/
}
blockquote, q {
	quotes: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	/*
	border-collapse: collapse;
	border-spacing: 0; 
	*/
}

sup{
font-size:10px;
}

body{
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif, Arial;
color:#200c0e;
background:#39b54a url(../images/body_bg.jpg) top repeat-x;
}

strong{
	color:;
}

/* HR replaced by image -- consistent look across browsers */
div.hr, hr{
background: #ccc url(../images/hr.gif) no-repeat scroll center;
height: 2px;
min-height:2px;
}

div.hr hr,{
display: none;
}

p{
padding:0.6em 0px;
text-align:left;
}

h1, h2, h3, h4, h5, h6  
{  
font-size: 100%;  
padding: .6em 0;  
margin: 0 0px;  
}

#main_column h1{
font-family: Arial, Helvetica, sans-serif;
font-size:18px;
font-weight:bold;
line-height:1.2;
color:#200c0e;
}

#main_column h2{
font-family: Arial, Helvetica, sans-serif;
font-size:1.8em;
font-weight:bold;
line-height:1.2em;
color:#200c0e;
}

#main_column h3{
font-family: Arial, Helvetica, sans-serif;
font-size:18px;
font-weight:bold;
line-height:1.2;
color:#006600;
}

#main_column h4{
font-family: Arial, Helvetica, sans-serif;
font-size:1.4em;
font-weight:bold;
line-height:1.2em;
color:#200c0e;
}

#main_column h5{
font-family: Arial, Helvetica, sans-serif;
font-size:1.2em;
font-weight:bold;
line-height:1.2em;
color:#200c0e;
}

#main_column h6{
font-family: Arial, Helvetica, sans-serif;
font-size:1.2em;
font-weight:bold;
line-height:1.2em;
color:#200c0e;
}

/* -------------------------------------------------------------- 
   
   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms
   
   Usage:
   * For text fields, use class .title or .text
   
-------------------------------------------------------------- */

/* Form fields
-------------------------------------------------------------- */

label, input.text{
	display: block;
	width: 150px;
	float: left;
}

label {
	text-align: left;
	width: 175px;
	padding:7px 20px 0px 0px;
	margin-bottom: 30px;
}

br {
	clear: left;
}

input{
	padding:0;
	margin:0;
}

fieldset    { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend      { font-weight: bold; font-size:1.2em; }

input.text, textarea, select {
  margin:0em 0;
  border:1px solid #bbb;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif
}

input.text:focus, textarea:focus, select:focus {
  border:1px solid #666;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif
}

input.text    { width: 300px; padding:5px; }
textarea      { width:  ; height: ; padding:5px; font-size:12px; }


/* Success, notice and error boxes
-------------------------------------------------------------- */

.notice, 
.success    { padding: 6px 8px; margin: 1em 0; border: 2px solid #ddd; font-size: 11px;line-height: 1.2em; float:left; }

.error_gallery { padding: .4em .8em; margin-bottom: 0em; border: 2px solid #ddd; font-size: 1.1em; text-align:center; }

.error   { padding: 6px 8px; margin: 1em 0; border: 2px solid #ddd; font-size: 11px; line-height: 1.2em; float:left; }

.error{ background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; clear:both; }
.error_gallery      { background: #FBE3E4 ; color: #8a1f11; border-color: #FBC2C4; }

.notice     { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success    { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a    { color: #8a1f11; }
.notice a   { color: #514721; }
.success a  { color: #264409; }

textarea{
overflow:auto;
}

.clear{
clear:both;
}

.float_right{
float:right;
display:inline;
padding: 0.5em 0 2.0em 2.0em;
}

.float_left{
float:left;
display:inline;
padding: 0.5em 2.0em 2.0em 0;
}

.align_right{
text-align:right;
}

.align_left{
text-align:left;
}

/* ***************************************************************************** links */


a:link, a:visited, a:active{
color: #049000;
font-size:100%;
text-decoration:underline;
font-weight:bold;
}

a:hover{
color: #222;
font-size:100%;
text-decoration:none;
font-weight:bold;
}


.link_button, .link_button:link, .link_button:visited, .link_button:active{
padding: 2px 8px;
border:1px solid #222;
background: #ccc;
text-decoration:none;
}

.link_button:hover{
background: #fff;
cursor:pointer;
}

/* ***************************************************************************** lists */

ol{
list-style-position:outside;
padding:0px 0px 5px 25px;
}
/*
ul{ 
margin: 0px 0px 0px 0px; 
padding: 0px 0px 0px 0px;
 
list-style-type:disc;
list-style-position:outside;

color:#222;
}

li { 
margin: 0px 0px 0px 40px; 
padding: 0px 0px 6px 0px; 

list-style-type:disc;
list-style-position:outside;

background: url() 0 -6px no-repeat;
}

li a:link, li a:visited, li a:active{
color: #222;
text-decoration:none;
font-weight:normal;
}

li a:hover{
color: #222;
text-decoration:underline;
font-weight:normal;
}
*/

/* *************************************************************** breadcrumbs */

#crumbs{
color:#222;
font-size:1.1em;
}

#crumbs a:link, #crumbs a:visited, #crumbs a:active{
color: #222;
font-size:1.1em;
text-decoration:none;
font-weight:normal;
}

#crumbs a:hover{
color: #222;
font-size:1.1em;
text-decoration:underline;
font-weight:normal;
}

/* *************************************************************** paddings */

.pad-top-5{
padding-top:5px;
}
.pad-top-10{
padding-top:10px;
}
.pad-top-15{
padding-top:15px;
}
.pad-top-20{
padding-top:20px;
}
.pad-top-25{
padding-top:25px;
}
.pad-top-30{
padding-top:30px;
}

.pad-right-5{
padding-right:5px;
}
.pad-right-10{
padding-right:10px;
}
.pad-right-15{
padding-right:15px;
}
.pad-right-20{
padding-right:20px;
}
.pad-right-25{
padding-right:25px;
}
.pad-right-30{
padding-right:30px;
}

.pad-bottom-5{
padding-bottom:5px;
}
.pad-bottom-10{
padding-bottom:10px;
}
.pad-bottom-15{
padding-bottom:15px;
}
.pad-bottom-20{
padding-bottom:20px;
}
.pad-bottom-25{
padding-bottom:25px;
}
.pad-bottom-30{
padding-bottom:30px;
}

.pad-left-5{
padding-left:5px;
}
.pad-left-10{
padding-left:10px;
}
.pad-left-15{
padding-left:15px;
}
.pad-left-20{
padding-left:20px;
}
.pad-left-25{
padding-left:250px;
}
.pad-left-30{
padding-left:30px;
}

.pad-all-5{
padding:5px;
}
.pad-all-10{
padding:10px;
}
.pad-all-15{
padding:15px;
}
.pad-all-20{
padding:20px;
}
.pad-all-25{
padding:25px;
}
.pad-all-30{
padding:30px;
}

.pad-side-30{
padding:0px 30px;
}
.pad-side-20{
padding:0px 20px;
}
.pad-side-10{
padding:0px 10px;
}

.pad-vert-30{
padding:30px 0px;
}
.pad-vert-20{
padding:20px 0px;
}

/* *************************************************************** home */

.nav_home{
text-align:center;
margin:0 auto;
width:880px;
height:100px;
padding:0px 0px 0px 10px;
}
.nav_home .nav_item{
float:left;
width:160px;
margin:0px 25px;
}

.nav{
text-align:center;
margin:0 auto;
width:658px;
height:90px;
padding:0px 0px 0px 0px;
}
.nav .nav_item{
float:left;
width:160px;
margin:0px 0px;
}

/* *************************************************************** footer */

#footer {  


color:#003f09;
font-size:11px;
z-index:100;
border-top:0px solid #6bb544;
padding:0px 0px 20px 0px;
margin:0px auto 0px auto;
height:;
}

#footer a:link, #footer a:visited, #footer a:active{
color: #003f09;
font-size:11px;
text-decoration:none;
font-weight:bold;
}
#footer a:hover{
color: #003f09;
font-size:11px;
text-decoration:underline;
font-weight:bold;
}

/* *************************************************************** tool */

#tool{
font-size:10px;
color:#666;
vertical-align:middle;
text-align:right;

padding:0px 0px 8px 0px;
margin:20px 30px 20px 30px;

border-bottom:1px solid #eee;
}

#tool_footer{
font-size:10px;
color:#bbb;
vertical-align:middle;
text-align:right;

padding:0px 0px 8px 0px;
margin:20px 30px 20px 30px;

border-top:1px solid #eee;
}

#tool img, #tool_footer img{
padding:0px 5px;
}

/* ---------- gallery styles start here ----------------------- */

.gallery {
	list-style: none;
	margin: 0;
	padding: 0;
}
.gallery li {
	margin: 40px 10px 0px 20px;
	padding: 0;
	float: left;
	position: relative;
	width: 180px;
	height: ;
}
.gallery .img {
	background: #fff;
	border: solid 1px #ccc;
	padding: 4px;
	width:170px;
	height:128px;
}
.gallery span {
	width: 77px;
	height: 27px;
	display: block;
	position: absolute;
	top: -12px;
	left: 50px;
	background: url(../images/tape.png) no-repeat;
}
.gallery a {
}
/*.gallery .vote_me {
	width: 87px;
	height: 86px;
	display: block;
	position: absolute;
	top: 50px;
	left: 0px;
	background: url(../images/icon_vote_me.gif) no-repeat;
}*/
.gallery .vote_me {
	width: 55px;
	height: 54px;
	display: block;
	position: absolute;
	top: 80px;
	left: 0px;
	background: url(../images/icon_vote_me.gif) no-repeat;
}

/* *************************************************************** view entry */
#viewEntry {
}

.viewEntryPhotoLeftBg {
	background-image: url(../images/photoshadow_left.jpg);
	background-repeat: repeat-y;
	width: 9px;
}

.viewEntryPhotoRightBg {
	background-image: url(../images/photoshadow_right.jpg);
	background-repeat: repeat-y;
	width: 9px;
}

.viewEntryPhoto {
	background-color: #fff;
	padding: 12px 5px 0px 8px;
}

.photoListing {
	background-image: url(../images/ly_photolisting_bg.jpg);
	background-repeat: no-repeat;
	color: #fff;
	/*padding: 5px 41px 0 41px;*/
	padding: 0px 31px 0 31px;
}
.thumbnailFrame {
	background-image: url(../images/small_photo_frame.jpg);
	background-repeat: no-repeat;
	width: 112px;
	height: 80px;
	padding: 13px 7px 14px 7px;
}


/********sms step*/
#sms_step strong{
	color:#030;
	
}

.list01 {
	background-image: url(../images/dot.gif);
	background-repeat: no-repeat;
	padding:0 0 5px 13px;
	
}

.txtWidth-300
{ width: 300px;}

.txtWidth-200
{ width: 200px;}
.txtWidth-250
{ width: 250px;}


/* ---------------------------------------------------------------------------------------- Textbox width */

.txtWidth-72
{
	width: 72px;
	height: 22px;
	display: block;
	float: left;
	margin:0em 0;
	border:1px solid #bbb;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.txtWidth-32
{
	width: 32px;
	height: 22px;
	display: block;
	float: left;
	margin:0em 0;
	border:1px solid #bbb;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}


.txtWidth-48
{
	width: 48px;
	height: 22px;
	display: block;
	float: left;
	margin:0em 0;
	border:1px solid #bbb;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.txtWidth-106
{
	width: 106px;
	display: block;
	float: left;
	height: 22px;
	margin:0em 0;
	border:1px solid #bbb;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/* ---------------------------------------------------------------------------------------- gender radio */
#divRadio label
{
 	display: inline;
 	float:none;
}


/*--------------------------------------------------------------------------------------- sitemaps*/
.arrow {
    background-image: url(../images/arrow.gif);
    background-repeat: no-repeat;
    padding:5px 0 5px 50px;
   
}
/*--------------------------------------------------------------------------------------- widget_about*/

.widget_about{
	padding:0 30px 10px 0;
}

/*--------------------------------------------------------------------------------------- energy level animate*/
#apDiv2 {
    position:absolute;
    width:200px;
    height:115px;
    z-index:1;
    left: 507px;
    top: 335px;
}
/*----------------------------------------------------------------------------------------- register symbol css*/
.font_register{
	font-family:Arial, Helvetica, sans-serif;
}
