/*
** global / reset (intended for all pages)
*/

*
{
	margin: 0;
	padding: 0;
}

::-ms-clear { display: none; } 

html
{
	color: #000;
}
body
{
	/*font-size: 62.5%;*/
	text-align: left;
}
table
{
	border: 0;
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset, img, a img
{
	border-width: 0;
}
/*h1, h2, h3, h4, h5, h6, address, caption, cite, code, dfn, th, var
{
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
}*/


/* First List */
ol
{
    list-style-type: decimal;
}
/* Second List inside another Ordered List */
ol li ol
{
    list-style-type: lower-alpha;
}
/* Third List inside another Ordered List*/
ol li ol li ol
{
    list-style-type: lower-roman;
}

ul
{
    list-style-type: square;
}
ul li ul
{
    list-style-type: circle;    
}


caption, th
{
	text-align: left;
}
abbr, acronym
{
	border-bottom: 1px dotted #000;
	font-variant: normal;
	cursor: help;
}
sup
{
	vertical-align: text-top;
}
sub
{
	vertical-align: text-bottom;
}
table
{
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

input, textarea, select
{
	font-family: inherit;
	font-size: 1em;
	font-weight: inherit;
}

.GridView td,.GridView_AlternatingRow td,.AlternatingRow td,.GridView_Row td,.GridView_Header th,.DetailsView_Row td
{
	border:thin;
	border-width:1px;
	border-color:lightgray;
	border-left-style:solid;
	border-right-style:solid;
	border-top-style:solid;
	border-bottom-style:solid;

}

.modal-popup-container {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 5px;
    box-shadow: 0px 0px 10px gray;
    border: 1px solid gray;
}

.modal-popup-button-container {
    vertical-align: middle;
    text-align: center;
    margin: 0px;
    padding: 10px 10px 10px 0px;
    border-top: 1px solid silver;
}

.model-content {
       margin: 10px;
}

.warning {
    color: red;
    padding: 5px;
    background-color: bisque;
    padding-left: 5px;
}

.p-20 {
    padding: 20px;
}

.p-10 {
    padding: 10px;
}

.f-12 {
    font-size: 1.2em;
}
.f-10 {
    font-size: 1em;
}
.btn-primary{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
}