

                        .pdmenu {
                            height:25px;
                            margin-left:0px;
                            margin-top:-20px;
                        }

                        .pdmenu ul { /* all lists */
                            padding: 0;
                            margin: 0;
                            list-style: none;
                        }

                        .pdmenu li { /* all list items */
                            float: left;
                            position: relative;
                            width: 10em;
                        }

                        .pdmenu li a {
                            color:#000000;
                            margin:10px;
                            font-size:11px;
                            padding-bottom:5px;
                        }

                        .pdmenu li ul { /* second-level lists */
                            display: none;
                            position: absolute;
                            top: 1em;
                            left: 0;
                            background-color:#FFFFFF;
                            margin:0px;
                            padding:7px;
                        }

                        .pdmenu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
                            top: auto;
                            left: auto;
                        }

                        .pdmenu li:hover ul, li.over ul { /* lists nested under hovered list items */
                            display: block;
                            border-top:1px solid #FFFFFF;
                            border-left:1px solid #485B74;
                            border-right:1px solid #485B74;
                            border-bottom:1px solid #485B74;
                        }

                        .pdmenu ul#nav li ul li a {
                            color:#000000;
                            font-weight:normal;
                        }

                        #content {
                            clear: left;
                        }
