/*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 */ 

/* Attributes of the content containers on the page */
#MainBox{position:relative; left: 500px; top: 100px; width: 700px; padding: 15px; background-color: #cccccc; border-radius: 40px;}
.Text{font-size:17px; font-family: "Courier New", sans-serif;}
#search{color:#FFFF00;}
#news{color:#00FF00;}
#mainstream{color:#ff0000;}
#other{color:#00FFFF;}
#programming{color:#0099ff;}
#priv{font-size:10px; line-height:inherit}
#menuText{font-size: 15px;}
