/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("/ukiss/oie_trans.gif");
  background-repeat: repeat;
  background-color: black;
  color: black;
  font-family: Arial;
}
p span {
    background-color: #ff9bb1;
}
h1 {
  color:#ffffff;
  font-family: Arial;
  font-size: 250%;
  text-shadow:
   -1.5px -1.5px 0 #ff0010,  
    1.5px -1.5px 0 #ffd800,
    -1.5px 1.5px 0 #00ff55,
     1.5px 1.5px 0 #0037ff;
}
h2 {
  color:#932632;
  font-family: Arial;
}

.right {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 200px;
    height: 100vh;
    background-color: #ff9bb1;
}

.top {
    position: absolute;
    top: 5px;
    left: 20px;
    right: 20px;
    width: 1000px;
    height: 400px;
}

.first {
    background-color: #960021;
    border-style:groove;
    border-color:#ff9bb1;
    position: absolute;
    top: 420px;
    left: 20px;
    right:20px;
    width: 1000px;
    height: 350px;
}
div.first div   { width: 495px; float: left; }
.left1   { padding: 5px;}
.right1  { max-height: 343px; overflow-y: scroll;}
.clear  { clear: both; }

.second {
    background-color: #960021;
    border-style:groove;
    border-color:#ff9bb1;
    position: absolute;
    top: 785px;
    left: 20px;
    right:20px;
    width: 1000px;
    height: 350px;
}
div.second div   { width: 491px; float: left; }
.right2   { padding: 5px;}
.left2  { max-height: 343px; overflow-y: scroll; padding: 3px;}
.clear  { clear: both; }

.third {
    background-color: #960021;
    border-style:groove;
    border-color:#ff9bb1;
    position: absolute;
    top: 1150px;
    left: 20px;
    right:20px;
    width: 1000px;
    height: 350px;
}
div.third div   { width: 495px; float: left; }
.left3   { padding: 5px;}
.right3  { max-height: 343px; overflow-y: scroll;}
.clear  { clear: both; }

.bottom {
    position: absolute;
    top: 1515px;
    left: 20px;
    right: 20px;
    width: 1000px;
    height: 400px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: black; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

/* unvisited link */
a:link {
  background-color: #ffffff;
  color: #ff7700;
}

/* visited link */
a:visited {
  background-color: #ffffff;
  color: #ce6102;
}

/* mouse over link */
a:hover {
  background-color: #ffd800;
  color: #ff0010;
}
