/* Following L&Z brand guidelines. */
/* Included by osuframe.Master    */

/* We'd like to use css variables to define L&Z colours, but Edge and IE don't support this yet.  M$, "it's in our backlog". */

/* Ensure that the target browser knows where it can find the "Lato" font. */
@import url("//fonts.googleapis.com/css?family=Lato");


/*********************************************/
/****************** GLOBALS ******************/
/* Use L&Z's body text style everywhere, except in headings where we have a different style. */
body {
    font-family: "Lucida Sans Unicode","Lucida Grande","Trebuchet MS", Helvetica, Arial, sans-serif;
    color: rgb(102, 102, 102); /* lnz dark grey */
    margin-bottom: 40px; /* sticky footer height */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Lucida Sans Unicode","Lucida Grande","Trebuchet MS", Helvetica, Arial, sans-serif;
    font-weight: bold;
    letter-spacing: .1px;
    text-rendering: optimizeLegibility;
}
/* Now that the 'globals' are defined, more specific selectors below can over-ride if needed. */


/*********************************************/
/****************** BUTTONS ******************/
/* button with class "lnz-btn-primary": lnz light blue with white writing, sort of inverts on hover. */
/* button with class "lnz-btn-secondary": lnz slightly lighter blue with white writing, sort of inverts on hover. */
/* button with class "lnz-btn-wasclicked": uses a slightly darker blue than lnz-btn-primary, sort of inverts on hover. */
/* button with class "lnz-btn-wasntclicked": uses a slightly paler blue than lnz-btn-secondary, sort of inverts on hover. */
/* button with no class: same as lnz-btn-primary. */
button {
    font-family: "Lucida Sans Unicode","Lucida Grande","Trebuchet MS", Helvetica, Arial, sans-serif;
    font-weight: normal;
    color: rgb(255, 255, 255); /* lnz white */
    line-height: 23px;
    background-color: rgb(133, 48, 48); 
    background-image: none;
    border: solid 2px rgb(133, 48, 48);
    border-radius: 2px;
    -moz-border-radius: 45;
    -webkit-box-sizing: content-box;
    margin: 0px;
    padding: 9px 38px;
    letter-spacing: 0px;
    font-size: 12px;
    white-space: normal;
    opacity: 1;
    transition-duration: 0.18s;
    -webkit-transition-duration: 0.18s; /* for Safari */
}

    button:hover {
        color: rgb(255, 255, 255); 
        background-color: rgb(133, 48, 48); 
    }

    button:focus {
        outline: none;
    }

    button:disabled {
        background: #ddd;
        color: rgb(133, 48, 48);
		border: 2px solid rgb(221, 221, 221);
    }

    button::-moz-focus-inner {
        border: 0;
    }

    button.lnz-btn-primary {
    }

        button.lnz-btn-primary:hover {
        }

    button.lnz-btn-secondary {
        background-color: rgb(133, 48, 48); /* lnz paler version of lnz-btn-primary lightblue */
        border: 2px solid rgb(111, 193, 255); /* lnz paler version of lnz-btn-primary lightblue */
    }

        button.lnz-btn-secondary:hover {
            background-color: rgb(255, 255, 255); /* lnz white */
        }

    button.lnz-btn-wasclicked {
        background-color: rgb(133, 48, 48); /* slightly darker blue than lnz-btn-primary */
        border: 2px solid rgb(56, 138, 202); /* slightly darker blue than lnz-btn-primary */
    }

        button.lnz-btn-wasclicked:hover {
            color: rgb(56, 138, 202); /* slightly darker blue than lnz-btn-primary */
            background-color: white;
        }

    button.lnz-btn-wasntclicked {
        background-color: rgb(130, 212, 255); /* slightly paler blue than lnz-btn-secondary */
        border: 2px solid rgb(130, 212, 255); /* slightly paler blue than lnz-btn-secondary */
    }

        button.lnz-btn-wasntclicked:hover {
            color: rgb(130, 212, 255); /* slightly paler blue than lnz-btn-secondary */
            background-color: white;
        }


/*********************************************************/
/************************ ANCHORS ************************/
a:link {
    color:  rgb(133, 48, 48); 
}



/**********************************************************/
/********************* L&Z TOP BANNER *********************/
.lnz-top-banner {
    padding: 0px;
    box-shadow: inset 0px 0px 1px 0px;
    z-index: 9999;
    height: 178px;
    width: 100%;
    display: block;
    background: rgb(255, 255, 255); /* lnz white */
    color: rgb(132, 137, 148);
    background-color: rgb(255, 255, 255)
}

	.lnz-top-banner .lnz-logo {
		height: 128px;
		width: 100%;
		background-image: url(../img/kobas.jpg);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		margin: 25px 25px 25px 25px;
		margin-right: auto;
		margin-left: auto;
/*		border-radius: 50%;*/
	}

    .lnz-top-banner img {
        margin: 24px 0px 0px 24px;
        max-width: 100%;
    }

/*********************************************************/
/********************* STICKY FOOTER *********************/
html {
    position: relative;
    min-height: 100%;
}

.lnz-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40px;
    background-color: #f2f2f2;
}

    .lnz-footer p {
        padding: 10px 0px 0px 32px;
    }


.page-header {
    border-bottom-style: none; /*overriding bootstraps default underline*/
}



/*********************************************************/
/********************* FORM CONTROLS *********************/
/* overriding bootstrap defaults */
.form-control:focus {
    border-color: rgb(133, 48, 48); 
}



