/* general table info for index.html */table.nice {font-size: small;	font-weight: normal;	background-color: white}/* top row formatting for tables in index.html */tr.toprow {background-color: white}tr.toprow A:link {color: blue;	font-weight: normal}tr.toprow A:visited {color: purple;	font-weight: normal}/* header row formatting for tables in index.html  *//* this includes the rows right above the data and *//* right below the data                            */tr.header {background-color: #CCCCCC;	color: black;	font-size: small;	font-weight: normal}/* formating for the row(s) containing stock data *//* in index.html                                  */tr.info {background-color: white;	color: black;	font-size: small;	font-weight: normal}tr.info A:link {color: blue;	font-weight: normal}tr.info A:visited {color: purple;	font-weight: normal}/* formatting for top row of tables in myport.html */tr.dettoprow {font-size: x-small;	font-weight: bold;	color: white;	background-color: #ccccff}/* data row formatting for tables in myport.html *//* there are 2 classes - allows alternating rows *//* of colors to make the table look nicer        */tr.info1 {font-size: x-small;	font-weight: normal;	color: #000000;	background-color: #ccccff}tr.info2 {font-size: x-small;	font-weight: normal;	color: #000000;	background-color: #cccc99}/* formatting for top row of tables in myquotepage.html */tr.headrow {font-size: small;	font-weight: bold;	color: #000000;	background-color: #cccc99}/* data row formatting for tables in myquotepage.html *//* there are 2 classes - allows alternating rows of   *//* colors to make the table look nicer                */tr.data1 {font-size: x-small;	font-weight: bold;	color: #000000;	background-color: #ffffcc}tr.data2 {font-size: x-small;	font-weight: bold;	color: #000000;	background-color: #cccc99}