/* general calculator styles */
#rakebackcalc, #rakebackcalc_links {
    width:282px;
float:left;
border-left:1px solid #6e6e6e;
border-right:1px solid #6e6e6e;
border-bottom:1px solid #6e6e6e;
padding-bottom:8px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    background-color: #FFF;
    color: #000;
}

/* backlink */
#rakebackcalc_links {
    border-top: none;
    text-align: center;
    padding: 2px 0;
}

/* calculator header */
#rakebackcalc h3 {
    margin: 0 0 10px;
    padding: 4px 10px;
    color: #FFF;
    font-size: 13px;
    background-color: #A3282F;
}

/* labels for input controls */
#rakebackcalc label {
	display: block;
	float: left;
	margin: 10px 0 0;
	width: 142px;
	text-align: right;
}

/* input controls */
#rakebackcalc input, #rakebackcalc select {
    margin: 9px 0 0 4px;
	width: 105px;
	border: 1px solid #7f9db9; 
}

/* calculate button container */
#rakebackcalc_button {
    margin: 10px 0;
    text-align: center;
}

/* calculate button */
#rakebackcalc_button button {
    width: 105px;
    
    background:url(images/button_bg.gif) repeat-x;
    color: #FFF;
    font-weight: bold;
}

/* results header */
#rakebackcalc h4 {
    margin: 0 0 5px;
    font-size: 13px;
}

/* results container */
#rakebackcalc_results {
    display: none;
    margin: 0 35px;
}

/* results table */
#rakebackcalc_results table {
    margin: 0 0 5px;
    width: 100%;
    border-collapse: collapse;
    background-color: #EAF0F0;
    border: 1px solid #88ACCF;
}

/* results table cell */
#rakebackcalc_results td {
    border-top: 1px solid #88ACCF;
    padding: 2px 10px;
}


