﻿/* You can alter this CSS in order to give Smooth Div Scroll your own look'n'feel */

/* Invisible left hotspot */
div.scrollingHotSpotLeft
{
    /* The hotspots have a minimum width of 100 pixels and if there is room the will grow     and occupy 15% of the scrollable area (30% combined). Adjust it to your own taste. */
    min-width: 75px;
    width: 10%;
    height: 100%; /* There is a big background image and it's used to solve some problems I experienced     in Internet Explorer 6. */
    background-image: url('./Images/big_transparent.gif');
    background-repeat: repeat;
    background-position: center bottom;
    position: absolute;
    z-index: 200;
    left: 0; /*  The first url is for Firefox and other browsers, the second is for Internet Explorer */
    cursor: url(./images//cursor_arrow_left.png),w-resize;
}

/* Visible left hotspot */
div.scrollingHotSpotLeftVisible
{
    background-image: url(./Images/arrow_left.gif);
    background-color: transparent;
    background-repeat: no-repeat;
    opacity: 0.8; /* Standard CSS3 opacity setting */
    -moz-opacity: 0.8; /* Opacity for really old versions of Mozilla Firefox (0.9 or older) */
    filter: alpha(opacity = 80); /* Opacity for Internet Explorer. */
    zoom: 1; /* Trigger "hasLayout" in Internet Explorer 6 or older versions */
}

/* Invisible right hotspot */
div.scrollingHotSpotRight
{
    min-width: 75px;
    width: 10%;
    height: 100%;
    background-repeat: repeat;
    background-position: center bottom;
    position: absolute;
    z-index: 200;
    right: 0;
    cursor: url(./Images/cursor_arrow_right.png),e-resize;
}

/* Visible right hotspot */
div.scrollingHotSpotRightVisible
{
    background-image: url(./Images/arrow_right.gif);
    background-color: transparent;
    background-repeat: no-repeat;
    opacity: 0.8;
    filter: alpha(opacity = 80);
    -moz-opacity: 0.80;
    zoom: 1;
}

/* The scroll wrapper is always the same width and height as the containing element (div).
   Overflow is hidden because you don't want to show all of the scrollable area.
*/
div.scrollWrapper
{
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

div.scrollableArea
{
    position: relative;
    width: auto;
    height: 100%;
}

#mixedContent
{
    position: relative;
    width: 100%;
    display: block;
    height: 500px;
}
#mixedContent .contentBox
{
    position: relative;
    display: block;
    float: left;
    padding-top: 10px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    height: 500px;
    width: 240px;
}
#mixedContent .contentBox IMG
{
    height: 220px;
    width: 200px;
    margin-left: 16px;
    border: 0px solid #3f7f00;
    border-width: 0px 0px 1px 1px;
    margin: 0px;
    padding: 3px;
    text-decoration: none;
    box-shadow: 0px 4px 5px #888888;
    border: 1px solid #3f7f00;
    -moz-border-radius-topright: 14px;
    -webkit-border-top-right-radius: 14px;
    border-top-right-radius: 14px;
    -moz-border-radius-topleft: 14px;
    -webkit-border-top-left-radius: 14px;
    border-top-left-radius: 14px;
    -moz-border-radius-bottomright: 14px;
    -webkit-border-bottom-right-radius: 14px;
    border-bottom-right-radius: 14px;
    -moz-border-radius-bottomleft: 14px;
    -webkit-border-bottom-left-radius: 14px;
    border-bottom-left-radius: 14px;
}
#mixedContent .contentBox
{
    font-size: 14px;
}
#mixedContent .contentBox h1
{
    font-size: 15px;
    font-weight: bold;
    color: #993333;
}
#mixedContent .contentBox h2
{
    font-size: 11px;
    font-weight: bold;
    padding-right: 20px;
    text-align: justify;
}
#mixedContent .contentBox .Summary
{
    font-size: 12px;
    color: #DD0000;
    padding-right: 20px;
    text-align: justify;
    
    
  
}

#mixedContent .contentBox a
{
    text-decoration: none;
}










#mixedContentGrid
{
    width: 100%;
    display: block;
    height: 500px;
}
#mixedContentGrid .contentBox
{
    display: block;
    float: left;
    padding-top: 10px;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    height: 500px;
    width: 240px;
}
#mixedContentGrid .contentBox IMG
{
    height: 220px;
    width: 200px;
    margin-left: 16px;
    border: 0px solid #3f7f00;
    border-width: 0px 0px 1px 1px;
    margin: 0px;
    padding: 3px;
    text-decoration: none;
    box-shadow: 0px 4px 5px #888888;
    border: 1px solid #3f7f00;
    -moz-border-radius-topright: 14px;
    -webkit-border-top-right-radius: 14px;
    border-top-right-radius: 14px;
    -moz-border-radius-topleft: 14px;
    -webkit-border-top-left-radius: 14px;
    border-top-left-radius: 14px;
    -moz-border-radius-bottomright: 14px;
    -webkit-border-bottom-right-radius: 14px;
    border-bottom-right-radius: 14px;
    -moz-border-radius-bottomleft: 14px;
    -webkit-border-bottom-left-radius: 14px;
    border-bottom-left-radius: 14px;
}
#mixedContentGrid .contentBox
{
    font-size: 14px;
}
#mixedContentGrid .contentBox h1
{
    font-size: 15px;
    font-weight: bold;
    color: #993333;
}
#mixedContentGrid .contentBox h2
{
    font-size: 11px;
    font-weight: bold;
    padding-right: 20px;
    text-align: justify;
}
#mixedContentGrid .contentBox .Summary
{
    font-size: 12px;
    color: #DD0000;
    padding-right: 20px;
    text-align: justify;
}

#mixedContentGrid .contentBox a
{
    text-decoration: none;
}


.ToolBox
{
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.ToolBox a
{
    text-decoration: none;
}
