
/** =====
00._reset.css
=====
**/
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,

/* Eric Meyer's Reset Stylesheet: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */

small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
    outline: 0;
}
body {
    line-height: 1;
    color: black;
    background: white;
}
ol, ul {
    list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}

strong {
	font-weight:bold;
}

/* custom fonts */
@font-face {
    font-family: 'BoomTankRegular';
    src: url('boomtankpg-webfont.eot');
    src: url('boomtankpg-webfont.eot?#iefix') format('embedded-opentype'),
         url('boomtankpg-webfont.woff') format('woff'),
         url('boomtankpg-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'GremlinsRegular';
    src: url('gremlins-webfont.eot');
    src: url('gremlins-webfont.eot?#iefix') format('embedded-opentype'),
         url('gremlins-webfont.woff') format('woff'),
         url('gremlins-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;

}
/** =====
01.body.css
=====
**/
body {
	min-width: 1000px;
	min-height: 100%;
	background: url('../img/bg.jpg') no-repeat center top;
	color: #323E43;
	padding:0px;
	margin:0px;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;

	cursor: default;
}

a {
	color: #cf2552;
	text-decoration: none;
}

a:hover {
	color: #ff2552;
}

em {
	font-style: italic;
}


.clear {
	clear: both;
}

.relative {
	position: relative;
}

.hidden {
	display: none;
}

.center {
	text-align:center;
}

hr.page_end {
	background: url('../img/hr.jpg') no-repeat center center;
	width: 600px;
	height: 70px;
	margin: 0 auto;
	
	border:none;
}

hr.aside_end {
	background: url('../img/hr_aside.jpg') no-repeat center center;
	width: 270px;
	height: 41px;
	margin: 0 auto;
	
	border:none;
}
/** =====
02.containers.css
=====
**/
/* header blocks */
#header {
	position: relative;
	top: 0px;
	left: 0px;
	max-width: 1200px;
	margin: 0 auto;
}

#site {
	position:relative;
	padding: 0px 12px;
/*	max-width: 1200px;*/
	width:964px;
	margin: 40px auto 80px auto;
	background:url('../img/site_bg.png') repeat-y 0px 0px;
}

#site #site_header {
	position:absolute;
	top: -40px;
	left: 0px;
	right: 0px;
	height: 40px;
	background:url('../img/site_bg_top.png') no-repeat 0px 0px;
}

#site #site_footer{
	position:absolute;
	bottom: -80px;
	left: 0px;
	right: 0px;
	height: 80px;
	background:url('../img/site_bg_bottom.png') no-repeat 0px 0px;
}

#nav {
/*	position:absolute;*/
	float:left;
	display:inline-block;
	left: 0px;
	top: 0px;
	width: 200px;
}

#aside {
/*	position:absolute;*/
	float:right;
	display:inline-block;
	right: 0px;
	top: 0px;
	bottom: 0px;
	width:340px;
	padding-right: 5px
}

#aside #aside_first {
	background:url('../img/aside_first.png') no-repeat;
	margin: -20px 0px;
	z-index: 400;
}

#content {
	margin: 5px;
}

#site:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
    }

.has_nav#content {
	margin-left: 210px;
}

.has_aside#content {
	margin-right: 350px;
}
/*
#content.has_nav { width: 740px; }
#content.has_aside { width: 790px; }
#content.has_nav.has_aside { width: 580px; }*/
/** =====
02.forms.css
=====
**/
input[type="text"], input[type="password"], textarea {
	background: #1E2222;
	border: 1px solid transparent;
	border-radius: 3px;
	line-height: 25px;
	height: 25px;
	margin-left: 20px;
	margin-top: 2px;
	padding: 0 26px 0 5px;

	margin-bottom: 8px;
	
	
	color: #F7F7F7;
}

select {
	background: #1E2222;
	border: 1px solid transparent;
	border-radius: 3px;
	line-height: 25px;
	height: 25px;
	margin-left: 20px;
	margin-top: 2px;
	padding: 0 0 0 5px;

	margin-bottom: 8px;
	
	
	color: #F7F7F7;
}

input[type="button"], input[type="submit"] {
	padding: 2px 30px 2px 20px;
	display:inline-block;
	
	color: black;
	font-weight:bold;
	text-shadow: 0px 1px 0px white;
	line-height: 20px;
	
	background: #afe9d7 url('../img/modules/link_btn.png') no-repeat center right;
	border: 1px solid white;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}

input[type="button"]:hover, input[type="submit"]:hover {
	background-color: #006785;
	color: white;
	text-shadow: 0px 1px 0px rgba(0,0,0,0.8);
}

.form_final {
	line-height: 22px;
	font-family: GremlinsRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-shadow: 0px 1px 0px white;
	
	text-align:center;
}

.form_final_txt {
	padding-top: 20px;
	line-height: 22px;
	font-family: Calibri, Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-shadow: 0px 1px 0px white;
	
	text-align:center;
}
/** =====
03.messages.css
=====
**/
.message {
	margin: 4px;
	padding: 10px 10px 10px 36px;
	background-position: 10px 11px !important;
	background-repeat:no-repeat !important;
	border: 1px solid;
	
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	
	font-weight:bold;
	text-shadow: 0px 1px 1px #fff;
	
	opacity: 0.9;
}

.message.ok {
	background: #D5FFCE url('../img/messages/ok.png');
	border-color: #9ADF8F;
	color: #556652;
}

.message.info {
	background: #DBE3FF url('../img/messages/info.png');
	border-color: #A2B4EE;
	color: #585B66;
}

.message.warn {
	background: #FFFBCC url('../img/messages/warn.png');
	border-color: #E6DB55;
	color: #666452;
}

.message.error {
	background: #FFCECE url('../img/messages/error.png');
	border-color: #DF8F8F;
	color: #665252;
}

/** =====
04.common.css
=====
**/
#content p {
	padding: 2px;
}

#content ol, #content ul {
    list-style-type: disc;
	margin-left: 30px;
	padding: 5px 0px;
}

#content ol {
	list-style: decimal;
}

#content strong {
	font-weight: bold;
}
/** =====
08.blocks.css
=====
**/
.block {
/*	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;*/

	padding: 5px;
	margin-bottom: 15px;
}


.block .title {
	text-align:center;
	text-shadow: 0px 1px 0px #ddd;
	padding-bottom: 5px;

	font-weight:bold;
}

.block .content {

}

.block .status {
	text-align:right;
	text-shadow: 0px 1px 1px #aaa;
}

#header .block {
	padding: 0px;
	margin:0px;
}

#content .block {
/*	background: url('../img/bg_content.png') repeat center center;
	-moz-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5), 0px 1px 1px rgba(255,255,255,0.5);
	-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5), 0px 1px 1px rgba(255,255,255,0.5);
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5), 0px 1px 1px rgba(255,255,255,0.5);*/
}

#content .block .title {
	background: transparent url('../img/section_title.png') no-repeat left 2px;
	background-color: rgba(0,0,0,0.1);
	height: 22px;
	
	padding: 2px;
	margin-bottom: 5px;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	
	text-align:left;
	text-indent: 50px;
	
	line-height: 22px;
	font-family: GremlinsRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-shadow: 0px 1px 0px white; /*rgba(255,255,255,0.5);*/
}

#nav .block {
/*	background: url('../img/bg_nav.png') repeat center center;
	-moz-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5), 0px 1px 1px rgba(255,255,255,0.5);
	-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5), 0px 1px 1px rgba(255,255,255,0.5);
	box-shadow: inset 1px 1px 2px rgba(0,0,0,0.5), 0px 1px 1px rgba(255,255,255,0.5);*/
}

#aside .block .title {
	background: transparent url('../img/section_title.png') no-repeat left -30px;
	font-family: BoomTankRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 22px;
	text-shadow: 1px 1px 0px rgba(255,255,255,0.7);
	margin: 0px -5px;
}
/** =====
08.blocks.header.css
=====
**/
#header_container {
	position:relative;
	height: 150px;
	clear:both;
}

#header_container > #hc_logo {
	display:inline-block;
/*	background-image:url('../img/header/logo.png');
	background-repeat: no-repeat;
*/	width: 150px;
	height: 80px;
	margin: 30px 5px 5px 30px;
	text-indent: -9000px;
	position: relative;
}

#header_container > #hc_logo a {
	display: block;
	width: 100%;
	height: 100%;
}

#header_container > #hc_nav {
	position: absolute;
	right: 10px;
	top: 45px;
	width: 330px;
}

#header_container > #hc_nav > #hc_nav_links {
	
}

#header_container > #hc_nav > #hc_nav_links > a {
	display:inline-block;
	width: 54px;
	height: 48px;
	margin-right: 5px;
}

#header_container > #hc_nav > #hc_nav_links > a > img {
	display:block;
	width: 48px;
	height: 48px;
	margin: 0 auto;
	background: url('../img/header/nav.png') no-repeat 0 0;
}
#header_container > #hc_nav > #hc_nav_links > a > span {
	display:block;
	text-align:center;
	font-size: 10px;
	font-family: Calibri, Arial, Helvetica, sans-serif;
}
#header_container > #hc_nav > #hc_nav_links > a:hover > span {
	opacity: 0;
}

#header_container > #hc_nav > #hc_nav_links > a#hc_link_box img { background-position: 3px 0px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_box:hover img { background-position: 3px -50px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_user img { background-position: -63px 0px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_user:hover img { background-position: -63px -50px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_tag img { background-position: -128px 0px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_tag:hover img { background-position: -128px -50px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_help img { background-position: -194px 0px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_help:hover img { background-position: -194px -50px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_contact img { background-position: -265px 0px; width: 54px; }
#header_container > #hc_nav > #hc_nav_links > a#hc_link_contact:hover img { background-position: -265px -50px; }



#header_container > #hc_nav > #hc_nav_text { padding-top: 10px; text-align:center; }
/** =====
08.blocks.mainmenu.css
=====
**/
/****************************
		MAIN MENU
****************************/
.block .mainmenu {
	position: relative;
	width: 1004px;
	height: 90px;
	margin: 0 auto;
	background: url('../img/header/mainmenu/mainmenu.png');
}

/* site logo */
.block .mainmenu div.menu_logo {
	position:absolute;
	width: 210px;
	height:60px;
	left: 15px;
	top: -30px;
	background-image:url('../img/header/logo.png');
	background-repeat: no-repeat;
	text-indent: -9000px;
}
.block .mainmenu div.menu_logo a {
	display: block;
	width: 100%;
	height: 100%;
}

/****************************
	MAIN MENU	LEVEL 0
****************************/

.block .mainmenu div.menu_level_0 {
	position: absolute;
	background: yellow url('../img/header/mainmenu/level_0_bg.png') no-repeat 0px 0px;
	right: 20px;
	top: 17px;
	width: 203px;
	height: 64px;
	
}
.block .mainmenu div.menu_level_0:hover {
	background-position: 0px -64px;
}

.block .mainmenu div.menu_level_0 a {
	display:block;
	display:table-cell;
	vertical-align:middle;
	width:203px;
	height:60px;
	padding: 2px 0px;
	line-height: 30px;
	text-align:center;

	font-family: BoomTankRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 30px;
	
	color:white;
	text-shadow: 0px 0px 5px rgba(0,0,0,0.7), 0px 0px 3px rgba(0,0,0,0.7);
}

/****************************
	MAIN MENU	LEVEL 1
****************************/

.block .mainmenu div.menu_level_1 {
	position:absolute;
	left: 230px;
	top: 17px;
	width: 525px;
	height: 24px;
	padding: 0px 0px 0px 5px;
}

.block .mainmenu div.menu_level_1 div {
	display:inline-block;
	height:20px;
	line-height: 20px;
	text-align:center;
	margin: 2px 0px;
}
.block .mainmenu div.menu_level_1 div a {
	display:block;
	line-height: 20x;
	padding: 0px 15px;
	min-width: 40px;
	color: white;
	background: #006785;
	background: rgba(0,103,133,0.8);
	
	font-family: Calibri, Arial, Helvetica, sans-serif;
	font-size: 12px;
	text-shadow: 0px 0px 5px rgba(255,255,255,0.7), 0px 0px 3px rgba(255,255,255,0.7), 0px 1px 0px rgba(0,0,0,0.5);
	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.block .mainmenu div.menu_level_1 div a:hover {
	background: #afe9d7;
	background: rgba(0,233,215,0.8);
	
	color:black;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.5);

}

.block .mainmenu div.menu_level_1 div a[href="#"] {
	background: transparent;
	
	cursor: default;
	
	color: white;
	text-shadow: 0px 0px 2px white;
}

.block .mainmenu div.menu_level_1 div a[href="#"]:hover {
	background:transparent;
}

/****************************
	MAIN MENU	LEVEL 2
****************************/

.block .mainmenu div.menu_level_2 {
	position:absolute;
	left: 18px;
	top: 44px;
	width: 750px;
	height: 40px;
	padding: 0px 5px;
}

.block .mainmenu div.menu_level_2 div.menu_level_2_splitter {
	display:inline-block;
	width: 3px;
	height: 36px;
	background:url('../img/header/mainmenu/level_2_bg.png') no-repeat center center;
	text-indent: -9000px;
	margin:0px 0px;
}
.block .mainmenu div.menu_level_2 div.menu_level_2_splitter:last-child {
	display:none;
}

.block .mainmenu div.menu_level_2 div {
	display:inline-block;
	height:36px;
	line-height: 36px;
	margin: 2px 0px;
	text-align:center;
}

.block .mainmenu div.menu_level_2 div a {
	display:block;
	line-height: 20x;
	padding: 0px 15px;
	min-width: 40px;
	color:black;
	text-shadow: 0px 1px 0px rgba(255,255,255,0.5);

	font-family: Calibri, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

.block .mainmenu div.menu_level_2 div a:hover {
	color: white;
	text-shadow: 0px 0px 10px rgba(255,255,255,0.7), 0px 0px 5px rgba(255,255,255,0.7), 0px 0px 3px rgba(255,255,255,0.7), 0px 1px 0px rgba(0,0,0,0.5);

}

/*
.block .mainmenu li {
	display:block;
	padding: 3px 0px;
	margin: 0 -4px;
}

.block .mainmenu li a {
	display:block;
	background: rgba(255,255,255,0.2);
	line-height: 24px;
	color: #434a52;
	padding: 0px 5px;
}
.block .mainmenu li a:hover {
	background: rgba(255,255,255,0.5);
}*/
/** =====
1000.module.info.css
=====
**/
#content .block .content h2 {
	background: transparent url('../img/section_title.png') no-repeat left 2px;
	background-color: rgba(0,0,0,0.1);
	height: 22px;
	
	padding: 2px;
	margin-bottom: 5px;
	
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	
	text-align:left;
	text-indent: 50px;
	
	line-height: 22px;
	font-family: GremlinsRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-shadow: 0px 1px 0px white; /*rgba(255,255,255,0.5);*/
}
/** =====
1000.module.inscriere.css
=====
**/
.inscriere_pentru {
	float: left;
	margin-left: 6px;
	position: relative;
	width: 297px;
}

.frame, .frame_img {
	background: url("../img/modules/frame.png") no-repeat scroll left top transparent;
	display: block;
	height: 137px;
	position: absolute;
	width: 295px;
}

.inscriere_pentru .txt {
	background: #d9d6cf;
	color: #5B554E;
	height: 100px;
	left: 1px;
	margin-top: 137px;
	margin: 137px 4px 0px 3px;
	padding: 7px 16px 25px;
	position: relative;
}

.inscriere_pentru .txt .txt_titlu {
	display: block;
	width: 240px;
	
	font-size: 16px;
	font-weight:bold;
	line-height: 20px;
	text-decoration: none;
	color: black;
}

.inscriere_pentru .txt > div {
	padding-top: 5px;
	line-height: 16px;
}

.inscriere_pentru .txt .link {
	position: absolute;
	right: 22px;
	bottom: 5px;
	height: 20px;
	padding: 2px 30px 2px 20px;
	display:inline-block;
	
	color: black;
	font-weight:bold;
	text-shadow: 0px 1px 0px white;
	line-height: 20px;
	
	background: #afe9d7 url('../img/modules/link_btn.png') no-repeat center right;
	border: 1px solid white;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
}
.inscriere_pentru .txt .link:hover {
	background-color: #006785;
	color: white;
	text-shadow: 0px 1px 0px rgba(0,0,0,0.8);
}

.inscriere_pentru .bottom_bar {
	background: url("../img/modules/bottom_bar.png") no-repeat scroll left top transparent;
	height: 20px;
	position: relative;
}




.inscriere_pentru.disabled  .txt {
	color: #999;
}

.inscriere_pentru.disabled .txt .txt_titlu {
	color: #555;
}

.inscriere_pentru.disabled .txt .link {
	background-color: #e2e2e2;
	
}.inscriere_pentru.disabled .txt .link:hover {
	background-color: #e2e2e2;
	color: black;
	text-shadow: 0px 1px 0px white;
}
/** =====
1000.module.listing.css
=====
**/
table.listing_table {
	font-family: Calibri, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin-top: 10px;
	width:100%;
	border-collapse:collapse;
}

.listing_table .listing_header {
	background: rgba(0,0,0,0.05);
	font-size: 13px;
	line-height: 20px;
	text-shadow: 0px 1px 1px #fff;
}

.listing_table .listing_item {
	line-height: 16px;
}

.listing_table .listing_item:hover {
	background: rgba(255,255,0,0.1);
}

/** =====
1000.module.parteneri.css
=====
**/
.partener {
	overflow:hidden;
	height: 120px;
	border-bottom: 1px dotted #e2e2e2;
	padding: 5px;
	margin-bottom: 5px;
}

.partener:hover {
	background: rgba(255,255,0,0.2);
	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

.partener h1 {
	margin-bottom: 10px;

	font-family: BoomTankRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-weight: bold;

	text-shadow: 1px 1px 1px #fff;
}

.partener_img {
	float:left;
	width: 300px;
	height: 100px;
	text-align:center;
}

.organizator {
	text-align:center;
	display:inline-block;
	
	width: 280px;
	
	padding: 20px 0px;
}

.organizator:hover {
	background: rgba(255,255,0,0.2);
	
	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
}

.organizator h1 {
	display:none;
}
/** =====
1000.module.stiri.css
=====
**/
.stiri_data {
	float: right;
	padding: 10px;
	
	text-shadow: 0px 1px 0px rgba(255,255,255,0.7);
}

.stire {
	background: #f2eed3;
	width: 604px;
	margin-left: -7px;
}

.stire_titlu {
	background: url('../img/modules/stiri/bg_top.png') no-repeat;
	
	height: 87px;
	width: 589px;
	
	margin-left: -3px;
	margin-bottom: -60px;
	
	padding: 15px 0px 0px 15px;
}

.stire_titlu a, .stire_titlu div {
	display:block;
	color: black;
	font-family: BoomTankRegular, Calibri, Arial, Helvetica, sans-serif;
	font-size: 18px;
	text-shadow: 0px 1px 0px white;

}

.stire_main {
	background: url('../img/modules/stiri/bg_bottom.png') no-repeat right bottom;

	padding: 15px;
	padding-bottom: 20px;
	min-height: 80px;
	
	line-height: 16px;
	
	margin-bottom: 10px;
}
/** =====
11.blocks.footer.css
=====
**/
#footer_links {
	text-align:center;
	line-height: 14px;
	margin: 3px 0px;
}

#footer_links a {
	color: #424E53;
}

#footer_links a:hover {
	color: #222E33;
	text-shadow: 0px 1px 1px #888;
}

#copyright {
	text-align: center;
	color: #727E83;
	line-height: 14px;
}
/** =====
500.cp.index.css
=====
**/
.cp_icons {
	margin-right: 270px;

	border: 1px solid transparent;
}

.cp_icon {
	display: inline-block;
	vertical-align: top;

	width: 90px;
	height: 110px;

	padding: 0px 5px;
	margin: 5px;
	text-align:center;
	font-size: 11px;

	border: 1px solid transparent;
}

.cp_icon img {
	display: block;
	margin: 3px auto;
}

.cp_icon:hover {
	text-shadow: 0px 0px 5px #000;
	cursor: pointer;
	color: black;
}

.cp_icon_empty {
	cursor: default !important;
}

.cp_info {
	position: absolute;
	right: 0px;
	top: 5px;
	bottom: 0px;
	width: 245px;
	padding: 5px;
	padding-left: 10px;

	border-left: 1px solid #e2e2e2;
}
/** =====
501.cp.pm.css
=====
**/
.cp_table {
	border-collapse:collapse;
}


.cp_table tr:nth-child(n+1) {
	border-bottom: 1px solid #f0f0f0;
}
.cp_table tr:nth-child(n+1):hover {
	background-color: rgba(200,200,255,1);
}

.cp_table tr:first-child {
	background: none;
	border-bottom: 1px solid #c0c0c0;
}
.cp_table tr:first-child:hover {
	background: none;
}

.cp_table td {
	vertical-align:middle;
}

.cp_table tr.cp_pm_no_messages {

}
.cp_table tr.cp_pm_no_messages:hover {
	background: none;
}

.cp_table tr.cp_pm_no_messages td {
	background: rgba(255,200,200,0.2);
	text-align:center;
	padding: 10px 2px;
}

.cp_pm_folder_new_0 { }
.cp_pm_folder_new_1 {  }

.cp_pm_folder_subject_new_0 { }
.cp_pm_folder_subject_new_1 { font-weight: bold; }

.cp_pm_head {
	padding-top: 10px;
}

.cp_pm_head table td {
	padding: 2px;
}

.cp_pm_txt {
	border: 1px solid #c0c0c0;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	padding: 2px 3px;
	text-align: left;
}

.cp_pm_body {
	min-height: 250px;
	border: 1px solid #c0c0c0;
	-moz-border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	border-radius: 4px 4px 4px 4px;
	-moz-box-shadow: inset 1px 1px 1px #e2e2e2;
	-webkit-box-shadow: inset 1px 1px 1px #e2e2e2;
	box-shadow: inset 1px 1px 1px #e2e2e2;
	padding: 5px;
	text-align: left;
}

.cp_pm_optiuni {
	text-align:right;
}
