/*  Page defaults 
    --------------------------------------------------------------- */
     
html {
    height: 100%;
} 

body { 
	background-color: #000000;
	height: 100%; 
	padding: 0;		
	margin: 0;
	font-family: arial, helvetica;
	font-size: 16px;   
	text-align: left; 
}

#tocPage {
    background: #e2e7d4;   
    border: 10px solid #FFFFFF;
	width: 720px;			
	min-height: 100%;
	padding: 30px 20px 0 30px;   
	margin: 15px auto 0;
}

td {
    /* 
    See https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing
    This allows you to set a width on a table data cell without also 
    having to worry about the width being affected by padding.
    */
    box-sizing: border-box;
}
		
ul 	{
    padding: 0;
    margin: 0; 
    list-style-type: none;
}

a {
    color: #330099;
    border-bottom: 1px solid #3A8C76;  
    text-decoration: none;
}	
    a:hover 	{ 
        color: #000000;
        border-bottom-color: #AE0025;
    }
    a:visited	{
        color: #000000;
    }

img.lefttop { 
    float: left; 
    display: inline-block; 
    margin: 0px 10px 10px 0px; 
    border: 1px solid #000000; 
}  

img.right { 
    float: right; 
    display: inline-block; 
    margin: 10px 0px 10px 10px; 
    border: 1px solid #000000; 
}

img.righttop { 
    float: right; 
    display: inline-block; 
    margin: 0px 0px 10px 10px; 
    border: 1px solid #000000;
}



/*  Click to hide or show  
    --------------------------------------------------------------- */

/* clickable links that toggle more/xrpt to open or close */
.click_more, .click_xrpt {
    font-size: 13px;
    text-decoration: none;
}

/* styles for table row that contains any content that will be open or closed */
table td.open {
    padding: 0;
    border: 0;
}

/* various indent styles for more/exerpts */
.indent0 {
    padding-left: 4px;
}
.indent1 {
    padding-left: 72px;
}
.indent2 {
    padding-left: 50px;
}

/* shared styles for "more" dropdown */
.open_more  { 
    display: none; 
    margin-top: 4px;
    border: 1px solid yellow;   
    font-size: 14px;
}             
.open_more p { 
    margin-top: 0px;
    margin-left: 0px; 
    text-align: left; 
    text-indent: 0; 
}

/* shared styles for "xrpt" dropdown */
.open_xrpt  {
    display: none; 
    margin-top: 4px;
   /* border: 1px solid green; */
    font-size: 14px;
}                   
.open_xrpt p { 
    margin-top: 0px;
    margin-left: 0px; 
    text-align: left; 
    text-indent: 0; 
}

/* Exercise unordered list */
ul.inline {
    margin: 0;
    padding: 0;
}
ul.inline li {
    display: inline-block;
    margin-right: 20px;
}



/*  Print Styles  
    --------------------------------------------------------------- */
@media print {  

	* { 
	    width: auto; 
	    float: none; 
	}

	body { 
	    background: white; 
	    width: 100%; 
		margin:0; 
		padding:0; 
		font-family: 'Times New Roman', Times, serif;
		font-size: 14pt; 
		line-height:  1.4em; 
		word-spacing:1px; 
		letter-spacing:0.2px; 
	}
 	
	#wrapper { 
	    width: auto; 
	}
	

    table .tableTop { 
        display:none;
    }
    
    table .sectionPreview {
        display:none;
    }
	
	a:link, a:visited {
	    background: transparent; 
	    color: #333;
	}
	
}

