/* Start of CMSMS style sheet 'Default' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   /*font-family: Arial;*/
   font-size: 12px;
   font-weight : normal;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #FFF; 
}

a:visited {
   text-decoration: none;
   background-color: inherit;
  color: #FFF;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   /*background-color: #C3D4DF;*/
   color: #FFF;
}

/*****************
basic layout 
*****************/
body {
   background-color: #000;
   color: #FFF;
   margin:0 1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   /*border: 1px solid black;*/
   margin: 0 auto;       /* this centers wrapper */
   /*max-width: 80em;*/   /* IE wont understand these, so we will use javascript magick */
   /*min-width: 60em;*/
   width:980px;
   #width:999px;
   background-color: #000;
   color: #FFF;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
   height: 139px;    /* adjust according your image size */  
   #height: 120px; 
}

div#header h1 a {
/* you can set your own image here */
   background: #000 url(images/header.jpg) no-repeat; 
   display: block;
   height: 139px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;        /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
}

div#content {
   float:left;
   margin: 0 auto 4px 0;   /* some air above and under menu and content */
}

div#content1 {
   float:left;
   margin: 0 4px 0 0; 
   padding:4px 10px;
   border: 1px solid #333333;
   width:958px;
   #height:450px;
   overflow: scroll-y;
   overflow-x: hidden; 
   overflow-y: auto;
   background: url(images/big_bar.jpg) no-repeat;
}

div#content2 {
   float:left;
   margin: 0; 
   padding:0;
   width:980px;
}

div#main {
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2%; /* and some air on the right */
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;
}

div#footer {
   float:left;
   clear: both;       /* keep footer below content and menu */
   color: #fff;
   background-color: transparent; /*//#000;  same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   /*padding: 0.5em; */      /* some air for footer */
   /*text-align: center;*/  /* centered text */
   margin: 0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}


.footer_bg {
  float:left;
  width:980px;
  /*height:22px;*/
  background: url(images/bg/bg_footer.jpg) no-repeat;
  padding: 6px 11px 6px 15px; 
}

#copyright {
    width: 310px; 
    float: left; 
    text-align: left;
    background-color:transparent;
}

#links {
   width:640px;
   float:left;
   text-align:right;
   background-color:transparent;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  width: 49%; /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}

/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em; /* font size for h1 */
   line-height: 1em;
   margin: 0;
}
div#content h2 {
	color: #f0353f; 
	font-size: 1.5em; 
	text-align: left; 
/* some air around the text */
	/*padding-left: 0.5em;*/
	/*padding-bottom: 1px;*/
/* set borders around header */
	/*border-bottom: 1px solid red; */
	/*border-left: 1.1em solid red; */
        line-height: 1.5em;
/* and some air under the border */
        margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #ffffff; 
   font-size: 1.3em;
   line-height: 1.1em;
   margin: 0px;
}
div#content h4 {
   color: #ffffff; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   color: #f0353f; 
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #f0353f; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 12px;
   margin: 0 0 1.5em 0; /* some air around p elements */
   line-height: 1.5em;
   padding: 0;
}

blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#content1 ul,
div#content1 ol,
div#content1 dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0px;
   list-style-image: disc; /*url(images/puce.gif);*/
}

div#content1 ul li,
div#content1 ol li {
   margin: 0 0 0.6em 3em;
}

div#content1 ul li a,
div#content1 ol li a {
   color: #f0353f;
   font-weight:bold;
}



/* definition lists topics on bold */
div#content1 dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#content1 dl dd {
   margin: 0 0 1em 1em;
}

div#content1 dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}
/* END LISTS */

/*Custom styles*/
#menu_top {
   height: 35px;
   text-align:center;
   background: url(images/bg/bg_menu.jpg) no-repeat;
   padding: 0 27px; 
   margin: 4px 0 0 0;
}

#menu_top a {
   font-weight: 600;
}

.image_menu {
   /*float:left;
   margin: 0 88px 0 0;
   background: url(images/bg_menu.jpg) no-repeat;*/
}

#menu_bottom {
   float:left;
   margin: 4px 0;
}

.minimenu_item {
   border-right: 1px solid #333333;
}

.fl {
  float:left;
}

a.forgot_password,
a:hover.forgot_password {
   font-size:0.8em;
   color:red;
   line-height:15px;
}

#flash_box {
   float:left;
   width:781px;
   height:354px;
   margin:0;
   padding:0;
   /*background-color:yellow;*/
}

#login_box {
   float:left;
   margin-left:4px;
   margin-bottom:1px;
   width:195px;
   /*height:133px;*/
   background: url(images/bg_news.jpg) repeat-x;
}

#login_box .content_box {
   float:left;
   width:193px;
   height:90px;
   border: 1px solid #333333;
   padding:0px;
   overflow : no;
   /*background-color:yellow;*/
}

#sponsor_box {
   float:left;
   margin-left:4px;
   width:195px;
   height:204px;
   #height:193px;
   background: url(images/bg_news.jpg) repeat-x;
   /*background-color:red;*/
}

#sponsor_box .content_box {
   float:left;
   width:183px;
   height:170px;
   border: 1px solid #333333;
   padding:5px;
   overflow : auto;
   /*background-color:yellow;*/
}

#competition_box {
   float:left;
   margin: 0 0 0 2px;
   width:195px;
   height:218px;
   background: url(images/bg_news.jpg) no-repeat;
   /*background-color:red;*/
}

#competition_box .content_box {
   float:left;
   width:193px;
   height:170px;
   border: 1px solid #333333;
   margin: 0;
   padding:0px;
   overflow : no;
  /* background-color:yellow;*/
}

#facebook_box {
   float:left;
   width:191px;
   height:30px;
   margin: 2px 0 0 2px;
   #margin: 0px 0 0 2px;
   padding: 1px;
   border: 1px solid #333333;
   text-align:center;
   vertical-align:center;
}

#superstar_box {
   float:left;
   margin-right:4px;
   width:488px;
   background: url(images/bg_news.jpg) repeat-x;
   /*height:218px;*/
}

#superstar_box .content_box {
   float:left;
   width:476px;
   /*height:193px;*/
   height:195px;
   border: 1px solid #333333;
   padding:5px;
   overflow : auto;
}

#bulletin_box {
   float:left;
   margin-right:4px;
   width:287px;
   /*#width:270px;*/
   height:218px;
   background: url(images/bg_news.jpg) no-repeat;
}

#bulletin_box .content_box {
   float:left;
   width:265px;
   height:185px;
   border: 1px solid #333333;
   padding:10px;
}

#bulletin_box h3, 
#sponsor_box h4, 
#superstar_box h3, 
#login_box h4, 
#competition_box h3 {
   padding: 2px 0px 3px 4px;
   height:17px;
}

#login_box h4 {
   font-size: 12px;
}

.border_grey {
   border: 1px solid #333333;
}


/*margins*/
.mb0 {
  margin-bottom:0px;
}

.mb1 {
  margin-bottom:1px;
}

.mb2 {
  margin-bottom:2px;
}

.mb4 {
  margin-bottom:4px;
}

.mr4 {
   margin-right:4px;
}

.mt1 {
   margin-top:1px;
}
.mt3 {
   margin-top:3px;
}

.mb_compet {
  margin-bottom:1px;
}


.box {
        float:left;
	color:#FFFFFF;
	font-size:11px;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:10px;
        padding:2px;
        width:450px;
        height:60px;
}

.box img {
	float: left; 
	margin-right: 5px;
}

.box_int {
        padding-left: 4px;
        color:#FFFFFF;
}

#marqueecontainer{
position: relative;
width: 268px; /*marquee width */
#width: 258px;
height: 190px; /*marquee height */
#height: 167px;
background-color: #000000;
overflow: hidden;
border: 0;
padding: 2px;
padding-left: 4px;
}

.error {
	font-size: 10px;
	font-weight: bolder;
	color: red;
     /*background-color: yellow;
        border-color: 1px solid black;
        padding: 1em;
        margin: 1em;*/
}

.input1{
    width:162px;
}

.select1{
    width:164px;
}

.select2 {
    width:164px;
    #width:330px;
}

#formbloc {
   float:left;
   width:750px; 
   margin:2px 100px;
   padding : 2px 10px;
   background: url('images/big_bar.jpg') no-repeat 0 0;
   border: 1px solid #333333;
}

#formblocButtons {
   float:left;
   width:770px; 
   margin:2px 100px;
   padding : 0px;
   /*background: url('images/big_bar.jpg') no-repeat 0 0;*/
   border: 1px solid #333333;
}

#formblocButtons .text {
   padding : 2px 10px;
   height:45px;
}

#formblocButtons .buttons{
   padding: 1px;
}

.bg_buttons_bar {
  background: url('images/bg_buttons_bar_large.jpg') no-repeat 0 0;
  width:669px;
}

.grey_bg {
   background: url('images/bg_buttons_bar_large.jpg') repeat-x;
}

.grey_bg_button {
   background: url(images/bg_news_on.jpg) repeat-x;
   color:#fff;
   height:22px;
   border: 1px solid #333333;
}

.red_bg_button  {
   background: url(images/register_bg.jpg) repeat-x;
   color: #ffffff;
   font-weight : bold;
   font-size : 20px;
   font-family : Arial;
   width: 195px;
   height: 32px;
   margin:0 0 3px 4px;
   padding:0;
   border: 1px solid #333333;
   cursor:pointer;
}

.welcome  {
   float:left;
   color: #00CC33;
   font-weight : bold;
   font-size : 16px;
   font-family : Arial;
   margin:0 0 3px 8px;
   height: 32px;
}

/*.buttons {
   float:left;
}*/

a.terms {
  text-decoration : underline;
}

a:hover.terms {
   text-decoration : none;
}

/*payment section*/

.combo_320 {
	/*FF*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
	width:320px;
	height:20px;
	/*IE*/
	#font-size: 17px;
	#height: 25px;
}

.combo_158 {
	/*FF*/
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
	width:158px;
	height:20px;
	/*IE*/
	#font-size: 17px;
	#height: 25px;
}

.box_82 {
	padding:2px 0 0 0;
        font-size: 11px;
        #font-size: 12px;
	width:82px;
        #width:87px;
	height:16px;
        #height:19px;
        text-align:center;
}

/* General */
.fl {float: left;}
.fr {float: right;}
.fn {float: none;}

.cl {clear: left;}
.cr {clear: right;}
.cb {clear: both;}

.mt-0  {margin-top: 0;}
.mt-5  {margin-top: 5px;}
.mt-10 {margin-top: 10px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mt-30 {margin-top: 30px;}
.mb-0  {margin-bottom: 0;}
.mb-5  {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mb-30 {margin-bottom: 30px;}
.mr-5  {margin-right: 5px;}
.mr-10 {margin-right: 10px;}
.mr-15 {margin-right: 15px;}
.mr-20 {margin-right: 20px;}
.mr-30 {margin-right: 30px;}
.ml-5  {margin-left: 5px;}
.ml-10 {margin-left: 10px;}
.ml-15 {margin-left: 15px;}
.ml-20 {margin-left: 20px;}
.ml-30 {margin-left: 30px;}

.m-c  {margin-left: auto;margin-right: auto;}
.m-0  {margin: 0;}
.m-5  {margin: 5px;}
.m-10 {margin: 10px;}

.pt-0  {padding-top: 0;}
.pt-1  {padding-top: 1px;}
.pt-2  {padding-top: 2px;}
.pt-3  {padding-top: 3px;}
.pt-4  {padding-top: 4px;}
.pt-5  {padding-top: 5px;}
.pt-7  {padding-top: 7px;}
.pt-10 {padding-top: 10px;}
.pt-15 {padding-top: 15px;}
.pt-20 {padding-top: 20px;}
.pt-25 {padding-top: 25px;}
.pb-0  {padding-bottom: 0;}
.pb-1  {padding-bottom: 1px;}
.pb-2  {padding-bottom: 2px;}
.pb-3  {padding-bottom: 3px;}
.pb-4  {padding-bottom: 4px;}
.pb-5  {padding-bottom: 5px;}
.pb-10 {padding-bottom: 10px;}
.pb-15 {padding-bottom: 15px;}
.pb-20 {padding-bottom: 20px;}
.pr-1  {padding-right: 1px;}
.pr-2  {padding-right: 2px;}
.pr-3  {padding-right: 3px;}
.pr-4  {padding-right: 4px;}
.pr-5  {padding-right: 5px;}
.pr-7 {padding-right: 7px;}
.pr-10 {padding-right: 10px;}
.pr-15 {padding-right: 15px;}
.pr-20 {padding-right: 20px;}
.pr-25 {padding-right: 25px;}
.pr-30 {padding-right: 30px;}
.pl-1  {padding-left: 1px;}
.pl-2  {padding-left: 2px;}
.pl-3  {padding-left: 3px;}
.pl-4  {padding-left: 4px;}
.pl-5  {padding-left: 5px;}
.pl-10 {padding-left: 10px;}
.pl-15 {padding-left: 15px;}
.pl-20 {padding-left: 20px;}
.pl-25 {padding-left: 25px;}
.pl-30 {padding-left: 30px;}
.pl-60 {padding-left: 60px;}
.p-0  {padding: 0;}
.p-2  {padding: 2px;}
.p-4  {padding: 4px;}
.p-5  {padding: 5px;}
.p-7  {padding: 7px;}
.p-10 {padding: 10px;}

/* End of 'Default' */

