
/*******************************************************************************

 - interface.css

 - Här finns styles för gränssnittskomponenter som:
	• Formulär
	• Knappar
	• Listor
	• Tabeller

*******************************************************************************/

/**********************************
  Färger
**********************************/

/* Awareness */
.primary-color {
	color: #55798E;
}
/* Behöver bestämmas */
.accent-color {
	color: #B1690B;
}

/* Övriga färger */
.white {
	color: white;
}
.green {
	color:#618954;
}
.red {
	color: red;
}

.pink {
	color: #ec0c6e;
}

.blue {
	color: #55798e;
}
.grey {
	color: #5b5b5b;
}
.semi-grey {
	color: #717171;
}
.light-grey {
	color: #cbcbcb;
}
.black {
	color: #404142;
}
.light-blue {
	color: #87afb0;
}

.yellow {
	color: #f4c84b;
}

/* Färg vid hover för länkar */ 
a.base-color:hover.
a .base-color:hover {
	color: #454545;
}
/* Behöver bestämmas */
a.accent-color:hover.
a .accent-color:hover {
}
a.white:hover,
a .white:hover {
	color: #EFEFEF;
}
a.grey:hover.
a .grey:hover {
	color: #454545;
}
a.semi-grey:hover,
a .semi-grey:hover {
	color: #404142;
}
a.light-grey:hover,
a .light-grey:hover {
	color: #ADADAD;
}

/**********************************
  Kolumner
**********************************/
.one-half-column {
	float: left;
	width: 50%;
}
.one-third-column {
	float: left;
	width: 33%;
}
.one-forth-column {
	float: left;
	width: 25%;
}
.one-fifth-column {
	float: left;
	width: 20%;
}
.two-fifth-column {
	float: left;
	width: 40%;
}
.two-third-column {
	float: left;
	width: 66%;
}
.three-forth-column {
	float: left;
	width: 75%;
}
.one-half-column.padded {
	width: 45%;
	margin-right: 5%;
}
.one-third-column.padded {
	width: 28%;
	margin-right: 5%;
}
.one-forth-column.padded {
	width: 20%;
	margin-right: 5%;
}
.one-fifth-column.padded {
	width: 15%;
	margin-right: 5%;
}
.two-fifth-column.padded {
	width: 25%;
	margin-right: 5%;
}
.two-third-column.padded {
	width: 59%;
	margin-right: 5%;
}
.three-forth-column.padded {
	width: 70%;
	margin-right: 5%;
}

/**********************************
  Rader
**********************************/
.row{
	padding-left: 3px;
	padding-top: 5px;
	padding-bottom:5px;
	overflow:auto;
/*	border-bottom: 1px solid #DFDFDF;*/
}
.row.odd{
	background-color: #F9F9F9;
}
.row.first{
	padding-top: 0px;
}


/**********************************
  Visningsläge av data
**********************************/

h2.icon {
    margin: 0 0 6px 0;
    padding: 10px 0 2px 38px;
}
.display-box {
	border-top: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
}
.display-box-header {
	display: block;
}
.display-box-header i {
	float: left;
	margin-top: 9px;
	margin-right: 7px;
}
.display-box-header i.icon-mail-send01{
	margin-top: 5px;
}
.display-box-header h2 {
	float: left;
	margin-bottom: 0.3em;
}
.display-box.colored-top {
	border-top: 2px solid #ec0c6e;
}
.display-box-row {
	height: 42px;
	color: #4d4d4e;
	font-size: 14px;
	position: relative;
    background-color: #fbfbfb;
    border-bottom: 1px solid #e6e6e6;
}
.display-box-row.dynamic {
	height: auto;
	padding: 8px 17px 10px;
}
.display-box-row.divider {
	margin-top: -1px;
	border-top: 2px solid #cacaca;
}
.display-box-row a,
.display-box-row a:link,
.display-box-row a:visited,
.display-box-row a:active,
.display-box-row a:hover {
	color: #4d4d4e;
}
.display-box-row .main {
	padding: 12px 14px 11px 14px;
	cursor: pointer;
}
.display-box-row:hover {
	border-bottom: 1px solid #dddddd;
}
.display-box-row .main:hover {
	background: #f4f4f4;
}
.display-box-row .side {
	position: absolute;
	top: -1px;
	right: -1px;
}
.display-box-row.first .side {
	top: 0;
}
.display-box-row .interactor,
.display-box-row .indicator {
	width: 36px;
	height: 32px;
	float: left;
	margin: 0 0 0 -1px;
	background-repeat:no-repeat;
    position: relative;
    z-index: 0;
    padding-top: 13px;
}
.display-box-row .interactor {
	border-color: #d6d6d6;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
	background-color: #fbfbfb;
	text-align: center;

}
.display-box-row .interactor:hover {
	background-color: #f1f1f1;
}
.display-box-row .indicator {
	width: 32px;
}
.display-box-row .indicator.last {
	width: 32px;
	margin: 0 4px 0 -1px;
}
.display-box-row.first .interactor {
	border-width: 0 1px 1px 1px;
}
.display-box-row .interactor:hover {
	border-color: #bbbbbb;
	z-index: 1;
}
.display-box-content {
    
}
.display-box-footer {
	padding: 1px 5px;
	margin-top: -1px;
    background: #f7f7f7;
    border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e6e6e6;
    border-left: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
	border-radius: 0px 0px 4px 4px;
	-webkit-border-radius: 0px 0px 4px 4px;
	-moz-border-radius: 0px 0px 4px 4px;
	position: relative;
	behavior: url(/css/ieCSS3.php);
}
.display-box-footer.no-content {
	border-top: none;
	margin-top: 0;
}

.display-box-newsletter-footer {
    background: #f7f7f7;
	padding: 5px 5px; 
	border-radius: 0px 0px 4px 4px;
	-webkit-border-radius: 0px 0px 4px 4px;
	-moz-border-radius: 0px 0px 4px 4px;
	position: relative;
}

.display-box-row-handle-subscriptions {
	height: 60px;
	color: #4d4d4e;
	font-size: 14px;
	position: relative;
    background-color: #fbfbfb;
    border-bottom: 1px solid #e6e6e6;
}

.display-box-row-handle-subscriptions a,
.display-box-row-handle-subscriptions a:link,
.display-box-row-handle-subscriptions a:visited,
.display-box-row-handle-subscriptions a:active,
.display-box-row-handle-subscriptions a:hover {
	color: #4d4d4e;
}
.display-box-row-handle-subscriptions .main {
	padding: 12px 14px 11px 14px;
	cursor: pointer;
}
.display-box-row-handle-subscriptions:hover {
	border-bottom: 1px solid #dddddd;
}
.display-box-row-handle-subscriptions .main:hover {
	background: #f4f4f4;
}
.display-box-row-handle-subscriptions .side {
	position: absolute;
	top: -1px;
	right: -1px;
}



/**********************************
  Visningsläge av formulärdata
**********************************/
.section-title {
    font-weight: bold;
    margin-top: 20px;
}

div.horizontal-layout .display-field {
	clear: both;
}
div.horizontal-layout .display-field .field-label {
	width: 170px;
	float: left;
}
div.horizontal-layout .display-field .field-content {
	float: left;
}
.display-field {
	clear: both;
	padding: 5px 0;
}
.display-field .field-label {
	width: auto;
	clear: both;
	float: none;
}
.display-field .field-content {
	padding: 4px 0 0 0;
}
.display-box .display-field {
	
}


/**********************************
  Tool-tip
**********************************/
#powerTip {
	cursor: default;
	background-color: #333333;
	background-color: rgba(0, 0, 0, 0.85);
	border-radius: 3px 3px 3px 3px;
	color: #ffffff;
	display: none;
	padding: 5px 9px;
	position: absolute;
	white-space: nowrap;
	z-index: 2147483647;
}
#powerTip:before {
	content: "";
	position: absolute;
}
#powerTip.n:before, #powerTip.s:before {
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	left: 50%;
	margin-left: -5px;
}
#powerTip.e:before, #powerTip.w:before {
	border-bottom: 5px solid transparent;
	border-top: 5px solid transparent;
	margin-top: -5px;
	top: 50%;
}
#powerTip.n:before {
	border-top: 5px solid #333333;
	border-top: 5px solid rgba(0, 0, 0, 0.85);
	bottom: -5px;
}
#powerTip.e:before {
	border-right: 10px solid #333333;
	border-right: 10px solid rgba(0, 0, 0, 0.85);
	left: -10px;
}
#powerTip.s:before {
	border-bottom: 10px solid #333333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.85);
	top: -10px;
}
#powerTip.w:before {
	border-left: 10px solid #333333;
	border-left: 10px solid rgba(0, 0, 0, 0.85);
	right: -10px;
}
#powerTip.ne:before, #powerTip.se:before {
	border-right: 10px solid transparent;
	border-left: 0;
	left: 10px;
}
#powerTip.nw:before, #powerTip.sw:before {
	border-left: 10px solid transparent;
	border-right: 0;
	right: 10px;
}
#powerTip.ne:before, #powerTip.nw:before {
	border-top: 10px solid #333333;
	border-top: 10px solid rgba(0, 0, 0, 0.85);
	bottom: -10px;
}
#powerTip.se:before, #powerTip.sw:before {
	border-bottom: 10px solid #333333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.85);
	top: -10px;
}
#powerTip.nw-alt:before, #powerTip.ne-alt:before,
#powerTip.sw-alt:before, #powerTip.se-alt:before {
	border-top: 10px solid #333333;
	border-top: 10px solid rgba(0, 0, 0, 0.85);
	bottom: -10px;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	left: 10px;
}
#powerTip.ne-alt:before {
	left: auto;
	right: 10px;
}
#powerTip.sw-alt:before, #powerTip.se-alt:before {
	border-top: none;
	border-bottom: 10px solid #333;
	border-bottom: 10px solid rgba(0, 0, 0, 0.85);
	bottom: auto;
	top: -10px;
}
#powerTip.se-alt:before {
	left: auto;
	right: 10px;
}


/**********************************
  Formulär
**********************************/

/* Reset */
input,
input:focus,
input:active  {
     outline: 0;
}
form.horizontal-layout {
	
}
form.vertical-layout {
	
}
.vertical-layout .field-label {
	float: none;
	clear:both;
	margin: 0 0 2px 0;
	width: 100%;
}
.vertical-layout .field-control {
	float: none;
	clear:both;
}

.right-aligned-labels .field-label {
	text-align: right;
	padding-right: 10px;
}
/* Rubrik för formulär */
.form-header {
    border-bottom: 1px solid #d8d8d8;
    margin: 0 0 15px;
    padding: 0 0 12px;
}
/* Titel för formulär */
.form-title {
    color: #4B83BF;
    font-size: 26px;
    font-family: Arial, Verdana, Helvetica, sans-serif;
}
/* Beskriving för formulär */
.form-description {
	color: #9a9a9a;
	font-size: 13px;
	margin: 4px 0 0 1px;
}
/* Sektion */
.form-section {
	margin: 0 0 30px 0;
}
/* Knappar */
.form-buttons {
	clear: both;
    margin: 25px 0 5px 0;
}
/* Feedback för formulär */
.form-feedback {
	display: none;
	margin: 0 0 15px 0;
	padding: 10px;
	border: 1px solid #cbcbcb;;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
.form-feedback i {
	display: inline-block;
	vertical-align: middle;
	width: 35px;
}
.form-feedback p {
	display: inline-block;
	width: 90%;
	margin: 0;
	vertical-align: middle;
}
.form-feedback a {
	text-decoration: underline;
	color: #303030;
}
.form-feedback.error,
.form-feedback.warning,
.form-feedback.success {
	display: block;
}
/* Error-feedback */
.form-feedback.error {
	background-color: #F3E1E1;
}
.form-feedback.error i{
	color: #CB605D;
}
/* Varning-feedback */
.form-feedback.warning {
	background-color: #faf0db;
}
.form-feedback.warning i {
	color:#db970e;
}
/* Success-feedback */
.form-feedback.success {
	background-color: #e7f3e1;
}
.form-feedback.success i{
    color: #85c464;
}

/* Fält i formulär */
.form-field {
	clear: both;
    padding-bottom: 3px;
}
/* Label i fält */
.field-label {
    float: left;
    width: 180px;
    font-size: 1.2em;
	padding: 3px 0 0 0;
}
.field-label.wide {
    width: 300px;
    padding-right: 30px;
    box-sizing: border-box;
}
/* Asterix för obligatoriska fält - placeras i en span inuti .field-label */
.field-asterix {
	display: inline-block;
	width: 10px;
	padding: 5px 0px 0px 3px;
}
/* Kontroller för fält - ex. input, select, textarea etc */
.field-description.has-action {
	text-align: right;
}
.field-description.has-action a {
	text-decoration: none;
	color: #4B83BF;
	padding: 0 4px 0 0;
}
.field-description.warning{
	color: #bb8c2d;
}
.field-feedback {
	float: left;
	margin: 0 0 0 10px;
	padding: 7px 0;
}
.field-error.field-control input,
.field-error .field-control select,
.field-error.field-control textarea,
.field-error.field-control button {
    background-color: #F3E1E1 !important;
    border-color: #CB605D !important;
    color: #CB605D !important;
}
.field-error .field-feedback {
	color: #CB605D;
}
.field-warning .field-control input,
.field-warning .field-control select,
.field-warning .field-control textarea {
    background-color: #faf0db;
    border-color: #e3ae45;
    color: #bb8c2d;
}
.field-warning .field-feedback {
	color: #bb8c2d;
}
.field-correct .field-control input,
.field-correct .field-control select,
.field-correct .field-control textarea {
    background-color: #e7f3e1;
    border-color: #85c464;
    color: #5c933f;
}
.field-correct .field-feedback {
	color: #5c933f;
}
.field-control {
	float: left;
	color: #555555;
	width: 410px;
	position: relative;
}

.field-control-subscriptions {
	float: right;
	color: #555555;
	position: relative;
}

.field-control-subscriptions-manual {
	float: right;
	color: #555555;
	position: relative;
	padding-right: 15px;
}

.field-control-ai {
	float: left;
	color: #555555;
	width: 760px;
	position: relative;
	padding: 2px 0 0 0;
}

.field-control-ai select {
	width: 100px;
	margin-left: 5px;
	padding: 2px;
	color: #555555;
	background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    border-radius: 4px 4px 4px 4px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
}

.field-control-ai-fields {
	padding: 5px 5px 5px 0;
}

#storys-amount-infotext {
	padding-left: 5px;

}

.form-text {
	font-size: 16px;
    margin-bottom: 15px;
    width: 590px;
}

.form-text.wide {
	width: 710px;
}

.form-text.small {
    font-size: 14px;
}

.form-text.bold {
    font-weight: bold;
}

.form-text.italic {
	font-style: italic;
}

.form-text.space-after {
	margin-bottom: 40px;
}

.form-divider {
	width: 710px;
    border-top: 1px solid #d0d0d0;
    margin: 40px 0 20px;
}


/* Låt kontrollern ta upp hela bredden */
.field-control.full-width{
	width:100% !important;
}
#tools .widget .field-control {
    width: 200px;
}
/* Rubriken ligger ovanför checkboxarna */
#select_view_edit .selection .field-control{
	width:100%;
}

/* Olika typer av kontroller */
.field-control input,
.field-control select,
.field-control textarea {
	width: 100%;
	padding: 6px;
	color: #555555;
	background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #cccccc;
    border-radius: 4px 4px 4px 4px;
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none;
}
.field-control input[text] {
	height: 30px;
}	
.form-field.required-field .field-asterix {
	display: inline-block;
	width: 10px;
	padding: 2px 0 0 2px;
}
.field-control select {
	padding: 3px;
	width: 100%;
}
.field-control input.radio,
.field-control input.checkbox,
.field-control input[type="radio"],
.field-control input[type="checkbox"] {
	width: auto;
	margin-top: 4px;
	border: 0;
/*	box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);*/
	background-color: transparent;
}
/* Avaktiverad kontroll */
.field-control .disabled {
	color:#bababa;
}

.field-control option:disabled {
	color:#bababa;
}

/* Markera aktiv kontroll utom vid valideringsfel */
.form-field:not(.validate) .field-control input[type="text"]:focus, .form-field:not(.validate) .field-control input[type="password"]:focus, .form-field:not(.validate) .field-control textarea:focus {
	border: 1px solid #F4B350;
}
/* Beskrivning av fält - placeras under kontroller */
.field-description {
	color: #3E3D3D;
	font-size: 11px;
	padding: 5px 0 5px 1px;
}
/* Alternativ för fält - ex. en länk */
.field-description.has-action {
	text-align: right;
}
.field-description.has-action a {
	text-decoration: none;
	color: #4B83BF;
	padding: 0 4px 0 0;
}

/* 
 * Validering av fält - lägg till klassen .validate till .form-field
 * Vid fel läggs klassen .field-error till .form-field
 */

.form-field.validate {}

/* Vid validering används .field-feedback för att visa meddelanden. 
 * Den placeras under .field-control och är dold som standard
 */
.form-field .field-feedback {
    display: none;
	margin: 10px 0;
    padding: 5px;
    border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
}
/* Feedback för fält - felmeddelande */
.form-field.field-error .field-feedback {
	display: inline-block;
	background-color: #F3E1E1;
    color: #CB605D;
}
/* Feedback för fält - varning */
.form-field.field-warning .field-feedback {
	display: inline-block;
	background-color: #db970e;
    color: #db970e;
}
/* Feedback för fält - korrekt */
.form-field.field-correct .field-feedback {
	background-color: #e7f3e1;
    color: #5c933f;
}
/* Feedback för kontroll - Felmeddelande */
.form-field.field-error .field-control input,
.form-field.field-error .field-control select,
.form-field.field-error .field-control textarea,
.form-field.field-error .field-control button {
    background-color: #F3E1E1;
    border-color: #CB605D;
}
/* Feedback för kontroll - varning */
.form-field.field-warning .field-control input,
.form-field.field-warning .field-control select,
.form-field.field-warning .field-control textarea,
.form-field.field-warning .field-control button {
    background-color: #faf0db;
    border-color: #db970e;
}
/* Feedback för kontroll - korrekt */
.form-field.field-correct .field-control input,
.form-field.field-correct .field-control select,
.form-field.field-correct .field-control textarea,
.form-field.field-correct .field-control button {
    background-color: #e7f3e1;
    border-color: #85c464;
}

/* Övrigt */
.right-aligned-labels .field-label {
	text-align: right;
	padding-right: 10px;
}
#tools .widget .field-control {
    width: 200px;
}
.form-field.required-field .field-label {
	display: inline-block;
}
.form-field .error{
	color:#CB605D;
}

/* Styling av placeholder, fix för att visa placeholder i IE i sökrutan  */
input.placeholder {
  color: #717171;
}
::-webkit-input-placeholder { color:#fff; }
::-moz-placeholder { color:#fff; } 
:-ms-input-placeholder { color:#fff; } 
input:-moz-placeholder { color:#fff; }


/*********************************************************
  Formulär - komponent som visar/döljer dolda alternativ
*********************************************************/
.expander-control {
	position: relative;
	margin: 0 0 5px 0;
}
.expander-content {
	display: none;
	padding: 6px 10px 9px 10px;
	margin: -1px 0 10px 0;
	border: 1px solid #dddddd;
	border-radius: 0 0 5px 5px;
}
.expander-content.visible {
	display: block;
}
.expander-option {
	float: left;
	width: 49%;
}
.expander-button {
	color: #737373;
	font-size: 11px;
	font-weight: bold;
	padding: 8px 14px;
	cursor: pointer;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
	border-width: 1px 1px 1px 1px;
	border-style: solid;
	border-color: #dddddd;
	border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	position: relative;
	behavior: url(/css/ieCSS3.php);
	background: #f8f8f8;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fdfdfd), to(#f1f1f1));
	background: -webkit-linear-gradient(#fdfdfd, #f1f1f1);
	background: -moz-linear-gradient(#fdfdfd, #f1f1f1);
	background: -o-linear-gradient(#fdfdfd, #f1f1f1);
	background: linear-gradient(#fdfdfd, #f1f1f1);
	-pie-background: linear-gradient(#fdfdfd, #f1f1f1);
}
.expander-button:hover {
	color: #555555;
}
.expander-button .label {
	float: left;
	padding: 0;
	height: 13px;
	line-height: 13px;
	overflow: hidden;
	display: inline-block !important;
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}
.expander-button.expanded {
	color: #555555;
	border-width: 1px 1px 1px 1px;
	border-radius: 4px 4px 0 0;
	border-color: #dddddd #dddddd #e2e2e2 #dddddd;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f1f1f1), to(#fafafa));
	background: -webkit-linear-gradient(#f4f4f4, #f7f7f7);
	background: -moz-linear-gradient(#f4f4f4, #f7f7f7);
	background: -o-linear-gradient(#f4f4f4, #f7f7f7);
	background: linear-gradient(#f4f4f4, #f7f7f7);
	-pie-background: linear-gradient(#f4f4f4, #f7f7f7);
}
		

/**********************************
  Formulär - pop-in hjälpbox
**********************************/
.help-box {
	display: none;
	position: absolute;
	right: -195px;
	top: -1px;
	width: 150px;
    padding: 9px 13px;
    margin: 1px 0 0 15px;
    color: #9b893f;
    background-color: #f6e6a6;
    border: 2px solid #dbc87d;
	border-radius: 4px 4px 4px 4px;
	-webkit-border-radius: 4px 4px 4px 4px;
	-moz-border-radius: 4px 4px 4px 4px;
	behavior: url(/css/ieCSS3.php);
}
.help-box-arrow-border {
	height: 0;
	width: 0;
	top: 10px;
	left: -14px;
	position: absolute;
	border-color: transparent #dbc87d transparent transparent;
	border-style: dotted solid dotted dotted;
	border-width: 6px;
}
.help-box-arrow {
	height: 0;
	width: 0;
	top: 10px;
	left: -12px;
	position: absolute;
	border-color: transparent #f6e6a6 transparent transparent;
	border-style: dotted solid dotted dotted;
	border-width: 6px;
}

/**********************************
  Knappar
**********************************/
.button {
	display: inline-block;
	float: left;
	color: #555555;
	height: 18px;
	font-size: 12px;
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
	line-height: 16px;
	text-decoration: none;
	margin: 0 10px 0 0;
	padding: 6px 11px 6px 11px;
	cursor: pointer;
	outline: none;
	
	background: #eeeeee;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f2f2f2), to(#e7e7e7));
	background: -webkit-linear-gradient(#f2f2f2, #e7e7e7);
	background: -moz-linear-gradient(#f2f2f2, #e7e7e7);
	background: -o-linear-gradient(#f2f2f2, #e7e7e7);
	background: linear-gradient(#f2f2f2, #e7e7e7);
	
	-moz-box-shadow:inset 0 1px 1px #ffffff;
	-webkit-box-shadow:inset 0 1px 1px #ffffff;
	box-shadow:inset 0 1px 1px #ffffff;
	
	border: solid 1px #bfbfbf;
	border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	position: relative;
	behavior: url(/css/ieCSS3.php);
	
	user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-webkit-touch-callout: none;
}
button.button,
input.submit.button,
input[type="submit"].button,
input[type="button"].button {	
	height: 32px;
}
.button i {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.button:hover {
	background: #e6e6e6;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#eeeeee), to(#dadada));
	background: -webkit-linear-gradient(#eeeeee, #dadada);
	background: -moz-linear-gradient(#eeeeee, #dadada);
	background: -o-linear-gradient(#eeeeee, #dadada);
	background: linear-gradient(#eeeeee, #dadada);
	border-color: #aaaaaa;
	color: #333333;
	text-decoration: none;
}
.button:active {
	border-color: #777777;
	color: #333333;
	outline: none;
}
.button:visited {
	color: #555555;
}
.button:disabled{
    color: #999999;
    border: solid 1px #D5D5D5;
}
.button:disabled:hover{
    background: #eeeeee;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#f2f2f2), to(#e7e7e7));
	background: -webkit-linear-gradient(#f2f2f2, #e7e7e7);
	background: -moz-linear-gradient(#f2f2f2, #e7e7e7);
	background: -o-linear-gradient(#f2f2f2, #e7e7e7);
	background: linear-gradient(#f2f2f2, #e7e7e7);
	-pie-background: linear-gradient(#f2f2f2, #e7e7e7);
	outline: none;
	cursor: initial;
}
.button.flat {
  	border: 0;
  	box-shadow: none;
}
.button.button-block {
  	display: block;
}



/**********************************
  Knappar - storlekar
**********************************/

.button.small {
	font-size: 11px;
	height: 16px;
	padding: 7px 10px;
}
button.button.small,
input.submit.button.small,
input[type="submit"].button.small,
input[type="button"].button.small {	
	height: 2.76em;
}

button.button.x-small,
input.submit.button.x-small,
input[type="submit"].button.x-small,
input[type="button"].button.x-small {	
	height: 29px;
}

/************************************
  Knappar - labels (text för knapp)
************************************/
.button .label {
	display: inline-block !important;
	float: left;
	line-height: 19px;
	height: 20px;
	padding: 0 1px;
	overflow: hidden;
	color: #555555;	
	-webkit-transition: color .20s;
	-moz-transition: color .20s;
	-o-transition: color .20s;
	transition: color .20s;
} 
.button:active .label {
    color: #4D90FE;
}
.button:hover .label {
    color: #333;
}

/**********************************
  Knappar - färger/typer av knappar
**********************************/
.button.primary {
	background: #ec0c6e !important;
	color: white !important;
}
.button.primary:hover {
	transition: background-color .30s;
	background-color: #8b0741 !important;
}
.button.primary:active,
.button.primary:focus {
}

/*******************************************************
  Dropdown-meny - initieras med klassen .dropdown-menu
  Rutan är positionerad till höger som standard

  Valfritt: 
  .pos-left för att positionera rutan till vänster
  .content för att använda valfritt innehåll istället för meny

  Modiferad version av Dropit http://dev7studios.com/dropit
*******************************************************/
.dropit {
    list-style: none;
	padding: 0;
	margin: 0;
}
.dropit ul {
    list-style-type: none;
	padding: 0;
	margin: 0;
}
.dropit ul li {
     /* Fix för IE */
	list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
.dropit .dropit-trigger { 
	position: relative; 
}
.dropit .dropit-submenu {
    position: absolute;
    top: 100%;
    z-index: 10;
    min-width: 170px;
    list-style: none;
	padding: 0;
	background-color: #f6f6f3;
    border: 1px solid #e4e4e4;
    padding: 10px;
    margin: 5px 0 0 0px !important;
    right: 0;
       -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}
.dropit.pos-left .dropit-submenu{
	right: none;
	left: 0;
}
.dropit .button {
	float: none;
	margin: 0;
}
.dropit .dropit-open .dropit-submenu { 
	display: none;
}
         
.dropit:not(.content) .dropit-submenu a,
.dropit:not(.content) .dropit-submenu button{
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #555;
    padding: 5px 8px;
}
.dropit:not(.content) .dropit-submenu a:hover,
.dropit:not(.content) .dropit-submenu button:hover{
    background: #e68ca4;
    color: #fff;
    text-decoration: none;
}
.dropit:not(.content) .dropit-submenu button {
	text-align: left;
	background: none;
	border: none;
	cursor: pointer;
	width: 100%;
}
.dropit .dropit-submenu .divider {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e5e5e5;
}

.dropdown-menu-add:hover {
	cursor:pointer;
}

/**********************************
  Knappar - ikoner
**********************************/
.button .icon {
	display: inline-block;
	margin-top: 0;
	margin-right: 7px;
	margin-bottom: 0;
	margin-left: 0;
	float: left;
	line-height: 20px;
	height: 20px;
	width: 20px;
	max-width: 20px;
	overflow: hidden;
	text-indent: -9999px;
	background-repeat: no-repeat;
	-webkit-transition: background-image 0.20s linear;
	-moz-transition: background-image 0.20s linear;
	-o-transition: background-image 0.20s linear;
	transition: background-image 0.20s linear;
}
.expander-button .icon {
	display: inline-block;
	margin-top: 0;
	margin-right: 7px;
	margin-bottom: 0;
	margin-left: 0;
	float: left;
	line-height: 12px;
	height: 12px;
	width: 12px;
	max-width: 12px;
	overflow: hidden;
	text-indent: -9999px;
	background-position: 3px 5px;
	background-repeat: no-repeat;
}
.icon.right {
	float: right;
	margin-right: 0;
	margin-left: 7px;
}
.icon.edit {
	background-image: url("/images/icons/edit.png");
}
.icon.arrow-up {
	background-image: url("/images/icons/arrow_up.png");
}
.icon.arrow-down {
	background-image: url("/images/icons/arrow_down.png");
}


/**********************************
  Listor
**********************************/
ul.clean {
	list-style: none;
	margin: 0;
	padding: 0;
}

/**********************************
  Panel - Kan ha en header, body och footer
**********************************/
#modules .module .comments,
.meta .tags,
.meta .folders, 
.meta .files,
.meta .comments {
	margin-top:5px;
}

.tags .panel,
.folders .panel, 
.files .panel {
	display: block;
	padding: 4px 7px;
	background-color: #EDEDED;	
    border: 1px solid #c0c0c0;
    -webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}
.comments .panel {
	display: block;
}

.panel.small {
/*	padding: 4px 7px;*/
}
.comments .panel .comment-header {
	font-size: 11px;
}

.comments .panel .comment-header .author {
	font-weight: 600;
}

.comments .box {
	margin: 0px 0px 3px;
	display: inline-block;
	padding: 0px 4px;
	border-radius: 4px;
	width: 50px;
	text-align: center;
	font-size: 9px;
	float:right;
}

.comments .published {
    background-color: #C9DBC3;
    color: #618954;
    font-weight: 600;
}
/*.comments .panel .comment-header .comment-icons{
	height:14px;
	position:relative;
}*/
.comments .panel .comment-header .comment-icons i.icon-speech-1{
	margin-top: -3px;
	margin-left: 2px;
}

.comments .panel .comment-header img.icon-share {
	width: 14px;
	position: absolute;
	margin-top: -3px;
}
.comments .panel .comment-header img.icon-comments{
	width: 14px;
	float: left;
	padding-right: 5px;
	margin-top: -3px;
}

.popup_comments.comments .panel .comment-header {
	border-top: 1px solid #c0c0c0;
	padding-top: 5px;
	/*padding-bottom: 3px;*/
	/*font-weight: 600;*/
	font-size: 11px;
}
.popup_comments.comments i {
	font-size: 15px;
}
.meta .comments {
	border-top: 1px solid #a5cdce;
	padding-top: 6px;
	margin-top: 15px;
}
#modules .module .comments{
	padding-top: 6px;
	margin-top: 5px;
}


.tags .panel .body,
.folders .panel .body,
.files .panel .body {
	margin-top: 5px;	
	font-size:11px;
}
.comments .panel .body {
	/*margin-top: 5px;	*/
	font-size:11px;
	padding-left: 20px;
}
.panel .footer {
	margin-top: 5px;	
}
.comment.selected{
	background-color:#f2f2ff;
}

.panel a,
a.panel {
	color: #303030;
}
.panel a:hover,
a:hover.panel {
	color: #303030;
}
.panel p{
	margin: 0;	
	
}
.comments .panel .comment-edit{
	float:right;
	visibility:hidden;
	display:none;
}
.comments .panel img.comment-edit {
	height: 12px;
}
.panel .timestamp{
	font-size:11px;
	margin-left: 5px;
}
.comments .panel .timestamp.faded-text{
	color:#676767;
}

.document_status .box {
    margin: 0px 0px 3px;
    display: inline-block;
    padding: 8px 9px;
    border-radius: 4px; 
    width: 30px;
    text-align: center;
}

/***************************************************
  Clearfix + browserfixar för formulär och knappar
***************************************************/
.clearfix:after,
.display-field:after,
.form-field:after,
.form-buttons:after,
.expander-button:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

/**********************************
  Diverse
**********************************/
#extended-search {
	display: none;
}
#profile_edit .field-control textarea {
    height: 30px;
}
#profile_edit .field-control textarea.large {
    height: 250px;
}
.display_block {
    display: block;
}
.back-link {
	color: #404142;
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 10px;
}
.back-link:hover {
	color: #404142;
}
.subscription-actions {
	margin-top: 20px;
}
.newsletter-subscribe-checkbox{
	float:left;
}
.newsletters-subscribe-header{
	margin-top: 40px;
	padding-left: 3px;
	font-size: 1.2em;
}
#sticky {
  border-radius: 0.5ex;
}
#sticky.stick {
  position: fixed !important;
  top: 0px;
  left: auto;
  margin-left: -200px;
  z-index: 10000;
  margin-top: 30px;
}

.extern-show .comments{
	width:400px;
}

.extern-show .panel{
	margin-top: 5px;
}


.capitalize {
    text-transform: capitalize;
}

.lowercase {
	text-transform: lowercase;
}

.uppercase {
	text-transform: uppercase;
}
/**********************************
  Global styling av Kendo
**********************************/

/*.k-select .k-icon {
    margin: 5px 2px;
}*/
/*
.k-datepicker {
	min-width: 105px!important;
}*/
/*
.k-datepicker .k-input{
	height: 100%;
	line-height: initial;
    padding: 5px;
}

/* Enbart i kodningsvyn */
.date-col .k-datepicker {
	width: 130px!important
}
.k-picker-wrap.k-state-default {
    border-color: inherit;
    box-shadow: none;
}
/* Positionera validation tooltip nedanför input */
span.k-tooltip-validation {
    position: absolute;
    left: 0px;
    top: 35px;
}
/* Progress Bar */
.k-progressbar-horizontal {
    width: 100%!important;
    height: 30px!important;
}
.k-progress-status-wrap {
	top: 2px;
}


/***********************************
Switch
***********************************/

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 15px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ec2929;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  /*left: -1px;*/
  bottom: -1px;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0ce030;
}

/*input:focus + .slider {
  box-shadow: 0 0 1px #0ce030;
}*/

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/***********************************
Varningstexter vid felaktiga formulär
***********************************/

#reguser-warning-text {
    display: inline-block;
    background-color: #ed0c6e;
    font-size: 13px;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
    margin-left: 103px;
    opacity: 0;
}

.warning-text-hide {
    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1); /* older webkit */
    -webkit-transition: all 500ms cubic-bezier(0.600, -0.100, 0.735, 0.045);
       -moz-transition: all 500ms cubic-bezier(0.600, -0.100, 0.735, 0.045);
        -ms-transition: all 500ms cubic-bezier(0.600, -0.100, 0.735, 0.045);
         -o-transition: all 500ms cubic-bezier(0.600, -0.100, 0.735, 0.045);
            transition: all 500ms cubic-bezier(0.600, -0.100, 0.735, 0.045);
    opacity: 0;
}

.warning-text-show {
    display: inline-block !important;

    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1); /* older webkit */
    -webkit-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.125);
       -moz-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.125);
        -ms-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.125);
         -o-transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.125);
            transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.125);
    transform: translateX(-95px);
    opacity: 1 !important;
}