/* image viewer */


.image-viewer
{
position:fixed;
background:#000;
padding:16px 0px 3px 0px;
box-shadow:0px 4px 20px rgba(0,0,0,1);
border-radius:4px;
color:#FFF;
cursor:default;
font-size:12px;
vertical-align:middle;
z-index:1000;
white-space:nowrap;
}

.image-viewer-control
{
display:none;
}

.image-viewer td
{
vertical-align:middle;
}

.image-viewer img
{
display:block;
cursor:move;
border-radius:4px;
background:#000 url(../resources/loading-70.gif) center center no-repeat;
min-width:32px;
min-height:32px;
}

.image-viewer div
{
display:inline;
float:right;
}

.image-viewer a
{
text-decoration:none;
color:#FFF;
font-size:9px;
white-space:nowrap;
border-radius:3px;
background:#333;
padding:2px 4px;
margin-top:6px;
}

.image-viewer a:hover
{
color:#FFCF4F;
}

.nvt-image-viewer-size
{
display:inline-block;
font-size:12px;
margin-right:5px;
}

.image-viewer-image[sz="small"] {max-width:80px;max-height:60px}
.image-viewer-image[sz="medium"] {max-width:380px;max-height:200px}
.image-viewer-image[sz="large"] {max-width:950px;max-height:500px}

.image-viewer[sz="small"] .nvt-image-viewer-size[sz="small"],
.image-viewer[sz="medium"] .nvt-image-viewer-size[sz="medium"],
.image-viewer[sz="large"] .nvt-image-viewer-size[sz="large"],
.image-viewer[sz="original"] .nvt-image-viewer-size[sz="original"]
{color:#FFCF3F;}

a.nvt-image-viewer-next,
a.nvt-image-viewer-prev
{
position:absolute;
top:11px;
bottom:26px;
width:50px;
background-color:rgba(0,0,0,0);
background-repeat:no-repeat;
background-position:center center;
font-size:0px;
border-radius:0px;
}

a.nvt-image-viewer-next:hover,
a.nvt-image-viewer-prev:hover
{
background-color:rgba(0,0,0,0.6);
}

a.nvt-image-viewer-next
{
right:1px;
background-image:url(../resources/next-white.png);
}

a.nvt-image-viewer-prev
{
left:1px;
background-image:url(../resources/prev-white.png);
}


