/* CSS styling:
   - the order of entry matters (first hit and stop, attributes from entries listed after hit will be skipped and not inherited)
   - file include order matters (if multiple CSS files)
 */
p.margin_top_bottom_5px { 
	margin-top: 5px; 
	margin-bottom: 5px;
}

.headingBlack_11pt {
	font-size: 11pt;
	font-weight: bold;
	color: black;
	margin: 0px 0px 0px 0px;
}
.headingSWNote, headingOrange {
	font-weight: bold;
	color: orange;
}

td.t1_lineNum_border {
 	border: 1px solid black;
	font-weight: bold;
	text-align: center; 
}
td.t1_lineNum_normal_border {
 	border: 1px solid black;
	text-align: center; 
}

input.center_no_border 
{
 	text-align: center;
	border: none;
}

/* links with no underline */
a.no_underline:link, a.no_underline:visited, a.no_underline:active, a.no_underline:hover {
	TEXT-DECORATION: none;
}

/* style link like a button */
a.button_LINK {
	text-decoration: none;
 	border: 1px solid #808080;
	border-radius: 3px;
	padding: 4px 10px 4px 10px;
	background-color: #e6e6e6;	/* #eaeae1; #d5d8dc; #d6dbdf; #C0C0C0; */
	color: #000000;
	font-weight: bold;
}
a.button_LINK:hover {
     background: #d6e0f5; /* #e7f0fe; #d6e0f5; */
     color: #000000;
     text-decoration: none;  
}
a.button_test {	 /* not used for testing */
	text-decoration: none;  
	display: block;
	width: 115px;
	height: 25px;
	background: #4E9CAF;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	color: white;
	font-weight: bold;
}

.center_top_border { 
	text-align: center;
	vertical-align: top;
 	border: 1px solid black;
}
.center_top_border_top_only { 
	text-align: center;
	vertical-align: top;
	border-top: 1px solid black; 
}
.center_top_border_no_left { 
	text-align: center;
	vertical-align: top;
	border-top: 1px solid black; 
 	border-bottom: 1px solid black;
	border-right: 1px solid black; 
}
.center_bottom_border_no_top { 
	vertical-align: bottom;
	text-align: center;
 	border-left: 1px solid black; 
	border-bottom: 1px solid black;
 	border-right: 1px solid black; 
}
.left_middle_border_bottom { 
	text-align: left;
	vertical-align: middle;
 	border-bottom: 1px solid black;
}
.center_middle_border_bottom { 
	text-align: center;
	vertical-align: middle;
 	border-bottom: 1px solid black;
}
.center_middle_border_no_left { 
	text-align: center;
	vertical-align: middle;
	border-top: 1px solid black; 
 	border-bottom: 1px solid black;
	border-right: 1px solid black; 
}
.right_middle_border_bottom { 
	text-align: right;
	vertical-align: middle;
 	border-bottom: 1px solid black;
}
.center_bottom_border_left_only { 
	text-align: center;
	vertical-align: bottom;
 	border-left: 1px solid black; 
}
.center_bottom_border_right_only { 
	text-align: center;
	vertical-align: bottom;
 	border-right: 1px solid black; 
}
.center_bottom_border_bottom_only { 
	text-align: center;
	vertical-align: bottom;
 	border-bottom: 1px solid black; 
}
.right_bottom_borders_dotted_bottom_solid { 
	text-align: right;
	vertical-align: bottom;
 	border-top: 1px dotted black; 
 	border-bottom: 1px solid black;
 	border-left: 1px dotted black; 
 	border-right: 1px dotted black;	
}

 /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 10% or 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* TEXT STYLE CLASSES */
.FONT_red_bold {
	color: #FF0000;
	font-weight: bold;
}
.FONT_red {
	color: #FF0000;
}

.font_9pt {
	font-size: 9pt; 
}
.font_7pt_5 {
	font-size: 7.5pt; 
}
.font_weight_normal {
	font-weight: normal;
}

p.ET_default
{
	margin-top: 8px;
	margin-bottom: 0px;
}
p.ET_MT_7px
{
	margin-top: 7px;
	margin-bottom: 0px;
}
p.ET_MT_6px
{
	margin-top: 6px;
	margin-bottom: 0px;
}
p.ET_MT_5px
{
	margin-top: 5px;
	margin-bottom: 0px;
}
