/*To adjust the opacity of a container, use "opacity: 0.5;"  NO Quotes. Caution! EVERYTHING in that container will fade and be hard to see. 
 * I haven't figured out how to only fade the gackground and not the text  */

/* The "border-radius:" attribute is what gives the container it's rounded edges. If you use this you may have to change the padding */ 

/* #=id. To call these atributes in a linked html file, use the <div id:"atribute name"> tag, not the "class" refference */

/* Attributes of the body */
body{background-color: #000000; color: #ffffff;}

/* Attributes of links on the page */
a:link {color:#ff9966; text-decoration:none; }/* unvisited link */
a:visited {color:#ff9966;}  /* visited link */
a:hover {color:#FF00ff; text-decoration:blink; background:#000000; cursor: pointer;}/* mouse over link */
a:active {color:#0000FF; text-decoration:overline; background:#000000;}  /* selected link */ 

#inst{position:relative; left: 0px; top: -700px; width: 300px; padding: 15px; background-color: #cfcfcf; border-radius: 5px; color:#000000;

#Memory{position:relative; left: 0px; top: -100px; height: 300; width: 100px;}
}