/* id for button div */
#buttons
{
	position: relative;
	margin: 0 auto 0 110px; /* forces buttons right to line up centered with content */	
}

#buttons ul
{
     display: inline;
     margin: 0 auto 0 auto;
     padding: 0;
}

#buttons li
{
    display: inline;
    list-style: none;
    margin: 0;
    padding: 0;
	text-align: center;
}

/* class for button positioning */
.button_positioning li a
{	 
     text-indent: -999999px; /* forces anchor link off of page */
     overflow: hidden; /* hides part of the buttons image */
     display: block;
     width: 70px;
     height: 70px;
     margin-right: 5px; /* provides space between buttons */
     float: left; /*allows buttons to line up horizontally */
}

/* button classes for round buttons to provide hover effect. The "a" is set with a top position of -85px to offset the image containing both states of the button. The "a:hover" is set with a top position of 0 to create the hover affect when user hovers mouse over button */
/* buttons on Careers Home Page */

li.btn_make_appointment a {
     background: url('/images/buttons/btn_make_appointment.gif') no-repeat;
     background-position: 0 -85px;	 
}

li.btn_make_appointment a:hover {
     background: url('/images/buttons/btn_make_appointment.gif') no-repeat;
     background-position: 0 0;
}

li.btn_major_career a {
     background: url('/images/buttons/btn_major_career.gif') no-repeat;
     background-position: 0 -85px;	 
}

li.btn_major_career a:hover {
     background: url('/images/buttons/btn_major_career.gif') no-repeat;
     background-position: 0 0;
}

li.btn_hot_links a {
     background: url('/images/buttons/btn_hot_links.gif') no-repeat;
     background-position: 0 -85px;	 
}

li.btn_hot_links a:hover {
     background: url('/images/buttons/btn_hot_links.gif') no-repeat;
     background-position: 0 0;
}

li.btn_job_listings a {
     background: url('/images/buttons/btn_job_listings.gif') no-repeat;
     background-position: 0 -85px;	 
}

li.btn_job_listings a:hover {
     background: url('/images/buttons/btn_job_listings.gif') no-repeat;
     background-position: 0 0;
}

li.btn_evaluate_us a {
     background: url('/images/buttons/btn_evaluate_us.gif') no-repeat;
     background-position: 0 -85px;	 
}

li.btn_evaluate_us a:hover {
     background: url('/images/buttons/btn_evaluate_us.gif') no-repeat;
     background-position: 0 0;
}
/* END student services content */



