/* Cascading Style Sheet (CSS) for Calculator 1.0 */
a:link {
    color: #999999; 
    text-decoration: none;
    }
a:visited {
    color: #999999; 
    text-decoration: none;
    }
a:active {
    color: #999999; 
    text-decoration: none;
    }
a:hover {
    color: #ffffff;
    text-decoration: none;
    }
td {
    margin: 0;
	padding: 0;
	border: 0
    }

/* common style settings for display and buttons */
input {
    color: #ffffff; 
	background-color: #666666;
	margin: 0;
	padding: 0;
	width: 40px;
    border-top-color: #999999;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #999999;
	font-family: verdana, sans-serif;
    font-size: 12px;
    }

/* style settings for special buttons, like the C-button */

.special {
    color: #ffffff;
    background-color: #993300;
	border: 1px solid;
	border-top-color: #cc0000;
	border-right-color: #330000;
	border-bottom-color: #330000;
	border-left-color: #cc0000;
	}
.special2 {
    color: #ffffff;
    background-color: #336699;
	border: 1px solid;
	border-top-color: #6699cc;
	border-right-color: #003333;
	border-bottom-color: #003333;
	border-left-color: #6699cc;
	}

.special3 {
    color: #ffffff;
    background-color: #2F4F4F;
	border: 1px solid;
	border-top-color: #6699cc;
	border-right-color: #003333;
	border-bottom-color: #003333;
	border-left-color: #6699cc;
	font-weight: bold;
	}
	
.special4 {
    color: #ffffff;
    background-color: #537477;
	border: 1px solid;
	border-top-color: #6699cc;
	border-right-color: #003333;
	border-bottom-color: #003333;
	border-left-color: #6699cc;
	font-weight: bold;	
	}	
/* style settings for the display area */

.display {
	background-color: #afc8b8; /* the 'LCD-color' */
   width: 203px;
   color: #000000;
	border: 2px solid;
   border-top-color: #000000;
	border-right-color: #afc8b8;
	border-bottom-color: #afc8b8;
	border-left-color: #000000;
	margin-top: 1px;
	margin-bottom: 1px;
    font-family: courier, monospace;
	 font-weight: bold;
    font-size: 1.4em;
	 text-align: right;
	}
.tdisplay {
	background-color: #afc8b8; /* the 'LCD-color' */
    width: 78px;
    color: #000000;
	border: 2px;
    border-top-color: #000000;
	border-right-color: #afc8b8;
	border-bottom-color: #afc8b8;
	border-left-color: #000000;
	margin-top: 0px;
	margin-left: 0px;
    font-family: courier, monospace;
    font-size: 12px;
    text-align: center;
    }
