/**
 *
 * ZOOMINFO THEME
 *
 * Check out http://solutions.mashery.com/public/Mashery/styles/masherycssfw.src.css to see the base structural defaults.
 * You can find documentation on customizing your portal at http://solutions.mashery.com/docs/Customizing_Your_Portal
 * We discourage making major changes to the structure of the site since users will most likely be using other Mashery
 * sites with yours. Having a consistent page and navigation structure will make it easier for developers to use Mashery
 * sites together.
 *
 */

    body {
        background: #fff url(/public/Mashery/images/clients/zoominfo/back-shadow.gif) repeat-y 50% 0;
        font-family: arial,helvetica,sans-serif;
    }
    
    pre {
        max-height: 250px;
        width: 620px;
        overflow: auto;
        border-color: #555;
    }
    
    /* IE6 */
    * html pre {
        height: 250px;
    }
    
    q {
        background-color: #eee;
        border: 1px solid #ccc;
        margin: 0 20px 10px;
        display: block;
        padding: 3px;
    }

    p {}
    
    a {
        color: #0033CC;
    }
    
    a:hover {
        text-decoration: underline;
    }
    
    /* All the input fields (text input, textareas, selects) */
    input.input-text,
    input.input-password,
    input[type^=text],
    textarea,
    select {
        border-color: #ccc;
    }
    
    table {
        border: 1px solid #ccc;
    }
    
    table thead th {
        font-weight: bold;
        color: #666;
        background: transparent url(/public/Mashery/images/clients/zoominfo/table-header.gif) repeat-x 0 0;
        border: 1px solid #ccc;
    }
    
    table th a {
        color: #666;
    }
    
    table th a:hover {}
    
    table td {
        border: 1px solid #ccc;
    }
    
    table tr.even td {}
    
    table tr.even:hover td,
    table tr.odd:hover td {}

    div#page {
    }
    
    /* For pages without navigation (you can set which pages you do not want to have navigation on, for whatever reason) */
    div#page.no_local div#main {}
    
    div#page.no_local div#sub {}
    
    /* For pages without a side column, you can set which pages do or do not have side columns. */
    div#page.no_sub div#main {
    }

    /** 
     * 
     * HEADER
     * 
     * The header is where your logo, login links, search, and user control links should go.
     *
     */
    
        div#header {
            background-color: #fff;
        }

        /* Here is where you put your logo! Yes, it is the background of a div. This div is special because Javascript makes it behave
           like a Home link. You must change the width and height of this div to the same size as your logo. */
        div#branding-logo {
            background: #fff url(/public/Mashery/images/clients/zoominfo/logo.gif) no-repeat 0 0;
            margin: 10px;
            width: 250px;
            height: 50px;
        }

    /* END HEADER */
        
    /**
     *
     * USER
     *
     * User information and actions
     *
     */

        /**
         *
         * USER NAV
         *
         * Login, logout, register, and My Account links.
         *
         */
         
            div#user-nav ul li {
                font-size: 95%;
                border-left: 1px solid #aaa;
            }
            
            div#user-nav ul li.first {
                font-size: 100%;
                border: none;
            }
            
            /* The user's name, "Signed in as Wally Wombat" */
            div#user-nav ul li span.name {
                font-weight: bold;
            }
            
            div#user-nav ul li a {}

        /* END USER NAV */

    /* END USER */

    /**
     *
     * LOCAL NAV
     *
     * This is the main navigation bar. You can customize your links in the Settings page.
     *
     * The div#local appears AFTER the content for accessbility reasons. Please see
     * http: //www.contentwithstyle.co.uk/Articles/17/ for details.
     *
     * Because the navigation is placed below the content, you will most likely need
     * to use absolute positioning. Please make sure you understand positioning before
     * trying to customize it!
     *
     */

        div#local {
            top: 0;
            left: 0;
            width: 900px;
            border-bottom: 1px solid #8B9CBD;
        }
        
        div#local ul {
            margin-left: 15px;
        }
        
        div#local li {
            margin: 0 0 0 10px;
            height: 26px;
            background: transparent url(/public/Mashery/images/clients/zoominfo/zoominfo.gif) no-repeat 100% -300px;
        }
        
        div#local a {
            position: relative;
            border-bottom: 1px solid #8B9CBD;
            z-index: 20px;
            line-height: 26px;
            background: transparent url(/public/Mashery/images/clients/zoominfo/zoominfo.gif) no-repeat 0 -200px;
            color: #000;
            margin: 0 0 -1px;
        }
        
        div#local a:hover {
            text-decoration: none;
        }
        
        div#local li.active a,
        div#local li.active a:hover {
            background-position: 0 0;
            border-bottom-color: #FFDBA6;
        }
        
        div#local li.active {
            background-position: 100% -100px;
        }
        
    /* END LOCAL NAV */

    /**
     *
     * USER MENU AND CONTENT HEADER
     *
     * The User Menu contains actions for the user: Start New Entry, New Post, etc.
     * 
     * In the dashboard, the div#content-header contains navigation elements for the current
     * page.
     *
     * Both are located directly under div#local.
     *
     */

        /**
         *
         * SUB LOCAL NAVIGATION
         *
         * Options for each page, sometimes these are user actions, in the dashboard they are sub-pages.
         *
         */
         
            div#user-menu,
            div#content-header {
                left: 0;
                background: transparent url(/public/Mashery/images/clients/zoominfo/zoominfo.gif) repeat-x 0 -600px;
                width: 900px;
                border-bottom: 1px solid #8B9CBD;
            }
            
            div#user-menu {
                top: 115px;
            }
            
            div#content-header {
                top: 27px;
            }
            
            div#user-menu li a,
            div#content-header li a {
            }
            
            div#user-menu li.active a,
            div#content-header li.active a,
            div#user-menu li.active a:hover,
            div#content-header li.active a:hover {
                font-weight: bold;
                color: #000;
            }
        
        /* END SUBLOCAL NAV */

    /* END USER MENU AND CONTENT HEADER */

    /**
     *
     * CONTENT 
     *
     * Where the magic happens (Content of page)
     *
     */
     
        div#content {
        }

        /**
         *
         * MAIN
         *
         * This is where almost all the content for every page is.
         *
         */

            div#main {
                margin-top: 57px;
                margin-left: 0;
                width: 646px;
            }

            /**
             *
             * BLOG, WIKI, FORUM, and DOCS
             *
             * Styling for the sections, meta info, file tables, and other parts of these apps.
             *
             * Remember, there are usually different states of each app type! For example, when browsing the forum the body will have
             * an id of #page-forum and a class of .browse. If you click on a forum post to view it, the body will still have the same
             * id, but the class will change to .read. This way you can control the different views of each app.
             *
             */
             
                div#main div.comments ol li.comment {}
                
                body.page-page div#sub {
                    background-color: #eee;
                }

                /**
                 *
                 * FORUM
                 *
                 * The forum is very different than the blog, wiki, docs, etc. Be sure to check out the markup, the default styling
                 * should be ok for most people, but you may need to override some of your list (ul, ol) rules that you set in this
                 * stylesheet.
                 *
                 */
                 
                    /* The "Start new topic" button */
                    body.page-forum a.create-new {}
                 
                    ol.categories {}
                    
                    ol.topics {}
                    
                    ol.comments {}
                    
                    /* Subject of a thread */
                    body.page-forum h3.subject{}
                    
                    /* The "original post" in each thread looks different by default */
                    ol.comments li.comment.first {}
                 
                /* END FORUM */

                /**
                 *
                 * DOCUMENTATION
                 *
                 * Zoominfo has special docs that need special styling and a lot of love.
                 *
                 */
                 
                    ul.documentation,
                    ul.documentation ul {
                        margin: 0;
                    }
                 
                    ul.documentation li {
                        list-style: none;
                        margin-left: 0;
                    }
                    
                    p.sectionHead {
                        font-size: 140%;
                        font-weight: bold;
                        margin-bottom: .5em;
                    }
                    
                    ul.documentation li ul li p.sectionHead {
                        font-size: 120%;
                        margin: 0 0 .5em;
                    }
                    
                    ul.documentation li ul li ul li p.sectionHead {
                        font-size: 110%;
                    }
                    
                    ul.documentation table {
                        margin: 0 1px;
                    }
                    
                    /* DOCUMENTATION NAV */
                    
                        div#sub ul.docs-nav {
                            margin: 0;
                        }
                        
                        body.page-page div#sub ul.docs-nav li {
                            margin-left: 0;
                            list-style: none;
                        }
                        
                        body.page-page div#sub ul.docs-nav ul li {
                            margin-left: 10px;
                        }
                    
                        body.page-page div#sub ul.docs-nav li a {
                            color: #333;
                            font-weight: bold;
                        }
                        
                        body.page-page div#sub ul.docs-nav li ul li a {
                            color: #0033CC;
                            font-weight: normal;
                        }
                    
                    /* END DOCUMENTATION NAV */
                    
                /* END DOCUMENTATION */
                
            /* END BLOG, WIKI, FORUM, and DOCS */

        /* END MAIN */
        
        /**
         *
         * SUB
         *
         * The sub div is usually the small sidebar on the blog/wiki/forum, although some may prefer to hide it altogether.
         *
         * In the Dashboard, the sub is also where the form lives to add new content in the Content page.
         *
         */
                 
            div#sub {
                margin-top: 57px;
                margin-right: 0;
                width: 194px;
            }
            
            * html div#sub {
                width: 188px;
            }
            
            div#sub a.active {}
            
            body.page-page div#main {
                float: right;
            }
            
            body.page-page div#sub {
                float: left;
            }

        /* END SUB */

        /**
         *
         * ADMIN AREA
         *
         * The Admin Area refers to the Dashboard. This area is only seen by moderators/administrators and it inherits
         * the styling of the rest of the site, so it should look "ok" even without any extra attention.
         *
         * NOTE: The Reports pages and API pages in the dashboard have different body IDs (.page-reports and #page-adminApis)
         * whereas the rest of the Dashboard pages have the same ID of .page-adminArea. This is because the Reports and
         * API sections are considered mini-apps of their own.
         *
         */

            body.page-adminArea div#main, body.page-adminApis div#main {
                margin-top: 27px;
            }
            
        /* END ADMIN AREA */
        
    /* END CONTENT */
        
    /**
     *
     * FOOTER
     *
     * Contains your site-info as well as your footer links.
     * 
     */
    
        div#footer {
            text-align: center;
        }
        
        div#footer ul {}
        
        div#footer ul li {}
        
        div#footer ul li a {}

        /**
         *
         * SITEINFO
         *
         * The siteinfo you can edit from the Settings page in the Dashboard.
         * Usually this contains copyright stuff and credits.
         *
         */
            
            div#siteinfo {}
            
            div#siteinfo p {}
        
        /* END SITEINFO */
    
    /* END FOOTER */
    
    /**
     *
     * LOGIN WINDOW
     *
     * This only appears in the popup login window. The contents are: "Sign in using: Mashery | Typekey".
     *
     */
        
        div#nav {
            border-bottom: 1px solid #8B9CBD;
        }
        
        div#nav ul li a {}
        
        div#nav ul li.active a,
        div#nav ul li.active a:hover {
            background-color: #FF9900;
            color: #fff;
            text-decoration: none;
        }

    /* END LOGIN WINDOW */
    
/* END ZOOMINFO THEME */