/*
.chars_counter.error
.project_status / project_status_small / project_complete / project_status_mini
.ul.projects_list 
.intenal_menu
.projects_preview_list
.claim_publish_project
.payers_list
.boxAform
.cleanform
.jquery_uploader
.manage_link
.box_summary
.lang_selector
*/


#pagebody .chars_counter.error {
  color: #f30;
  background-color: transparent;
}

.project_status {
  position: relative;
  overflow: hidden;
  width: 100%;
}
  .project_status .current_amount, .project_status .total_amount {
    font-size: 100%;
    line-height: 1.2em;
    color: #ccc;
    background-color: transparent;
    text-transform: uppercase;
  }
    .project_status .current_amount strong, .project_status .total_amount strong {
      display: block;
      font-size: 290%;
      line-height: 1em;
      padding-bottom: 5px;
      color: #666;
      background-color: transparent;
    }

  .project_status .current_amount {
    float: left; display: inline;
  }
    .project_status .current_amount strong {
      color: #DA0C53;
      background-color: transparent;
    }
  .project_status .total_amount {
    float: right; display: inline;
  }
  .project_status .status_bar {
    position: relative;
    clear: both;
    background-color: #ccc;
    color: inherit;
    height: 6px;
    padding: 1px;
    -moz-border-radius: 2px; -webkit-border-radius: 3px;
    text-align: left;
    text-indent: -9999px;
  }
  .project_status .status_bar .status_bar_value {
    float: left; display: inline;
    overflow: hidden;
    height: 6px;
    background-color: #ec1f5d;
    color: inherit;
    /*text-indent: -9999px;
    max-width: 100%;*/
    text-align: left;
    -moz-border-radius: 2px; -webkit-border-radius: 3px;
  }
  .project_status .status_bar .status_bar_value .complete_ico {
    position: absolute;
    right: 0px;
    top: -5px;
    width: 16px;
    height: 16px;
    background: url(round_tick.png) no-repeat 0 0;
    text-align: left;
    overflow: hidden;
    text-indent: -9999px;
  }

  .project_status .time_left {
    margin: 0.5em 0 0 0;
    font-size: 100%;
    line-height: 1.2em;
    text-transform: uppercase;
  }
  
  /* complete */
  .project_status.project_complete .current_amount strong {
    color: #4E7910;
    background-color: transparent;
  }
  .project_status.project_complete .status_bar .status_bar_value {
    background-color: #4E7910;
    color: #fff;
  }

  /* failed */
  .project_status.project_failed .current_amount strong {
    color: #3f3f3f;
    background-color: transparent;
  }
  .project_status.project_failed .status_bar .status_bar_value {
    background-color: #3f3f3f;
    color: #fff;
  }
  
  
  /* finished */
  .project_status.status_finished .status_bar {
    padding: 0;
  }
  .project_status.status_finished .status_bar .status_bar_value {
    background-color: #09c;
    color: inherit;
  }
  .project_status.status_finished .current_amount strong {
    color: #09c;
    background-color: transparent; 
  }
  
  
  /* project_over */
  .project_status.project_over .current_amount strong {
    color: #4e7910;
    background-color: transparent; 
  }
  .project_status.project_over  .status_bar {
    background-color: #accc7c;
    color: inherit;
    padding: 0;
    height: 6px;
    -moz-border-radius: 0 5px 5px 0; -webkit-border-top-left-radius: 0; -webkit-border-bottom-left-radius: 0;
  }
  .project_status.project_over .status_bar_value {
    background: #4e7910 url(white2px.gif) repeat-y 100% 0;
    color: inherit;
    -moz-border-radius: 5px 0 0 5px; -webkit-border-top-right-radius: 0; -webkit-border-bottom-right-radius: 0;
  }  
  .project_status.project_over .status_bar_overflow {
    position: relative;
    clear: both;
    background-color: #e0e0e0;
    color: inherit;
    height: 7px;
    padding: 1px 25px 0 0;
    -moz-border-radius: 5px; -webkit-border-radius: 5px;
  }
  
 
  
  
  
  /* small */
  .project_status.project_status_small {
    overflow: visible;
  }
  .project_status.project_status_small .status_bar {
    padding: 0;
    overflow: visible;
  }
  .project_status.project_status_small .status_bar_value {
    position: relative;
    overflow: visible;
    text-align: left;
    text-indent: -9999px;
  }
  .project_status.project_status_small .current_amount {
    margin: 0.5em 0 0 0;
  }
  .project_status.project_status_small .current_amount strong {
    display: inline;
    font-size: 100%;
    line-height: 1.2em;
    color: #DA0C53;
    background-color: transparent;
  }
  .project_status.project_status_small .time_left {
    float: right; display: inline;
  }
  .project_status.project_status_small .current_amount_sign {
    position: absolute;
    background: #ec1f5d;
    color: #fff;
    padding: 10px 12px;
    text-transform: uppercase;
    text-indent: 0;
    -moz-border-radius: 5px; -webkit-border-radius: 5px;
    text-align: left;
    bottom: 20px;
    right: 0;
    z-index: 10;
    /*-moz-box-shadow: 1px 3px 10px #999; -webkit-box-shadow: 0px 3px 10px #999;*/
  }
    .project_status.project_status_small .current_amount_sign strong {
      font-size: 310%;
      line-height: 1em;
      letter-spacing: -1px;
      display: block;
      text-transform: none;
    }
    .project_status.project_status_small .current_amount_sign .arrow {
      width: 16px;
      height: 8px;
      background: url(arrow_red_down.png) no-repeat 0 0;
      position: absolute;
      bottom: -8px;
      left: 50%;
      margin-left: -8px;
    }

  
      /* project_complete */
      .project_status.project_status_small.project_complete .status_bar_value {
        background-color: #4E7910;
        color: inherit;
      }
      .project_status.project_status_small.project_complete .current_amount_sign {
        background-color: #333;
        color: #fff;
      }
      .project_status.project_status_small.project_complete .current_amount_sign .arrow {
        background: url(arrow_gray_down.png) no-repeat 0 0;
      }
      .project_status.project_status_small.project_complete .current_amount strong {
        color: #4E7910;
        background-color: transparent; 
      }

  
      /* project_finished */
      .project_status.project_status_small.status_finished .current_amount strong {
        color: #09c;
        background-color: transparent; 
      }



      
      /* porject_over */
      .project_status.project_status_small.project_over .status_bar_overflow {
        background-color: #e0e0e0;
        color: inherit;
        padding-right: 25px;
        -moz-border-radius: 5px; -webkit-border-radius: 5px;
      }     
      .project_status.project_status_small.project_over .status_bar {
        background-color: #accc7c;
        color: inherit;
        -moz-border-radius: 0 5px 5px 0; -webkit-border-top-left-radius: 0; -webkit-border-bottom-left-radius: 0;
      }
      .project_status.project_status_small.project_over .status_bar_value {
        background: #4e7910 url(white2px.gif) repeat-y 100% 0;
        color: inherit;
        -moz-border-radius: 5px 0 0 5px; -webkit-border-top-right-radius: 0; -webkit-border-bottom-right-radius: 0;
      }
      .project_status.project_status_small.project_over .current_amount_sign {
        background-color: #333;
        color: #fff;
      }
      .project_status.project_status_small.project_over .current_amount_sign .arrow {
        background: url(arrow_gray_down.png) no-repeat 0 0;
      }
      .project_status.project_status_small.project_over .current_amount strong {
        color: #4E7910;
        background-color: transparent; 
      }
  















.project_status_mini {
  overflow: hidden;
  padding-left: 40px;
}
  .project_status_mini .percent {
    float: left; display: inline;
    margin-left: -40px;
    width: 37px;
    text-align: left;
    color: #FF3366;
    background-color: transparent;
    font-weight: bold;
  }
  
  .project_status_mini .status_bar {
    padding: 0;
    margin-top: 0.45em;
    overflow: visible;
    background-color: #ffe1e9;
    color: inherit;
    width: 110px;
  }
  .project_status_mini .status_bar_value {
    background-color: #ff3366;
    color: inherit;
    height: 3px;
    text-align: left;
    overflow: hidden;
    text-indent: -9999px;
  }
.project_status_mini.successful {
}
  .project_status_mini.successful .percent {
    color: #9c0;
    background-color: transparent;
  }
  .project_status_mini.successful .status_bar {
    background-color: #dbecc1;
    color: inherit;
  }
  .project_status_mini.successful .status_bar_value {
    background-color: #bfdd90;
    color: inherit;
  }
.project_status_mini.fail {
}
  .project_status_mini.fail .percent {
    color: #666;
    background-color: transparent;
  }
  .project_status_mini.fail .status_bar {
    background-color: #fff;
    color: inherit;
  }
  .project_status_mini.fail .status_bar_value {
    background-color: #666;
    color: inherit;
  }


  




ul.projects_list {
  margin: 0 0 20px -10px;
  padding: 0;
  list-style-type: none;
}
  ul.projects_list > li {
    float: left; display: inline;
    position: relative;
    border: 1px solid #fff;
    -moz-border-radius: 5px; -webkit-border-radius: 5px;
    padding: 5px 5px 30px 5px;
    width: 284px;
    min-height: 400px; height: auto !important; height: 400px;
    margin: 0 0 0 10px;
  }
  ul.projects_list > li:hover {
    border: 1px solid #ededed;
    background-color: #fbfbfb;
    color: inherit;
  }
  ul.projects_list > li .current_amount_sign {
    display: none;
  }
  ul.projects_list > li:hover .current_amount_sign {
    display: block;
  }
  
  ul.projects_list .image {
    background: #f0f0f0;
    color: inherit;
    border: 1px solid #e0e0e0;
    padding: 4px;
    margin: 0 0 15px 0;
  }
  ul.projects_list .project_status {
    margin-bottom: 15px;
  }
    ul.projects_list .project_status .time_left {
      color: #ccc;
      background-color: transparent;
    }
  ul.projects_list .title {
    margin: 0 0 0.6em 0;
    padding: 0;
    font-size: 210%;
    line-height: 1.2em;
  }
    ul.projects_list .title a, ul.projects_list .title a:hover {
      color: #666 !important;
      background-color: transparent;
      text-decoration: none;
    }
    ul.projects_list .title a:hover {
      text-decoration: underline;
    }
  ul.projects_list .text {
    font-size: 130%;
    line-height: 1.2em;
  }
  ul.projects_list > li:hover .title a, ul.projects_list > li:hover .text {
    color: #333;
    background-color: transparent;
  }
  ul.projects_list .tags {
    position: absolute;
    width: 100%;
    bottom: 5px;
    right: 5px;
    text-align: right;
    font-size: 110%;
    line-height: 1.2em;
  }
    ul.projects_list .tags a {
      text-decoration: none;
      color: inherit;
      color: #999;
      background-color: transparent;
    }  
 

.internal_menu {
  margin: 25px 0;
}
  .internal_menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
  }
  .internal_menu li, .internal_menu a {
    float: left; display: inline;
  }
  .internal_menu li {
    margin-left: 1.5%;
    width: 15%;
    padding-bottom: 5px;
  }
  .internal_menu li a {
    width: 80%;
    background: #fff url(white_bg.jpg) repeat-x 0 100%;
    color: #999 !important;
    padding: 15px 10% 0 10%;
    text-align: center;
    min-height: 43px; height: auto !important; height: 43px;
    font-size: 130%;
    line-height: 1.2em;
    text-decoration: none;
    border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
    -moz-box-shadow: 0px 1px 5px #999; -webkit-box-shadow: 0px 1px 5px #999;
  }

  .internal_menu li.m_explore a, .internal_menu li.m_blog a, .internal_menu li.m_faq a {
    color: #ccc !important;
    background-image: url(black_bg.jpg); 
  }

  .internal_menu li.m_start a {
    color: #fff !important;
    background-image: url(blue_bg.jpg); 
  }



.projects_preview_list {
}
  .projects_preview_list .summary {
    float: right; display: inline;
    background-color: #F2F2F2;
    color: inherit;
    padding: 2px 12px;
    font-size: 130%;
    line-height: 2em;
    margin: 0 7px;
    -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px;
  }
    .projects_preview_list .summary a {
      text-decoration: none;
    }
  .projects_preview_list .sectitle {
    margin: 0 0 0.6em 5px;
    padding: 0;
    font-size: 250%;
    line-height: 1.2em;
    
  }
  .projects_preview_list .boxbottom {
    font-size: 130%;
    line-height: 1.3em;
    text-align: right;
  }
    .projects_preview_list .boxbottom a {
      text-decoration: none;
    }
    .projects_preview_list .boxbottom a:hover {
      text-decoration: underline;
    }
  .projects_preview_list .order_options {
    font-size: 130%;
    line-height: 1.3em;
  }
    .projects_preview_list .order_options a {
      color: #3cafd5;
      background-color: transparent;
    }

.claim_publish_project {
  background: #2a2a2a url(claim_publish_project_bg.jpg) no-repeat 0 0;
  color: #fff;
  padding: 23px;
}
  .claim_publish_project .sectitle {
    margin: 0 0 1.3em 0;
    padding: 0;
    font-size: 230%;
    line-height: 1.2em;
  }
  .claim_publish_project ul {
    margin: 0 0 0 -3%;
    padding: 0;
    list-style-type: none;
    overflow: hidden;
  }
  .claim_publish_project li {
    float: left; display: inline;
    width: 30%;
    margin-left: 3%;
  }
  .claim_publish_project li .subtitle {
    margin: 0 0 0.5em 0;
    padding: 0;
    font-size: 190%;
    line-height: 1.2em;
  }
  .claim_publish_project li .text {
    font-size: 170%;
    line-height: 1.2em;
  }
  .claim_publish_project .more {
    padding: 1.2em 7px 0.8em 0;
    text-align: right;
    font-size: 190%;
    line-height: 1.2em;
  }
  
  
.payers_list {
  margin: -12px 0 0 -12px;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
}
  .payers_list li {
    float: left; display: inline;
    width: 110px;
    height: 42px;
    padding: 6px 10px;
    margin: 12px 0 0 12px;
    -moz-border-radius: 5px; -webkit-border-radius: 5px;
  }
  .payers_list li .amount {
    float: left; display: inline;
    font-size: 130%;
    line-height: 1.2em;
  }
  .payers_list li .more {
    float: right; display: inline;
    font-size: 130%;
    line-height: 1.2em;
  }
  .payers_list li .paybar {
    float: left; display: inline;
    width: 100%;
    margin-top: 4px;
    background: #ccc;
    color: inherit;
  }
  .payers_list li .paybar_value {
    height: 3px;
    overflow: hidden;
    background: #333;
    color: inherit;
    text-align: left;
    text-indent: -9999px;
  }
  .payers_list li .total {
    float: left; display: inline;
    width: 100%;
    font-size: 130%;
    line-height: 1.2em;
    margin: 5px 0 0 0;
  }
  .payers_list li.new {
    text-align: center;
    font-size: 130%;
    line-height: 1.3em;
  }
  
  
.boxAform.boxAform {
  overflow: hidden;
  padding-left: 325px;
  background: #fffff0 url(white1000px.gif) repeat-y 305px 0;
  color: inherit;
}
  .boxAform.boxAform.boxAform_gray {
    background-color: #fbfbfb;
  }
  .boxAform.boxAform.boxAform_white {
    background-color: #fff;
  }
  .boxAform.boxAform .boxbottom {
    margin-left: -325px;
    margin-top: 20px;
    text-align: right;
  }

  .boxAform .sideinfo {
    float: left; display: inline;
    margin-left: -325px;
    margin-top: -20px;
    width: 265px;
    padding: 20px 20px 20px 20px;
  }
  .boxAform .maininfo {
    float: right; width: 100%;
    padding-top: 10px;
  }
  .boxAform .sideinfo .sidetitle {
    font-size: 250%;
    line-height: 1.2em;
    margin: 0 -15px 0.3em 0;
  }
  .boxAform .sideinfo .text {
    font-size: 150%;
    line-height: 1.2em;
  }
  .boxAform .sideinfo ul {
    padding-left: 0;
    margin: 0 0 0 15px;
  }
  .boxAform .sideinfo li {
    margin-bottom: 0.7em;
  }
  .boxAform label, .boxAform .label, .cleanform label, .cleanform .label {
    font-size: 110%;
    line-height: 1.4em;
    text-transform: uppercase;
    color: #333;
    background-color: transparent;
    font-weight: bold;
  }
  .boxAform .nolabel, .cleanform .nolabel {
    font-weight: normal;
    color: #666;
    background-color: transparent;
    text-transform: none;
  }

  .boxAform .form_field, .cleanform .form_field {
    font-size: 160%;
    line-height: 1.2em;
    margin-bottom: 1.4em;
  }
  .boxAform .form_field.nomargin, .cleanform .form_field.nomargin {
    margin-bottom: 0;
  }
  .boxAform .form_field .help, .cleanform .form_field .help {
    font-size: 70%;
  }
  .boxAform .form_field.fontbigger, .cleanform .form_field.fontbigger {
    font-size: 190%;
    line-height: 1.2em;
    margin-bottom: 1.4em;
  }
  .boxAform .form_field.fontsmaller, .cleanform .form_field.fontsmaller {
    font-size: 120%;
    line-height: 1.2em;
    margin-bottom: 1.4em;
  }
  .boxAform .form_field.fontbigger .help, .cleanform .from_field.fontbigger .help {
    font-size: 60%;
  }
  .boxAform .fieldbox, .cleanform .fieldbox {
    background: #fff;
    color: #333;
    padding: 5px;
    border: 1px solid #ccc;
    -moz-border-radius: 5px; -webkit-border-radius: 5px;
  }
  .boxAform .fieldbox.wide, .cleanform .fieldbox.wide {
    width: 98%;
  }
  .boxAform .fieldbox.euro, .cleanform .fieldbox.euro {
    background: #fff url(euro.gif) no-repeat 100% 50%;
    padding-right: 17px;
  }
  .boxAform .fieldbox.error, .cleanform .fieldbox.error {
    border-color: #f00;
  }
  .boxAform .fieldbox.ok, .cleanform .fieldbox.ok {
    border-color: #0a0;
  }
  .boxAform .fieldbox.error_yellow, .cleanform .fieldbox.error_yellow {
    background: #ffc url(exclamation.png) no-repeat 97% 50%;
  }
  .boxAform .fieldbox.disabled, .cleanform .fieldbox.disabled {
    background-color: #f2f2f2;
    color: #999;
    border-color: #bfbfbf;
  }  
  .boxAform .actions, .cleanform .actions {
    font-size: 150%;
    line-height: 1.2em;
    text-align: right;
  }
  .boxAform .actions .notice_inline, .cleanform .actions .notice_inline {
    margin-right: 15px;
  }  


.jquery_uploader {
  position: relative;
  background: #f2f2f2;
  color: #333;
  padding: 7px;
  font-size: 120%;
  line-height: 1.2em;
}
  .jquery_uploader a.cancel {
    float: right; display: inline;
  }  
  .jquery_uploader .filename.empty {
    color: #999;
    background-color: transparent;
  }
  .jquery_uploader .filename {
    position: absolute;
    top: 5px;
    left: 130px;
    line-height: 30px;
  }


  .jquery_uploader .upload_progress_holder {
    position: relative;
    background: #fff;
    padding: 1px;
    border: 1px solid #ccc;
    -moz-border-radius: 3px; -webkit-border-radius: 3px;
  }
  .jquery_uploader .text_empty {
    position: absolute;
    white-space: nowrap;
    left: 0;
    top: 2;
    text-indent: 7px;
    line-height: 22px;
    z-index: 1;
  }
  .jquery_uploader .upload_progress {
    position: relative;
    overflow: hidden;
    background: #999 url(gray-v.gif) repeat-x 0 0;
    color: #fff;
    height: 22px;
    width: 10%;
    -moz-border-radius: 3px; -webkit-border-radius: 3px;
    text-indent: 6px;
    line-height: 22px;
    white-space: nowrap;
    z-index: 2;
  }
  
  
.manage_link {
  display: block;
  text-align: center;
  padding-top: 45px;
  background: url(arrow_blue_right.png) no-repeat 50% 0;
}  
  .manage_link.small {
    padding-top: 35px;
    background: url(arrow_blue_right-s.png) no-repeat 50% 0;
  }  

.box_summary {
  width: 200px;
  padding-top: 20px;
  height: 130px;
  text-align: center;
  -moz-border-radius: 5px; -webkit-border-radius: 5px;
}
  .box_summary .amount {
    display: block;
    font-size: 530%;
    line-height: 1em;
  }
  .box_summary .subject {
    font-size: 190%;
    line-height: 1.2em;
  }
.box_summary.blue {
  background-color: #e2f4f9;
  color: inherit;
}    
.box_summary.green {
  background-color: #f0f7d9;
  color: inherit;
} 
.box_summary.red {
  background-color: #ffe1e9;
  color: inherit;
}       
.box_summary.gray {
  background-color: #ececec;
  color: inherit;
}       
.box_summary.yellow {
  background-color: #fff7d7;
  color: inherit;
}
.box_summary.double {
  padding-top: 10px;
  height: 140px;
}
  .box_summary.double .topdata {
    margin-bottom: 10px;
  }
  .box_summary.double .topdata .amount {
    font-size: 550%;
    line-height: 1em;
  }
  .box_summary.double .bottomdata .amount {
    font-size: 350%;
    line-height: 1em;
  }  
  .box_summary.double .subject {
    font-size: 150%;
    line-height: 1em;
  }
  
.lang_selector {
  text-align: right;
  font-size: 130%;
  line-height: 1.2em;
  margin: -25px 0 10px 0;
  color: #333;
  background-color: transparent;
}
  .lang_selector ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .lang_selector li {
    display: inline;
    margin-left: 15px;
  }  
.moderate_tools{
  display:none;
  padding:5px 10px;
  background-color:#F7F7F7;
  font-size: 130%;
  line-height: 1em;
  float:right;
  border: 1px solid #ECECEC;
  border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;
  -moz-box-shadow: 0px 1px 2px #999; -webkit-box-shadow: 0px 1px 2px #999;
}
