/*
	:: general.css ::
	
	Elemente generale de tipografie.
	
	Copyright (c) 2010 Bits&Coffee SRL. All Rights Reserved. 
*/

/*------------------------------------------------------------------------------
	General
	- display/float
	- left/top
	- width/height
	- padding/border/margin
	- background
	- font-/color
------------------------------------------------------------------------------*/

*
{
	border: 0 none;
	outline: none;
}

/*
	In body avem setari generale care vor fi mostenite de toate elementele, cum
	ar fi: p, ul, table etc.
*/

body
{
	background-color: white;
	font-family: verdana, arial, sans-serif;
	font-size: 12px;
	color: #333333;
	line-height: 1.6em;
}

p
{	
	margin: 0 0 20px 0;
	line-height: 1.6em;
	color: #333333;
}

h1, h2, h3, h4, h5
{
	margin: 0 0 20px 0;
	color: #666666;
}

h1 { font-size: 16px; }
h2 { font-size: 15px; }
h3 { font-size: 14px; }
h4 { font-size: 12px; }

ul
{
	/* margin: 0 0 20px 0 - Nu merge in IE7! */
	margin-top: 0;
	margin-bottom: 20px; 
}

table
{
	margin: 0 0 20px 0;
}

a
{
	color: #6699ff;
	text-decoration: none;	
}

a:hover
{
	text-decoration: underline;
}


/* Input */

input, textarea
{
	color: #464748;
	padding: 3px 6px;
	border: solid 1px #D7D7D7;
}
input:hover, textarea:hover { border: solid 1px #888866; }


/* Center */

.center
{
	margin: 0 auto;
}

.center-text
{
	text-align: center;
}


/* Text Size */

.text-small
{
	font-size: 10px;
}

.text-verysmall
{
	font-size: 9px;
}


/* Content Box */

.contentbox
{	
	width: 258px;
	height: 258px;
	padding: 20px;
	border: 1px #dddddd solid;
	margin: 0 0 20px 0;
	
	background-color: #eeeeee;
	text-align: left;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}

.contentbox.blue
{
	background-color: #ddddff;
	border-color: #ccccff;
}

.contentbox.red
{
	background-color: #ffdddd;
	border-color: #ffcccc;
}

.sidebox
{
	background-color: #eeeeee;
	width: 198px;
	height: 198px;
	padding: 20px;
	border: 1px #dddddd solid;
	margin: 0 30px 20px 30px;
	
	text-align: left;	
	font-size: 11px;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.sidebox h4
{
	margin-bottom: 5px;
}


/* List, Link */

.link-bullet
{
	width: 16px;
	height: 16px;
	background: transparent url(../../image/template/link-bullet.gif) no-repeat scroll 0 0;
	margin: 0;
	padding: 0 0 0 20px;
	/*(white-space:nowrap;*/
}

.link-soft
{
	color: #999999;
}

.list-arrow
{
	list-style-image: url(../../image/template/list-arrow.gif);
}


/* Tables */

table.table-gray
{
	width: 100%;
	border-left: solid 1px #dddddd;
	border-top: solid 1px #dddddd;
	border-collapse: collapse;
}
table.table-gray tr td
{
	text-align: center;
	border-bottom: solid 1px #dddddd;
	border-right: solid 1px #dddddd;
	padding: 6px;
}
table.table-gray tr td.align-left { text-align: left; }
table.table-gray tr.header td
{
	font-weight: bold;
	text-align: center;
	background-color: #eeeeee;
	background-image: url(../../image/template/table-gray.gif);
	background-repeat: repeat-x;
	background-attachment: scroll;
	background-position: left bottom;
	border-bottom: solid 1px white;
	padding: 8px 6px;
}


table.contact
{
	border-collapse: collapse;
	border-spacing: 0;
	border-left: 1px solid #dddddd;
	border-top: 1px solid #dddddd;
	width: 100%;
}
table.contact td
{
	border-bottom: 1px solid #dddddd;
	border-right: 1px solid #dddddd;
	padding: 5px;
}
table.contact td.title
{
	background-color: #eeeeee;
	font-weight: bold;
}


/* Buttons */

.button-try a
{	
	display: block;
	width: 150px;
	height: 40px;	
	border: 0 none;
	background: transparent url(../../image/template/buttons.png) repeat scroll 0 0;
}
.button-try a:hover { background-position: 0 -40px; }

.button-buy a
{	
	display: block;
	width: 150px;
	height: 40px;
	border: 0 none;
	background: transparent url(../../image/template/buttons.png) repeat scroll -150px 0;
}
.button-buy a:hover { background-position: -150px -40px; }

.button-video a
{	
	display: block;
	width: 150px;
	height: 40px;
	border: 0 none;
	background: transparent url(../../image/template/buttons.png) repeat scroll -300px 0;
}
.button-video a:hover { background-position: -300px -40px; }


.button100 a
{
	display: block;
	width: 100px;
	height: 30px;
	background: transparent url(../../image/template/buttons-simple.png) repeat-x scroll 0 -30px;

	color: #666666;
	text-decoration: none;
}

.button150 a
{
	display: block;
	width: 150px;
	height: 30px;
	background: transparent url(../../image/template/buttons-simple.png) repeat-x scroll 0 0;
	
	color: #666666;
	text-decoration: none;
}


/* Quotes */

.quote
{
	margin: 0 0 20px 0;
	min-height: 60px;
    background: transparent url(../../image/template/quote.gif) no-repeat scroll left top;
}

.quote .text
{
	text-align: justify;
	margin-bottom: 10px;
	color: #666666;
	font-style: italic;
}

.quote .source
{
	text-align: right;
}


/* Tag-Cloud */

.tag-cloud
{
	margin: 0;
}
.tag-cloud a.tag1 { font-size: 18px; }
.tag-cloud a.tag2 { font-size: 16px; }
.tag-cloud a.tag3 { font-size: 14px; }
.tag-cloud a.tag4 { font-size: 12px; }
.tag-cloud a.tag5 { font-size: 10px; }

.tag-cloud a.tag1, .tag-cloud a.tag2, .tag-cloud a.tag3, .tag-cloud a.tag4, .tag-cloud a.tag5
{
	display: inline;
	color: #505050;
	line-height: 22px;
	padding: 0 1px;
	text-decoration: none;
}

.tag-cloud a:hover.tag1, .tag-cloud a:hover.tag2, .tag-cloud a:hover.tag3, .tag-cloud a:hover.tag4, .tag-cloud a:hover.tag5
{
	color: white;
	background: #88bbff;
}


/* Dividers */

.spacer
{
	height: 20px;
	clear: both;
}

hr
{
	height: 1px;
	border: 0 none;
	margin: 0 0 20px 0;		
	clear: both;
	background-color: #dddddd;
}

hr.thick
{
	height: 2px;
}


/* Logos */

.logo-moneyback
{
	display: block;
	width: 150px;
	height: 150px;
	margin-bottom: 20px;
	background: transparent url(../../image/template/logo-moneyback.png) no-repeat scroll 0 0;
}
.logo-moneyback:hover
{
	background: transparent url(../../image/template/logo-moneyback.png) no-repeat scroll -150px 0;
}


/* Award */

.award-clean a
{
	display: block;	
	width: 120px;
	height: 82px;
	margin-bottom: 20px;	
	background: transparent url(../../image/template/award-clean.png) no-repeat scroll 0 0;
}
.award-clean a:hover
{
	background: transparent url(../../image/template/award-clean.png) no-repeat scroll 0 -82px;
}


/* Icon Header */

.text-header
{
	width: 100%;
	height: 40px;
	margin: 0 0 20px 0;
}

.text-header img
{
	float: left;
	margin: 0;
}

.text-header h2
{
	padding: 4px 0 0 35px;
	margin: 0;
}


/* Wrapper */

.wrapper
{
	width: 100%;
	margin-bottom: 20px;
}

.wrapper .left280
{
	float: left;
	width: 280px;
}

.wrapper .right280
{
	float: right;
	width: 280px;
	margin: 0 0 0 40px;
}

.wrapper .left450
{
	float: left;
	width: 450px;
}

.wrapper .right450
{
	float: right;
	width: 450px;
	margin: 0 0 0 40px;
}

.wrapper .left200
{
	float: left;
	width: 200px;
}

.wrapper .right360
{
	float: right;
	width: 360px;
	margin: 0 0 0 40px;
}


/* Screenshots */

.wrapper .screenshot160
{
	float: left;
	width: 160px;
	height: 120px;
	margin-left: 20px;
}
.wrapper .screenshot160:first-child { margin-left: 0; }

.wrapper .screenshot400
{
	width: 400px;
	height: 280px;
}

/* Email */

.email
{
	width: 162px;
	height: 12px;
	background: transparent url(../../image/template/emails.gif) no-repeat scroll 0 0;
}
.email.contact-bc	{ background-position: 0 0px; }
.email.support-bc	{ background-position: 0 -12px; }
.email.press-bc		{ background-position: 0 -24px; }
.email.contact-bp	{ background-position: 0 -36px; }
.email.support-bp	{ background-position: 0 -48px; }


/* Tooltip */

.tooltip
{
	width: 280px;
	height: 138px;
    display: none;
	font-size: 11px;
    color: #fff;
	text-align: left;
    background: url(../../image/template/black_tooltip_big.png);
	padding: 40px 30px 20px 30px;
	z-index: 2;
}

#new-home-text, #new-pro-text,
#home-text, #pro-text
{
	cursor: pointer;
}


/* Treelist */

#treelist, #treelist ul, #treelist li
{
	margin: 0;
	padding: 0;
	list-style: none;
}
#treelist li
{
	width: 100%;
	background: url(../../image/template/treelist-line.gif) repeat-y scroll 0 0;
	line-height: 20px;
	margin-top:	1px;
	position: relative;
}
#treelist li .left-line
{
	width: 100%;
	display: block;
	background: url(../../image/template/treelist-line.gif) repeat-y scroll 0 0;
	position: relative;
	top: 5px;
}
#treelist li.last { 	background-image: none !important; }
/* IE leaves a blank space where span is added so this is to avoid that */
* html #treelist li
{
	float: left;
	display: inline;
}
#treelist li a{ padding-left: 28px; }
#treelist li span
{
	float: left;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 13px;
	height: 13px;
	cursor: auto;
	font-size: 0;
}
#treelist li span, #treelist li span.collapsed { background: url(../../image/template/treelist-btn.gif) no-repeat scroll 0 -20px; }
#treelist li span.expanded { background: url(../../image/template/treelist-btn.gif) no-repeat scroll -13px -20px; }
/* sub levels */
#treelist li ul { margin-left: 28px; }
#treelist li ul li
{
	background: url(../../image/template/treelist-line2.gif) repeat-y scroll 0 0;
}
#treelist li ul.last
{
	background: none transparent !important;
}
#treelist li li{
	background: url("../../image/template/treelist-line2.gif") repeat-y scroll 0 0 transparent;
}
#treelist li li.last
{
	background: url(../../image/template/treelist-btn.gif) no-repeat scroll 0 0 !important;
}
/* etc. */
/* float fix */
#treelist:after, #treelist ul:after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#treelist, #treelist ul { display: block; }
#treelist, #treelist ul { min-height: 1%; }
* html #treelist, * html #treelist ul { height: 1%; }
#treelist ul { display: none; }