﻿/*
Paging 처리 때문에 css새로 생성. 
important쓴거는 기존 css중복해서 적용이 잘안되서 적용함.
/*

page의 다음 버튼을 눌렀을때
*/
.PagedList-skipToNext
{
    margin:0 0 0 10px;background:url(/Images/icon/pn_next_up1.png) no-repeat center 50%;
}

/*
page의 마지막 버튼을 눌렀을때
*/

.PagedList-skipToLast
{
   margin:0 0 0 5px;background:url(/Images/icon/pn_next_up2.png) no-repeat center 50% !important;
}

/*
page의 처음 버튼을 눌렀을때
*/
.PagedList-skipToFirst
{
   margin:0 5px 0 0;background:url(/Images/icon/pn_prev_up2.png) no-repeat center 50%;
}

/*
page의 이전 버튼을 눌렀을때
*/
.PagedList-skipToPrevious
{
    margin:0 10px 0 0;background:url(/Images/icon/pn_prev_up1.png) no-repeat center 50%;
}

.PagedList-skipToPrevious:hover,
.PagedList-skipToPrevious:active,
.PagedList-skipToPrevious:focus{background:url(/Images/icon/pn_prev_ov1.png) no-repeat center 50%;}


.PagedList-skipToFirst:hover,
.PagedList-skipToFirst:active,
.PagedList-skipToFirst:focus{background:url(/Images/icon/pn_prev_ov2.png) no-repeat center 50%;}


.PagedList-skipToNext:hover,
.PagedList-skipToNext:active,
.PagedList-skipToNext:focus{background:url(/Images/icon/pn_next_ov1.png) no-repeat center 50%;}

.PagedList-skipToLast:hover,
.PagedList-skipToLast:active,
.PagedList-skipToLast:focus{background:url(/Images/icon/pn_next_ov2.png) no-repeat center 50% !important;}

/*
Active상태에서 적용안되서 씀
*/
.paginate *{min-width:20px;height:20px;margin:0 1px;padding:0;font-size:14px;color:#c92428;line-height:20px;text-decoration:none;vertical-align:middle;position:relative;display:inline-block !important}