/* 
Recaptcha Style Captcha 
=======================
 re-Captcha Style Captcha with php and jQuery 
 
 Created By: Zeeshan Rasool 
 URL : http://www.99Points.info 
 
 Get JQuery, PHP, AJAX, Codeigniter and MYSQL Tutorials and Demos on Blog
*/

#captcha-wrap{
    border:solid #870500 1px;
    width:270px;
    -webkit-border-radius: 10px;
    float:left;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background:#870500;
    text-align:left;
    padding:3px;
    margin-top:3px;
    height:95px;

}
#captcha-wrap .captcha-box{
    -webkit-border-radius: 7px;
    background:#fff;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-align:center;
    border:solid #fff 1px;
}
#captcha-wrap .text-box{
    -webkit-border-radius: 7px;
    background:#ffdc73;
    -moz-border-radius: 7px;
    width:140px;
    height:65px;
    float:left;
    margin:2px;
    border-radius: 7px;
    text-align:center;
    border:solid #ffdc73 1px;
}

#captcha-wrap .text-box input{ width:120px;}

#captcha-wrap .captcha-action{
    float:right; width:110px; 
    background:url(../../img/signin/logos.jpg) top right no-repeat; 
    height:40px; margin-top:10px;
}
#captcha-wrap  img#captcha-refresh{
    margin-top:8px;
    border:solid #333333 1px;
    margin-right:4px;
    cursor:pointer;
}

