@charset "UTF-8";
body.infoStyle  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #DDF3FA;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: black;
}
a:link {color: black}
a:visited {color: purple}
a:hover {color: green}
a:active {color: red}
img {vertical-align:top}
.infoStyle #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
} 
.infoStyle #header {
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background: #FFFFFF;
	height: 140px;
}
.infoStyle #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.infoStyle #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ebebeb; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
.infoStyle #mainContent {
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
} 
.infoStyle #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: center;
} 
.infoStyle #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

body.demoStyle  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #ADD6AA;
	/*C0FF88*/
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: black;
}
.demoStyle #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
} 
.demoStyle #header {
	padding: 5 5px 5 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background: #FFFFFF;
	height: 140px;
	border: 1px solid #000000;

}
.demoStyle #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.demoStyle #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ebebeb; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 5px 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#mainContent:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.demoStyle #mainContent {
	margin: 0 0 0 0px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-top-color: #000;
	border-right-color: #000;
	border-bottom-color: #000;
	border-left-color: #000;
	border: 1px solid #000000;
} 
.demoStyle #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: center;
} 
.demoStyle #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.demoStyle #container #mainContent table {
	text-align: center;
}



.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.infoStyle #container #mainContent table {
	text-align: center;
}
.JBetude {
	font-family: JBEtude-Regular;
	font-size: 50pt;
}
.infoStyle #container #mainContent table tr td {
	color: #00F;
}
.infoStyle #container #mainContent table tr td {
	color: #000;
}
.infoStyle #container #mainContent table tr td {
	color: #00F;
}
.infoStyle #container #mainContent table tr td {
	color: #000;
}



/* Table code begins here*/

#chart {
	border-collapse:collapse;
	text-align: center;
}


#chart th, #chart td {/* Table data default formatting and also in use for table headers */
	padding-top:8px;
	padding-bottom:8px;
	padding-right:2px;
	padding-left:2px;
	border:1px solid gray;
	text-align:center;
	font-size:12px;
	white-space: nowrap;
}
.pageheader{/* Table data default formatting and also in use for table headers */
	font-weight: bold;
	background-color: #CCCCCC;
	font-size:14px;
}
.pagedata{/* Table data default formatting and also in use for table headers */
	font-size:14px;
}
#chart th {/* Table header additional formatting */
	font-weight: bold;
	background-color: #CCCCCC;
}


.leftcol {/* Left Column format */
	font-weight: bold;
	width: 3em;
	background-color: #CCCCCC;
}

.highlight {/*for the rollover highlighting*/
    color: #F00;
	background: #3CF;
}
.nonpy {/* These sounds are legal in Mandarin phonological rules but are not in the Mandarin lexicon  */
    color: #FFF; /* This is usually #666, but I am changing it to see if it is better visually*/
}

.nonlegal {/* These sounds are not legal according to the Mandarin phonological rules */
    color: #777;
	background: #777;
}

.spelling {/* Spelling rules not yet put into sets  */
    color: #F00;
}

.spelling1 {/*Spelling rule set for i -> y */
    color: #F00;
	background: #FFFFCC;
}

.spelling2 {/*Spelling rule set for u -> w */
    color: #F00;
	background: #CCFFFF;

}
.spelling3 {/*Spelling rule set for the ü -> u */
    color: #F00;
	background: #FF99FF;
}
.spelling4 {/*Spelling rule set for the bo po mo fo*/
    color: #F00;
	background: #CF0;
}
.spelling5 {/*Spelling rule set for the bo po mo fo*/
    color: #CF0;
	background: #CF0;
}
.spelling6 {/*Spelling rule set for the ji qi xi*/
    color: #000;
	background: #FF3;
}
.umlaut1 {/*Spelling rule set for umlaut u words*/
	color: #F00;
	background: #FC6;
}
.umlaut2 {/*Spelling rule set for umlaut u words*/
    color: #FC6;
	background: #FC6;
}
.vshortening1 {/*Spelling rule set for iu */
    color: black;
	background: #9F9;
}
.vshortening2 {/*Spelling rule set for ui */
    color: black;
	background: #3F6;
}
.vshortening3 {/*Spelling rule set for un */
    color: black;
	background: #3FF;
}
.pronounce_i_1 {/*Vowel type 1 for i */
	background: #C96;
}
.pronounce_i_1_nonpy {/*Vowel type 1 for i */
	color: #C96;
	background: #C96;
}
.pronounce_i_2 {/*Vowel type 2 for i*/
	background: #F9C;
}
.pronounce_i_3 {/*Vowel type 3 for i*/
	background: #09F;
}

/* end of the tables*/

.oneColFixCtrHdr #container {
	width: 400%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
s
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	font-size: 9px;
}
.oneColFixCtrHdr #header {
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.invisible {
	color: white;
	background-color: white;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

