<!--

	body {
		font: 100%/1.2 Verdana, Arial, Helvetica, sans-serif;
		margin: 0;
		padding: 0;
		/*background-color: #F5F7F8;*/
		background-color: #f9f9fb;
		color: #000;
	}

	/* ~~ Element/tag selectors ~~ */
	ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
		padding: 0;
		margin: 0;
	}
	h1, h2, h3, h4, h5, h6, p {
		margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
		padding-right: 15px;
		padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	}
	h1 { font-size:116%; }
	a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
		border: none;
	}

	/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
	a:link {
		color:#414958;
		text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
	}
	a:visited {
		/* color: #4E5869; */
		color: #CCCCCC;
		text-decoration: none;
	}
	a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
		text-decoration: none;
	}

	/* ~~ needed ~~ */
	

	
	.note { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; line-height: 10px; color: #555 }
	.licence { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 85%;  color: #666 }
	.frm_fld { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 0.8em; line-height:0.8em; color: #555 }

	/* ~~ end needed ~~ */
	
	.errore {
		position: absolute;
		top: 110px;
		left: 90px;
		padding:36px; 
		width:460px;
		height: 90px;
		color:#c30;
		background-color: #ffc; filter:alpha(opacity=93); opacity:0.93;
		border-radius: 0px 0px 30px 0px;
		-webkit-border-radius: 0px 0px 30px 0px;
		-moz-border-radius: 0px 0px 30px 0px;
		-o-border-radius: 0px 0px 30px 0px;
		border-bottom: #aaa 1px solid;
		border-right: #aaa 1px solid;
		z-index:-1;
	}

	.found {
		font-size:1em;
		letter-spacing:1px;
		padding:20px 10px 3px 10px;
		margin:0;
		font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
		font-style: normal;
		color: #060;
		border-bottom:#f00 1px dotted;
	}

	#share  {
	position:fixed;
	top:31px;
	left:14px;
	}

	/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
	.container {
		width: 100%;
		min-width: 70px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
		margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
		overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
	}

	.header {
		position: fixed;
		background: #dac6b5;
		padding: 0;
		height: 40px;
		width:100%;
		z-index:1;
	}

	.subttl  {
		font-family:Verdana,Arial,Helvetica,sans-serif;
		font-size:12px;
		line-height:12px;
		color:#333;
		border-bottom:		#ccc 1px solid;
		background-color:	#fff;
		position:absolute;
		top:50px;
		left: 130px;
		z-index:4;
		padding: 3px 4px;
	}

	.editbox { display:inline; background-color:#fff; font-size:10px; border-top:#999 1px solid; border-right:#555 1px solid; border-bottom:#555 1px solid; border-left:#999 1px solid; padding: 0px 2px 1px 3px; margin:3px 2px 3px 1px; }

	.logo {
		background-color: #888;
		width: 115px;
		display:block;
		padding: 13px 14px 13px 6px;
	}
	
	.logo a:hover {
		position:absolute;
		top:0px;
		left: 0px;
		background-color: #3B6BAF;
		padding: 13px 6px 13px 6px;
	}

	.logodate {
		height: 27px;
		font-family:"Lucida Grande", Verdana, Sans-serif;
		font-size:0.7em;
		line-height: 0.6em;
		padding: 13px 10px 0px 13px;
		text-align: center;
		z-index:3;
	}

	.claim {
		position: relative;
		top: -26px;
		left: 140px;
		font-family:"Lucida Grande", Verdana, Sans-serif;
		font-size:0.8em;
		font-style:italic;
		letter-spacing:7px;
		line-height:12px;
		z-index:1;		
	}
	
	.user {
		position: fixed;
		top: 9px;
		left: 147px;
		font-family:"Lucida Grande", Verdana, Sans-serif;
		font-size:0.9em;
		font-style:bold;
		letter-spacing:4px;
		line-height:0.9em;
		z-index:2;
		/*background-color: #dac6b5; */
		padding: 2px 2px 0 2px;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		-o-border-radius: 6px;
	}
	
	.post {
		margin: 10px;
		padding: 0;
		padding-bottom: 30px;
		background-color: white;
		border-bottom: #c00 1px solid;
		border-radius: 6px 6px 0 0;
		-webkit-border-radius: 6px 6px 0 0;
		-moz-border-radius: 6px 6px 0 0;
		-o-border-radius: 6px 6px 0 0;
	}
	
	.post p {
		margin-top: 20px;
	}
	
	.ttl {
		margin-right: 0;
		padding: 4px 150px 6px 12px;
		width: auto;
		background-color: #9f9b9b;
		color:#f1f1f1;
		font-size:1.06em;
		line-height:1em;
		font-family:"Lucida Grande", Verdana, Sans-serif;
		font-weight:bold;
		border-radius: 6px 6px 0 0;
		-webkit-border-radius: 6px 6px 0 0;
		-moz-border-radius: 6px 6px 0 0;
		-o-border-radius: 6px 6px 0 0;
	}
	
	.ttl a:link {
		color:#FFF;
	}
	
	.ttl a:visited {
		color:#3B6BAF;
	}
	
	.ttl a:hover, .ttl a:active, .ttl a:focus {
		color:#FF0;
	}
	
	.act {
		position: relative;
		top: -37px;
		right: 0;
		padding: 1px 4px 1px 6px;
		margin: 0;
		width: auto;
		background-color: #FFF;
		color:#F00;
		float: right;
		font-size:0.96em;
		font-family:"Lucida Grande", Verdana, Sans-serif;
		font-weight:normal;
		border-radius: 6px 0 0 0;
		-webkit-border-radius: 6px 0 0 0;
		-moz-border-radius: 6px 0 0 0;
		-o-border-radius: 6px 0 0 0;
	}
	
	.act a:link {
		color:#F00;	
	}
	
	.act a:visited {
		color:#500;	
	}
	
	.act a:hover, .act a:active, .act a:focus {
		color:#3B6BAF;
	}
	
	.ftr {
		position: relative;
		bottom: 10px;
		right: 0px;
		padding: 2px  12px  2px  10px;
		margin: 11px 0 0 0;
		width: auto;
		background-color: #eee;
		color:#600;
		float: right;
		font-size:0.8em;
		border-radius: 6px 0 0 0;
		-webkit-border-radius: 6px 0 0 0;
		-moz-border-radius: 6px 0 0 0;
		-o-border-radius: 6px 0 0 0; 
	}
	
	.element_b {
		position: relative;
		right: 0px;
		padding: 1px  12px  1px  10px;
		/* background-color: #eee; */
		color:#F00;
		width: auto;
		text-align: right;
		font-size:0.9em;
		margin: -16px 0 -16px auto;
		border-radius: 6px 0 0 6px;
		-webkit-border-radius: 6px 0 0 6px;
		-moz-border-radius: 6px 0 0 6px;
		-o-border-radius: 6px 0 0 6px;
		-o-border-radius: 6px 0 0 6px;
	}
	
	
	a:link { color:#660000; text-decoration: none; }
	a:visited { color: #550000; text-decoration: none; }
	a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
		/* background-color:#fffbd8; */
		color:#3B6BAF;
		text-decoration: none;
	}
	
#sharethis_0 {
	position: fixed;
	left: 6px;
	top: 50px;
}
	

	.sidebar1 {
		position: fixed;
		top: 40px;
		float: left;
		width: 121px;
		margin-top: 0px;
		padding: 0;
		z-index: 0;
	}

	.content {
		position: absolute;
		top: 7%;
		bottom: 33%;
		left: 7%;
		right: 23%;
		width: 70%;
		height: 50%;
		float: left;
		padding: 40px 40px 80px 40px;
		vertical-align: middle;
	}

	.sidebar2 {
		position: fixed;
		top: 0px;
		float: left;
		right: 0;
		width: 209px;
		height: auto;
		margin: 0;
		padding: 0;
		background: url(http://netcells.net/uz/up/000177700/menu_user_bg.png) top right repeat-y;
		z-index:5;
	}
	
		.sidebarline {
		position: fixed;
		top: 40px;
		right: 0;
		width: 209px;
		height: auto;
		margin: 0;
		padding: 0;
		border-top:#999 1px solid;
		z-index:3;
	}
	
	.url {
		font-size:1.06em;
		/* position: relative;
		right: 0px;
		width: 360px;
		text-align: right;
		background:#f9fdff;
		color:#333;
		 border-bottom:#444 1px solid; 

		padding:1px 30px 2px 50px;
		border-radius: 8px 0 0 8px;
		-webkit-border-radius: 8px 0 0 8px;
		-moz-border-radius: 8px 0 0 8px;
		-o-border-radius: 8px 0 0 8px; */
	}
	
	a.right-thumb {
		border-top: #ddd 1px solid;
		border-left: #ddd 1px solid;
		border-right: #999 1px solid;
		border-bottom: #999 1px solid;
		margin: 1px;
		padding: 0;
		display: block;
		width: 32px;
		height: 32px;
		float: left;
		clear: right;
	}

	.menubottom {
		position: fixed;
		right: 0;
		width: 209px;
		background: url(http://netcells.net/uz/up/000177700/menu_user_fade.png) top right no-repeat; height:150px;
		z-index: 2;
	}



	p.choice {
		background: #CCC;
		padding: 10px 20px 10px 20px;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		-o-border-radius: 6px;
	}

	a.choice {
			
	}

	p.choice:hover {
		background: #F93;
	}	

	.text {
		font-size:0.8em;
		width: 90%;
	}

	p.link {
		font-size:0.8em;
		width: 90%;	
	}

	.links { 
	font-family: Verdana, Arial, Helvetica, sans-serif; color:#4c4c60; font-size:11px; line-height:12px; letter-spacing:0.03em; 
	margin:2px 0;
	padding: 2px 6px;
	border-bottom: #eee 1px solid;
	}

	/* ~~ This grouped selector gives the lists in the .content area space ~~ */
	.content ul, .content ol { 
		padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
	}

	/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
	
	ul.nav {
		font-size:.7em;
		letter-spacing: .5em;
		background:#f2ebd6;
		color:#333;
		position: relative;
		right:60px;
		width: 560px;
		list-style: none; /* this removes the list marker */
		border-top: 1px solid #999; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
		margin-bottom: 2px; /* this creates the space between the navigation on the content below */
	}
	ul.nav li {
	position: relative;
		right:0px;
		width: 560px;
		border-bottom: 1px solid #999; /* this creates the button separation */
		border-left: 1px solid #F00;
	}
	ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
		position: relative;
		right:0px;
		width: 560px;
		padding: 4px 50px 5px 14px;
		display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
		text-decoration: none;
		background: #f2ebd6;
		color: #000;
	}
	ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
		background: #F93;
		color: #FFF;
	}

	/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
	ul.s_menu_1 {
		font-size:0.8em;
		letter-spacing: .1em;
		list-style: none; /* this removes the list marker */
		margin-bottom: 0px; /* this creates the space between the navigation on the content below */
	}
	ul.s_menu_1 li {
		border-bottom: 1px solid #EEE;
	}
	ul.s_menu_1 a, ul.s_menu_1 a:visited { 
		padding: 3px 5px 3px 11px;
		display: block; 
		text-decoration: none;
		background: #AAA;
		color: #000;
	}
	ul.s_menu_1 a:hover, ul.s_menu_1 a:active, ul.s_menu_1 a:focus { 
		background: #F63;
		color: #FFF;
		margin-bottom: 0px;
	}

	/* ~~ miscellaneous float/clear classes ~~ */
	.fltrt { 
		float: right;
		margin-left: 8px;
	}
	.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
		float: left;
		margin-right: 8px;
	}
	.clearfloat { 
		clear:both;
		height:0;
		font-size: 1px;
		line-height: 0px;
	}

	.footer { position:fixed; right: 0px; bottom: 0px; /* width:*/ 33%; height: 16px; margin-bottom: 0; 
	padding: 4px 6px 3px 6px; repeat-x; z-index: 5; font-size:0.7em; line-height: 1.2em; text-align: right; 
	background-color:#fff; filter:alpha(opacity=82); opacity:0.82;
		border-radius: 6px 0 0 0;
		-webkit-border-radius: 6px 0 0 0;
		-moz-border-radius: 6px 0 0 0;
		-o-border-radius: 6px 0 0 0;
	}

	#headshadow { position:absolute; left: 0px; top: 40px; width: 100%; margin: 0px; z-index:1;  /* background: url(http://www.netcells.net/_graphics/headshadow.png) repeat-x; z-index: 100; */ }

	/*  from NC 1009 */
	
	.thumb  {
		border: #888 1px solid;
	padding:1px;
	margin:1px;
	}

	.choice { 
	display:block; width:420px;
	background-color:#FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif; font-size:1.06em; line-height:1.8em; font-style:italic; text-align:right;
	position:relative;
	right:0;
	border-right:		#888 1px solid;
	border-bottom:		#888 1px dotted;
	padding: 1px 5px 1px 5px;
	margin-top: 0;
	margin-bottom: 11px;
	}

	.form_uz_data  {
	width:				95%;
	max-width:770px;
	border-top:			#dadada 1px solid;
	border-right:		#888 1px solid;
	border-bottom:		#888 1px solid;
	border-left:		#dadada 1px solid;
	background-color:	#fafafa;
	font-family:Verdana,Arial,Helvetica,sans-serif; font-size:0.84em; line-height:1.1em; color:#777; font-style:italic; 
	padding:			33px 18px 8px 34px;
	position:inherit;
	}
	
	
	#sname, #ct_email, #mobile, #web, #ct_msg {
		width: 200px;
		text-align: left;
	}
	
	/* */

/* body { font: 96%/1.4  Verdana, Arial, Geneva, Helvetica, sans-serif; margin: 0; padding: 0; color: #000; }

	.container { width: 100%; max-width: 1260px; min-width: 780px; margin: 0 auto; }
	.content { width:82%; margin: 60px 0; padding: 10px 35px; }

	.header {
	padding: 15px 18px 0 24px; margin: 0;	
	height:30px; border-left: 1px solid red;
	font-family:Arial, Geneva, sans-serif; letter-spacing:2px; color:#333; font-size:1.1em; line-height: 12px;
	position:absolute; top:0; left:22px; z-index:2; }

	.menu_wrapper { margin:0; width:209px; position:absolute; top:50px; right:0; z-index:3;}
	.menu_user { background: url(http://netcells.net/uz/up/000177700/menu_user_bg.png) top right repeat-y;
	margin:0; padding: 4px 0 0 15px; text-align: right; }
	.menu_user_2 { background: url(http://netcells.net/uz/up/000177700/menu_user_fade.png) top right no-repeat; height:150px; }

	.nc_logo { margin:0 3px; position:absolute; top:16px; right:0; z-index:3; }
	.nc_menu { margin:0; position:absolute; top:38px; right:0; z-index:3; }

	.footer { position:fixed; bottom:0px; left:0px; z-index:3; padding: 5px 12px 4px 12px;
	font-size:0.77em; letter-spacing:1px; color:#333;
	background-color: #fff; filter:alpha(opacity=80); opacity:.85;  }  */

	ul, ol, dl { padding: 0; margin: 0; }
	h1, h2, h3, h4, h5, h6, p { margin-top: 0; padding-right: 15px; padding-left: 15px; }
	a img { border: none; }
	

	ul.nav a:hover, ul.nav a:active, ul.nav a:focus { color: #FFF; }

	ul.nav2 { list-style: none;  margin:0; padding:5px 20px 0 20px; text-align: right; width: 190px; }
	ul.nav2 li { font-size:0.75em; line-height:0.8em; letter-spacing:1px; margin-bottom: 3px; border-bottom:#999 1px solid; background: #eaf9ff; filter:alpha(opacity=90); opacity:.90;
		/* border-radius: 6px 0 0 0;
		-webkit-border-radius: 6px 0 0 0;
		-moz-border-radius: 6px 0 0 0;
		-o-border-radius: 6px 0 0 0; */
		
		background-color: #ebcf9e;
	}
	ul.nav2 a, ul.nav a:visited { padding: 4px 20px 4px 4px; display: block; width:175px; 
	}
	ul.nav2 a:hover, ul.nav a:active, ul.nav a:focus {  color: #fff; background-color: #bbb; }

	ul.nav3 { list-style: none; margin:0; padding:10px 0 0 20px; text-align: line-height:0; text-align: right; width: 178px;}
	ul.nav3 li { line-height:0.95em; letter-spacing:1.05px; }
	ul.nav3 a:hover, ul.nav a:active, ul.nav a:focus { color: #fff; background: #ff6b72; }

	.fltrt {  
	float: right; margin-left: 8px; }
	.fltlft {
	float: left; margin-right: 8px; }
	.clearfloat { 
	clear:both; height:0; font-size: 1px; line-height: 0px; }

	.sharethis { margin:0; height:22px; position:absolute; top:47px; left:23px; z-index:3; }

	

	.comments { 
	padding:35px 52px 8px 22px;
	font-size:1.06em; width:590px; height:200px;
	background: url(http://netcells.net/uz/up/000177700/rate.png) top right no-repeat;
	position:absolute; top:92px; left:94px; z-index:1;
	}

	ul.transl { list-style: none; margin-bottom: 6px; }
	ul.transl li { border-top: 1px dotted #555; font-size:0.57em; line-height:0.7em; letter-spacing:1px; width:106px;}
	ul.transl a, ul.transl a:visited { padding: 1px 5px 2px 8px; text-align:right; color: #433; display: block; background: #f4e6da; }
	ul.transl a:hover, ul.nav a:active, ul.nav a:focus { background: #f9650d; color: #FFF; }

	.links { font-family: Verdana, Arial, Helvetica, sans-serif; color:#4c4c60; font-size:11px; line-height:12px; letter-spacing:0.03em; margin:2px 0; padding: 2px 6px; border-bottom: #eee 1px solid; } 

	.text_user { width:70%; padding: 30px 135px 10px 135px; margin: 0 auto 0 auto }
	.note { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; line-height: 10px; color: #555555 }
	.subhead { font-family: "Trebuchet MS", Arial, Helvetica, Verdana, sans-serif; letter-spacing:1px; color:#333; background:#dfdfdf; width:98%; padding:3px 3px 3px 13px; border-left:#f00 1px solid; 
		border-radius: 0 0 13px 0;
		-webkit-border-radius: 0 0 13px 0;
		-moz-border-radius: 0 0 13px 0;
		-o-border-radius: 0 0 13px 0; }
	.sys_inf { font-family: Verdana, Arial, Helvetica, sans-serif; font-size:0.76em; line-height:9pt; letter-spacing:1px; color:#777; font-style:italic; }

	.thumbs-right { float: right; clear: left; width: 186px; padding: 2px 2px 2px 4px;}

	.credo { width: 100%; padding: 0; margin: 0; line-height: 30px; background-color: #DFDFDF; margin-top: 12px;
	font-family: Georgia, "Times New Roman", Times, serif; color:#333; font-size:0.9em; letter-spacing:1px; }
		
	.purchase { position: fixed; left:0; top:68px; max-width:397px; height:143px; margin:0; padding: 0 182px 3px 8px; background: url(http://netcells.net/uz/up/000177700/buy.png) no-repeat; z-index:2; }

	.translate { position: absolute; left:0; top:98px; margin:0; padding: 0 11px 3px 0; z-index:2; }

	.cart { background-color: #F1F1F1; font-size: 11px; padding: 1px 1px 2px 1px; width:120px; position:absolute; top:161px; left:0;}
	.cart div.image-holder { float: left; clear: right:}
	.cart div.action-holder { margin-left: 3px; font-size: 16px; text-align: right; padding-right: 2px; }
	.cart-item { background-color: #D1D1D1; padding: 2px; float: left; clear: right; width: 50px; margin: 2px; }

	.add-form { margin: 8px 0 8px 0; } 
	
	.imginf {
		position: absolute;
		top: 80px;
		left: 0;
		width: 20px;
		height: 20px;
		text-indent: 20px;
		line-height: 100px;
		background: url(http://alphacell.net/_graphics/ico_i.gif) top left no-repeat;
		overflow: hidden;
		border-radius: 10px 0px 10px 10px;
		-webkit-border-radius: 10px 0px 10px 10px;
		-moz-border-radius: 10px 0px 10px 10px;
		-o-border-radius: 10px 0px 10px 10px;
	}
	
	.imginf:hover {
		position: absolute;
		top: 80px;
		left: 0;
		width: 340px;
		height: auto;
		text-indent: 0px;
		font-size: 0.8em;
		line-height: 1.6em;
		color: #333;
		background:  url(http://alphacell.net/_graphics/ico_i_a.png) top left no-repeat;
		background-color: #eee; filter:alpha(opacity=80); opacity:.80;
		padding: 15px 20px 20px 48px;
		border-radius: 10px 0px 30px 0px;
		-webkit-border-radius: 10px 0px 30px 0px;
		-moz-border-radius: 10px 0px 30px 0px;
		-o-border-radius: 10px 0px 30px 0px;
	}
	
	#arr_R {
		position: absolute;
		top: 105px;
		left: 0;	
	}
	
	#arr_L {
		position: absolute;
		top: 125px;
		left: 0;	
	}

-->