#menu, #menu ul { 
 margin: 0; 
 padding: 0; 
 list-style: none; 
} 

#menu { 
 width: 100%; 
 margin: 67px auto; 

 background-color: #111; 
 background-image: -moz-linear-gradient(#444, #111); 
 background-image: -webkit-gradient(linear, left top, left bottom, from(#444), to(#111)); 
 background-image: -webkit-linear-gradient(#444, #111); 
 background-image: -o-linear-gradient(#444, #111); 
 background-image: -ms-linear-gradient(#444, #111); 
 background-image: linear-gradient(#444, #111); 
 -moz-border-radius: 6px; 
 -webkit-border-radius: 6px; 
 border-radius: 3px; 
 -moz-box-shadow: 0 1px 1px #777; 
 -webkit-box-shadow: 0 1px 1px #777; 
 box-shadow: 0 0px 0px #777; 
} 

#menu:before, 
#menu:after { 
 content: ""; 
 display: table; 
} 
#menu:after { 
 clear: both; 
} 
#menu { 
 zoom:1; 
} 

#menu li { 
 float: left; 
 border-right: 1px solid #222; 
 -moz-box-shadow: 1px 0 0 #444; 
 -webkit-box-shadow: 1px 0 0 #444; 
 box-shadow: 1px 0 0 #444; 
 position: relative; 
} 
#menu a { 
 float: left; 
 padding: 12px 30px; 
 color: #999; 
 text-transform: uppercase; 
 font: bold 12px Arial, Helvetica; 
 text-decoration: none; 
 text-shadow: 0 1px 0 #000; 
} 
#menu li:hover > a { 
 background: #09f;
 color: #fff;
} 
*html #menu li a:hover { /* IE6 only */ 
 color: #fafafa; 
} 

#menu ul { 
 margin: 20px 0 0 0; 
 _margin: 0; /*IE6 only*/ 
 opacity: 0; 
 visibility: hidden; 
 position: absolute; 
 top: 38px; 
 left: 0; 
 z-index: 9999; 
 background: #444; 
 background: -moz-linear-gradient(#444, #111); 
 background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #111),color-stop(1, #444)); 
 background: -webkit-linear-gradient(#444, #111); 
 background: -o-linear-gradient(#444, #111); 
 background: -ms-linear-gradient(#444, #111); 
 background: linear-gradient(#444, #111); 
 -moz-box-shadow: 0 -1px rgba(255,255,255,.3); 
 -webkit-box-shadow: 0 -1px 0 rgba(255,255,255,.3); 
 box-shadow: 0 -1px 0 rgba(255,255,255,.3); 
 -moz-border-radius: 3px; 
 -webkit-border-radius: 3px; 
 border-radius: 3px; 
 -webkit-transition: all .2s ease-in-out; 
 -moz-transition: all .2s ease-in-out; 
 -ms-transition: all .2s ease-in-out; 
 -o-transition: all .2s ease-in-out; 
 transition: all .2s ease-in-out; 
} 
#menu li:hover > ul { 
 opacity: 1; 
 visibility: visible; 
 margin: 0; 
} 
#menu ul ul { 
 top: 0; 
 left: 150px; 
 margin: 0 0 0 20px; 
 _margin: 0; /*IE6 only*/ 
 -moz-box-shadow: -1px 0 0 rgba(255,255,255,.3); 
 -webkit-box-shadow: -1px 0 0 rgba(255,255,255,.3); 
 box-shadow: -1px 0 0 rgba(255,255,255,.3); 
} 
#menu ul li { 
 float: none; 
 display: block; 
 border: 0; 
 _line-height: 0; /*IE6 only*/ 
 -moz-box-shadow: 0 1px 0 #111, 0 2px 0 #666; 
 -webkit-box-shadow: 0 1px 0 #111, 0 2px 0 #666; 
 box-shadow: 0 1px 0 #111, 0 2px 0 #666; 
} 
#menu ul li:last-child { 
 -moz-box-shadow: none; 
 -webkit-box-shadow: none; 
 box-shadow: none; 
} 
#menu ul a { 
 padding: 10px; 
 width: 130px; 
 _height: 10px; /*IE6 only*/ 
 display: block; 
 white-space: nowrap; 
 float: none; 
 text-transform: none; 
} 
#menu ul a:hover { 
 background-color: #0186ba; 
 background-image: -moz-linear-gradient(#04acec, #0186ba); 
 background-image: -webkit-gradient(linear, left top, left bottom, from(#04acec), to(#0186ba)); 
 background-image: -webkit-linear-gradient(#04acec, #0186ba); 
 background-image: -o-linear-gradient(#04acec, #0186ba); 
 background-image: -ms-linear-gradient(#04acec, #0186ba); 
 background-image: linear-gradient(#04acec, #0186ba); 
} 

#menu ul li:first-child > a { 
 -moz-border-radius: 3px 3px 0 0; 
 -webkit-border-radius: 3px 3px 0 0; 
 border-radius: 3px 3px 0 0; 
} 
#menu ul li:first-child > a:after { 
 content: ''; 
 position: absolute; 
 left: 40px; 
 top: -6px; 
 border-left: 6px solid transparent; 
 border-right: 6px solid transparent; 
 border-bottom: 6px solid #444; 
} 
#menu ul ul li:first-child a:after { 
 left: -6px; 
 top: 50%; 
 margin-top: -6px; 
 border-left: 0; 
 border-bottom: 6px solid transparent; 
 border-top: 6px solid transparent; 
 border-right: 6px solid #3b3b3b; 
} 
#menu ul li:first-child a:hover:after { 
 border-bottom-color: #04acec; 
} 

#menu ul ul li:first-child a:hover:after { 
 border-right-color: #0299d3; 
 border-bottom-color: transparent; 
} 
#menu ul li:last-child > a { 
 -moz-border-radius: 0 0 3px 3px; 
 -webkit-border-radius: 0 0 3px 3px; 
 border-radius: 0 0 3px 3px; 
}

/* General Style */
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, sub, sup, tt, var, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
center, u, b, i, marquee {
 margin: 0px;
 padding: 0px;
}
body { 
 margin:0 auto; 
 font-family:Arial, Century gothic,Tahoma,sans-serif;
 font-size:13px;
 background:#181a1c
 }
img {
 border:0;
 margin: 0 0;
 }
a {
 color: #09f;
 text-decoration: none;
 outline:none;
 }
a:visited {
 color: #09f;
 }
a:hover, a:active {
 color: #fff;
 text-decoration: none;
 }
h1,h2, h3, h4, h5, h6 {
 line-height:125%;
 font-weight: bold;
 }

h1 {
 font-size: 26px;
 } 
 
h2 {
 font-size: 21px;
 }
h3 {
 font-size: 19px;
 }
h4 {
 font-size: 17px;
 }
h5 {
 font-size: 15px;
 }
h6 {
 font-size: 13px;
 }
ul {
 list-style: square;
 }
blockquote {
 font-style: italic;
 color: #555;
 padding:10px;
 }
blockquote blockquote {
 color: #777;
 }
blockquote em {
 font-style: normal;
 }
.clear {
 clear:both;
 }
.reccont {margin:5px}
hr {border:none;height:1px;width:100%;background: #272727}
/* General Style */
 
/* The Outer cover */
#wrap {
 background:#000 url(/images/testbackg.png); background-attachment:no-fixed; background-repeat:no-repeat; background-position: top center;
 }
#wrapper {
 width:1000px;
 margin:0 auto;
}
#casing {
 padding:0px 0px 10px 0px;

 } 
 
/* Comments Style */
.cBlock1,.cBlock2 {
 color:#666;
 border-bottom: 1px solid #272727;
 font-size: 13px;
 margin: 2px 5px;
 overflow: hidden;
 padding: 2px 5px;
 overflow:hidden
}

#content .cBlock1, #content .cBlock2 {border:none}
#content .cMessage, #content .cAnswer {border-bottom: 1px solid #272727;padding:5px}
/* Comments Style */
 
/* The Header */

#top {
 height:;
 margin:auto;
 width:1000px;
 position:relative;
 
 }
 
 
#topbar{
 height:34px;
 display:block;
 padding:5px 0 0px 0px;
 font: 10px Arial,Tahoma,Century gothic,verdana, sans-serif;
 text-transform:uppercase;
 width:1000px;
 margin:0px auto;
 overflow:hidden;
 }
 

#catmenu
{
 color: #fff;
 width:980px;
 margin: 0px;
 padding: 0px 10px;
 float:left;
 line-height:34px;
 
}

#catmenu a, #catmenu a:link, #catmenu a:visited {
 color: #09f;
 font-weight: normal;
 padding: 0px 10px ;
 line-height:34px;
 text-shadow:1px 1px 5px #222;
 
}

#catmenu a:hover, #catmenu a:active{
 background:#;
 color: #fff;
 line-height:34px;
}

.topbackg
{
 background: #fff
}
 
.blogname {
 width:400px;
 font-family:Rockwell,Georgia,Century gothic,Verdana,Tahoma,sans-serif; 
 margin:20px 0 0 10px;
 float:left;

 }
.blogname h1 {
 font-size:32px;
 padding:25px 0 0px 0px;
 font-weight:normal;
 text-align:left;
 text-transform:uppercase;

 }
.blogname h1 a:link, .blogname h1 a:visited{ 
 color: #ddd; 
 display:block;
 margin:0px 0 0 0px;
 }
 
.blogname h1 a:hover { 
 color: #fff; 
 }
.blogname h2 {
 margin:0px 0px 0px 0px;
 font-size:16px;
 font-weight:normal;
 color: #fff; 
 text-align:left;
}
/* ------------------ */

/* The Search */

 
#search {
 width:210px;
 padding:2px 2px 0px 0px;
 margin:0px 0px 0px 0px;
 float:right;
 height:30px;
 display:inline;
}
#search form {
 margin: 0px 0px 0px 0px;
 padding: 0;
}

#search p {
 margin: 0;
 font-size: 85%;
}

#s {
 width:190px;
 margin:7px 0px 0px 2px;
 padding: 3px 5px;
 height:16px;
 border:none;
 font: normal 100% "Tahoma", Arial, Helvetica, sans-serif;
 color:#fff;
 float:left;
 border:none;
 background:transparent;
 display:inline;
}

input#searchsubmit{
 float:right;
 display:inline;
 margin:-1px 5px 0px 0px;
 height:27px;
 width:29px;
 background:url(../images/sbutton.png) no-repeat;
 border:none;;
}
 

 
.topbar{
 height:34px;
 display:block;
 padding:0px 0 0px 0px;
 font: 10px Arial,Tahoma,Century gothic,verdana, sans-serif;
 text-transform:uppercase;
 width:1000px;
 margin:0px auto;
 overflow:hidden;
 }
 

/* Main Content*/ 

#content {
 float:left;
 width: 750px;
 height:100%;
 padding:5px;
 margin-top:20px;
 display:inline;
 background:#181A1C;
 color:#666666
 }

h3.recpost{
 height:38px;
 background:url(../images/recpost.png) repeat-x;
 line-height:38px;
 padding-left:10px;
 font-size:14px;
 font-weight:normal;
 color:#09f;
 text-transform:uppercase;
 border-bottom:1px solid #272727;
} 
 

.eTitle {
 margin: 5px 0 5px 0;
 padding: 5px 0px 10px 0px;
 text-align: left;
 font-size: 20px ;
 font-family:Arial,century gothic,verdana, sans-serif;
 font-weight:normal;
 overflow:hidden;
 border-bottom:1px solid #272727;
 color:#eee;
 }

.eTitle a:link, .eTitle a:visited {
 color:#eee;
 background-color: transparent;
 }
.eTitle a:hover {
 color: #fff;
 background-color: transparent;
 } 

.eDetails {
 font-size:10px;
 font-family:Tahoma, century gothic,Arial,Verdana,Helvitica,sans-serif;
 padding: 6px 7px 6px 7px;
 color:#fff;
 text-transform: uppercase;
 background:url(../images/menua.png) bottom repeat-x;
 text-shadow:1px 1px 1px #5F4C23;
 }

.eDetails1 {
 font-size:10px;
 font-family:Tahoma, century gothic,Arial,Verdana,Helvitica,sans-serif;
 padding: 5px;
 color:#fff;
 text-transform: uppercase;
 background:url(../images/menua.png) bottom repeat-x;
 min-height:24px;
 text-shadow:1px 1px 1px #5F4C23;
 }

 
.eDetails a, .eDetails1 a{
 color:#fff;
}

.eBlock{
 width:750px;
 margin: 0px 0px 5px 0px;
 padding:0px 0px;
 height:100%;
 color:#666;
 font: 13px Tahoma, century gothic,Arial,verdana, sans-serif;
}


.eMessage, .eText {
 margin-bottom:10px;
 padding-bottom:5px
 } 
 
.eMessage a:link,
.eMessage a:visited {
 color: #F39C12;
 background-color: transparent;
}
.eMessage a:hover {
 color:#fff;
 background-color: transparent;
 text-decoration: none;
}

.eMessage ul, .eMessage ol{
 margin: .4em 0 1em;
 line-height: 150%;
}


.eMessage ul li, .eMessage ol li{
 list-style-position:outside;
 margin-left: 1.6em;
}

.eMessage p{
 margin:5px 0px;
 padding:5px 0px;
 line-height:22px;
}
/* ------------------ */

/* right column */
.right{
 color: #666666;
 float:right;
 width:235px;
 padding:20px 0px 0px 0;
 display:inline;
 overflow:hidden;

}

.bigbox{
 width:230px;
 overflow:hidden;
 margin:0px 0px 10px 0px;
 padding:0px ;
 float:right;

}
.bigbox div{
padding:5px 5px;
}

/* sidebar */
.sidebar{
 float:left;
 width:160px;
 padding:0px 0px;
 margin-left:2px;
 display:inline;
}

.sidebar2 {
 display:inline;
 float:right;
 width:160px;
 padding:0px 0px;
 margin-right:2px;
}

/*sidebar */
.sidhead {
 padding:0px 0px 0px 0px;
 height:35px;
 margin:0px 0px;
 background:url(../images/tabox.png);
}


.sidhead h3 {
 font-family:Georgia,Arial,Century gothic,Tahoma, sans-serif;
 font-weight:normal;
 padding-left:10px;
 color:#431a03;
}

.sidetitl {
 padding: 0px 0px 0px 5px;
 color:#e0af17;
 text-transform:uppercase;
 font-size:14px;
 height:38px;
 background:url(../images/recpost.png) repeat-x;
 line-height:38px;
 position:relative;
 font-weight:normal;
 }

.sidebox {
 float:left;
 width:160px;
 padding-top:0px;
 font-size:12px;
 font-family: Arial,Tahoma,Century gothic, sans-serif;
 margin:0px 0px 10px 0px;
 background:#181A1C;
 overflow:hidden;
 }

.sidebox ul {
 list-style-type: none;
 margin: 0 ;
 padding: 0;

 }
 
.sidebox li {
 list-style-type: none;
 margin: 0 ;
 padding: 0;

 }
 
.sidebox ul ul {
 list-style-type: none;
 margin: 0;
 padding: 0px 0px 10px 0px;
 background-repeat:no-repeat;
 }

.sidebox ul ul ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 border:0;
 }

.sidebox ul ul ul ul {
 list-style-type: none;
 margin: 0;
 padding: 0;
 border:0;
 }
 
.sidebox ul li {
 height:100%;
 line-height:28px;
 clear: left; 
 width: 160px;
 list-style-type: none;
 overflow:hidden;
 margin-left:-2px
 }

.sidebox li a:link, .sidebox ul li a:visited {
 color:#666;
 text-decoration: none;
 padding: 0px 0px 0px 10px;
 display:block;
 border-bottom:1px solid #272727;
 }

.sidebox a:link {color:#666}
.sidebox a:hover {color:#fff}

.sidebox ul li a:hover {
 color: #fff;
 }

.sidebox p {
 padding: 7px 10px;
 margin:0;
 }
.sidebox div {
 padding: 2px 2px;
 margin:0;
 }
.sidebox table {
 width:100%;
 color:#787d7f;
 } 
.sidecont {width:156px}
/* ------------------ */


/* Calendar Style */
.calTable {width: 100%;}
.calTable td {padding: 2px 0px;}
.calMonth {}
.calWday, .calWdaySe, .calWdaySu {text-transform: uppercase;}
.calWday {}
.calWdaySe {font-weight: bold;}
.calWdaySu {font-weight: bold;}
.calMday {}
.calMdayA {background: #333; color: #fff; border-radius: 5px;-moz-border-radius: 5px;}
.calMdayA a {color: #fff !important;}
.calMdayIs {}
.calMdayIsA {background: #333; color: #fff; border-radius: 5px;-moz-border-radius: 5px;}
.calMdayIsA a {color: #fff !important;}
a.calMonthLink:link,a.calMdayLink:link {font-weight: bold;color:#c26a02}
a.calMonthLink:hover,a.calMdayLink:hover {color:#fff}
/* -------------- */
 
 
/* Footer */
#footer {
 height:70px;
 padding:10px 0 0 0px;
 color:#aaa;
 font-size:11px;
 font-weight:normal;
 letter-spacing:1px;
 border-top:1px solid #222;
 font-family: Tahoma,georgia,Century gothic, Arial, sans-serif;
 float:left;
 width:100%;
 background:#060606;
 }

#footer a:link , #footer a:visited{
 color:#aaa;
 }

#footer a:hover {
 color:#fff;
 }

.fleft{
 float:left;
 text-align:left;
 margin:10px 0px 0px 20px;
 line-height:16px;
}
.fright{
 float:right;
 text-align:right;
 margin:10px 20px 0px 0px;
 line-height:16px;
}
/* ------------------ */

/* The Navigation */
#navigation{ 
 width:600px;
 margin:5px 0px 0px 10px;
 padding:0px 5px 10px 0px;
 float:left;
 }

.topad{
 float:right;
 margin:30px 0px 0px 0px;
 padding:5px;
 background:#111;
 border:1px solid #262626;
}

 .toploginbar {
 float:left; 
 margin:-60px 0px 0px 0px;
 padding:5px; 
 border:1px solid black; 
 } 

.postad{
 text-align:center;
 margin:10px auto;
 border:1px solid #262626;
 padding:5px;
 background:#111;
 width:478px;
}
/* ------------------ */

/* tabs */

#content1 {
 float:left;
 width: 995px;
 height:100%;
 padding:5px;
 margin-top:20px;
 display:inline;
 background:#181A1C;
 color:#666666
 }

.rounded{
 border:1px solid #272727;
 border-radius: 5px;
 -moz-border-radius: 5px;
 -webkit-border-radius: 5px;
 
}


.squarebanner {
 background:#181A1C;
 }

.squarebanner ul{
 list-style-type:none;
 margin: 0px 0px 0px 0px;
 padding: 0px 0px 5px 0px;
 width:330px;
 overflow:auto;
 }
 
.squarebanner ul li{
 list-style-type:none;
 margin: 7px 0px 7px 15px;
 float:left;
 display:inline;
 background:#0E0F10;
 padding:7px;
 }
/* ------------------ */

/* forum Start */
/* General forum Table View */
.forumContent {margin-top: 25px;position: relative; width:1000px}
.forumContent a {text-decoration: none;}
.forumContent a:hover {}
.forumcontent td {font: 11px 'Tahoma'; color: #555555;}
.gTable {background: #272727;border-radius: 5px 5px 0px 0px;-moz-border-radius: 5px 5px 0px 0px; width:1000px}
.gTable td {background: #181a1c; padding: 5px 7px;}
td.gTableTop {font: bold 14px/30px 'Tahoma';color: #b9b9b9;padding: 0px 10px;background: url('../images/menua.png') bottom repeat-x;border-radius: 5px 5px 0px 0px;-moz-border-radius: 5px 5px 0px 0px;}
td.gTableTop a {font: bold 14px/30px 'Tahoma'; color: #333; }
td.gTableSubTop, td .postTdTop {background: #181a1c;font: 10px/18px 'Tahoma';color: #666;padding: 0px 10px;}
td.gTableSubTop a, td .postTdTop a {color: #666; }
.gTableBody {}
.gTableBody1 {}
.gTableBottom {}
.gTableLeft {}
td.gTableRight {background: #181a1c;}
.gTableError {}
/* ------------------------ */

/* Forums Styles */
.forumNameTd,.forumLastPostTd, forumLastPostTd a {font-size:10px}
td.forumIcoTd,td.forumThreadTd,td.forumPostTd {background: #181a1c;}
.forumLastPostTd,.forumArchive {}

a.catLink:link {
 font-size:13px;
 font-family:Tahoma, century gothic,Arial,Verdana,Helvitica,sans-serif;
 text-transform: uppercase;
 color: #fff;
 text-shadow: -1px -1px 0px #09f;
}
a.catLink:visited {}
a.catLink:hover { color: #fff;text-decoration:none;text-shadow: -1px -1px 0px #8E4A04}
a.catLink:active {}

.lastPostGuest,.lastPostUser,.threadAuthor {}
.archivedForum{}
/* ------------- */

/* forum Titles & other */
.forum {font: bold 12px 'Arial'; }
.forumDescr,.forumModer {font: 10px 'Arial'; color: #a1a1a1;}
.forumViewed {}
/* -------------------- */

/* forum Navigation Bar */
.forumNamesBar {}
.forumBarKw {}
a.forumBarA:link {}
a.forumBarA:visited {}
a.forumBarA:hover {}
a.forumBarA:active {}
/* -------------------- */

/* forum Fast Navigation Blocks */
.fastNav,.fastSearch,.fastLoginForm {}
/* ---------------------------- */

/* forum Fast Navigation Menu */
.fastNavMain {}
.fastNavCat {}
.fastNavCatA {}
.fastNavForumA {}
/* -------------------------- */

/* forum Page switches */
.switches {}
.pagesInfo {}
.switch {}
.switchActive {}
a.switchDigit:link,a.switchBack:link,a.switchNext:link {}
a.switchDigit:visited,a.switchBack:visited,a.switchNext:visited {}
a.switchDigit:hover,a.switchBack:hover,a.switchNext:hover {}
a.switchDigit:active,a.switchBack:active,a.switchNext:active {}
/* ------------------- */

/* forum Threads Style */
.threadNametd,.threadAuthTd,.threadLastPostTd, .threadLastPostTd a {font-size:12px}
td.threadIcoTd,td.threadPostTd,td.threadViewTd {background: #181a1c;}
.threadLastPostTd {}
.threadDescr {font: 10px 'Arial'; color: #a1a1a1;}
.threadNoticeLink {}
.threadsType {}
.threadsDetails {}
.forumOnlineBar {}
.legendBlock {font-size:11px}

a.threadPinnedLink:link {}
a.threadPinnedLink:visited {}
a.threadPinnedLink:hover {}
a.threadPinnedLink:active {}


.postpSwithces {}
.thDescr {}
.threadFrmBlock {}
/* ------------------- */

/* forum Posts View */
.postTable1 {background:#888; }
.postTable {background:#292929; }
.postTable td {background:;}
.postPoll {}
.postPoll td {border: 0px !important;}
.postFirst {}
.postRest1 {}
.postRest2 {}
.postSeparator {display: none;}

.postTdTop {}
.postBottom {font-size: 10px !important;}
.postBottom td {border: 0px;padding: 0px 5px !important;}
.postBottom img, .postBottom input {vertical-align: middle;}
.postUser {font-size: 12px; font-weight: bold;}
.postTdInfo {text-align: center;}
.postRankName {}
.postRankIco {}
.reputation {}
.signatureHr {}
.posttdMessage {text-align: justify;padding: 8px !important;line-height: 18px;}
.posttdMessage1 {text-align: justify;padding: 8px !important;line-height: 18px;}

.pollQuestion {}
.pollButtons,.pollTotal {}
.pollSubmitBut,.pollreSultsBut {}
.pollSubmit {}
.pollEnd {}

.codeMessage {font-family: monospace;}
.quoteMessage {font-style: italic;}

.signatureView {}
.edited {}
.editedBy {}

.statusBlock {}
.statusOnline {}
.statusOffline {}
/* ------------------ */

/* forum AllInOne Fast Add */
.newThreadBlock {}
.newPollBlock {}
.newThreadItem {}
.newPollItem {}
/* ----------------------- */

/* forum Post Form */
.pollBut, .loginButton, .searchSbmFl, .commSbmFl, .signButton {}

.codeButtons {}
.codeCloseAll {}
.postNameFl,.postDescrFl {}
.postPollFl,.postQuestionFl {}
.postResultFl {}
.postAnswerFl {}
.postTextFl {}
.postUserFl {}

.pollHelp {}
.smilesPart td {border: 0px !important;}
/* ----------------- */
.funcLink {font: bold 11px 'Tahoma';color: #595959;}
/* ---------------- */

/* User Group Marks */
a.groupModer:link,a.groupModer:visited,a.groupModer:hover {color:#e400ff; font-weight:}
a.groupAdmin:link,a.groupAdmin:visited,a.groupAdmin:hover {font-weight:bold; color:#ff0000; text-shadow:0 0 7px #ff0000;}
a.groupVerify:link,a.groupVerify:visited,a.groupVerify:hover {color:#baff00; font-weight:}
a.groupUser:link,a.groupUser:visited,a.groupUser:hover {color:F39C12;}
a.groupBanned:link,a.groupBanned:visited,a.groupBanned:hover {color:#888; text-decoration:line-through}
a.groupOther1:link,a.groupOther1:visited,a.groupOther1:hover {color:#00a2ff; font-weight:bold; }
a.groupOther2:link,a.groupOther2:visited,a.groupOther2:hover {color:#00ffd8; font-weight:}
a.groupOther3:link,a.groupOther3:visited,a.groupOther3:hover {color:yellow; font-weight:bold; }
a.groupOther4:link,a.groupOther4:visited,a.groupOther4:hover {color:#e400ff; font-weight:bold; }
a.groupOther5:link,a.groupOther5:visited,a.groupOther5:hover {color:#fcff00; font-weight:bold; }
a.groupOther6:link,a.groupOther6:visited,a.groupOther6:hover {color:#00ffd8; font-weight:}
a.groupOther7:link,a.groupOther7:visited,a.groupOther7:hover {color:#00ffd8; font-weight:}
a.groupOther8:link,a.groupOther8:visited,a.groupOther8:hover {color:#00ffd8; font-weight:}
a.groupFriend:link,a.groupFriend:visited,a.groupFriend:hover {color:#00ffd8; font-weight:bold}
/* ---------------- */