/****************************************************************
* Resets margin, padding, borders, etc. for certain html tags
* @author Jordan Kasper
* @version 1.1
*****************************************************************/
body{font-size:100%;background-color:#fff;color:#000;}
html,body,div,ul,ol,form,li{margin:0;padding:0;}
h1,h2,h3,h4,h5{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
img{border:0;}
p{margin:0.5em 0;}

/* =========== Basic page styles =========== */
body {
  font-family: arial, sans-serif;
  background-color: #222;
  background-position: 50% 5em;
  background-repeat: no-repeat;
  color: #ddd;
  overflow: hidden;
}

a:link {
  text-decoration: none;
  color: #069;
  border-bottom: 1px dashed #069;
}
a:visited {
  text-decoration: none;
  color: #036;
  border-bottom: 1px dashed #036;
}
a:hover { color: #006; border-bottom: 1px solid #006; }
a:active { color: #006; border-bottom: 1px solid #006; }
a.imgLink:link { border-bottom: none; }
a.imgLink:visited { border-bottom: none; }
a.imgLink img { vertical-align: middle; }

ul { padding-left: 1em; }

#e { position: absolute; top: 0; left: 200px; width: 20px; height: 20px; }
#e:link, #e:visited, #e:hover, #e:active { border: none; }
#walle { position: absolute; bottom: 100px; left: -400px; }
#eva { position: absolute; top: 100px; left: -400px; }

#name {
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: 0.8em;
  color: #999;
}
h1 { font-size: 1em; display: inline; }

#inputBox {
  background-color: #000;
  padding: 1em;
  opacity: 0.8;
  width: 30em;
  border: 1px solid #666;
  -moz-border-radius: 9px;
  -webkit-border-radius: 9px;
  position: absolute;
}

#search {
  width: 99%;
  border: none;
  background-color: #000;
  color: #ddd;
  border-bottom: 1px solid #aaa;
}
#searchHelp { color: #447; display: none; }

.button {
  cursor: pointer;
  padding: 0.1em 0.5em;
  margin: 0.2em;
  
  border: 1px solid #ccf;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  
  background-color: #f6f6f6;
  background: #f6f6ff -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#b3b3b3));
  background: -moz-linear-gradient(top,  #ffffff,  #b3b3b3);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#b3b3b3');
  
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
  border: 1px solid #fff;
  background-color: #f0f0f0;
  
  background: #f6f6ff -webkit-gradient(linear, left top, left bottom, from(#f0f0f0), to(#d3d3d3));
  background: -moz-linear-gradient(top,  #f0f0f0,  #d3d3d3);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#f0f0f0', endColorstr='#d3d3d3');
}
.button:active {
  border: 1px solid #fff;
  background-color: #f0f0f0;
  
  background: #f6f6ff -webkit-gradient(linear, left top, left bottom, from(#d3d3d3), to(#f0f0f0));
  background: -moz-linear-gradient(top, #d3d3d3,  #f0f0f0);
  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d3d3d3', endColorstr='#f0f0f0');
}

#searchResults { min-height: 1em; font-size: 0.8em; }
#searchResults ol { padding-left: 2em; }
#searchResults li { cursor: pointer; }
.previewText { display: block; padding-left: 1em; }
.resultHighlight { background-color: #22223f; }
li.searchHover { background-color: #333; }

#contentWrapper { display: none; }


/* ------------ simpleTip Styles ------------ */
.simpleTip {
  padding: 3px 8px;
  background: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  font-size: 0.8em;
  opacity: 0.85;
  z-index: 998;
}

/* ------------ Dialog Styles -------------- */
.ui-dialog {
  border: 1px solid #aaa;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #eee;
  color: #000;
  -webkit-box-shadow: 2px 3px 5px rgba(120, 120, 120, 0.4);
  -moz-box-shadow: 2px 3px 5px rgba(120, 120, 120, 0.4);
  box-shadow: 2px 3px 5px rgba(120, 120, 120, 0.4);
  position: absolute;
}
.ui-dialog .ui-dialog-titlebar {
  cursor: move;
  padding: 0.5em 1em 0.3em;
  position: relative;
}
.ui-widget-header {
  background: #ccc url("images/gray_gradient.png") repeat-x scroll 50% 50%;
  border: 1px solid #aaa;
  color: #222;
  font-weight: bold;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 25%;
}
.ui-dialog .ui-dialog-titlebar-close:link { border: none; }
.ui-dialog .ui-dialog-titlebar-close:visited { border: none; }
.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  background: transparent url("images/close.png") no-repeat 50% 50%;
  height: 18px;
  width: 18px;
  text-indent: -99999px;
}
.ui-dialog .ui-state-hover .ui-icon-closethick {
  border: 1px solid #aaa;
  
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-color: #eee;
}
.ui-widget-content { padding: 3px; overflow: auto; }


