/* gmail style buttons */
.g_button {
	color:#191919;
	background-color:#99ff66;
	height:30px;
	font-size: 14px;
	text-align: center;
	border: 1px solid #C7C7C7;
	padding: 0 8px;
	font-family:  Ariel;
	/* rounded corners */
	-webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
}
.g_button:hover {
  color: #191919;
  background-color: #E0E0E0;
  border: 1px solid #C7C7C7;
}
.g_button:disabled {
  background-color: #808080;
  color: #c0c0c0;
}
.Heading {
	background-color:#c0c0c0;
	text-align:center;
	font-weight:bold;
}
.LeftHeading {
	background-color:#c0c0c0;
	text-align:left;
	font-weight:bold;
}
.InputBox:focus {
    background-color:yellow;
}
.HundredPercentWidth {
    width:100%;
}
.centered {
    text-align:center;
}
.left {
    text-align:left;
}
.right {
    text-align:right;
}
.table {
	display:table;
}
.tr {
	display:table-row;
}
.td {
	display:table-cell;
}
.InlineBlock {
    display:inline-block;
}
.PrettyBorder {
    background-color:white;
	border: 10px solid #1C6EA4;
	border-radius:10px;
	padding: 5px;
}