/**
 *
 * EDS 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 layout since it has a standard structure to it which is easy for users
 * to use.
 *
 */

    body {
        color: #333;
        font-family: normal,"Segoe UI",tahoma,arial,sans-serif;
    }

    h1,h2,h3,h4,h5,h6 {
        font-weight: normal;
    }

    h1 {
        padding: 0 0 3px 13px;
        color: #6E9AC8;
        border-bottom: 2px solid #6E9AC8;
    }
    
    h2 {
    	color: #069;
    	font-size: 1.3em;
    	font-family: tahoma;
    	font-weight: bold;
    }

    h3 {
    	color: #6e9ac8;
    	font-size: .9em;
    }

    p {}
    
    a {
        color: #006699;
    }
    
    a:link,
    a:visited {
        color: #006699;
    }
    
    a:hover,
    a:active {}
    
    /* All the input fields (text input, textareas, selects) */
    input.input-text,
    input.input-password,
    input[type^=text],
    textarea,
    select {}
    
    table {}
    
    table thead th {}
    
    table th a {}
    
    table th a:hover {}
    
    table td {}
    
    table tr.even td {}
    
    div#page {
    }
    
    div#page,
    div#header,
    div#content,
    div#local,
    div#user {
        width: 906px;
    }
    
    /* 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 {
        width: 900px;
    }

    /** 
     * 
     * HEADER
     * 
     * The header is where your logo, login links, search, and user control links should go.
     *
     */
    
        div#header {
            height: 110px;
        }

        div#branding {
            position: relative;
            height: 100px;
        }
        
        /* 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 by default, you can change this in the settings if you absolutely must.
           
           You must change the width and height of this div to the same size as your logo. */
        div#branding-logo {
            background: transparent url(/public/Mashery/images/clients/eds/eds.gif) no-repeat -477px -80px;
            margin: 19px 0 0 26px;
            width: 146px;
            height: 74px;
        }
        
        div#branding-tagline {
            display: block;
            position: absolute;
            top: 74px;
            left: 188px;
            width: 283px;
            height: 28px;
            background: transparent url(/public/Mashery/images/clients/eds/eds.gif) no-repeat -623px -80px;
        }

    /* END HEADER */
        
    /**
     *
     * USER
     *
     * User information and actions
     *
     */
     
        div#user {
            position: absolute;/* This causes issues in IE6 */
            top: 84px;
            z-index: 999;
        }

        /**
         *
         * USER NAV
         *
         * Login, logout, register, and My Account links.
         *
         */
         
            div#user-nav {
                top: 0;
                background: #efefef url(/public/Mashery/images/clients/eds/eds.gif) no-repeat 0 0;
                height: 30px;
                display: inline; /* For IE */
                margin: 0 2px 0 0; /* Use top margin to move this around when you can. */
            }
         
            div#user-nav ul {
                padding: 0 10px 0 30px;
                overflow: hidden;
                background: transparent url(/public/Mashery/images/clients/eds/eds.gif) no-repeat 0 -204px;
            }
         
            div#user-nav ul li {
                padding-top: 0;
                line-height: 30px;
                font-size: 90%;
            }
            
            /* The user's name, "Signed in as Wally Wombat" */
            div#user-nav ul li span.name {}
            
            div#user-nav ul li a {
                color: #999;
                font-weight: bold;
                text-decoration: underline;
            }

        /* 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 {
            height: 40px;
            left: 0;
            top: 0;
            background: transparent url(/public/Mashery/images/clients/eds/eds.gif) no-repeat 0 -153px;
        }
        
        div#local ul {
            margin: 0 3px;
/*            background: transparent url(/public/Mashery);*/
        }
        
        div#local li {
            margin: 0;
        }
        
        div#local li a {
            margin-top: 4px;
            line-height: 33px;
            width: 150px;
            padding: 0;
            text-align: center;
            color: #417DA7;
            background: transparent url(/public/Mashery/images/clients/eds/eds.gif) no-repeat 100% -14px;
        }
        
            div#local li.last a {
                background: none;
            }
        
        div#local a:hover {
            background-position: 100% -47px;
            color: #fff;
        }
        
            div#local li.last a:hover {
                background: transparent url(/public/Mashery/images/clients/eds/eds.gif) no-repeat 100% -47px;
            }
        
        div#local li.active a,
        div#local li.active a:hover {}
        
    /* END LOCAL NAV */

    /**
     *
     * USER MENU
     *
     * The User Menu contains actions for the user: Start New Entry, New Post, etc.
     * 
     */

        /**
         *
         * SUB LOCAL NAVIGATION
         *
         * Links under each primary navigation section.
         *
         */
         
            div#user-menu {
                display: none;
            }
            
            div#user-menu li a {
            }
            
            div#user-menu li.active a,
            div#user-menu li.active a:hover {
            }
        
        /* END SUBLOCAL NAV */

    /* END USER MENU */

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

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

            div#main {
                width: 706px;
                padding: 0;
                margin-top: 45px;
                margin-left: 0;
                float: right;
            }
            
            div.section {
                padding: 0 16px;
            }

            /**
             *
             * 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.
             *
             */
             
                /* Comments in all sections except the forum. */
                div#main div.comments ol li.comment {
                    border: 1px solid #999;
                }

                /**
                 *
                 * 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 {}
                 
                    body.page-forum ol.categories {}
                    
                    body.page-forum ol.topics {}
                    
                    body.page-forum ol.comments {}
                    
                    /* Subject of a thread */
                    body.page-forum h3.subject{}
                    
                    /* The "original post" in each thread looks different by default */
                    body.page-forum ol.comments li.comment.first {}
                 
                /* END FORUM */
                
                /* DOCS */
                
                    /* Hide docs nav */
                    body.page-docs div#sub {
                        display: none;
                    }
                    
                    body.page-docs div#main {
                        width: 900px;
                    }
                
                /* END DOCS */

            /* 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 {
                width: 180px;
                margin-top: 45px;
                margin-right: 0;
                float: left;
                padding: 0;
            }
            
            div#sub a {
                color: #666;
            	font-size: .95em;
            	text-decoration: none;
            	display: block;
            	padding: 8px 0 8px 5px;
            }
            
            div#sub a.active,
            div#sub a:hover {
                background-color: #e2ebf4;
            }
            
            div#sub a.active {
                font-weight: bold;
            }

        /* END SUB */

    /* END CONTENT */
        
    /**
     *
     * FOOTER
     *
     * Contains your site-info as well as your footer links.
     * 
     */
    
        div#footer {
            border-top: 2px solid #6E9AC8;
            color: #999;
            font-size: 70%;
            padding: 5px 0 0 5px;
            text-transform: uppercase;
        }
        
        div#footer ul {}
        
        div#footer ul li {}
        
        div#footer ul li a {
            color: #999;
            text-decoration: underline;
            font-size: 10px;
        }

        /**
         *
         * 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 h2 {
            color: #333;
        }
        
        div#nav {
            border-bottom: #417DA7;
        }
        
        div#nav ul li a {}
        
        div#nav ul li.active a,
        div#nav ul li.active a:hover {
            background-color: #417DA7;
            color: #fff;
        }

    /* END LOGIN WINDOW */
    
/* END EDS THEME     */