/* CSS Style sheet study.css */

html{
    background-color: rgb(150,150,165);
    margin: 0;
}

/*html{
    background-color: rgb(255,255,255);
    background-image: url("../pics/Cherry01.jpg");
    background-repeat: repeat;
    margin: 0;
}*/

body {
 font-family: Arial, Helvetica, sans-serif;
 font-size: .7em;
 font-weight: bold;
 text-align: center;
 
}

#main {
 font-size: 1.2em;
}

#textcentre {
 font-size: 1.2em;
 font-weight: bold;
 text-align: center;
 margin: 0 10% 0 10%;
}

/* choose a suitable font and center the #container div in Internet Explorer 
body {
   text-align:center; 
   font-family: tahoma; arial, sans-serif; 
   font-size:76%; 
   letter-spacing:0.05em;
   }
*/

/* The containing box for the gallery. */
#stud {
    position:relative; 
    width:650px; 
    height:396px; 
    margin:0 auto 0 auto; 
    border:1px solid #aaa; 
    }

/* Removing the list bullets and indentation */
#stud ul {
    padding:0; 
    margin:5px;
    width:198px;
    height:400px; 
    list-style-type:none;
    float:right; 
    }

/* Remove the images and text from sight */
#stud a.gallery span {
    position:absolute; 
    width:1px; 
    height:1px; 
    top:5px; 
    left:5px; 
    overflow:hidden; 
    background:#CD9966;
    }

/* Adding the thumbnail images */
#stud a.gallery, #container a.gallery:visited {
    display:block; 
    color:#000; 
    text-decoration:none; 
    border:1px solid #000; 
    margin:1px 2px 1px 2px; 
    text-align:left; 
    cursor:default;
    }
#stud a.slidea {
    background:url(../images/Study/Stud1Sml.jpg); 
    height: 60px; 
    width: 93px;
    }
#stud a.slideb {
    background:url(../images/Study/Stud2Sml.jpg); 
    height: 60px; 
    width: 93px;
    }

#stud li {
    float:left;
    }

/* change the thumbnail border color */
#stud a.gallery:hover {
    border:1px solid #fff; 
    }

/* styling the :hover span */
#stud a.gallery:hover span {
    position:absolute; 
    width:373px; 
    height:372px; 
    top:10px; 
    left:25px; 
    color:#000; 
    /* background:#fff; */
    }

#stud a.gallery:hover img {
    border:1px solid #fff; 
    float:left; 
    margin-right:5px;
    }

/*  background image when no image displayed */ 
#stud {
    background: url(../images/Study/Stud1.jpg) 26px 11px no-repeat;
    }


