/* CSS for the Tidel LCD Buttons 

input[name="PIN-Alpha"] {
height: 44px !important; 
width: 152px !important; 

*/
	
.LCD_Buttons {
-webkit-appearance: none;
display: block;
float: left;
margin:0px;
padding:0px;
outline: 0;
font-family: Verdana, Tahoma, Geneva, sans-serif; 
color:  #0A1E8B;
font-weight: bold; 
text-align: center;
white-space: nowrap;
word-wrap: normal;
vertical-align: middle;
cursor: pointer;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
border-radius: 8px;
border: 2px solid rgb(208, 208, 208); 
background: -moz-linear-gradient(right, #9B9B9B 0%, #DFDFDF 100%);     /* old Gecko  */
background: -webkit-linear-gradient(right, #9B9B9B 0%, #DFDFDF 100%);     /* newer Webkit (Safari)  */
background: linear-gradient(to right, #9B9B9B 0%, #DFDFDF 100%);     /* Firefox 16+, Chrome 26+, IE10+  */
-pie-background: linear-gradient(right, #9B9B9B, #DFDFDF);     /* IE6-9 via PIE  */
behavior: url(Series4Training.hyperesources/PIE.htc);
}

.LCD_Buttons:active {
border: 2px solid rgb(0, 0, 0); 
background: -moz-linear-gradient(right, #8B8B8B 0%, #777777 100%);  
background: -webkit-linear-gradient(right, #8B8B8B 0%, #777777 100%);
background: linear-gradient(to right, #8B8B8B 0%, #777777 100%);
-pie-background: linear-gradient(right, #8B8B8B, #777777);
behavior: url(Series4Training.hyperesources/PIE.htc);
}

.LCD_Buttons:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
line-height: 0;
}
 
/* LCD Button Layouts  */
input[name="Main_DH"] {
height: 80px !important; 
width: 498px !important; 
}

input[name="Numeric1"] {
height: 44px !important; 
width: 152px !important; 
font-size: 24px; 
line-height: 38px; 
}

input[name="Top12_MH_3W"] {
height: 44px !important; 
width: 152px !important; 
font-size: 12px; 
line-height: 18px; 
}

input[name="Numeric3"] {
height: 44px !important; 
width: 116px !important; 
}

/* Top; 8 Buttons; Small Height; Single Width  */
input[name="Top8_SH_SW"] {
height: 34px !important; 
width: 245px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Top; 4 Buttons; Small Height; Double Width  */
input[name="Top4_SH_DW"] {
height: 34px !important; 
width: 498px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Top; 6 Buttons; Double Height; Single Width  */
input[name="Top6_DH_SW"] {
height: 50px !important; 
width: 245px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Top; 10 Buttons; Special 'Let Me Choose' Select Cash Layout - Left */
input[name="Top10_SH_6Num-Left"] {
height: 34px !important; 
width: 242px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Top; 10 Buttons; Special 'Let Me Choose' Select Cash Layout - Right */
input[name="Top10_SH_6Num-Right"] {
height: 34px !important; 
width: 116px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Top; 3 Buttons; Double Height; Double Width  */
input[name="Top3_DH_DW"] {
height: 50px !important; 
width: 498px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Bottom; 3 Buttons; Small Text  */
input[name="Bot3TextSmall"] {
height: 44px !important; 
width: 152px !important; 
font-size: 12px; 
line-height: 18px; 
}

/* Bottom; 3 Buttons; Medium Text  */
input[name="Bot3TextMedium"] {
height: 44px !important; 
width: 152px !important; 
font-size: 18px; 
line-height: 28px; 
}




/* Button Heights & Widths - These override the above  */
input[buttonheight="thin"] {
height: 34px !important; 
}

input[buttonheight="medium"] {
height: 44px !important; 
}

input[buttonheight="thick"] {
height: 50px !important; 
}

input[buttonheight="double"] {
height: 72px !important; 
}

input[buttonwidth="bottom"] {
width: 152px !important; 
}

input[buttonwidth="single"] {
width: 245px !important; 
}

input[buttonwidth="double"] {
width: 498px !important; 
}

input[buttonwidth="singleShort"] {
width: 240px !important; 
}


/* Text Heights - These override the above  */
input[textheight="small"] {
font-size: 12px; 
line-height: 18px; 
}

input[textheight="medium"] {
font-size: 18px; 
line-height: 28px; 
}

input[textheight="large"] {
font-size: 24px; 
line-height: 38px; 
}

