﻿
        nav #signup a {
            border-radius: 0 3px 3px 0;
        }

        nav #login-trigger {
            border-radius: 3px 0 0 3px;
        }

            /*nav #login-trigger:hover,
            nav #login .active,
            nav #signup a:hover {
                background: #fff;
            }*/

        nav #login-content {
            display: none;
            position: absolute;
            top: 24px;
            right: 0;
            z-index: 999;
            background: #fff;
            background-image: linear-gradient(top, #fff, #eee);
            padding: 15px;
            box-shadow: 0 2px 2px -1px rgba(0,0,0,.9);
            border-radius: 3px 0 3px 3px;
        }

        nav li #login-content {
            right: 0;
            width: 250px;
            top:40px;
        }

        /*--------------------*/

        #inputs input {
            background: #f1f1f1;
            padding: 6px 5px;
            margin: 0 0 5px 0;
            width: 200px;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-shadow: 0 1px 1px #ccc inset;
        }

         #inputs select {
            background: #f1f1f1;
            /*padding: 6px 5px;*/
            margin: 0 0 5px 0;
            width: 200px;
            border: 1px solid #ccc;
            border-radius: 3px;
            box-shadow: 0 1px 1px #ccc inset;
            height: 27px;
        }

            #inputs input:focus {
                background-color: #fff;
                border-color: #e8c291;
                outline: none;
                box-shadow: 0 0 0 1px #e8c291 inset;
            }

        /*--------------------*/

        #login #actions {
            margin: 10px 0 0 0;
        }

        .submit {
            background-color: #8b3c94;
            background-image: linear-gradient(top, #e97171, #0050A3);
            -moz-border-radius: 3px;
            -webkit-border-radius: 3px;
            border-radius: 3px;
            text-shadow: 0 1px 0 rgba(0,0,0,.5);
            box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset;
            border: 1px solid #7e1515;
            float: left;
            height: 30px;
            padding: 0;
            width: 200px;
            cursor: pointer;
            font: bold 14px Arial, Helvetica;
            color: #fff;
        }

            .submit:hover,
            .submit:focus {
                background-color: #c789ce;
                background-image: linear-gradient(top, #0050A3, #e97171);
            }

            .submit:active {
                outline: none;
                box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
            }

            .submit::-moz-focus-inner {
                border: none;
            }

        #login label {
            float: right;
            line-height: 30px;
        }

            #login label input {
                position: relative;
                top: 2px;
                right: 2px;
            }