@charset "utf-8";



body{
font-family:arial;
}



/* font --------------------------------------------------------------------------------------------------------*/
.red {color:red;}
.gold {color:#857122;}
.goldhov:hover {color:#857122;}
.white {color:#fff;}
.grey {color:#7e7e7e;}
.grey2 {color:#666666;}
.black {color:#000;}
.s10 {font-size:10px;}
.s11 {font-size:11px;}
.s12 {font-size:12px;}
.s13 {font-size:13px;}
.s14 {font-size:14px;}
.s15 {font-size:15px;}
.s16 {font-size:16px;}
.s17 {font-size:17px;}
.s18 {font-size:18px;}
.b {font-weight:bold;}
.lnht14{line-height:14px;}
.lnht22{line-height:22px;}
.lnht23{line-height:23px;}
.lnht24{line-height:24px;}
.lspc-1{letter-spacing:-1px;}
.lspc0{letter-spacing:0px;}
.lspc1{letter-spacing:1px;}
.nodecor,.nodecor:hover{text-decoration:none;}
.jtf{ /* to be given to block container element */
	text-align:justify;
	text-justify:inter-ideograph;
}
/* end of font -------------------------------------------------------------------------------------------------*/




/* list style -------------------------------------------------------------------------------------------------*/
ul.tlist{
	list-style-type:none;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
ul.tlist li{
	background:url('image/arrow.gif') left center no-repeat;
	/*background:url('images/tick2.gif') left center no-repeat;*/
	margin:2px 0px 2px 0px;
	padding:0px 0px 0px 30px;
}
ul.list1{
	list-style-type:none;
	margin:0px 0px 0px 0px;
	padding:0px 0px 0px 0px;
}
ul.list1 li{
	background:url('image/arrow2.gif') left center no-repeat;
	color:#000874;
	padding:5px 0px 5px 20px;
}
/* end of list style -------------------------------------------------------------------------------------------------*/






.bigtableleftright {
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #D7D7D7;
	border-left-color: #D7D7D7;
}
.small3side {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}

.leftside {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #D7D7D7;
}
.fourside {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #D7D7D7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #D7D7D7;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #D7D7D7;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D7D7D7;
}
.2side {
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #DDDDDD;
	border-bottom-color: #DDDDDD;
}
.termswords {
	font-family: "Arial", "Helvetica", "sans-serif";
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
}
.bigtermswords {
	font-family: "Arial", "Helvetica", "sans-serif";
	font-size: 18px;
	font-weight: normal;
	font-style: normal;
}
.tablestyle {
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.tablestyle2 {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #CCCCCC;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
}
.tablestyle3 {
	border: 1px solid #CCCCCC;
}
.tablestyle4 {
	border-top: 1px solid #CCCCCC;
	border-right: 1px none #CCCCCC;
	border-bottom: 1px none #CCCCCC;
	border-left: 1px none #CCCCCC;
}
.allside {
	border: 1px dashed #999999;
}
.tablestyle5 {
	border-top: 1px solid #CCCCCC;
	border-right: 1px none #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;

}




details {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem 0.5rem ;
	margin: 10px 1px 10px 1px;
    max-width: 660px;
	min-width: 560px;
    font-size: 13px;
	color: #666666;
}

summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between; /* text left, icon right */
    font-weight: 400;
	color: #666666;
}

/* Hide default marker in some browsers */
summary::-webkit-details-marker { display: none; }

/* Plus/minus icon aligned at the end */
summary::after {
    content: "+";
    color: #333;
    transition: transform 200ms ease;
}

details[open] summary::after {
    content: "–"; /* en dash looks nice as minus */
}

/* Content animation (height transition trick) */
.expandcontent {
    overflow: hidden;
    transition: grid-template-rows 220ms ease;
    display: grid;
    grid-template-rows: 0fr;
}

details[open] .expandcontent {
    grid-template-rows: 1fr;
	margin: 0px 20px 0px 0px;
}

.expandcontent > div { /* actual content wrapper */
    min-height: 0;
	
	
	