/**
 *
 * Some common styles.
 *
 */
.styled {
    font-family: 'Helvetica', Verdana, Tahoma, sans-serif;
    background-color: white;
    position: absolute;
    text-align: center;
    vertical-align: middle;
}

.component-button {
    float: left;
    width: 72px;
	cursor: pointer;
	border-radius: 3px;
	border-color: hsl(214,39%,20%);
	height: 17px;
	padding: 2px 0px;
	margin: 5px;
	margin-top: 6px;
	border-width: 1px;
	border: thin solid hsl(214,39%,25%);
	border-top: thin solid hsl(214,39%,20%);
	padding-top: 3px;
	text-shadow: 1px -1px black;
    text-overflow: ellipsis;
}

/* This is applied for toolbar buttons on mouse hover */
.component-button:hover {
    -webkit-box-shadow: 0px 0px 5px 1px #d6e7f3;
    -moz-box-shadow: 0px 0px 5px 1px #d6e7f3;
    box-shadow: 0px 0px 5px 1px #d6e7f3;
    cursor: pointer;
}

.component-label {
    z-index: 100;
    min-height: 16px;
    text-align: center;
    width: auto;
    /*position: relative;*/
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.5);
    margin-left: 5px;
    font-size: 14px;
    top: 7px;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: relative;
}

.background {
    background-color: hsl(214,39%,30%);
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, hsl(214,39%,30%)), color-stop(1, hsl(214,39%,20%)));
    background-image: -moz-linear-gradient(center bottom, hsl(214,39%,30%) 0%, hsl(214,39%,20%) 100%);
    background-image: -ms-linear-gradient(center bottom, hsl(214,39%,30%) 0%, hsl(214,39%,20%) 100%);
    background-image: -o-linear-gradient(center bottom, hsl(214,39%,30%) 0%, hsl(214,39%,20%) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1F3046', endColorstr='#2E486A',GradientType=0 );
}

.small-button {
    width: 24px !important;
    height: 16px !important;
    background-size: auto !important;
    background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
}

/*
The following styles are for tooltips
*/
.tooltip {
    position: absolute;
    max-width: 50%;
    word-wrap: break-word;
    z-index: 9999;
    color: black;
    display: none;
    background-color: lightYellow;
    padding: 3px 3px 3px 3px;
    border: 1px solid #999;
    text-shadow: none;
    float: left;
    text-align: left;
}

.tooltipValue {

}

.tooltipName {
    font-weight: bold;
}

.border {

}

#navigation {
    top: 0;
    left: 0;
    height: 100%;
    width: 21%;
}

/*
The below classes are for EULA table
*/
#eula {
    height: 80%;
}

.eulaHeading1 {
    font-size: 200%;
    text-align: center;
    font-weight: bold;
    height: 35px;
}

.eulaHeading2 {
    font-size: 150%;
    text-align: center;
    height: 30px;
}

.eula_caution {
    font-size: 120%;
    height: auto;
    width: 980px;
    margin-top: 20px;
}

.div_border {
    border: 2px solid black;
}

.div_center {
    margin-left: auto;
    margin-right: auto;
}

.para_heading {
    font-size: 120%;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 20px;
    height: auto;
}

.para_content {
    font-size: 115%;
    margin-left: 20px;
    margin-top: 5px;
    width: auto;
}

.para {
    height: auto;
}

.eula {
    width: 80%;
    margin-bottom: auto;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    height: 80%;
    background-color: #FAF8F8 ";
}

.hyperlink:hover {
    color: blue;
    text-decoration: underline;
}