@charset "UTF-8";
/*
 * Default Layout Theme
 *
 * Created for jquery.layout
 *
 * Copyright (c) 2010
 *   Fabrizio Balliano (http://www.fabrizioballiano.net)
 *   Kevin Dalman (http://allpro.net)
 *
 * Dual licensed under the GPL (http://www.gnu.org/licenses/gpl.html)
 * and MIT (http://www.opensource.org/licenses/mit-license.php) licenses.
 *
 * Last Updated: 2010-02-10
 * NOTE: For best code readability, view this with a fixed-space font and tabs equal to 4-chars
 */

/*
 *	PANES & CONTENT-DIVs
 */

 .ui-layout-pane { /* all 'panes' */
  /*	background:	#FFF;
    border:		1px solid #BBB;
    padding:	10px; */
    overflow:	auto;
    /* DO NOT add scrolling (or padding) to 'panes' that have a content-div,
       otherwise you may get double-scrollbars - on the pane AND on the content-div
       - use ui-layout-wrapper class if pane has a content-div
       - use ui-layout-container if pane has an inner-layout
    */
    }
    /* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */
    .ui-layout-content {
      padding:	10px;
      position:	relative; /* contain floated or positioned elements */
      overflow:	auto; /* add scrolling to content-div */
    }

  /*
   *	UTILITY CLASSES
   *	Must come AFTER pane-class above so will override
   *	These classes are NOT auto-generated and are NOT used by Layout
   */
  .layout-child-container,
  .layout-content-container {
    padding:	0;
    overflow:	hidden;
  }
  .layout-child-container {
    border:		0; /* remove border because inner-layout-panes probably have borders */
  }
  .layout-scroll {
    overflow:	auto;
  }
  .layout-hide {
    display:	none;
  }

  /*
   *	RESIZER-BARS
   */
  .ui-layout-resizer	{ /* all 'resizer-bars' */
      width: 10px !important;
      border-left: 0;
      border-right: 1px solid #d3d9de;
      background: #e9ecef url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-resize-handle.png) no-repeat 50% 50%;
    }
    .ui-layout-resizer-drag {		/* REAL resizer while resize in progress */
      opacity: 1.0 !important;
    }
    .ui-layout-resizer-hover	{	/* affects both open and closed states */
    }
    /* NOTE: It looks best when 'hover' and 'dragging' are set to the same color,
      otherwise color shifts while dragging when bar can't keep up with mouse */
    .ui-layout-resizer-open-hover ,	/* hover-color to 'resize' */
    .ui-layout-resizer-dragging {	/* resizer beging 'dragging' */
      background-color: #e9ecef;
      border-right-color: #d3d9de;
      z-index: 1 !important;
    }
    .ui-layout-resizer-dragging {	/* CLONED resizer being dragged */
      // border: 	 1px solid #BBB;
    }
    .ui-layout-resizer-north-dragging,
    .ui-layout-resizer-south-dragging {
      border-width:	1px 0;
    }
    .ui-layout-resizer-west-dragging,
    .ui-layout-resizer-east-dragging {
      border-width:	0 1px;
    }
    /* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */
    .ui-layout-resizer-dragging-limit {	/* CLONED resizer at min or max size-limit */
      background-color: #f6f8fa;
      border-right-color: #d3d9de;
    }

    .ui-layout-resizer-closed-hover	{ /* hover-color to 'slide open' */
      background-color: #EBD5AA;
    }
    .ui-layout-resizer-sliding {	/* resizer when pane is 'slid open' */
      /*opacity: .10;*/ /* show only a slight shadow */
      /*filter:  alpha(opacity=10);*/
      }
      .ui-layout-resizer-sliding-hover {	/* sliding resizer - hover */
        /*opacity: 1.00;*/ /* on-hover, show the resizer-bar normally */
        /*filter:  alpha(opacity=100);*/
      }
      /* sliding resizer - add 'outside-border' to resizer on-hover
       * this sample illustrates how to target specific panes and states */
      .ui-layout-resizer-north-sliding-hover	{ border-bottom-width:	1px; }
      .ui-layout-resizer-south-sliding-hover	{ border-top-width:		1px; }
      .ui-layout-resizer-west-sliding-hover	{ border-right-width:	1px; }
      .ui-layout-resizer-east-sliding-hover	{ border-left-width:	1px; }

  /*
   *	TOGGLER-BUTTONS
   */
  .ui-layout-toggler {
    border: 1px solid #BBB; /* match pane-border */
    background-color: #BBB;
    }
    .ui-layout-resizer-hover .ui-layout-toggler {
  /*		opacity: .60;
      filter:  alpha(opacity=60);*/
    }
    .ui-layout-toggler-hover , /* need when NOT resizable */
    .ui-layout-resizer-hover .ui-layout-toggler-hover { /* need specificity when IS resizable */
      background-color: #FC6;
  /*		opacity: 1.00;
      filter:  alpha(opacity=100);*/
    }
    .ui-layout-toggler-north ,
    .ui-layout-toggler-south {
      border-width: 0 1px; /* left/right borders */
    }
    .ui-layout-toggler-west ,
    .ui-layout-toggler-east {
      border-width: 1px 0; /* top/bottom borders */
    }
    /* hide the toggler-button when the pane is 'slid open' */
    .ui-layout-resizer-sliding  .ui-layout-toggler {
      display: none;
    }
    /*
     *	style the text we put INSIDE the togglers
     */
    .ui-layout-toggler .content {
      color:			#666;
      font-size:		12px;
      font-weight:	bold;
      width:			100%;
      padding-bottom:	0.35ex; /* to 'vertically center' text inside text-span */
    }

  /*
   *	PANE-MASKS
   *	these styles are hard-coded on mask elems, but are also
   *	included here as !important to ensure will overrides any generic styles
   */
  .ui-layout-mask {
    border:		none !important;
    padding:	0 !important;
    margin:		0 !important;
    overflow:	hidden !important;
    position:	absolute !important;
    opacity:	0 !important;
    filter:		Alpha(Opacity="0") !important;
  }
  .ui-layout-mask-inside-pane { /* masks always inside pane EXCEPT when pane is an iframe */
    top:		0 !important;
    left:		0 !important;
    width:		100% !important;
    height:		100% !important;
  }
  div.ui-layout-mask {}		/* standard mask for iframes */
  iframe.ui-layout-mask {}	/* extra mask for objects/applets */

  /*
   *	Default printing styles
   */
  @media print {
    /*
     *	Unless you want to print the layout as it appears onscreen,
     *	these html/body styles are needed to allow the content to 'flow'
     */
    html {
      height:		auto !important;
      overflow:	visible !important;
    }
    body.ui-layout-container {
      position:	static !important;
      top:		auto !important;
      bottom:		auto !important;
      left:		auto !important;
      right:		auto !important;
      /* only IE6 has container width & height set by Layout */
      _width:		auto !important;
      _height:	auto !important;
    }
    .ui-layout-resizer, .ui-layout-toggler {
      display:	none !important;
    }
    /*
     *	Default pane print styles disables positioning, borders and backgrounds.
     *	You can modify these styles however it suit your needs.
     */
    .ui-layout-pane {
      border:		none !important;
      background:	 transparent !important;
      position:	relative !important;
      top:		auto !important;
      bottom:		auto !important;
      left:		auto !important;
      right:		auto !important;
      width:		auto !important;
      height:		auto !important;
      overflow:	visible !important;
    }
  }

/*TWITTER BOOTSTRAP STYLES*/
/*!
 * Bootstrap v2.3.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
.clearfix {
  *zoom: 1;
}

.clearfix:before,
.clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}

.clearfix:after {
  clear: both;
}

.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.input-block-level {
  display: block;
  width: 100%;
  min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

a:hover,
a:active {
  outline: 0;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  width: auto\9;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

#map_canvas img,
.google-maps img {
  max-width: none;
}

button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
}

button,
input {
  *overflow: visible;
  line-height: normal;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
}

input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

@media print {
  * {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  background-color: #ffffff;
}

a {
  color: #0088cc;
  text-decoration: none;
}

a:hover {
  color: #005580;
  text-decoration: underline;
}

.img-rounded {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.img-circle {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}

.row {
  margin-left: -20px;
  *zoom: 1;
}

.row:before,
.row:after {
  display: table;
  line-height: 0;
  content: "";
}

.row:after {
  clear: both;
}

[class*="span"] {
  float: left;
  min-height: 1px;
  margin-left: 20px;
}

.container,
.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}

.span12 {
  width: 940px;
}

.span11 {
  width: 860px;
}

.span10 {
  width: 780px;
}

.span9 {
  width: 700px;
}

.span8 {
  width: 620px;
}

.span7 {
  width: 540px;
}

.span6 {
  width: 460px;
}

.span5 {
  width: 380px;
}

.span4 {
  width: 300px;
}

.span3 {
  width: 220px;
}

.span2 {
  width: 140px;
}

.span1 {
  width: 60px;
}

.offset12 {
  margin-left: 980px;
}

.offset11 {
  margin-left: 900px;
}

.offset10 {
  margin-left: 820px;
}

.offset9 {
  margin-left: 740px;
}

.offset8 {
  margin-left: 660px;
}

.offset7 {
  margin-left: 580px;
}

.offset6 {
  margin-left: 500px;
}

.offset5 {
  margin-left: 420px;
}

.offset4 {
  margin-left: 340px;
}

.offset3 {
  margin-left: 260px;
}

.offset2 {
  margin-left: 180px;
}

.offset1 {
  margin-left: 100px;
}

.row-fluid {
  width: 100%;
  *zoom: 1;
}

.row-fluid:before,
.row-fluid:after {
  display: table;
  line-height: 0;
  content: "";
}

.row-fluid:after {
  clear: both;
}

.row-fluid [class*="span"] {
  display: block;
  float: left;
  width: 100%;
  min-height: 30px;
  margin-left: 2.127659574468085%;
  *margin-left: 2.074468085106383%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.row-fluid [class*="span"]:first-child {
  margin-left: 0;
}

.row-fluid .controls-row [class*="span"] + [class*="span"] {
  margin-left: 2.127659574468085%;
}

.row-fluid .span12 {
  width: 100%;
  *width: 99.94680851063829%;
}

.row-fluid .span11 {
  width: 91.48936170212765%;
  *width: 91.43617021276594%;
}

.row-fluid .span10 {
  width: 82.97872340425532%;
  *width: 82.92553191489361%;
}

.row-fluid .span9 {
  width: 74.46808510638297%;
  *width: 74.41489361702126%;
}

.row-fluid .span8 {
  width: 65.95744680851064%;
  *width: 65.90425531914893%;
}

.row-fluid .span7 {
  width: 57.44680851063829%;
  *width: 57.39361702127659%;
}

.row-fluid .span6 {
  width: 48.93617021276595%;
  *width: 48.88297872340425%;
}

.row-fluid .span5 {
  width: 40.42553191489362%;
  *width: 40.37234042553192%;
}

.row-fluid .span4 {
  width: 31.914893617021278%;
  *width: 31.861702127659576%;
}

.row-fluid .span3 {
  width: 23.404255319148934%;
  *width: 23.351063829787233%;
}

.row-fluid .span2 {
  width: 14.893617021276595%;
  *width: 14.840425531914894%;
}

.row-fluid .span1 {
  width: 6.382978723404255%;
  *width: 6.329787234042553%;
}

.row-fluid .offset12 {
  margin-left: 104.25531914893617%;
  *margin-left: 104.14893617021275%;
}

.row-fluid .offset12:first-child {
  margin-left: 102.12765957446808%;
  *margin-left: 102.02127659574467%;
}

.row-fluid .offset11 {
  margin-left: 95.74468085106382%;
  *margin-left: 95.6382978723404%;
}

.row-fluid .offset11:first-child {
  margin-left: 93.61702127659574%;
  *margin-left: 93.51063829787232%;
}

.row-fluid .offset10 {
  margin-left: 87.23404255319149%;
  *margin-left: 87.12765957446807%;
}

.row-fluid .offset10:first-child {
  margin-left: 85.1063829787234%;
  *margin-left: 84.99999999999999%;
}

.row-fluid .offset9 {
  margin-left: 78.72340425531914%;
  *margin-left: 78.61702127659572%;
}

.row-fluid .offset9:first-child {
  margin-left: 76.59574468085106%;
  *margin-left: 76.48936170212764%;
}

.row-fluid .offset8 {
  margin-left: 70.2127659574468%;
  *margin-left: 70.10638297872339%;
}

.row-fluid .offset8:first-child {
  margin-left: 68.08510638297872%;
  *margin-left: 67.9787234042553%;
}

.row-fluid .offset7 {
  margin-left: 61.70212765957446%;
  *margin-left: 61.59574468085106%;
}

.row-fluid .offset7:first-child {
  margin-left: 59.574468085106375%;
  *margin-left: 59.46808510638297%;
}

.row-fluid .offset6 {
  margin-left: 53.191489361702125%;
  *margin-left: 53.085106382978715%;
}

.row-fluid .offset6:first-child {
  margin-left: 51.063829787234035%;
  *margin-left: 50.95744680851063%;
}

.row-fluid .offset5 {
  margin-left: 44.68085106382979%;
  *margin-left: 44.57446808510638%;
}

.row-fluid .offset5:first-child {
  margin-left: 42.5531914893617%;
  *margin-left: 42.4468085106383%;
}

.row-fluid .offset4 {
  margin-left: 36.170212765957444%;
  *margin-left: 36.06382978723405%;
}

.row-fluid .offset4:first-child {
  margin-left: 34.04255319148936%;
  *margin-left: 33.93617021276596%;
}

.row-fluid .offset3 {
  margin-left: 27.659574468085104%;
  *margin-left: 27.5531914893617%;
}

.row-fluid .offset3:first-child {
  margin-left: 25.53191489361702%;
  *margin-left: 25.425531914893618%;
}

.row-fluid .offset2 {
  margin-left: 19.148936170212764%;
  *margin-left: 19.04255319148936%;
}

.row-fluid .offset2:first-child {
  margin-left: 17.02127659574468%;
  *margin-left: 16.914893617021278%;
}

.row-fluid .offset1 {
  margin-left: 10.638297872340425%;
  *margin-left: 10.53191489361702%;
}

.row-fluid .offset1:first-child {
  margin-left: 8.51063829787234%;
  *margin-left: 8.404255319148938%;
}

[class*="span"].hide,
.row-fluid [class*="span"].hide {
  display: none;
}

[class*="span"].pull-right,
.row-fluid [class*="span"].pull-right {
  float: right;
}

.container {
  margin-right: auto;
  margin-left: auto;
  *zoom: 1;
}

.container:before,
.container:after {
  display: table;
  line-height: 0;
  content: "";
}

.container:after {
  clear: both;
}

.container-fluid {
  padding-right: 20px;
  padding-left: 20px;
  *zoom: 1;
}

.container-fluid:before,
.container-fluid:after {
  display: table;
  line-height: 0;
  content: "";
}

.container-fluid:after {
  clear: both;
}

p {
  margin: 0 0 10px;
}

.lead {
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 200;
  line-height: 30px;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

cite {
  font-style: normal;
}

.muted {
  color: #999999;
}

a.muted:hover,
a.muted:focus {
  color: #808080;
}

.text-warning {
  color: #c09853;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #a47e3c;
}

.text-error {
  color: #b94a48;
}

a.text-error:hover,
a.text-error:focus {
  color: #953b39;
}

.text-info {
  color: #3a87ad;
}

a.text-info:hover,
a.text-info:focus {
  color: #2d6987;
}

.text-success {
  color: #468847;
}

a.text-success:hover,
a.text-success:focus {
  color: #356635;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-family: inherit;
  font-weight: bold;
  line-height: 20px;
  color: inherit;
  text-rendering: optimizelegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999999;
}

h1,
h2,
h3 {
  line-height: 40px;
}

h1 {
  font-size: 38.5px;
}

h2 {
  font-size: 31.5px;
}

h3 {
  font-size: 24.5px;
}

h4 {
  font-size: 17.5px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 11.9px;
}

h1 small {
  font-size: 24.5px;
}

h2 small {
  font-size: 17.5px;
}

h3 small {
  font-size: 14px;
}

h4 small {
  font-size: 14px;
}

.page-header {
  padding-bottom: 9px;
  margin: 20px 0 30px;
  border-bottom: 1px solid #eeeeee;
}

ul,
ol {
  padding: 0;
  margin: 0 0 10px 25px;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

li {
  line-height: 20px;
}

ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}

ul.inline,
ol.inline {
  margin-left: 0;
  list-style: none;
}

ul.inline > li,
ol.inline > li {
  display: inline-block;
  *display: inline;
  padding-right: 5px;
  padding-left: 5px;
  *zoom: 1;
}

dl {
  margin-bottom: 20px;
}

dt,
dd {
  line-height: 20px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 10px;
}

.dl-horizontal {
  *zoom: 1;
}

.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  line-height: 0;
  content: "";
}

.dl-horizontal:after {
  clear: both;
}

.dl-horizontal dt {
  float: left;
  width: 160px;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dl-horizontal dd {
  margin-left: 180px;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #ffffff;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}

abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 20px;
  border-left: 5px solid #eeeeee;
}

blockquote p {
  margin-bottom: 0;
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.25;
}

blockquote small {
  display: block;
  line-height: 20px;
  color: #999999;
}

blockquote small:before {
  content: '\2014 \00A0';
}

blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eeeeee;
  border-left: 0;
}

blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}

blockquote.pull-right small:before {
  content: '';
}

blockquote.pull-right small:after {
  content: '\00A0 \2014';
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}

address {
  display: block;
  margin-bottom: 20px;
  font-style: normal;
  line-height: 20px;
}

code,
pre {
  padding: 0 3px 2px;
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  font-size: 12px;
  color: #333333;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

code {
  padding: 2px 4px;
  color: #d14;
  white-space: nowrap;
  background-color: #f7f7f9;
  border: 1px solid #e1e1e8;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 20px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

pre.prettyprint {
  margin-bottom: 20px;
}

pre code {
  padding: 0;
  color: inherit;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
  border: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

form {
  margin: 0 0 20px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 40px;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

legend small {
  font-size: 15px;
  color: #999999;
}

label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
}

input,
button,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

label {
  display: block;
  margin-bottom: 5px;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  display: inline-block;
  height: 20px;
  padding: 4px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  vertical-align: middle;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

input,
textarea,
.uneditable-input {
  width: 206px;
}

textarea {
  height: auto;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  *margin-top: 0;
  line-height: normal;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

select,
input[type="file"] {
  height: 30px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */
  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */
  line-height: 30px;
}

select {
  width: 220px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}

select[multiple],
select[size] {
  height: auto;
}

select:focus,
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.uneditable-input,
.uneditable-textarea {
  color: #999999;
  cursor: not-allowed;
  background-color: #fcfcfc;
  border-color: #cccccc;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
}

.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
}

.uneditable-textarea {
  width: auto;
  height: auto;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #999999;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}

.radio,
.checkbox {
  min-height: 20px;
  padding-left: 20px;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  float: left;
  margin-left: -20px;
}

.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}

.radio.inline,
.checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}

.input-mini {
  width: 60px;
}

.input-small {
  width: 90px;
}

.input-medium {
  width: 150px;
}

.input-large {
  width: 210px;
}

.input-xlarge {
  width: 270px;
}

.input-xxlarge {
  width: 530px;
}

input[class*="span"],
select[class*="span"],
textarea[class*="span"],
.uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

.input-append input[class*="span"],
.input-append .uneditable-input[class*="span"],
.input-prepend input[class*="span"],
.input-prepend .uneditable-input[class*="span"],
.row-fluid input[class*="span"],
.row-fluid select[class*="span"],
.row-fluid textarea[class*="span"],
.row-fluid .uneditable-input[class*="span"],
.row-fluid .input-prepend [class*="span"],
.row-fluid .input-append [class*="span"] {
  display: inline-block;
}

input,
textarea,
.uneditable-input {
  margin-left: 0;
}

.controls-row [class*="span"] + [class*="span"] {
  margin-left: 20px;
}

input.span12,
textarea.span12,
.uneditable-input.span12 {
  width: 926px;
}

input.span11,
textarea.span11,
.uneditable-input.span11 {
  width: 846px;
}

input.span10,
textarea.span10,
.uneditable-input.span10 {
  width: 766px;
}

input.span9,
textarea.span9,
.uneditable-input.span9 {
  width: 686px;
}

input.span8,
textarea.span8,
.uneditable-input.span8 {
  width: 606px;
}

input.span7,
textarea.span7,
.uneditable-input.span7 {
  width: 526px;
}

input.span6,
textarea.span6,
.uneditable-input.span6 {
  width: 446px;
}

input.span5,
textarea.span5,
.uneditable-input.span5 {
  width: 366px;
}

input.span4,
textarea.span4,
.uneditable-input.span4 {
  width: 286px;
}

input.span3,
textarea.span3,
.uneditable-input.span3 {
  width: 206px;
}

input.span2,
textarea.span2,
.uneditable-input.span2 {
  width: 126px;
}

input.span1,
textarea.span1,
.uneditable-input.span1 {
  width: 46px;
}

.controls-row {
  *zoom: 1;
}

.controls-row:before,
.controls-row:after {
  display: table;
  line-height: 0;
  content: "";
}

.controls-row:after {
  clear: both;
}

.controls-row [class*="span"],
.row-fluid .controls-row [class*="span"] {
  float: left;
}

.controls-row .checkbox[class*="span"],
.controls-row .radio[class*="span"] {
  padding-top: 5px;
}

input[disabled],
select[disabled],
textarea[disabled],
input[readonly],
select[readonly],
textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
}

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"][readonly],
input[type="checkbox"][readonly] {
  background-color: transparent;
}

.control-group.warning .control-label,
.control-group.warning .help-block,
.control-group.warning .help-inline {
  color: #c09853;
}

.control-group.warning .checkbox,
.control-group.warning .radio,
.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  color: #c09853;
}

.control-group.warning input,
.control-group.warning select,
.control-group.warning textarea {
  border-color: #c09853;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.control-group.warning input:focus,
.control-group.warning select:focus,
.control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
}

.control-group.warning .input-prepend .add-on,
.control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}

.control-group.error .control-label,
.control-group.error .help-block,
.control-group.error .help-inline {
  color: #b94a48;
}

.control-group.error .checkbox,
.control-group.error .radio,
.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  color: #b94a48;
}

.control-group.error input,
.control-group.error select,
.control-group.error textarea {
  border-color: #b94a48;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.control-group.error input:focus,
.control-group.error select:focus,
.control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
}

.control-group.error .input-prepend .add-on,
.control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}

.control-group.success .control-label,
.control-group.success .help-block,
.control-group.success .help-inline {
  color: #468847;
}

.control-group.success .checkbox,
.control-group.success .radio,
.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  color: #468847;
}

.control-group.success input,
.control-group.success select,
.control-group.success textarea {
  border-color: #468847;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.control-group.success input:focus,
.control-group.success select:focus,
.control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
}

.control-group.success .input-prepend .add-on,
.control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}

.control-group.info .control-label,
.control-group.info .help-block,
.control-group.info .help-inline {
  color: #3a87ad;
}

.control-group.info .checkbox,
.control-group.info .radio,
.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  color: #3a87ad;
}

.control-group.info input,
.control-group.info select,
.control-group.info textarea {
  border-color: #3a87ad;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.control-group.info input:focus,
.control-group.info select:focus,
.control-group.info textarea:focus {
  border-color: #2d6987;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
}

.control-group.info .input-prepend .add-on,
.control-group.info .input-append .add-on {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #3a87ad;
}

input:focus:invalid,
textarea:focus:invalid,
select:focus:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
  -moz-box-shadow: 0 0 6px #f8b9b7;
  box-shadow: 0 0 6px #f8b9b7;
}

.form-actions {
  padding: 19px 20px 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1;
}

.form-actions:before,
.form-actions:after {
  display: table;
  line-height: 0;
  content: "";
}

.form-actions:after {
  clear: both;
}

.help-block,
.help-inline {
  color: #595959;
}

.help-block {
  display: block;
  margin-bottom: 10px;
}

.help-inline {
  display: inline-block;
  *display: inline;
  padding-left: 5px;
  vertical-align: middle;
  *zoom: 1;
}

.input-append,
.input-prepend {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0;
  white-space: nowrap;
  vertical-align: middle;
}

.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input,
.input-append .dropdown-menu,
.input-prepend .dropdown-menu,
.input-append .popover,
.input-prepend .popover {
  font-size: 14px;
}

.input-append input,
.input-prepend input,
.input-append select,
.input-prepend select,
.input-append .uneditable-input,
.input-prepend .uneditable-input {
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  vertical-align: top;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.input-append input:focus,
.input-prepend input:focus,
.input-append select:focus,
.input-prepend select:focus,
.input-append .uneditable-input:focus,
.input-prepend .uneditable-input:focus {
  z-index: 2;
}

.input-append .add-on,
.input-prepend .add-on {
  display: inline-block;
  width: auto;
  height: 20px;
  min-width: 16px;
  padding: 4px 5px;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #eeeeee;
  border: 1px solid #ccc;
}

.input-append .add-on,
.input-prepend .add-on,
.input-append .btn,
.input-append #apply-cr-lookup,
.input-prepend .btn,
.input-prepend #apply-cr-lookup,
.input-append .btn-group > .dropdown-toggle,
.input-prepend .btn-group > .dropdown-toggle {
  vertical-align: top;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.input-append .active,
.input-prepend .active {
  background-color: #a9dba9;
  border-color: #46a546;
}

.input-prepend .add-on,
.input-prepend .btn,
.input-prepend #apply-cr-lookup {
  margin-right: -1px;
}

.input-prepend .add-on:first-child,
.input-prepend .btn:first-child,
.input-prepend #apply-cr-lookup:first-child {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.input-append input,
.input-append select,
.input-append .uneditable-input {
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.input-append input + .btn-group .btn:last-child, .input-append input + .btn-group #apply-cr-lookup:last-child,
.input-append select + .btn-group .btn:last-child,
.input-append select + .btn-group #apply-cr-lookup:last-child,
.input-append .uneditable-input + .btn-group .btn:last-child,
.input-append .uneditable-input + .btn-group #apply-cr-lookup:last-child {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.input-append .add-on,
.input-append .btn,
.input-append #apply-cr-lookup,
.input-append .btn-group {
  margin-left: -1px;
}

.input-append .add-on:last-child,
.input-append .btn:last-child,
.input-append #apply-cr-lookup:last-child,
.input-append .btn-group:last-child > .dropdown-toggle {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.input-prepend.input-append input + .btn-group .btn, .input-prepend.input-append input + .btn-group #apply-cr-lookup,
.input-prepend.input-append select + .btn-group .btn,
.input-prepend.input-append select + .btn-group #apply-cr-lookup,
.input-prepend.input-append .uneditable-input + .btn-group .btn,
.input-prepend.input-append .uneditable-input + .btn-group #apply-cr-lookup {
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child,
.input-prepend.input-append #apply-cr-lookup:first-child {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child,
.input-prepend.input-append #apply-cr-lookup:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.input-prepend.input-append .btn-group:first-child {
  margin-left: 0;
}

input.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */
  margin-bottom: 0;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

/* Allow for input prepend/append in search forms */
.form-search .input-append .search-query,
.form-search .input-prepend .search-query {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.form-search .input-append .search-query {
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}

.form-search .input-append .btn, .form-search .input-append #apply-cr-lookup {
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}

.form-search .input-prepend .search-query {
  -webkit-border-radius: 0 14px 14px 0;
  -moz-border-radius: 0 14px 14px 0;
  border-radius: 0 14px 14px 0;
}

.form-search .input-prepend .btn, .form-search .input-prepend #apply-cr-lookup {
  -webkit-border-radius: 14px 0 0 14px;
  -moz-border-radius: 14px 0 0 14px;
  border-radius: 14px 0 0 14px;
}

.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  vertical-align: middle;
  *zoom: 1;
}

.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none;
}

.form-search label,
.form-inline label,
.form-search .btn-group,
.form-inline .btn-group {
  display: inline-block;
}

.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}

.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}

.control-group {
  margin-bottom: 10px;
}

legend + .control-group {
  margin-top: 20px;
  -webkit-margin-top-collapse: separate;
}

.form-horizontal .control-group {
  margin-bottom: 20px;
  *zoom: 1;
}

.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
  display: table;
  line-height: 0;
  content: "";
}

.form-horizontal .control-group:after {
  clear: both;
}

.form-horizontal .control-label {
  float: left;
  width: 160px;
  padding-top: 5px;
  text-align: right;
}

.form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 180px;
  *margin-left: 0;
}

.form-horizontal .controls:first-child {
  *padding-left: 180px;
}

.form-horizontal .help-block {
  margin-bottom: 0;
}

.form-horizontal input + .help-block,
.form-horizontal select + .help-block,
.form-horizontal textarea + .help-block,
.form-horizontal .uneditable-input + .help-block,
.form-horizontal .input-prepend + .help-block,
.form-horizontal .input-append + .help-block {
  margin-top: 10px;
}

.form-horizontal .form-actions {
  padding-left: 180px;
}

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

.table {
  width: 100%;
  margin-bottom: 20px;
}

.table th,
.table td {
  padding: 8px;
  line-height: 20px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}

.table th {
  font-weight: bold;
}

.table thead th {
  vertical-align: bottom;
}

.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}

.table .table {
  background-color: #ffffff;
}

.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

.table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.table-bordered th,
.table-bordered td {
  border-left: 1px solid #dddddd;
}

.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
}

.table-bordered thead:first-child tr:first-child > th:last-child,
.table-bordered tbody:first-child tr:first-child > td:last-child,
.table-bordered tbody:first-child tr:first-child > th:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
}

.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
}

.table-bordered thead:last-child tr:last-child > th:last-child,
.table-bordered tbody:last-child tr:last-child > td:last-child,
.table-bordered tbody:last-child tr:last-child > th:last-child,
.table-bordered tfoot:last-child tr:last-child > td:last-child,
.table-bordered tfoot:last-child tr:last-child > th:last-child {
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
}

.table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  -webkit-border-bottom-left-radius: 0;
  border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
}

.table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomright: 0;
}

.table-bordered caption + thead tr:first-child th:first-child,
.table-bordered caption + tbody tr:first-child td:first-child,
.table-bordered colgroup + thead tr:first-child th:first-child,
.table-bordered colgroup + tbody tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
}

.table-bordered caption + thead tr:first-child th:last-child,
.table-bordered caption + tbody tr:first-child td:last-child,
.table-bordered colgroup + thead tr:first-child th:last-child,
.table-bordered colgroup + tbody tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
}

.table-striped tbody > tr:nth-child(odd) > td,
.table-striped tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}

.table-hover tbody tr:hover > td,
.table-hover tbody tr:hover > th {
  background-color: #f5f5f5;
}

table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}

.table td.span1,
.table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}

.table td.span2,
.table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}

.table td.span3,
.table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}

.table td.span4,
.table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}

.table td.span5,
.table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}

.table td.span6,
.table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}

.table td.span7,
.table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}

.table td.span8,
.table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}

.table td.span9,
.table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}

.table td.span10,
.table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}

.table td.span11,
.table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}

.table td.span12,
.table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}

.table tbody tr.success > td {
  background-color: #dff0d8;
}

.table tbody tr.error > td {
  background-color: #f2dede;
}

.table tbody tr.warning > td {
  background-color: #fcf8e3;
}

.table tbody tr.info > td {
  background-color: #d9edf7;
}

.table-hover tbody tr.success:hover > td {
  background-color: #d0e9c6;
}

.table-hover tbody tr.error:hover > td {
  background-color: #ebcccc;
}

.table-hover tbody tr.warning:hover > td {
  background-color: #faf2cc;
}

.table-hover tbody tr.info:hover > td {
  background-color: #c4e3f3;
}

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  *margin-right: .3em;
  line-height: 14px;
  vertical-align: text-top;
  background-image: url("plugins/create-point-common-1.192.24/images/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}

/* White icons with optional class, or on hover/focus/active states of certain elements */
.icon-white,
.nav-pills > .active > a > [class^="icon-"],
.nav-pills > .active > a > [class*=" icon-"],
.nav-list > .active > a > [class^="icon-"],
.nav-list > .active > a > [class*=" icon-"],
.navbar-inverse .nav > .active > a > [class^="icon-"],
.navbar-inverse .nav > .active > a > [class*=" icon-"],
.dropdown-menu > li > a:hover > [class^="icon-"],
.dropdown-menu > li > a:focus > [class^="icon-"],
.dropdown-menu > li > a:hover > [class*=" icon-"],
.dropdown-menu > li > a:focus > [class*=" icon-"],
.dropdown-menu > .active > a > [class^="icon-"],
.dropdown-menu > .active > a > [class*=" icon-"],
.dropdown-submenu:hover > a > [class^="icon-"],
.dropdown-submenu:focus > a > [class^="icon-"],
.dropdown-submenu:hover > a > [class*=" icon-"],
.dropdown-submenu:focus > a > [class*=" icon-"] {
  background-image: url("plugins/create-point-common-1.192.24/images/glyphicons-halflings-white.png");
}

.icon-glass {
  background-position: 0      0;
}

.icon-music {
  background-position: -24px 0;
}

.icon-search {
  background-position: -48px 0;
}

.icon-envelope {
  background-position: -72px 0;
}

.icon-heart {
  background-position: -96px 0;
}

.icon-star {
  background-position: -120px 0;
}

.icon-star-empty {
  background-position: -144px 0;
}

.icon-user {
  background-position: -168px 0;
}

.icon-film {
  background-position: -192px 0;
}

.icon-th-large {
  background-position: -216px 0;
}

.icon-th {
  background-position: -240px 0;
}

.icon-th-list {
  background-position: -264px 0;
}

.icon-ok {
  background-position: -288px 0;
}

.icon-remove {
  background-position: -312px 0;
}

.icon-zoom-in {
  background-position: -336px 0;
}

.icon-zoom-out {
  background-position: -360px 0;
}

.icon-off {
  background-position: -384px 0;
}

.icon-signal {
  background-position: -408px 0;
}

.icon-cog {
  background-position: -432px 0;
}

.icon-trash {
  background-position: -456px 0;
}

.icon-home {
  background-position: 0 -24px;
}

.icon-file {
  background-position: -24px -24px;
}

.icon-time {
  background-position: -48px -24px;
}

.icon-road {
  background-position: -72px -24px;
}

.icon-download-alt {
  background-position: -96px -24px;
}

.icon-download {
  background-position: -120px -24px;
}

.icon-upload {
  background-position: -144px -24px;
}

.icon-inbox {
  background-position: -168px -24px;
}

.icon-play-circle {
  background-position: -192px -24px;
}

.icon-repeat {
  background-position: -216px -24px;
}

.icon-refresh {
  background-position: -240px -24px;
}

.icon-list-alt {
  background-position: -264px -24px;
}

.icon-lock {
  background-position: -287px -24px;
}

.icon-flag {
  background-position: -312px -24px;
}

.icon-headphones {
  background-position: -336px -24px;
}

.icon-volume-off {
  background-position: -360px -24px;
}

.icon-volume-down {
  background-position: -384px -24px;
}

.icon-volume-up {
  background-position: -408px -24px;
}

.icon-qrcode {
  background-position: -432px -24px;
}

.icon-barcode {
  background-position: -456px -24px;
}

.icon-tag {
  background-position: 0 -48px;
}

.icon-tags {
  background-position: -25px -48px;
}

.icon-book {
  background-position: -48px -48px;
}

.icon-bookmark {
  background-position: -72px -48px;
}

.icon-print {
  background-position: -96px -48px;
}

.icon-camera {
  background-position: -120px -48px;
}

.icon-font {
  background-position: -144px -48px;
}

.icon-bold {
  background-position: -167px -48px;
}

.icon-italic {
  background-position: -192px -48px;
}

.icon-text-height {
  background-position: -216px -48px;
}

.icon-text-width {
  background-position: -240px -48px;
}

.icon-align-left {
  background-position: -264px -48px;
}

.icon-align-center {
  background-position: -288px -48px;
}

.icon-align-right {
  background-position: -312px -48px;
}

.icon-align-justify {
  background-position: -336px -48px;
}

.icon-list {
  background-position: -360px -48px;
}

.icon-indent-left {
  background-position: -384px -48px;
}

.icon-indent-right {
  background-position: -408px -48px;
}

.icon-facetime-video {
  background-position: -432px -48px;
}

.icon-picture {
  background-position: -456px -48px;
}

.icon-pencil {
  background-position: 0 -72px;
}

.icon-map-marker {
  background-position: -24px -72px;
}

.icon-adjust {
  background-position: -48px -72px;
}

.icon-tint {
  background-position: -72px -72px;
}

.icon-edit {
  background-position: -96px -72px;
}

.icon-share {
  background-position: -120px -72px;
}

.icon-check {
  background-position: -144px -72px;
}

.icon-move {
  background-position: -168px -72px;
}

.icon-step-backward {
  background-position: -192px -72px;
}

.icon-fast-backward {
  background-position: -216px -72px;
}

.icon-backward {
  background-position: -240px -72px;
}

.icon-play {
  background-position: -264px -72px;
}

.icon-pause {
  background-position: -288px -72px;
}

.icon-stop {
  background-position: -312px -72px;
}

.icon-forward {
  background-position: -336px -72px;
}

.icon-fast-forward {
  background-position: -360px -72px;
}

.icon-step-forward {
  background-position: -384px -72px;
}

.icon-eject {
  background-position: -408px -72px;
}

.icon-chevron-left {
  background-position: -432px -72px;
}

.icon-chevron-right {
  background-position: -456px -72px;
}

.icon-plus-sign {
  background-position: 0 -96px;
}

.icon-minus-sign {
  background-position: -24px -96px;
}

.icon-remove-sign {
  background-position: -48px -96px;
}

.icon-ok-sign {
  background-position: -72px -96px;
}

.icon-question-sign {
  background-position: -96px -96px;
}

.icon-info-sign {
  background-position: -120px -96px;
}

.icon-screenshot {
  background-position: -144px -96px;
}

.icon-remove-circle {
  background-position: -168px -96px;
}

.icon-ok-circle {
  background-position: -192px -96px;
}

.icon-ban-circle {
  background-position: -216px -96px;
}

.icon-arrow-left {
  background-position: -240px -96px;
}

.icon-arrow-right {
  background-position: -264px -96px;
}

.icon-arrow-up {
  background-position: -289px -96px;
}

.icon-arrow-down {
  background-position: -312px -96px;
}

.icon-share-alt {
  background-position: -336px -96px;
}

.icon-resize-full {
  background-position: -360px -96px;
}

.icon-resize-small {
  background-position: -384px -96px;
}

.icon-plus {
  background-position: -408px -96px;
}

.icon-minus {
  background-position: -433px -96px;
}

.icon-asterisk {
  background-position: -456px -96px;
}

.icon-exclamation-sign {
  background-position: 0 -120px;
}

.icon-gift {
  background-position: -24px -120px;
}

.icon-leaf {
  background-position: -48px -120px;
}

.icon-fire {
  background-position: -72px -120px;
}

.icon-eye-open {
  background-position: -96px -120px;
}

.icon-eye-close {
  background-position: -120px -120px;
}

.icon-warning-sign {
  background-position: -144px -120px;
}

.icon-plane {
  background-position: -168px -120px;
}

.icon-calendar {
  background-position: -192px -120px;
}

.icon-random {
  width: 16px;
  background-position: -216px -120px;
}

.icon-comment {
  background-position: -240px -120px;
}

.icon-magnet {
  background-position: -264px -120px;
}

.icon-chevron-up {
  background-position: -288px -120px;
}

.icon-chevron-down {
  background-position: -313px -119px;
}

.icon-retweet {
  background-position: -336px -120px;
}

.icon-shopping-cart {
  background-position: -360px -120px;
}

.icon-folder-close {
  width: 16px;
  background-position: -384px -120px;
}

.icon-folder-open {
  width: 16px;
  background-position: -408px -120px;
}

.icon-resize-vertical {
  background-position: -432px -119px;
}

.icon-resize-horizontal {
  background-position: -456px -118px;
}

.icon-hdd {
  background-position: 0 -144px;
}

.icon-bullhorn {
  background-position: -24px -144px;
}

.icon-bell {
  background-position: -48px -144px;
}

.icon-certificate {
  background-position: -72px -144px;
}

.icon-thumbs-up {
  background-position: -96px -144px;
}

.icon-thumbs-down {
  background-position: -120px -144px;
}

.icon-hand-right {
  background-position: -144px -144px;
}

.icon-hand-left {
  background-position: -168px -144px;
}

.icon-hand-up {
  background-position: -192px -144px;
}

.icon-hand-down {
  background-position: -216px -144px;
}

.icon-circle-arrow-right {
  background-position: -240px -144px;
}

.icon-circle-arrow-left {
  background-position: -264px -144px;
}

.icon-circle-arrow-up {
  background-position: -288px -144px;
}

.icon-circle-arrow-down {
  background-position: -312px -144px;
}

.icon-globe {
  background-position: -336px -144px;
}

.icon-wrench {
  background-position: -360px -144px;
}

.icon-tasks {
  background-position: -384px -144px;
}

.icon-filter {
  background-position: -408px -144px;
}

.icon-briefcase {
  background-position: -432px -144px;
}

.icon-fullscreen {
  background-position: -456px -144px;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle {
  *margin-bottom: -3px;
}

.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 20px;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-submenu:hover > a,
.dropdown-submenu:focus > a {
  color: #ffffff;
  text-decoration: none;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover
{
  color: #ffffff;
  text-decoration: none;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
  outline: 0;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}

.dropdown-menu > .disabled > a:hover {
  text-decoration: none;
  cursor: default;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.open {
  *z-index: 1000;
}

.open > .dropdown-menu {
  display: block;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000000;
  content: "";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  -webkit-border-radius: 5px 5px 5px 0;
  -moz-border-radius: 5px 5px 5px 0;
  border-radius: 5px 5px 5px 0;
}

.dropdown-submenu > a:after {
  display: block;
  float: right;
  width: 0;
  height: 0;
  margin-top: 5px;
  margin-right: -10px;
  border-color: transparent;
  border-left-color: #cccccc;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
}

.dropdown-submenu:hover > a:after {
  border-left-color: #ffffff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.dropdown .dropdown-menu .nav-header {
  padding-right: 20px;
  padding-left: 20px;
}

.typeahead {
  z-index: 1051;
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-large {
  padding: 24px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.well-small {
  padding: 9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.collapse.in {
  height: auto;
}

.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 20px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover,
.close:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.btn, #apply-cr-lookup {
  display: inline-block;
  *display: inline;
  padding: 4px 12px;
  margin-bottom: 0;
  *margin-left: .3em;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  *background-color: #e6e6e6;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  *border: 0;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover, #apply-cr-lookup:hover,
.btn.disabled,
.disabled#apply-cr-lookup,
.btn[disabled],
[disabled]#apply-cr-lookup {
  color: #333333;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

.btn:active, #apply-cr-lookup:active,
.btn.active,
.active#apply-cr-lookup {
  background-color: #cccccc \9;
}

.btn:first-child, #apply-cr-lookup:first-child {
  *margin-left: 0;
}

.btn:hover
, #apply-cr-lookup:hover
{
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}

.btn:focus, #apply-cr-lookup:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active, .active#apply-cr-lookup,
.btn:active,
#apply-cr-lookup:active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled, .disabled#apply-cr-lookup,
.btn[disabled],
[disabled]#apply-cr-lookup {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-large {
  padding: 11px 19px;
  font-size: 17.5px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px;
}

.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0;
}

.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px;
}

.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-block + .btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}

.btn-primary {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #006dcc;
  *background-color: #0044cc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  background-repeat: repeat-x;
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  color: #ffffff;
  background-color: #0044cc;
  *background-color: #003bb3;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #003399 \9;
}

.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  *background-color: #f89406;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  color: #ffffff;
  background-color: #f89406;
  *background-color: #df8505;
}

.btn-warning:active,
.btn-warning.active {
  background-color: #c67605 \9;
}

.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  *background-color: #bd362f;
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  color: #ffffff;
  background-color: #bd362f;
  *background-color: #a9302a;
}

.btn-danger:active,
.btn-danger.active {
  background-color: #942a25 \9;
}

.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  *background-color: #51a351;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #ffffff;
  background-color: #51a351;
  *background-color: #499249;
}

.btn-success:active,
.btn-success.active {
  background-color: #408140 \9;
}

.btn-info {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #49afcd;
  *background-color: #2f96b4;
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  color: #ffffff;
  background-color: #2f96b4;
  *background-color: #2a85a0;
}

.btn-info:active,
.btn-info.active {
  background-color: #24748c \9;
}

.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  *background-color: #222222;
  background-image: -moz-linear-gradient(top, #444444, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
  background-image: -webkit-linear-gradient(top, #444444, #222222);
  background-image: -o-linear-gradient(top, #444444, #222222);
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #ffffff;
  background-color: #222222;
  *background-color: #151515;
}

.btn-inverse:active,
.btn-inverse.active {
  background-color: #080808 \9;
}

button.btn, button#apply-cr-lookup,
input[type="submit"].btn,
input[type="submit"]#apply-cr-lookup {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

button.btn::-moz-focus-inner, button#apply-cr-lookup::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner,
input[type="submit"]#apply-cr-lookup::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.btn.btn-large, button.btn-large#apply-cr-lookup,
input[type="submit"].btn.btn-large,
input[type="submit"].btn-large#apply-cr-lookup {
  *padding-top: 7px;
  *padding-bottom: 7px;
}

button.btn.btn-small, button.btn-small#apply-cr-lookup,
input[type="submit"].btn.btn-small,
input[type="submit"].btn-small#apply-cr-lookup {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

button.btn.btn-mini, button.btn-mini#apply-cr-lookup,
input[type="submit"].btn.btn-mini,
input[type="submit"].btn-mini#apply-cr-lookup {
  *padding-top: 1px;
  *padding-bottom: 1px;
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.btn-link {
  color: #0088cc;
  cursor: pointer;
  border-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.btn-link:hover,
.btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
  color: #333333;
  text-decoration: none;
}

.btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  *margin-left: .3em;
  font-size: 0;
  white-space: nowrap;
  vertical-align: middle;
  *zoom: 1;
}

.btn-group:first-child {
  *margin-left: 0;
}

.btn-group + .btn-group {
  margin-left: 5px;
}

.btn-toolbar {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 0;
}

.btn-toolbar > .btn + .btn, .btn-toolbar > #apply-cr-lookup + .btn, .btn-toolbar > .btn + #apply-cr-lookup, .btn-toolbar > #apply-cr-lookup + #apply-cr-lookup,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn-group + #apply-cr-lookup,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > #apply-cr-lookup + .btn-group {
  margin-left: 5px;
}

.btn-group > .btn, .btn-group > #apply-cr-lookup {
  position: relative;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.btn-group > .btn + .btn, .btn-group > #apply-cr-lookup + .btn, .btn-group > .btn + #apply-cr-lookup, .btn-group > #apply-cr-lookup + #apply-cr-lookup {
  margin-left: -1px;
}

.btn-group > .btn, .btn-group > #apply-cr-lookup,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 14px;
}

.btn-group > .btn-mini {
  font-size: 10.5px;
}

.btn-group > .btn-small {
  font-size: 11.9px;
}

.btn-group > .btn-large {
  font-size: 17.5px;
}

.btn-group > .btn:first-child, .btn-group > #apply-cr-lookup:first-child {
  margin-left: 0;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
}

.btn-group > .btn:last-child, .btn-group > #apply-cr-lookup:last-child,
.btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
}

.btn-group > .btn.large:first-child, .btn-group > .large#apply-cr-lookup:first-child {
  margin-left: 0;
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
}

.btn-group > .btn.large:last-child, .btn-group > .large#apply-cr-lookup:last-child,
.btn-group > .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
}

.btn-group > .btn:hover, .btn-group > #apply-cr-lookup:hover,
.btn-group > .btn:focus,
.btn-group > #apply-cr-lookup:focus,
.btn-group > .btn:active,
.btn-group > #apply-cr-lookup:active,
.btn-group > .btn.active,
.btn-group > .active#apply-cr-lookup {
  z-index: 2;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .btn + .dropdown-toggle, .btn-group > #apply-cr-lookup + .dropdown-toggle {
  *padding-top: 5px;
  padding-right: 8px;
  *padding-bottom: 5px;
  padding-left: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-group > .btn-mini + .dropdown-toggle {
  *padding-top: 2px;
  padding-right: 5px;
  *padding-bottom: 2px;
  padding-left: 5px;
}

.btn-group > .btn-small + .dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px;
}

.btn-group > .btn-large + .dropdown-toggle {
  *padding-top: 7px;
  padding-right: 12px;
  *padding-bottom: 7px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-group.open .btn.dropdown-toggle, .btn-group.open .dropdown-toggle#apply-cr-lookup {
  background-color: #e6e6e6;
}

.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #0044cc;
}

.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406;
}

.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f;
}

.btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351;
}

.btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4;
}

.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222222;
}

.btn .caret, #apply-cr-lookup .caret {
  margin-top: 8px;
  margin-left: 0;
}

.btn-large .caret {
  margin-top: 6px;
}

.btn-large .caret {
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
}

.btn-mini .caret,
.btn-small .caret {
  margin-top: 8px;
}

.dropup .btn-large .caret {
  border-bottom-width: 5px;
}

.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.btn-group-vertical {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */
  *zoom: 1;
}

.btn-group-vertical > .btn, .btn-group-vertical > #apply-cr-lookup {
  display: block;
  float: none;
  max-width: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > #apply-cr-lookup + .btn, .btn-group-vertical > .btn + #apply-cr-lookup, .btn-group-vertical > #apply-cr-lookup + #apply-cr-lookup {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:first-child, .btn-group-vertical > #apply-cr-lookup:first-child {
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.btn-group-vertical > .btn:last-child, .btn-group-vertical > #apply-cr-lookup:last-child {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.btn-group-vertical > .btn-large:first-child {
  -webkit-border-radius: 6px 6px 0 0;
  -moz-border-radius: 6px 6px 0 0;
  border-radius: 6px 6px 0 0;
}

.btn-group-vertical > .btn-large:last-child {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.alert,
.alert h4 {
  color: #c09853;
}

.alert h4 {
  margin: 0;
}

.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}

.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success h4 {
  color: #468847;
}

.alert-danger,
.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.alert-danger h4,
.alert-error h4 {
  color: #b94a48;
}

.alert-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info h4 {
  color: #3a87ad;
}

.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}

.alert-block p + p {
  margin-top: 5px;
}

.nav {
  margin-bottom: 20px;
  margin-left: 0;
  list-style: none;
}

.nav > li > a {
  display: block;
}

.nav > li > a:hover {
  text-decoration: none;
  background-color: #eeeeee;
}

.nav > li > a > img {
  max-width: none;
}

.nav > .pull-right {
  float: right;
}

.nav-header {
  display: block;
  padding: 3px 15px;
  font-size: 11px;
  font-weight: bold;
  line-height: 20px;
  color: #999999;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.nav li + .nav-header {
  margin-top: 9px;
}

.nav-list {
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 0;
}

.nav-list > li > a,
.nav-list .nav-header {
  margin-right: -15px;
  margin-left: -15px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-list > li > a {
  padding: 3px 15px;
}

.nav-list > .active > a,
.nav-list > .active > a:hover,
.nav-list > .active > a:focus {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  background-color: #0088cc;
}

.nav-list [class^="icon-"],
.nav-list [class*=" icon-"] {
  margin-right: 2px;
}

.nav-list .divider {
  *width: 100%;
  height: 1px;
  margin: 9px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}

.nav-tabs,
.nav-pills {
  *zoom: 1;
}

.nav-tabs:before,
.nav-pills:before,
.nav-tabs:after,
.nav-pills:after {
  display: table;
  line-height: 0;
  content: "";
}

.nav-tabs:after,
.nav-pills:after {
  clear: both;
}

.nav-tabs > li,
.nav-pills > li {
  float: left;
}

.nav-tabs > li > a,
.nav-pills > li > a {
  padding-right: 12px;
  padding-left: 12px;
  margin-right: 2px;
  line-height: 14px;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  margin-bottom: -1px;
}

.nav-tabs > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 20px;
  border: 1px solid transparent;
  -webkit-border-radius: 4px 4px 0 0;
  -moz-border-radius: 4px 4px 0 0;
  border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover
{
  border-color: #eeeeee #eeeeee #dddddd;
}

.nav-tabs > .active > a,
.nav-tabs > .active > a:hover
{
  color: #555555;
  cursor: default;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-bottom-color: transparent;
}

.nav-pills > li > a {
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
  color: #ffffff;
  background-color: #0088cc;
}

.nav-stacked > li {
  float: none;
}

.nav-stacked > li > a {
  margin-right: 0;
}

.nav-tabs.nav-stacked {
  border-bottom: 0;
}

.nav-tabs.nav-stacked > li > a {
  border: 1px solid #ddd;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.nav-tabs.nav-stacked > li:first-child > a {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-topleft: 4px;
}

.nav-tabs.nav-stacked > li:last-child > a {
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -moz-border-radius-bottomleft: 4px;
}

.nav-tabs.nav-stacked > li > a:hover,
.nav-tabs.nav-stacked > li > a:focus {
  z-index: 2;
  border-color: #ddd;
}

.nav-pills.nav-stacked > li > a {
  margin-bottom: 3px;
}

.nav-pills.nav-stacked > li:last-child > a {
  margin-bottom: 1px;
}

.nav-tabs .dropdown-menu {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
}

.nav-pills .dropdown-menu {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.nav .dropdown-toggle .caret {
  margin-top: 6px;
  border-top-color: #0088cc;
  border-bottom-color: #0088cc;
}

.nav .dropdown-toggle:hover .caret,
.nav .dropdown-toggle:focus .caret {
  border-top-color: #005580;
  border-bottom-color: #005580;
}

/* move down carets for tabs */
.nav-tabs .dropdown-toggle .caret {
  margin-top: 8px;
}

.nav .active .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}

.nav-tabs .active .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}

.nav > .dropdown.active > a:hover,
.nav > .dropdown.active > a:focus {
  cursor: pointer;
}

.nav-tabs .open .dropdown-toggle,
.nav-pills .open .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover,
.nav > li.dropdown.open.active > a:focus {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}

.nav li.dropdown.open .caret,
.nav li.dropdown.open.active .caret,
.nav li.dropdown.open a:hover .caret,
.nav li.dropdown.open a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  opacity: 1;
  filter: alpha(opacity=100);
}

.tabs-stacked .open > a:hover,
.tabs-stacked .open > a:focus {
  border-color: #999999;
}

.tabbable {
  *zoom: 1;
}

.tabbable:before,
.tabbable:after {
  display: table;
  line-height: 0;
  content: "";
}

.tabbable:after {
  clear: both;
}

.tab-content {
  overflow: auto;
}

.tabs-below > .nav-tabs,
.tabs-right > .nav-tabs,
.tabs-left > .nav-tabs {
  border-bottom: 0;
}

.tab-content > .tab-pane,
.pill-content > .pill-pane {
  display: none;
}

.tab-content > .active,
.pill-content > .active {
  display: block;
}

.tabs-below > .nav-tabs {
  border-top: 1px solid #ddd;
}

.tabs-below > .nav-tabs > li {
  margin-top: -1px;
  margin-bottom: 0;
}

.tabs-below > .nav-tabs > li > a {
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.tabs-below > .nav-tabs > li > a:hover,
.tabs-below > .nav-tabs > li > a:focus {
  border-top-color: #ddd;
  border-bottom-color: transparent;
}

.tabs-below > .nav-tabs > .active > a,
.tabs-below > .nav-tabs > .active > a:hover,
.tabs-below > .nav-tabs > .active > a:focus {
  border-color: transparent #ddd #ddd #ddd;
}

.tabs-left > .nav-tabs > li,
.tabs-right > .nav-tabs > li {
  float: none;
}

.tabs-left > .nav-tabs > li > a,
.tabs-right > .nav-tabs > li > a {
  min-width: 74px;
  margin-right: 0;
  margin-bottom: 3px;
}

.tabs-left > .nav-tabs {
  float: left;
  margin-right: 19px;
  border-right: 1px solid #ddd;
}

.tabs-left > .nav-tabs > li > a {
  margin-right: -1px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
  border-radius: 4px 0 0 4px;
}

.tabs-left > .nav-tabs > li > a:hover,
.tabs-left > .nav-tabs > li > a:focus {
  border-color: #eeeeee #dddddd #eeeeee #eeeeee;
}

.tabs-left > .nav-tabs .active > a,
.tabs-left > .nav-tabs .active > a:hover,
.tabs-left > .nav-tabs .active > a:focus {
  border-color: #ddd transparent #ddd #ddd;
  *border-right-color: #ffffff;
}

.tabs-right > .nav-tabs {
  float: right;
  margin-left: 19px;
  border-left: 1px solid #ddd;
}

.tabs-right > .nav-tabs > li > a {
  margin-left: -1px;
  -webkit-border-radius: 0 4px 4px 0;
  -moz-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
}

.tabs-right > .nav-tabs > li > a:hover,
.tabs-right > .nav-tabs > li > a:focus {
  border-color: #eeeeee #eeeeee #eeeeee #dddddd;
}

.tabs-right > .nav-tabs .active > a,
.tabs-right > .nav-tabs .active > a:hover,
.tabs-right > .nav-tabs .active > a:focus {
  border-color: #ddd #ddd #ddd transparent;
  *border-left-color: #ffffff;
}

.nav > .disabled > a {
  color: #999999;
}

.nav > .disabled > a:hover,
.nav > .disabled > a:focus {
  text-decoration: none;
  cursor: default;
  background-color: transparent;
}

.navbar {
  *position: relative;
  *z-index: 2;
  margin-bottom: 20px;
  overflow: visible;
}

.navbar-inner {
  min-height: 40px;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fafafa;
  background-image: -moz-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#f2f2f2));
  background-image: -webkit-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: -o-linear-gradient(top, #ffffff, #f2f2f2);
  background-image: linear-gradient(to bottom, #ffffff, #f2f2f2);
  background-repeat: repeat-x;
  border: 1px solid #d4d4d4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff2f2f2', GradientType=0);
  *zoom: 1;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.065);
}

.navbar-inner:before,
.navbar-inner:after {
  display: table;
  line-height: 0;
  content: "";
}

.navbar-inner:after {
  clear: both;
}

.navbar .container {
  width: auto;
}

.nav-collapse.collapse {
  height: auto;
  overflow: visible;
}

.navbar .brand {
  display: block;
  float: left;
  padding: 10px 20px 10px;
  margin-left: -20px;
  font-size: 20px;
  font-weight: 200;
  color: #777777;
  text-shadow: 0 1px 0 #ffffff;
}

.navbar .brand:hover,
.navbar .brand:focus {
  text-decoration: none;
}

.navbar-text {
  margin-bottom: 0;
  line-height: 40px;
  color: #777777;
}

.navbar-link {
  color: #777777;
}

.navbar-link:hover,
.navbar-link:focus {
  color: #333333;
}

.navbar .divider-vertical {
  height: 40px;
  margin: 0 9px;
  border-right: 1px solid #ffffff;
  border-left: 1px solid #f2f2f2;
}

.navbar .btn, .navbar #apply-cr-lookup,
.navbar .btn-group {
  margin-top: 5px;
}

.navbar .btn-group .btn, .navbar .btn-group #apply-cr-lookup,
.navbar .input-prepend .btn,
.navbar .input-prepend #apply-cr-lookup,
.navbar .input-append .btn,
.navbar .input-append #apply-cr-lookup,
.navbar .input-prepend .btn-group,
.navbar .input-append .btn-group {
  margin-top: 0;
}

.navbar-form {
  margin-bottom: 0;
  *zoom: 1;
}

.navbar-form:before,
.navbar-form:after {
  display: table;
  line-height: 0;
  content: "";
}

.navbar-form:after {
  clear: both;
}

.navbar-form input,
.navbar-form select,
.navbar-form .radio,
.navbar-form .checkbox {
  margin-top: 5px;
}

.navbar-form input,
.navbar-form select,
.navbar-form .btn,
.navbar-form #apply-cr-lookup {
  display: inline-block;
  margin-bottom: 0;
}

.navbar-form input[type="image"],
.navbar-form input[type="checkbox"],
.navbar-form input[type="radio"] {
  margin-top: 3px;
}

.navbar-form .input-append,
.navbar-form .input-prepend {
  margin-top: 5px;
  white-space: nowrap;
}

.navbar-form .input-append input,
.navbar-form .input-prepend input {
  margin-top: 0;
}

.navbar-search {
  position: relative;
  float: left;
  margin-top: 5px;
  margin-bottom: 0;
}

.navbar-search .search-query {
  padding: 4px 14px;
  margin-bottom: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: normal;
  line-height: 1;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.navbar-static-top {
  position: static;
  margin-bottom: 0;
}

.navbar-static-top .navbar-inner {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.navbar-fixed-top,
.navbar-fixed-bottom {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  margin-bottom: 0;
}

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  border-width: 0 0 1px;
}

.navbar-fixed-bottom .navbar-inner {
  border-width: 1px 0 0;
}

.navbar-fixed-top .navbar-inner,
.navbar-fixed-bottom .navbar-inner {
  padding-right: 0;
  padding-left: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.navbar-static-top .container,
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
  width: 940px;
}

.navbar-fixed-top {
  top: 0;
}

.navbar-fixed-top .navbar-inner,
.navbar-static-top .navbar-inner {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.navbar-fixed-bottom {
  bottom: 0;
}

.navbar-fixed-bottom .navbar-inner {
  -webkit-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

.navbar .nav {
  position: relative;
  left: 0;
  display: block;
  float: left;
  margin: 0 10px 0 0;
}

.navbar .nav.pull-right {
  float: right;
  margin-right: 0;
}

.navbar .nav > li {
  float: left;
}

.navbar .nav > li > a {
  float: none;
  padding: 10px 15px 10px;
  color: #777777;
  text-decoration: none;
  text-shadow: 0 1px 0 #ffffff;
}

.navbar .nav .dropdown-toggle .caret {
  margin-top: 8px;
}

.navbar .nav > li > a:focus,
.navbar .nav > li > a:hover {
  color: #333333;
  text-decoration: none;
  background-color: transparent;
}

.navbar .nav > .active > a,
.navbar .nav > .active > a:hover,
.navbar .nav > .active > a:focus {
  color: #555555;
  text-decoration: none;
  background-color: #e5e5e5;
  -webkit-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  -moz-box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.125);
}

.navbar .btn-navbar {
  display: none;
  float: right;
  padding: 7px 10px;
  margin-right: 5px;
  margin-left: 5px;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #ededed;
  *background-color: #e5e5e5;
  background-image: -moz-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f2f2f2), to(#e5e5e5));
  background-image: -webkit-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: -o-linear-gradient(top, #f2f2f2, #e5e5e5);
  background-image: linear-gradient(to bottom, #f2f2f2, #e5e5e5);
  background-repeat: repeat-x;
  border-color: #e5e5e5 #e5e5e5 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffe5e5e5', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075);
}

.navbar .btn-navbar:hover,
.navbar .btn-navbar:focus,
.navbar .btn-navbar:active,
.navbar .btn-navbar.active,
.navbar .btn-navbar.disabled,
.navbar .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #e5e5e5;
  *background-color: #d9d9d9;
}

.navbar .btn-navbar:active,
.navbar .btn-navbar.active {
  background-color: #cccccc \9;
}

.navbar .btn-navbar .icon-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #f5f5f5;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}

.btn-navbar .icon-bar + .icon-bar {
  margin-top: 3px;
}

.navbar .nav > li > .dropdown-menu:before {
  position: absolute;
  top: -7px;
  left: 9px;
  display: inline-block;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-left: 7px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  content: '';
}

.navbar .nav > li > .dropdown-menu:after {
  position: absolute;
  top: -6px;
  left: 10px;
  display: inline-block;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-left: 6px solid transparent;
  content: '';
}

.navbar-fixed-bottom .nav > li > .dropdown-menu:before {
  top: auto;
  bottom: -7px;
  border-top: 7px solid #ccc;
  border-bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.2);
}

.navbar-fixed-bottom .nav > li > .dropdown-menu:after {
  top: auto;
  bottom: -6px;
  border-top: 6px solid #ffffff;
  border-bottom: 0;
}

.navbar .nav li.dropdown > a:hover .caret,
.navbar .nav li.dropdown > a:focus .caret {
  border-top-color: #333333;
  border-bottom-color: #333333;
}

.navbar .nav li.dropdown.open > .dropdown-toggle,
.navbar .nav li.dropdown.active > .dropdown-toggle,
.navbar .nav li.dropdown.open.active > .dropdown-toggle {
  color: #555555;
  background-color: #e5e5e5;
}

.navbar .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #777777;
  border-bottom-color: #777777;
}

.navbar .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #555555;
  border-bottom-color: #555555;
}

.navbar .pull-right > li > .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.navbar .pull-right > li > .dropdown-menu:before,
.navbar .nav > li > .dropdown-menu.pull-right:before {
  right: 12px;
  left: auto;
}

.navbar .pull-right > li > .dropdown-menu:after,
.navbar .nav > li > .dropdown-menu.pull-right:after {
  right: 13px;
  left: auto;
}

.navbar .pull-right > li > .dropdown-menu .dropdown-menu,
.navbar .nav > li > .dropdown-menu.pull-right .dropdown-menu {
  right: 100%;
  left: auto;
  margin-right: -1px;
  margin-left: 0;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

.navbar-inverse .navbar-inner {
  background-color: #1b1b1b;
  background-image: -moz-linear-gradient(top, #222222, #111111);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#222222), to(#111111));
  background-image: -webkit-linear-gradient(top, #222222, #111111);
  background-image: -o-linear-gradient(top, #222222, #111111);
  background-image: linear-gradient(to bottom, #222222, #111111);
  background-repeat: repeat-x;
  border-color: #252525;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff222222', endColorstr='#ff111111', GradientType=0);
}

.navbar-inverse .brand,
.navbar-inverse .nav > li > a {
  color: #999999;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.navbar-inverse .brand:hover,
.navbar-inverse .nav > li > a:hover,
.navbar-inverse .brand:focus,
.navbar-inverse .nav > li > a:focus {
  color: #ffffff;
}

.navbar-inverse .brand {
  color: #999999;
}

.navbar-inverse .navbar-text {
  color: #999999;
}

.navbar-inverse .nav > li > a:focus,
.navbar-inverse .nav > li > a:hover {
  color: #ffffff;
  background-color: transparent;
}

.navbar-inverse .nav .active > a,
.navbar-inverse .nav .active > a:hover,
.navbar-inverse .nav .active > a:focus {
  color: #ffffff;
  background-color: #111111;
}

.navbar-inverse .navbar-link {
  color: #999999;
}

.navbar-inverse .navbar-link:hover,
.navbar-inverse .navbar-link:focus {
  color: #ffffff;
}

.navbar-inverse .divider-vertical {
  border-right-color: #222222;
  border-left-color: #111111;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle {
  color: #ffffff;
  background-color: #111111;
}

.navbar-inverse .nav li.dropdown > a:hover .caret,
.navbar-inverse .nav li.dropdown > a:focus .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #999999;
  border-bottom-color: #999999;
}

.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.active > .dropdown-toggle .caret,
.navbar-inverse .nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}

.navbar-inverse .navbar-search .search-query {
  color: #ffffff;
  background-color: #515151;
  border-color: #111111;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(255, 255, 255, 0.15);
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  transition: none;
}

.navbar-inverse .navbar-search .search-query:-moz-placeholder {
  color: #cccccc;
}

.navbar-inverse .navbar-search .search-query:-ms-input-placeholder {
  color: #cccccc;
}

.navbar-inverse .navbar-search .search-query::-webkit-input-placeholder {
  color: #cccccc;
}

.navbar-inverse .navbar-search .search-query:focus,
.navbar-inverse .navbar-search .search-query.focused {
  padding: 5px 15px;
  color: #333333;
  text-shadow: 0 1px 0 #ffffff;
  background-color: #ffffff;
  border: 0;
  outline: 0;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.navbar-inverse .btn-navbar {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e0e0e;
  *background-color: #040404;
  background-image: -moz-linear-gradient(top, #151515, #040404);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#151515), to(#040404));
  background-image: -webkit-linear-gradient(top, #151515, #040404);
  background-image: -o-linear-gradient(top, #151515, #040404);
  background-image: linear-gradient(to bottom, #151515, #040404);
  background-repeat: repeat-x;
  border-color: #040404 #040404 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff151515', endColorstr='#ff040404', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
}

.navbar-inverse .btn-navbar:hover,
.navbar-inverse .btn-navbar:focus,
.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active,
.navbar-inverse .btn-navbar.disabled,
.navbar-inverse .btn-navbar[disabled] {
  color: #ffffff;
  background-color: #040404;
  *background-color: #000000;
}

.navbar-inverse .btn-navbar:active,
.navbar-inverse .btn-navbar.active {
  background-color: #000000 \9;
}

.breadcrumb {
  padding: 8px 15px;
  margin: 0 0 20px;
  list-style: none;
  background-color: #f5f5f5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.breadcrumb > li {
  display: inline-block;
  *display: inline;
  text-shadow: 0 1px 0 #ffffff;
  *zoom: 1;
}

.breadcrumb > li > .divider {
  padding: 0 5px;
  color: #ccc;
}

.breadcrumb > .active {
  color: #999999;
}

.pagination {
  margin: 20px 0;
}

.pagination ul {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  margin-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *zoom: 1;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination ul > li {
  display: inline;
}

.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 0;
}

.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #f5f5f5;
}

.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #999999;
  cursor: default;
}

.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999999;
  cursor: default;
  background-color: transparent;
}

.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
}

.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
}

.pagination-centered {
  text-align: center;
}

.pagination-right {
  text-align: right;
}

.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 17.5px;
}

.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
}

.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
}

.pagination-mini ul > li:first-child > a,
.pagination-small ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > span {
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px;
}

.pagination-mini ul > li:last-child > a,
.pagination-small ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px;
}

.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 11.9px;
}

.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 0 6px;
  font-size: 10.5px;
}

.pager {
  margin: 20px 0;
  text-align: center;
  list-style: none;
  *zoom: 1;
}

.pager:before,
.pager:after {
  display: table;
  line-height: 0;
  content: "";
}

.pager:after {
  clear: both;
}

.pager li {
  display: inline;
}

.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}

.pager .next > a,
.pager .next > span {
  float: right;
}

.pager .previous > a,
.pager .previous > span {
  float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999999;
  cursor: default;
  background-color: #fff;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop,
.modal-backdrop.fade.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.modal {
  position: fixed;
  top: 10%;
  left: 50%;
  z-index: 1050;
  width: 560px;
  margin-left: -280px;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}

.modal.fade {
  top: -25%;
  -webkit-transition: opacity 0.3s linear, top 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, top 0.3s ease-out;
  -o-transition: opacity 0.3s linear, top 0.3s ease-out;
  transition: opacity 0.3s linear, top 0.3s ease-out;
}

.modal.fade.in {
  top: 10%;
}

.modal-header {
  padding: 9px 15px;
  border-bottom: 1px solid #eee;
}

.modal-header .close {
  margin-top: 2px;
}

.modal-header h3 {
  margin: 0;
  line-height: 30px;
}

.modal-body {
  position: relative;
  max-height: 400px;
  padding: 15px;
  overflow-y: auto;
}

.modal-form {
  margin-bottom: 0;
}

.modal-footer {
  padding: 14px 15px 15px;
  margin-bottom: 0;
  text-align: right;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px;
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 0 #ffffff;
  -moz-box-shadow: inset 0 1px 0 #ffffff;
  box-shadow: inset 0 1px 0 #ffffff;
}

.modal-footer:before,
.modal-footer:after {
  display: table;
  line-height: 0;
  content: "";
}

.modal-footer:after {
  clear: both;
}

.modal-footer .btn + .btn, .modal-footer #apply-cr-lookup + .btn, .modal-footer .btn + #apply-cr-lookup, .modal-footer #apply-cr-lookup + #apply-cr-lookup {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn, .modal-footer .btn-group #apply-cr-lookup + .btn, .modal-footer .btn-group .btn + #apply-cr-lookup, .modal-footer .btn-group #apply-cr-lookup + #apply-cr-lookup {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.tooltip {
  position: absolute;
  z-index: 1030;
  display: block;
  font-size: 11px;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: visible;
}

.tooltip.in {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-top-color: #000000;
  border-width: 5px 5px 0;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-right-color: #000000;
  border-width: 5px 5px 5px 0;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-left-color: #000000;
  border-width: 5px 0 5px 5px;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-bottom-color: #000000;
  border-width: 0 5px 5px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1010;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  white-space: normal;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}

.popover.top {
  margin-top: -10px;
}

.popover.right {
  margin-left: 10px;
}

.popover.bottom {
  margin-top: 10px;
}

.popover.left {
  margin-left: -10px;
}

.popover-title {
  padding: 8px 14px;
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.popover-title:empty {
  display: none;
}

.popover-content {
  padding: 9px 14px;
}

.popover .arrow,
.popover .arrow:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.popover .arrow {
  border-width: 11px;
}

.popover .arrow:after {
  border-width: 10px;
  content: "";
}

.popover.top .arrow {
  bottom: -11px;
  left: 50%;
  margin-left: -11px;
  border-top-color: #999;
  border-top-color: rgba(0, 0, 0, 0.25);
  border-bottom-width: 0;
}

.popover.top .arrow:after {
  bottom: 1px;
  margin-left: -10px;
  border-top-color: #ffffff;
  border-bottom-width: 0;
}

.popover.right .arrow {
  top: 50%;
  left: -11px;
  margin-top: -11px;
  border-right-color: #999;
  border-right-color: rgba(0, 0, 0, 0.25);
  border-left-width: 0;
}

.popover.right .arrow:after {
  bottom: -10px;
  left: 1px;
  border-right-color: #ffffff;
  border-left-width: 0;
}

.popover.bottom .arrow {
  top: -11px;
  left: 50%;
  margin-left: -11px;
  border-bottom-color: #999;
  border-bottom-color: rgba(0, 0, 0, 0.25);
  border-top-width: 0;
}

.popover.bottom .arrow:after {
  top: 1px;
  margin-left: -10px;
  border-bottom-color: #ffffff;
  border-top-width: 0;
}

.popover.left .arrow {
  top: 50%;
  right: -11px;
  margin-top: -11px;
  border-left-color: #999;
  border-left-color: rgba(0, 0, 0, 0.25);
  border-right-width: 0;
}

.popover.left .arrow:after {
  right: 1px;
  bottom: -10px;
  border-left-color: #ffffff;
  border-right-width: 0;
}

.thumbnails {
  margin-left: -20px;
  list-style: none;
  *zoom: 1;
}

.thumbnails:before,
.thumbnails:after {
  display: table;
  line-height: 0;
  content: "";
}

.thumbnails:after {
  clear: both;
}

.row-fluid .thumbnails {
  margin-left: 0;
}

.thumbnails > li {
  float: left;
  margin-bottom: 20px;
  margin-left: 20px;
}

.thumbnail {
  display: block;
  padding: 4px;
  line-height: 20px;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.055);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

a.thumbnail:hover,
a.thumbnail:focus {
  border-color: #0088cc;
  -webkit-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  -moz-box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
  box-shadow: 0 1px 4px rgba(0, 105, 214, 0.25);
}

.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.thumbnail .caption {
  padding: 9px;
  color: #555555;
}

.media,
.media-body {
  overflow: hidden;
  *overflow: visible;
  zoom: 1;
}

.media,
.media .media {
  margin-top: 15px;
}

.media:first-child {
  margin-top: 0;
}

.media-object {
  display: block;
}

.media-heading {
  margin: 0 0 5px;
}

.media > .pull-left {
  margin-right: 10px;
}

.media > .pull-right {
  margin-left: 10px;
}

.media-list {
  margin-left: 0;
  list-style: none;
}

.label,
.badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11.844px;
  font-weight: bold;
  line-height: 14px;
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  vertical-align: baseline;
  background-color: #999999;
}

.label {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.badge {
  padding-right: 9px;
  padding-left: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

.label:empty,
.badge:empty {
  display: none;
}

a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.label-important,
.badge-important {
  background-color: #b94a48;
}

.label-important[href],
.badge-important[href] {
  background-color: #953b39;
}

.label-warning,
.badge-warning {
  background-color: #f89406;
}

.label-warning[href],
.badge-warning[href] {
  background-color: #c67605;
}

.label-success,
.badge-success {
  background-color: #468847;
}

.label-success[href],
.badge-success[href] {
  background-color: #356635;
}

.label-info,
.badge-info {
  background-color: #3a87ad;
}

.label-info[href],
.badge-info[href] {
  background-color: #2d6987;
}

.label-inverse,
.badge-inverse {
  background-color: #333333;
}

.label-inverse[href],
.badge-inverse[href] {
  background-color: #1a1a1a;
}

.btn .label, #apply-cr-lookup .label,
.btn .badge,
#apply-cr-lookup .badge {
  position: relative;
  top: -1px;
}

.btn-mini .label,
.btn-mini .badge {
  top: 0;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(to bottom, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress .bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(to bottom, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff149bdf', endColorstr='#ff0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  -moz-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.progress .bar + .bar {
  -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.15), inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.progress-striped .bar {
  background-color: #149bdf;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  -webkit-background-size: 40px 40px;
  -moz-background-size: 40px 40px;
  -o-background-size: 40px 40px;
  background-size: 40px 40px;
}

.progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}

.progress-danger .bar,
.progress .bar-danger {
  background-color: #dd514c;
  background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#c43c35));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
  background-image: linear-gradient(to bottom, #ee5f5b, #c43c35);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffc43c35', GradientType=0);
}

.progress-danger.progress-striped .bar,
.progress-striped .bar-danger {
  background-color: #ee5f5b;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-success .bar,
.progress .bar-success {
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(to bottom, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff57a957', GradientType=0);
}

.progress-success.progress-striped .bar,
.progress-striped .bar-success {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-info .bar,
.progress .bar-info {
  background-color: #4bb1cf;
  background-image: -moz-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#339bb9));
  background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9);
  background-image: -o-linear-gradient(top, #5bc0de, #339bb9);
  background-image: linear-gradient(to bottom, #5bc0de, #339bb9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff339bb9', GradientType=0);
}

.progress-info.progress-striped .bar,
.progress-striped .bar-info {
  background-color: #5bc0de;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.progress-warning .bar,
.progress .bar-warning {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
}

.progress-warning.progress-striped .bar,
.progress-striped .bar-warning {
  background-color: #fbb450;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}

.accordion {
  margin-bottom: 20px;
}

.accordion-group {
  margin-bottom: 2px;
  border: 1px solid #e5e5e5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.accordion-heading {
  border-bottom: 0;
}

.accordion-heading .accordion-toggle {
  display: block;
  padding: 8px 15px;
}

.accordion-toggle {
  cursor: pointer;
}

.accordion-inner {
  padding: 9px 15px;
  border-top: 1px solid #e5e5e5;
}

.carousel {
  position: relative;
  margin-bottom: 20px;
  line-height: 1;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner > .item {
  position: relative;
  display: none;
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  line-height: 1;
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
  display: block;
}

.carousel-inner > .active {
  left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
  position: absolute;
  top: 0;
  width: 100%;
}

.carousel-inner > .next {
  left: 100%;
}

.carousel-inner > .prev {
  left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
  left: 0;
}

.carousel-inner > .active.left {
  left: -100%;
}

.carousel-inner > .active.right {
  left: 100%;
}

.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #ffffff;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.carousel-control.right {
  right: 15px;
  left: auto;
}

.carousel-control:hover,
.carousel-control:focus {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.carousel-indicators {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 5;
  margin: 0;
  list-style: none;
}

.carousel-indicators li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  margin-left: 5px;
  text-indent: -999px;
  background-color: #ccc;
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 5px;
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: #333333;
  background: rgba(0, 0, 0, 0.75);
}

.carousel-caption h4,
.carousel-caption p {
  line-height: 20px;
  color: #ffffff;
}

.carousel-caption h4 {
  margin: 0 0 5px;
}

.carousel-caption p {
  margin-bottom: 0;
}

.hero-unit {
  padding: 60px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 200;
  line-height: 30px;
  color: inherit;
  background-color: #eeeeee;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}

.hero-unit h1 {
  margin-bottom: 0;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1px;
  color: inherit;
}

.hero-unit li {
  line-height: 30px;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.affix {
  position: fixed;
}

/*END TWITTER BOOTSTRAP STYLES*/
.search-modal-sidebar, .context-modal-sidebar, #sidebar {
  width: 230px;
  height: 100%;
  min-height: 400px;
  position: relative;
  margin-right: -230px;
  float: left;
  border-right: 1px solid #ebeced;
}
.search-modal-sidebar h3, .context-modal-sidebar h3, #sidebar h3 {
  font-size: 12px;
  line-height: 1;
}
.search-modal-sidebar form, .context-modal-sidebar form, #sidebar form {
  margin: 0;
}
.tabbed.search-modal-sidebar, .tabbed.context-modal-sidebar, .tabbed#sidebar {
  padding-top: 0;
}

.search-modal-content, .context-modal-content, #content, #main-content .chipcode-planner#content #content-column-right {
  width: 100%;
  min-height: 400px;
  float: left;
  padding-top: 15px;
  padding-left: 230px;
  padding-bottom: 20px;
}
.search-modal-content > .container-fluid, .context-modal-content > .container-fluid, #content > .container-fluid, #main-content .chipcode-planner#content #content-column-right > .container-fluid {
  padding-left: 10px;
  padding-right: 10px;
}

#sidebar .facet-list, #sidebar .product-solution-wrap,
#sidebar .personalization-wrap {
  padding: 10px;
  padding-left: 0;
  border-top: 1px solid #ebeced;
  font-size: 11px;
}
#sidebar .facet-list h3, #sidebar .product-solution-wrap h3,
#sidebar .personalization-wrap h3, #sidebar .facet-list label, #sidebar .product-solution-wrap label,
#sidebar .personalization-wrap label, #sidebar .facet-list .show-more, #sidebar .product-solution-wrap .show-more,
#sidebar .personalization-wrap .show-more {
  padding-left: 20px;
}
#sidebar .facet-list h3, #sidebar .product-solution-wrap h3,
#sidebar .personalization-wrap h3 {
  margin: 0 0 10px;
}
#sidebar .facet-list ul, #sidebar .product-solution-wrap ul,
#sidebar .personalization-wrap ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
#sidebar .facet-list li, #sidebar .product-solution-wrap li,
#sidebar .personalization-wrap li {
  line-height: 1;
}
#sidebar .facet-list label, #sidebar .product-solution-wrap label,
#sidebar .personalization-wrap label {
  margin: 0;
  padding: 4px 0 4px 40px;
  font-size: 11px;
  line-height: 1.2;
  position: relative;
}
#sidebar .facet-list label.no-wrap, #sidebar .product-solution-wrap label.no-wrap,
#sidebar .personalization-wrap label.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#sidebar .facet-list input[type='checkbox'], #sidebar .product-solution-wrap input[type='checkbox'],
#sidebar .personalization-wrap input[type='checkbox'] {
  margin: 3px 10px 0 0;
  padding: 0;
  position: absolute;
  top: 1px;
  left: 20px;
}
#sidebar .facet-list .show-more, #sidebar .product-solution-wrap .show-more,
#sidebar .personalization-wrap .show-more {
  display: block;
  margin-bottom: 10px;
}
#sidebar .show-all.facet-list ul li, #sidebar .show-all.product-solution-wrap ul li,
#sidebar .show-all.personalization-wrap ul li {
  display: block;
}
#sidebar .first.facet-list, #sidebar .first.product-solution-wrap,
#sidebar .first.personalization-wrap {
  border-top: none;
}

table.table {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  font-size: 13px;
  border-bottom: 1px solid #dae2e5;
  border-collapse: collapse !important;
  border-width: 1px !important;
  line-height: 1;
}
table.table th, table.table td, table.table tr {
  border-width: 1px !important;
}
table.table th.small, table.table td.small, table.table tr.small {
  width: 80px;
}
table.table th.small-100, table.table td.small-100, table.table tr.small-100 {
  width: 100px;
}
table.table th.medium, table.table td.medium, table.table tr.medium {
  width: 200px;
}
table.table th.center, table.table td.center, table.table tr.center {
  text-align: center;
}
table.table th.center span, table.table td.center span, table.table tr.center span {
  padding-right: 0;
}
table.table th.center a, table.table td.center a, table.table tr.center a {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
table.table thead tr {
  background: #768196;
}
table.reorder.table thead th {
  cursor: move;
}
table.reorder.table thead th.no-move {
  cursor: default;
}
table.table tbody tr {
  border: 1px solid #dae2e5;
  border-bottom: none;
}
table.table tbody tr.refreshed.even, table.table tbody tr.refreshed.odd {
  background: #fcf8e2;
  border-color: #f6d7a3;
}
table.table tbody tr.description, table.table tbody tr.extended-detail-row {
  border-top: none;
}
table.table tbody tr.description td, table.table tbody tr.extended-detail-row td {
  padding-top: 3px;
}
table.table tbody tr.description p, table.table tbody tr.extended-detail-row p {
  margin: 0;
  padding-left: 30px;
}
table.table tbody tr.description.release-history-detail p, table.table tbody tr.extended-detail-row.release-history-detail p {
  padding-left: 0;
}
table.table tbody tr.hidden {
  display: none;
}
table.table tbody tr:first-child {
  border-top: none;
}
table.table tbody tr.even {
  background: #f6f8fa;
}
table.table td {
  border: none;
}
table.table th {
  font-weight: normal;
  color: #fff;
  border: 1px solid #4a5a75 !important;
}
table.table th span {
  display: block;
  padding-right: 15px;
}
table.table th.sorting span {
  background: url(plugins/create-point-common-1.192.24/images/tables/sortable.png) no-repeat right 50%;
  cursor: pointer;
}
table.table th.sorting_asc span {
  background: url(plugins/create-point-common-1.192.24/images/tables/sort-down.png) no-repeat right 50%;
  cursor: pointer;
}
table.table th.sorting_desc span {
  background: url(plugins/create-point-common-1.192.24/images/tables/sort-up.png) no-repeat right 50%;
  cursor: pointer;
}
table.table th.sorting_disabled span {
  background: transparent none;
}
table.table td {
  vertical-align: top;
  border: none !important;
  border-color: transparent !important;
}
table.table-overflow.table {
  width: 0;
  table-layout: fixed;
}
table.table-overflow.table td, table.table-overflow.table th {
  width: 150px;
}
table.table-overflow.table td.icon, table.table-overflow.table th.icon {
  width: 60px;
}
table.table-overflow.table td.small, table.table-overflow.table th.small {
  width: 80px;
}
table.table-overflow.table td.medium, table.table-overflow.table th.medium {
  width: 200px;
}
table.table-overflow.table td.large, table.table-overflow.table th.large {
  width: 300px;
}
table.table .select {
  text-align: center;
  width: 30px;
}
table.table .select input {
  padding-left: 0;
}
table.table .select-and-download {
  width: 62px;
}
table.table .select-and-download input {
  padding-left: 0;
}
table.table .title {
  min-width: 200px;
}
table.table .email {
  min-width: 220px;
}
.btn, #apply-cr-lookup {
  text-shadow: none;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: none;
  border-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn:hover, #apply-cr-lookup:hover {
  background-color: inherit;
}
.btn.disabled, .disabled#apply-cr-lookup {
  opacity: 1;
}
.btn.disabled:hover, .disabled#apply-cr-lookup:hover {
  background-color: inherit;
  color: inherit;
}

.btn:disabled, #apply-cr-lookup:disabled, .btn.disabled, .disabled#apply-cr-lookup {
  background: #fff none no-repeat;
  border: 1px solid #dae2e5;
  color: #747474;
  padding: 3px 11px;
}
.btn:disabled:hover, #apply-cr-lookup:disabled:hover, .btn.disabled:hover, .disabled#apply-cr-lookup:hover {
  background: #fff none no-repeat;
  color: #4a5a75;
}
.btn.btn-danger, .btn-danger#apply-cr-lookup {
  background-color: #cb5645;
}
.btn.btn-danger:hover, .btn-danger#apply-cr-lookup:hover {
  background-color: #cb5645;
}
.btn + .btn, #apply-cr-lookup + .btn, .btn + #apply-cr-lookup, #apply-cr-lookup + #apply-cr-lookup {
  margin-left: 10px;
}
.btn.btn-primary:disabled, .btn-primary#apply-cr-lookup:disabled, .btn.btn-primary.disabled, .btn-primary.disabled#apply-cr-lookup {
  background-color: #d3d3d3;
}
.btn.btn-primary:disabled:hover, .btn-primary#apply-cr-lookup:disabled:hover, .btn.btn-primary.disabled:hover, .btn-primary.disabled#apply-cr-lookup:hover {
  background-color: #d3d3d3;
}

.control-group.error input {
  border-color: #f00;
}
.control-group.error .help-block {
  color: #f00;
}

@font-face {
  font-family: 'Qualcomm Next';
  src: url("plugins/create-point-common-1.192.24/fonts/EOT/QualcommNext-ThinItalicWEB.eot") format("embedded-opentype");
  src: url("plugins/create-point-common-1.192.24/fonts/WOFF/QualcommNext-ThinItalicWEB.woff") format("woff"), url("plugins/create-point-common-1.192.24/fonts/WOFF2/QualcommNext-ThinItalicWEB.woff2") format("woff2"), url("plugins/create-point-common-1.192.24/fonts/SVG/QualcommNext-ThinItalicWEB.svg") format("svg");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: 'Qualcomm Next';
  src: url("plugins/create-point-common-1.192.24/fonts/EOT/QualcommBoing-ThinWEB.eot") format("embedded-opentype");
  src: url("plugins/create-point-common-1.192.24/fonts/WOFF/QualcommBoing-ThinWEB.woff") format("woff"), url("plugins/create-point-common-1.192.24/fonts/WOFF2/QualcommBoing-ThinWEB.woff2") format("woff2"), url("plugins/create-point-common-1.192.24/fonts/SVG/QualcommBoing-ThinWEB.svg") format("svg");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Qualcomm Next';
  src: url("plugins/create-point-common-1.192.24/fonts/EOT/QualcommNext-ItalicWEB.eot") format("embedded-opentype");
  src: url("plugins/create-point-common-1.192.24/fonts/WOFF/QualcommNext-ItalicWEB.woff") format("woff"), url("plugins/create-point-common-1.192.24/fonts/WOFF2/QualcommNext-ItalicWEB.woff2") format("woff2"), url("plugins/create-point-common-1.192.24/fonts/SVG/QualcommNext-ItalicWEB.svg") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Qualcomm Next';
  src: url("plugins/create-point-common-1.192.24/fonts/EOT/QualcommNext-RegularWEB.eot") format("embedded-opentype");
  src: url("plugins/create-point-common-1.192.24/fonts/WOFF/QualcommNext-RegularWEB.woff") format("woff"), url("plugins/create-point-common-1.192.24/fonts/WOFF2/QualcommNext-RegularWEB.woff2") format("woff2"), url("plugins/create-point-common-1.192.24/fonts/SVG/QualcommNext-RegularWEB.svg") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Qualcomm Next';
  src: url("plugins/create-point-common-1.192.24/fonts/EOT/QualcommNext-MediumItalicWEB.eot") format("embedded-opentype");
  src: url("plugins/create-point-common-1.192.24/fonts/WOFF/QualcommNext-MediumItalicWEB.woff") format("woff"), url("plugins/create-point-common-1.192.24/fonts/WOFF2/QualcommNext-MediumItalicWEB.woff2") format("woff2"), url("plugins/create-point-common-1.192.24/fonts/SVG/QualcommNext-MediumItalicWEB.svg") format("svg");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Qualcomm Next';
  src: url("plugins/create-point-common-1.192.24/fonts/EOT/QualcommNext-MediumWEB.eot") format("embedded-opentype");
  src: url("plugins/create-point-common-1.192.24/fonts/WOFF/QualcommNext-MediumWEB.woff") format("woff"), url("plugins/create-point-common-1.192.24/fonts/WOFF2/QualcommNext-MediumWEB.woff2") format("woff2"), url("plugins/create-point-common-1.192.24/fonts/SVG/QualcommNext-MediumWEB.svg") format("svg");
  font-weight: 500;
  font-style: normal;
}

button.btn:disabled, button#apply-cr-lookup:disabled, button.disabled.btn, button.disabled#apply-cr-lookup, button[disabled].btn, button[disabled]#apply-cr-lookup {
  background-color: #fff;
  border: 1px solid #d3d9de;
  color: #bbc0c8;
  opacity: 1;
}
button.btn:disabled:hover, button#apply-cr-lookup:disabled:hover, button.disabled.btn:hover, button.disabled#apply-cr-lookup:hover, button[disabled].btn:hover, button[disabled]#apply-cr-lookup:hover {
  background-color: #fff;
  color: #bbc0c8;
}

button.btn + button, button#apply-cr-lookup + button {
  margin-left: 10px;
}
button.btn.btn-large, button.btn-large#apply-cr-lookup {
  height: 40px;
  font-size: 14px;
  line-height: 40px;
  padding: 0 16px;
}
button.btn.btn-primary, button.btn-primary#apply-cr-lookup {
  background-color: #3253dc;
}
button.btn.btn-primary:disabled, button.btn-primary#apply-cr-lookup:disabled, button.btn.btn-primary.disabled, button.btn-primary.disabled#apply-cr-lookup {
  background-color: #fff;
}
button.btn.btn-primary:disabled:hover, button.btn-primary#apply-cr-lookup:disabled:hover, button.btn.btn-primary.disabled:hover, button.btn-primary.disabled#apply-cr-lookup:hover {
  background-color: #fff;
}
button.btn.btn-secondary, button.btn-secondary#apply-cr-lookup {
  color: #3253dc;
  background-color: #fff;
  border: 1px solid #3253dc;
}
button.btn.btn-link, button.btn-link#apply-cr-lookup {
  color: #3253dc;
  background-color: transparent;
  padding-top: 0;
  padding-bottom: 0;
  line-height: inherit;
}
button.btn.btn-link.download, button.btn-link.download#apply-cr-lookup {
  padding-left: 18px;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-blue.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
}
button.btn.btn-transparent, button.btn-transparent#apply-cr-lookup {
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}
button.btn.btn-transparent.blue, button.btn-transparent.blue#apply-cr-lookup {
  color: #3253dc;
  border-color: #3253dc;
}
button.btn.btn-transparent.black, button.btn-transparent.black#apply-cr-lookup {
  color: #000;
  border-color: #000;
}
button.btn.btn-login, button.btn-login#apply-cr-lookup {
  display: block;
  clear: both;
  margin-top: 20px;
}
button.btn.btn-maxmin, button.btn-maxmin#apply-cr-lookup {
  padding-right: 26px;
}
button.btn.btn-maxmin.max, button.btn-maxmin.max#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-maximize-white.png);
  background-position: calc(100% - 8px) 50%;
}
button.btn.btn-maxmin.min, button.btn-maxmin.min#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-minimize-white.png);
  background-position: calc(100% - 8px) 50%;
}
button.btn.btn-closemodal, button.btn-closemodal#apply-cr-lookup {
  padding-right: 26px;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-close-button-white.png);
  background-position: calc(100% - 8px) 50%;
}
button.btn.btn-download, button.btn-download#apply-cr-lookup, button.btn.btn-download-all, button.btn-download-all#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-white.png);
  background-position: 7px 50%;
  padding-left: 24px;
}
button.btn.btn-download.btn-disabled, button.btn-download.btn-disabled#apply-cr-lookup, button.btn.btn-download.disabled, button.btn-download.disabled#apply-cr-lookup, button.btn.btn-download-all.btn-disabled, button.btn-download-all.btn-disabled#apply-cr-lookup, button.btn.btn-download-all.disabled, button.btn-download-all.disabled#apply-cr-lookup {
  pointer-events: none;
  background-color: #fff;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-disabled.png);
}
button.btn.btn-clear-context, button.btn-clear-context#apply-cr-lookup {
  height: 18px;
  padding-right: 24px;
  color: #fff;
  font-size: 11px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: initial;
  border-color: #fff;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-clear-filter-white.png);
  background-position: calc(100% - 5px) 50%;
}
button.btn.btn-search-learn, button.btn-search-learn#apply-cr-lookup {
  margin-top: 2px;
  padding-right: 24px;
  color: #000;
  font-size: 11px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 13px;
  border-color: #000;
  background-color: #fff;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-video-tutorial-search.png);
  background-position: calc(100% - 5px) 50%;
}
button.btn.btn-video-tutorial, button.btn-video-tutorial#apply-cr-lookup {
  float: right;
  margin-bottom: 8px;
  padding-right: 24px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-video-tutorial-white.png);
  background-position: calc(100% - 5px) 50%;
}
button.btn.btn-clear-all-recent-pk, button.btn-clear-all-recent-pk#apply-cr-lookup {
  float: right;
  height: 18px;
  margin-top: 12px;
  padding-right: 24px;
  color: #3253dc;
  font-size: 11px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: initial;
  border-color: #3253dc;
  background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-clear-filter-blue.png);
  background-color: #fff;
  background-position: calc(100% - 5px) 50%;
}
button.btn.btn-toc, button.btn-toc#apply-cr-lookup {
  width: 250px;
  height: 75px;
  font-size: 20px;
  background: #fff;
  color: #3253dc;
  border: 1px solid #3253dc;
}
button.btn.btn-toc:hover, button.btn-toc#apply-cr-lookup:hover {
  background: #3253dc;
  color: #fff;
}
button.btn.btn-toc span, button.btn-toc#apply-cr-lookup span {
  display: inline-block;
  height: 30px;
  padding-left: 30px;
  line-height: 30px;
}
button.btn.btn-toc span.document, button.btn-toc#apply-cr-lookup span.document {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-file-default.png") no-repeat 0 50%;
}
button.btn.btn-toc span.multi-document, button.btn-toc#apply-cr-lookup span.multi-document {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-files-default.png") no-repeat 0 50%;
}
button.btn.btn-toc:hover span.document, button.btn-toc#apply-cr-lookup:hover span.document {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-file-hover.png") no-repeat 0 50%;
}
button.btn.btn-toc:hover span.multi-document, button.btn-toc#apply-cr-lookup:hover span.multi-document {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-files-hover.png") no-repeat 0 50%;
}
button.btn.btn-recover-selected, button.btn-recover-selected#apply-cr-lookup {
  padding-left: 24px;
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/recover-white.png);
  background-repeat: no-repeat;
  background-position: 8px 50%;
}
button.btn.btn-recover-selected.disabled, button.btn-recover-selected.disabled#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/recover.png);
}
button.btn.btn-delete-selected, button.btn-delete-selected#apply-cr-lookup {
  padding-left: 24px;
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/delete-white.png);
  background-repeat: no-repeat;
  background-position: 8px 50%;
}
button.btn.btn-delete-selected.disabled, button.btn-delete-selected.disabled#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/delete.png);
}
button.btn.btn-buy, button.btn-buy#apply-cr-lookup, button.btn.btn-buy:hover, button.btn-buy#apply-cr-lookup:hover {
  padding-right: 30px;
  background-image: url("plugins/create-point-common-1.192.24/images/icons/external-link-white.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) 50%;
}

.button-row button + button {
  margin-left: 20px;
}
.button-row.pull-right {
  text-align: right;
}

i.all-categories {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/all-categories.png") no-repeat 0 50%;
}
i.camera {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/camera.png") no-repeat 0 50%;
}
i.computing {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/computing.png") no-repeat 0 50%;
}
i.connectivity {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/connectivity.png") no-repeat 0 50%;
}
i.consumer-electronics {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/consumer-electronics.png") no-repeat 0 50%;
}
i.document-imaging {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/document-imaging.png") no-repeat 0 50%;
}
i.infotainment {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/infotainment.png") no-repeat 0 50%;
}
i.mobile {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/mobile.png") no-repeat 0 50%;
}
i.networking {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/networking.png") no-repeat 0 50%;
}
i.robotics {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/robotics.png") no-repeat 0 50%;
}
i.smart-cities {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/smart-cities.png") no-repeat 0 50%;
}
i.telematics {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/telematics.png") no-repeat 0 50%;
}
i.voice-and-music {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/voice-and-music.png") no-repeat 0 50%;
}
i.wearables {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/wearables.png") no-repeat 0 50%;
}

.pk-icons .all-categories a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/all-categories.png") no-repeat 50% 5px;
}
.pk-icons .camera a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/camera.png") no-repeat 50% 5px;
}
.pk-icons .computing a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/computing.png") no-repeat 50% 5px;
}
.pk-icons .connectivity a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/connectivity.png") no-repeat 50% 5px;
}
.pk-icons .consumer-electronics a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/consumer-electronics.png") no-repeat 50% 5px;
}
.pk-icons .document-imaging a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/document-imaging.png") no-repeat 50% 5px;
}
.pk-icons .infotainment a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/infotainment.png") no-repeat 50% 5px;
}
.pk-icons .mobile a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/mobile.png") no-repeat 50% 5px;
}
.pk-icons .networking a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/networking.png") no-repeat 50% 5px;
}
.pk-icons .robotics a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/robotics.png") no-repeat 50% 5px;
}
.pk-icons .smart-cities a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/smart-cities.png") no-repeat 50% 5px;
}
.pk-icons .telematics a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/telematics.png") no-repeat 50% 5px;
}
.pk-icons .voice-and-music a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/voice-and-music.png") no-repeat 50% 5px;
}
.pk-icons .wearables a {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/wearables.png") no-repeat 50% 5px;
}

.context-all-categories .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/all-categories.png") no-repeat 50% 50%;
}

.context-camera .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/camera.png") no-repeat 50% 50%;
}

.context-computing .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/computing.png") no-repeat 50% 50%;
}

.context-connectivity .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/connectivity.png") no-repeat 50% 50%;
}

.context-consumer-electronics .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/consumer-electronics.png") no-repeat 50% 50%;
}

.context-document-imaging .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/document-imaging.png") no-repeat 50% 50%;
}

.context-infotainment .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/infotainment.png") no-repeat 50% 50%;
}

.context-mobile .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/mobile.png") no-repeat 50% 50%;
}

.context-networking .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/networking.png") no-repeat 50% 50%;
}

.context-robotics .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/robotics.png") no-repeat 50% 50%;
}

.context-smart-cities .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/smart-cities.png") no-repeat 50% 50%;
}

.context-telematics .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/telematics.png") no-repeat 50% 50%;
}

.context-voice-and-music .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/voice-and-music.png") no-repeat 50% 50%;
}

.context-wearables .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/wearables.png") no-repeat 50% 50%;
}

/*====
Navbar
====*/
.site-header {
  position: relative;
  width: 100%;
  min-width: 1000px;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.site-header a {
  font-size: 13px;
  font-weight: bold;
}

#logo {
  padding: 28px 0 8px;
  float: left;
}

.navbar-inverse .navbar-inner {
  position: relative;
  z-index: 10001;
  background: #fff;
  filter: none !important;
  border: none;
  box-shadow: none;
}

.navbar {
  color: #222;
}
.navbar.extended {
  height: 61px;
}
.navbar ul {
  list-style: none;
}
.navbar a {
  color: #222;
}
.navbar a:hover {
  text-decoration: none;
}
.navbar.navbar-static-top {
  position: relative;
  z-index: 10001;
}
.navbar .user-email {
  float: left;
  position: absolute;
  margin-top: 26px;
  font-size: 10px;
  z-index: 1;
  color: #677283 ;
  white-space: pre;
}
.navbar form {
  margin-bottom: 0;
}

.user-menu {
  float: left;
  line-height: 50px;
  color: #222;
}
.user-menu span {
  padding-right: 20px;
}
.user-menu a {
  padding: 0 10px;
}
.user-menu a:hover {
  text-decoration: underline;
}

.nav-flyout {
  float: left;
  position: relative;
  z-index: 100;
}
.nav-flyout h3 {
  margin: 0;
  padding: 20px;
  font-size: 14px;
  line-height: 1.2;
}
.nav-flyout .toggle-flyout {
  display: block;
  line-height: 50px;
}
.nav-flyout .toggle-user-menu {
  padding: 0 10px;
}
.nav-flyout .toggle-user-menu span {
  padding-right: 18px;
  background: url(plugins/create-point-common-1.192.24/images/icons/menu-down.png) no-repeat 100% 50%;
}
.nav-flyout .toggle-language-menu {
  width: 40px;
  line-height: 60px;
  background: url(plugins/create-point-common-1.192.24/images/icons/world.png) no-repeat center 18px;
  text-indent: -9999px;
}
.nav-flyout ul {
  display: none;
  width: 160px;
  position: absolute;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 4px 3px 2.8px rgba(0, 0, 0, 0.2);
}
.nav-flyout ul.user-menu {
  width: 190px;
}
.nav-flyout ul li {
  padding: 0;
}
.nav-flyout ul a {
  display: block;
  padding: 10px 20px;
  line-height: 1.2;
  font-weight: normal;
  border-top: 1px solid #dde6eb;
}
.nav-flyout ul a:hover {
  color: #fff;
  text-decoration: underline;
  background: #768196;
}
.nav-flyout:hover ul {
  display: block;
}

#permalink {
  float: left;
  position: relative;
}
#permalink .permalink {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  width: 400px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 3px 2.8px rgba(0, 0, 0, 0.2);
}
#permalink .permalink input[type="text"] {
  width: 360px;
  height: 38px;
  line-height: 38px;
  margin: 0;
}
#permalink .permalink label {
  padding: 0 0 20px;
  margin: 0;
  font-size: 12px;
  line-height: 1;
}

.display-permalink {
  display: block;
  line-height: 60px;
  width: 24px;
  padding: 0 20px;
  background: url(plugins/create-point-common-1.192.24/images/icons/permalink.png) no-repeat 50% 18px;
  position: relative;
}

.display-permalink, .close-permalink {
  display: block;
  text-indent: -9999px;
}

.close-permalink {
  width: 13px;
  height: 13px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url(plugins/create-point-common-1.192.24/images/icons/close-blue.png) no-repeat 0 0;
}

#helpki {
  float: left;
  position: relative;
}

.helpki {
  display: block;
  text-indent: -9999px;
  line-height: 60px;
  padding: 0 20px;
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-question-mark.png") no-repeat 50% 18px;
}
#createpoint-sections {
  position: relative;
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  font-size: 12px;
  background: #fff;
  border-top: 1px solid #dde6eb !important;
}
#createpoint-sections ul {
  list-style: none;
  margin: 0;
  *zoom: 1;
}
#createpoint-sections ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#createpoint-sections ul li {
  float: left;
}
#createpoint-sections ul li.active a, #createpoint-sections ul li:hover a {
  color: #3253dc;
}
#createpoint-sections ul a {
  display: block;
  padding: 10px;
  color: #000;
  /* should this be removed? */
}
#createpoint-sections ul a:hover {
  text-decoration: none;
}
#createpoint-sections ul a.no-pk {
  pointer-events: none;
  cursor: normal;
}
#createpoint-sections ul a.external {
  padding-right: 25px;
  background: url(plugins/create-point-common-1.192.24/images/icons/nav-external-link.png) no-repeat right 50%;
}

.extended .toggle-user-menu {
  padding-bottom: 10px;
}

.context-and-entitlements {
  position: relative;
  height: 41px;
  border-top: 1px solid #d3d9de;
}
.context-and-entitlements:after {
  content: "";
  display: table;
  clear: both;
}

.entitlements {
  height: 40px;
  padding-right: 20px;
  list-style: none;
  float: right;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-size: 9px;
  line-height: 40px;
}
.entitlements li {
  padding: 0 5px;
  display: inline;
  border-left: 1px solid #ced1d9;
}
.entitlements li:first-child {
  border: 0;
  color: #9ba3ad;
}
.entitlements a {
  color: #222;
}

.header-shade {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 50;
  pointer-events: none;
}

.modal-shown .header-shade {
  display: block;
}

.header-search {
  margin: 10px;
}

.header-search-wrapper {
  position: relative;
}



input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button-default:hover,
.fullscreenme:hover,
.closemodal:hover,
.download:hover,
.button-row a:hover,
.files-row a:hover,
.set-personalization button:hover {
  background: #3253dc;
  color: #fff;
}

.typeahead {
  border-radius: 0 !important;
  width: 420px;
  font-size: 12px;
  border: 1px solid #a6a6a6;
}
.typeahead.dropdown-menu {
  padding: 0;
}
.typeahead.dropdown-menu > li > a {
  padding: 5px 10px;
  white-space: normal;
  border-top: 1px solid #e9e9e9;
}
.typeahead.dropdown-menu > li:first-child > a {
  border: none;
}
.typeahead.dropdown-menu > .active > a {
  color: #fff;
  background-color: #8f8f8f;
  background-image: none !important;
}

.site-header .twitter-typeahead {
  display: block !important;
  float: left !important;
  position: relative !important;
}
.site-header .twitter-typeahead .search-query {
  margin-right: 3px;
  top: 0 !important;
}

.tt-menu {
  width: 420px;
  font-size: 12px;
  border: 1px solid #a6a6a6;
  border-top: 0;
  background: #fff;
}

.tt-header {
  margin: 0;
  padding: 8px 4px;
  font-size: 16px;
  line-height: 1;
  border-top: 1px solid #a6a6a6;
}

.tt-suggestion {
  padding: 8px 4px;
  border-top: 1px solid #a6a6a6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 24px;
}
.tt-suggestion:hover {
  color: #fff;
  background: #3253dc;
}
.tt-suggestion i {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
}
.tt-suggestion.with-icon div {
  float: left;
  min-height: 24px;
}

h1.search {
  margin-top: 20px;
  padding-left: 20px;
  line-height: normal;
  background: url(plugins/create-point-common-1.192.24/images/icons/search-large.png) 0 50% no-repeat;
}


.search-results #content {
  padding-top: 0;
}
.search-results #content > .container-fluid {
  padding: 0;
}

.search-modal {
  background-color: #fff;
  border-left: 4px solid #d3d9de;
  border-right: 4px solid #d3d9de;
}
.search-modal h2.title {
  float: left;
  margin: 0;
  color: #222;
  line-height: 1;
  font-size: 22px;
  font-weight: 400;
}

.close-search-modal {
  float: right;
  padding-right: 20px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-close-blue.png) no-repeat 100% 40%;
}

.search-active .search-modal {
  display: block;
}

.search-modal-header {
  height: 116px;
  padding: 10px 20px;
  background-color: #d3d9de;
}
.search-modal-header .context-pill {
  clear: both;
}

.search-modal-body .flex-layout {
  min-height: 100%;
}

.search-modal-sidebar {
  padding-top: 0;
  border-right: 1px solid #d3d9de;
}

.search-modal-content {
  padding-left: 0;
}

/*=============
Advanced Search
=============*/
.open-advanced-search {
  position: absolute;
  top: 16px;
  left: 410px;
  width: 15px;
  height: 15px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent url("plugins/create-point-common-1.192.24/images/icons/icon-search-advanced.png") no-repeat center center;
  outline: 0;
}

.close-advanced-search {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 13px;
  height: 13px;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: transparent url("plugins/create-point-common-1.192.24/images/icons/close-blue.png") no-repeat center center;
  outline: 0;
}

.advanced-search {
  display: none;
  position: absolute;
  top: 36px;
  left: 10px;
  width: 420px;
  padding-bottom: 10px;
  font-size: 12px;
  background: #fff;
  box-shadow: 0 4px 3px 2.8px rgba(0, 0, 0, 0.2);
  z-index: 10000;
}
.advanced-search .container-fluid {
  padding-left: 10px;
  padding-right: 10px;
}
.advanced-search h3 {
  font-size: 12px;
  line-height: 1;
}
.advanced-search label {
  font-size: inherit;
  float: left;
  line-height: 29px;
}
.advanced-search .select2-container {
  width: 100%;
  margin-bottom: 10px;
}
.advanced-search input {
  width: 100%;
  height: 29px;
  font-size: 13px;
}
.advanced-search input.date {
  float: left;
  width: 100px;
  padding-left: 25px;
  background: #fff url("plugins/create-point-common-1.192.24/images/icons/calendar.png") no-repeat 5px center;
}
.advanced-search input.date.last {
  float: right;
}
.advanced-search .to {
  display: inline-block;
  width: 29px;
  text-align: center;
  line-height: 29px;
}
.advanced-search .select2-container-multi .select2-choices {
  border: 1px solid #8a8a8a;
}
.advanced-search .select2-container-multi .select2-choices .select2-search-field input {
  margin: 0;
  height: 27px;
}
.advanced-search .select2-container-multi .select2-choices .select2-search-choice {
  padding: 0 6px 0 18px;
  color: #000;
  font-size: 10px;
  line-height: 20px;
  border-radius: 10px;
  border: none;
  background-color: #e5e5e5;
  box-shadow: none;
}
.advanced-search .select2-search-choice-close {
  background: url("resource:/plugins/create-point-common-1.192.24/css/images/icons/facet-close.png") no-repeat center center;
}
.advanced-search .select2-search-choice-close:hover {
  background-position: center center !important;
}
.advanced-search .custom-select {
  position: relative;
  right: -9px;
  width: 75px;
  height: 29px;
  float: right;
}
.advanced-search .custom-select.select2-container .select2-choice {
  height: 29px;
  padding-left: 4px;
  line-height: 29px;
  font-size: 10px;
  background-color: #f6f6f6;
  border: 1px solid #3253dc;
}
.advanced-search .custom-select.select2-container .select2-choice .select2-chosen {
  margin-right: 18px;
}
.advanced-search .custom-select.select2-container .select2-choice .select2-arrow {
  width: 18px;
  background: #f6f6f6 url(plugins/create-point-common-1.192.24/images/icons/select-small-down.png) no-repeat center center;
  border-left: 0;
}
.advanced-search .custom-select.select2-dropdown-open .select2-choice {
  background-color: #f6f6f6;
}
.advanced-search .custom-select.select2-dropdown-open .select2-choice .select2-arrow {
  background: #f6f6f6 url(plugins/create-point-common-1.192.24/images/icons/select-small-up.png) no-repeat center center;
}

.advanced-search-facets-title {
  margin: 0 0 0 10px;
  padding: 10px;
  background: #e5e5e5;
}
.advanced-search-facets-title label {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 0;
  font-weight: bold;
}

.advanced-search-facets {
  margin: 10px;
}
.advanced-search-facets .facet-pill {
  float: none;
}

.select2-container-multi .select2-choices .select2-search-choice {
  padding: 0 6px 0 18px;
  color: #000;
  font-size: 10px;
  font-family: "Arial", sans-serif !important;
  line-height: 20px;
  border-radius: 10px;
  border: none;
  background: #fff !important;
  border: 1px solid #d3d9de;
  box-shadow: none;
}

.select2-search-choice-close {
  background: #fff url("plugins/create-point-common-1.192.24/images/2.0/icons/icon-pill-close.png") no-repeat center center !important;
  background-size: 8px 8px !important;
  top: 3px !important;
}
.select2-search-choice-close:hover {
  background-position: center center !important;
}

.advanced-search-facets-title {
  margin: 0 0 0 10px;
  padding: 10px;
  background: #e5e5e5;
}
.advanced-search-facets-title label {
  display: inline-block;
  margin-left: 15px;
  margin-bottom: 0;
  font-weight: bold;
}

.advanced-search-facets {
  margin: 10px;
}
.advanced-search-facets .facet-pill {
  float: none;
}

#pre-content header h1.home {
  float: none;
}

#pre-content header p {
  font-size: 16px;
  margin-bottom: 15px;
}

.portal-column-wrap {
  height: 100%;
  float: left;
}

.context-wrap {
  float: left;
  position: relative;
  z-index: 1;
}

.context {
  height: 30px;
  line-height: 24px;
  color: #222;
  font-size: 11px;
  font-weight: bold;
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pk-tile.png") repeat-x 0 0;
  float: left;
  border-radius: 0 0 0 8px;
}
.context a {
  color: #3253dc;
}
.context .remove-productkit-filter {
  position: relative;
  top: 2px;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-reset-filter.png") no-repeat 0 0;
}
.context .remove-productkit-filter:hover {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-reset-filter-hover.png") no-repeat 0 0;
}
.context .edit, .context .toc {
  display: inline-block;
  padding-left: 10px;
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-separator.png") no-repeat 0 50%;
}
.context .toc {
  margin-left: 10px;
}

.context-icon {
  float: left;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  margin-right: 10px;
}

.context-label {
  padding-right: 10px;
}

.context-startcap {
  float: left;
  width: 11px;
  height: 30px;
  margin-left: 20px;
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pk-start.png") no-repeat 0 0;
}

.context-endcap {
  float: left;
  width: 45px;
  height: 30px;
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pk-end.png") no-repeat 0 0;
}

.portal.tabs #content {
  margin: 0;
  padding: 0;
}
.portal.tabs #content > .container-fluid {
  padding: 0 !important;
}
.portal.tabs .breadcrumb {
  padding-top: 0;
}

.productkit-filter {
  padding-bottom: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}
.productkit-filter h2 {
  font-size: 28px;
}
.productkit-filter p {
  font-size: 16px;
}

.selected-kit {
  display: block;
  float: left;
  margin-right: 5px;
  padding: 0 10px;
  background: #e7e7e7;
  height: 27px;
  line-height: 27px;
}
.selected-kit .context-label {
  padding-right: 0;
}

.remove-productkit-filter {
  display: none;
}


.context-expanded {
  display: none;
  padding-right: 20px;
}

.close-context-modal {
  margin-left: auto;
  padding-right: 20px;
  float: right;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-close-modal-blue.png) no-repeat 100% 50%;
}

.context-pill {
  float: left;
  height: 24px;
  padding: 0 10px;
  color: #fff;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-size: 12px;
  line-height: 24px;
  background-color: #4a5a75;
  border-radius: 24px;
}
.context-pill.context-applied {
  background: #3253dc;
}
.context-pill .context-pill-label,
.context-pill .context-pill-text {
  display: inline;
}
.context-pill .context-pill-label {
  padding-right: 8px;
  font-weight: 500;
}
.context-pill .context-pill-text {
  font-weight: 400;
}
.context-pill.inactive {
  background-color: #A4ACBA;
}

.context-modal-active .context-and-entitlements {
  border-top: 1px solid transparent;
}
.context-modal-active .context {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.context-modal-active .context .title {
  flex-grow: 0;
}
.context-modal-active .context-flag {
  flex-grow: 0;
  border-bottom-right-radius: 0;
  background: #d3d9de url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-close-modal-caret-blue.png) no-repeat;
  background-position: calc(100% - 20px) 50%;
}
.context-modal-active .context-applied .context-flag {
  background: #3253dc url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-close-modal-caret-white.png) no-repeat;
  background-position: calc(100% - 20px) 50%;
}
.context-modal-active .context-expanded {
  display: flex;
  flex-grow: 1;
}

.context-applied button {
  display: inline-block;
}
.context-applied .context-flag {
  background: #3253dc url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-open-modal-caret-white.png) no-repeat;
  background-position: calc(100% - 20px) 50%;
}
.context-applied .context-flag a {
  color: #fff;
}
.context-applied .context-expanded {
  background-color: #3253dc;
}
.context-applied .context-expanded a {
  color: #fff;
}
.context-applied .close-context-modal {
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-close-modal.png) no-repeat 100% 50%;
}

.context-toast {
  display: none;
  position: absolute;
  top: 91px;
  left: 0;
  width: 100%;
  height: 105px;
  line-height: 105px;
  color: #fff;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-size: 24px;
  text-align: center;
  background: #3253dc;
  z-index: 100;
}
.context-toast.visible {
  animation: 4s fadeInOut ease-in-out;
  animation-iteration-count: 1;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.9;
  }
  75% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.context-modal {
  display: none;
  position: fixed;
  top: 93px;
  left: 0;
  width: 100%;
  height: calc(100% - 93px);
  padding: 0 20px;
  background-color: #e9ecef;
  z-index: 999;
}
.context-modal h2.title {
  float: left;
  margin: 0;
  color: #222;
  line-height: 1;
  font-size: 22px;
  font-weight: 400;
}
.context-modal .nav-tabs li {
  border-color: #d3d9de;
}
.context-modal .pk-main {
  margin: 0;
  padding: 0;
}

.context-modal-active .context-modal {
  display: block;
}

.context-modal-header {
  padding: 55px 10px 32px 100px;
}

.context-modal-body {
  height: calc(100% - 116px);
}

.context-modal-sidebar {
  height: 100%;
  width: 265px;
  margin-right: -265px;
  padding-top: 0;
  border-right: 1px solid #d3d9de;
  overflow: hidden;
}

.pk-categories {
  height: calc(100% - 148px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.context-modal-content {
  height: 100%;
  padding-left: 265px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.context-modal-tab-contents {
  height: calc(100% - 34px);
  overflow: hidden;
  background: #fff;
  padding: 10px 10px 0;
  border: 1px solid #d3d9de;
}

.product-kits-tab-view {
  display: block;
}

.recents-tab-view {
  display: none;
}

.fav-recent-pk .fav {
  width: 85px;
}
.fav-recent-pk i {
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.product-level-label,
.kit-level .status-msg {
  height: 14px;
  margin-right: 10px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  line-height: 1.1;
  float: left;
}

.kit-level .status-msg {
  font-size: 11px;
  margin-left: 10px;
  line-height: 17px;
}

.context-modal-header .favorite {
  float: left;
  margin: 0 8px 0 0;
  color: #3253dc;
}
.context-modal-header .favorite a {
  display: block;
  width: auto;
  height: 20px;
  margin-left: 80px;
  padding-left: 25px;
  font-size: 13px;
  line-height: 20px;
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  text-indent: 0;
  background: url("plugins/create-point-common-1.192.24/images/2.0/icons/icon-favorite-default.png") no-repeat 0 0;
}
.context-modal-header .favorite a.favorited, .context-modal-header .favorite a:hover {
  background: url("plugins/create-point-common-1.192.24/images/2.0/icons/icon-favorite-active.png") no-repeat 0 0;
}

.sidebar {
  position: relative;
  height: 100%;
}
.sidebar.wide {
  width: 265px !important;
  margin-right: -265px !important;
  border-right: 1px solid #d3d9de;
  float: left;
}
.sidebar.tabbed .sidebar-content {
  height: 100%;
  margin-left: 30px;
  padding-top: 14px;
  background-color: #e9ecef;
  border-left: 1px solid #d3d9de;
}
.sidebar.tabbed .navigator {
  height: 100%;
  margin: 0 0 0 8px;
  border-top: 1px solid #d3d9de;
  border-left: 1px solid #d3d9de;
  background: #fff;
  overflow: hidden;
}
.sidebar .sidebar-content {
  position: relative;
  z-index: 20;
}
.sidebar.tabbed-decorative {
  display: flex;
  flex-direction: column;
}
.sidebar.tabbed-decorative .sidebar-lower {
  flex-grow: 1;
}
.sidebar.tabbed-decorative .sidebar-content {
  height: 100%;
  margin-left: 25px;
  border-left: 1px solid #d3d9de;
}
.sidebar.gray .sidebar-content,
.sidebar.gray .tab-vertical {
  background-color: #e9ecef;
}

.sidebar-upper,
.sidebar-lower {
  position: relative;
}

.sidebar-upper {
  padding: 10px 13px 20px 39px;
  background-color: #d3d9de;
}
.sidebar-upper h4 {
  font-size: 12px;
  margin-bottom: 3px;
}
.sidebar-upper label {
  font-size: 12px;
}

.sidebar-component-dark {
  padding: 13px;
  background-color: #d3d9de;
}

.sidebar-component {
  padding: 13px;
}

#content.has-wide-sidebar {
  padding-left: 266px;
}

ul.sidebar-tabs-vertical {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
ul.sidebar-tabs-vertical li {
  list-style: none;
  display: block;
  width: 31px;
  height: 140px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Arial', sans-serif;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-rl;
  writing-mode: tb-lr;
  transform: scale(-1, -1);
  white-space: nowrap;
  background-color: #d3d9de;
  border-top-right-radius: 20px;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
ul.sidebar-tabs-vertical li:nth-child(1) {
  top: 0;
  z-index: 5;
}
ul.sidebar-tabs-vertical li:nth-child(2) {
  top: 120px;
  z-index: 4;
}
ul.sidebar-tabs-vertical li:nth-child(3) {
  top: 240px;
  z-index: 3;
}
ul.sidebar-tabs-vertical li:nth-child(4) {
  top: 360px;
  z-index: 0;
}
ul.sidebar-tabs-vertical li.active {
  font-weight: bold;
  z-index: 21;
  background: #e9ecef;
  box-shadow: 2px -4px 4px rgba(0, 0, 0, 0.3);
}
ul.sidebar-tabs-vertical.angled li {
  background: #e9ecef;
  box-shadow: none;
  z-index: 21;
  border-top: 1px solid #d3d9de;
  border-right: 1px solid #d3d9de;
}

.sidebar-tabs-decorative {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.sidebar-tabs-decorative * {
  box-sizing: content-box;
}
.sidebar-tabs-decorative .tab-vertical {
  position: relative;
  width: 25px;
  height: 40px;
  margin-bottom: 5px;
  padding: 20px 0 35px;
  border: 1px solid #d3d9de;
  border-top: 0;
  border-right: 0;
  background: #fff;
  z-index: 21;
  overflow: hidden;
}
.sidebar-tabs-decorative .tab-vertical.round {
  border-bottom-left-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}
.sidebar-tabs-decorative .tab-text {
  float: left;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: 21px 16px 0;
  z-index: 2;
}
.sidebar-tabs-decorative .clip {
  display: block;
  position: absolute;
  top: 100px;
  left: -71px;
  height: 50px;
  width: 100px;
  background: #fff;
  border-right: 1px solid #d3d9de;
  transform: rotate(-60deg);
  z-index: 22;
}

/*
JSTREE
*/
.jstree ins {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 20px;
  text-indent: -99em;
}
.jstree a:hover, .jstree .js-hovered {
  background: #f6f8fa;
}
.jstree a:hover + button {
  display: block;
}
.jstree ul {
  list-style: none;
  margin-left: 0px;
}
.jstree ul a {
  display: block;
}
.jstree ul a.jstree-clicked {
  color: #000;
}
.jstree li {
  padding: 0 !important;
  margin: 0;
  position: relative;
}
.jstree ul a {
  padding-left: 52px;
}
.jstree ul ins {
  left: 34px;
}
.jstree ul ul a {
  padding-left: 74px;
}
.jstree ul ul ins {
  left: 56px;
}
.jstree ul ul ul a {
  padding-left: 96px;
}
.jstree ul ul ul ins {
  left: 78px;
}
.jstree ul ul ul ul a {
  padding-left: 118px;
}
.jstree ul ul ul ul ins {
  left: 100px;
}
.jstree ul ul ul ul ul a {
  padding-left: 140px;
}
.jstree ul ul ul ul ul ins {
  left: 122px;
}
.jstree ul ul ul ul ul ul a {
  padding-left: 162px;
}
.jstree ul ul ul ul ul ul ins {
  left: 144px;
}
.jstree ul ul ul ul ul ul ul a {
  padding-left: 184px;
}
.jstree ul ul ul ul ul ul ul ins {
  left: 166px;
}
.jstree ul ul ul ul ul ul ul ul a {
  padding-left: 206px;
}
.jstree ul ul ul ul ul ul ul ul ins {
  left: 188px;
}
.jstree ul ul ul ul ul ul ul ul ul a {
  padding-left: 228px;
}
.jstree ul ul ul ul ul ul ul ul ul ins {
  left: 210px;
}
.jstree ul ul ul ul ul ul ul ul ul ul a {
  padding-left: 250px;
}
.jstree ul ul ul ul ul ul ul ul ul ul ins {
  left: 232px;
}
.jstree button {
  display: none;
  position: absolute;
  top: 0;
  left: 18px;
  width: 16px;
  height: 16px;
  text-align: -999px;
  background: transparent url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -769px no-repeat;
  border: none;
  -webkit-appearance: none;
  outline: 0;
}
.jstree button:hover {
  display: block;
  background: transparent url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -845px no-repeat;
}
.jstree .favorited {
  background: #fff7dd;
}
.jstree .favorited > button {
  display: block;
  background: url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -921px no-repeat;
}
.jstree .favorited li a:hover + button {
  display: none;
}

.jstree-closed > ins {
  background: url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -693px no-repeat;
}

.jstree-open > ins {
  background: url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -1149px no-repeat;
}

.jstree-clicked {
  font-weight: bold;
}

.jstree .jstree-leaf ins {
  background: url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -997px no-repeat;
}

.jstree-open > a > .jstree-icon,
.jstree-closed > a > .jstree-icon {
  position: static;
  float: left;
  background: url("plugins/create-point-common-1.192.24/images/doctree-s3a20be12e5.png") 0 -1073px no-repeat;
}

.table-controls {
  margin-bottom: 0;
  background-color: #e9ecef;
}
.table-controls.light {
  padding: 0;
  background-color: transparent;
}
.table-controls.dark {
  background-color: #d3d9de;
}
.table-controls .controls-right {
  float: right;
}
.table-controls label {
  font-size: 12px;
  font-weight: bold;
}

.panel, .panel-dk {
  width: 100%;
  flex-shrink: 0;
  padding: 16px;
  margin-bottom: 20px;
}
.panel.connected, .connected.panel-dk {
  margin-bottom: 0;
}

.panel-sm, .table-controls {
  padding: 8px;
  font-size: 12px;
}
.panel-sm:after, .table-controls:after {
  content: "";
  display: table;
  clear: both;
}

.panel-dk {
  background-color: #e9ecef;
  border: 1px solid #d8d8d8;
}
.panel-dk + .panel-dk {
  border-top: 0;
}

.keyword-filter {
  padding: 13px;
}
.keyword-filter h4 {
  margin: 0 0 4px;
  font-size: 13px;
}
.keyword-filter input {
  width: 160px;
}
.keyword-filter button {
  float: right;
}
.keyword-filter.bordered {
  border-top: 1px solid #d3d9de;
}

.keyword-filter + .keyword-filter {
  border-top: 1px solid #d3d9de;
}

.filter-set {
  padding: 0 10px;
}
.filter-set h4 {
  margin: 1em 0 0;
  font-size: 13px;
}
.filter-set ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.filter-set label {
  font-weight: normal;
}
.filter-set.pills li {
  position: relative;
  display: inline-block;
  height: 20px;
  margin-right: 8px;
  padding: 0 24px 0 8px;
  line-height: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d3d9de;
}
.filter-set.pills li .remove {
  display: block;
  position: absolute;
  right: 4px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-pill-close.png) no-repeat 0 0;
}
.filter-set.checkboxes li {
  line-height: 20px;
}
.filter-set.checkboxes ul {
  margin-top: 5px;
}
.filter-set.checkboxes input {
  margin-right: 8px;
}
.filter-set.checkboxes li + li {
  margin-top: 10px;
}
.filter-set.checkboxes label {
  font-size: 12px;
}
.filter-set .more {
  display: inline-block;
  margin-bottom: 8px;
  padding: 0 12px 0 0;
  font-size: 12px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-more-left-panel-filters.png) no-repeat 100% 50%;
}

.table-filters:after {
  content: "";
  display: table;
  clear: both;
}
.table-filters h4,
.table-filters label,
.table-filters a.clear,
.table-filters .filter-set {
  float: left;
  min-height: 20px;
  line-height: 20px;
}
.table-filters h4 {
  margin: 0 5px 0 0;
  font-size: 12px;
}
.table-filters label {
  margin: 0 0 0 12px;
}
.table-filters label input[type="checkbox"] {
  margin-right: 0;
}
.table-filters a.clear {
  display: block;
  margin-right: 16px;
}
.table-filters .filter-set.pills {
  border-top: 0;
}
.table-filters .filter-set.pills ul {
  margin: 0;
}

.sidebar .filter-set {
  border-top: 1px solid #d3d9de;
}
.sidebar .keyword-filter input {
  width: calc(100% - 50px);
}

.sidebar select {
  width: 100%;
}

.sidebar.tabbed .keyword-filter,
.sidebar.tabbed-decorative .keyword-filter {
  padding: 13px 10px;
}
.sidebar.tabbed .keyword-filter input,
.sidebar.tabbed-decorative .keyword-filter input {
  width: calc(100% - 50px);
}
.sidebar.tabbed .keyword-filter,
.sidebar.tabbed .filter-set,
.sidebar.tabbed-decorative .keyword-filter,
.sidebar.tabbed-decorative .filter-set {
  color: #424242;
}

#content h2.results-title {
  height: 70px;
  margin: 0;
  font-size: 24px;
  line-height: 70px;
}

#searchRow{
  text-transform: none;
}


.subscribe-to-result {
  display: inline-block;
  width: 24px;
  height: 12px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-subscribe-email-table-blue.png) no-repeat 0 0;
}

.dataTables_paginate {
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  border: 1px solid #e4e4e4;
  *zoom: 1;
}
.dataTables_paginate:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.dataTables_paginate .first, .dataTables_paginate .last {
  display: none;
}
.dataTables_paginate .previous, .dataTables_paginate .next {
  width: 45px;
  text-indent: -9999px;
}
.dataTables_paginate .previous {
  float: left;
  border-right: 1px solid #e4e4e4;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-pagination-left-blue.png) no-repeat center center;
}
.dataTables_paginate .next {
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-pagination-right-blue.png) no-repeat center center;
}
.dataTables_paginate .paginate_button_disabled {
  display: none;
}
.dataTables_paginate a {
  display: block;
  float: left;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #c4c4c4;
}
.dataTables_paginate a.paginate_active {
  color: #3253dc;
}
.dataTables_paginate a:hover {
  color: #3253dc;
  cursor: pointer;
  text-decoration: none;
}

.num-results {
  margin-top: 0px;
  font-size: 12px;
  color: #888;
}

.num-per-page {
  padding: 10px;
  float: right;
}
.num-per-page span {
  padding: 0 5px;
}
.num-per-page a {
  display: inline-block;
  padding: 0;
  float: none;
  font-size: 14px;
  color: #3253dc;
}

.simple-pagination {
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
}
.simple-pagination ul {
  border: 1px solid #e4e4e4;
  *zoom: 1;
  margin: 0;
}
.simple-pagination ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.simple-pagination ul .prev, .simple-pagination ul .next {
  display: block;
  width: 45px;
  text-indent: -9999px;
}
.simple-pagination ul .prev {
  float: left;
  border-right: 1px solid #e4e4e4;
  background: url(plugins/create-point-common-1.192.24/images/pager/prev.png) no-repeat center center;
}
.simple-pagination ul .next {
  border-left: 1px solid #e4e4e4;
  border-right: 1px solid #e4e4e4;
  background: url(plugins/create-point-common-1.192.24/images/pager/next.png) no-repeat center center;
}
.simple-pagination ul li {
  display: block;
  float: left;
  font-size: 18px;
  color: #424242;
}
.simple-pagination ul li.active {
  color: #c4c4c4;
}
.simple-pagination ul li a {
  padding: 10px 12px;
  color: #424242;
  display: block;
}
.simple-pagination ul li a:hover {
  color: #3253dc;
  cursor: pointer;
  text-decoration: none;
}
.simple-pagination ul li span {
  padding: 10px 12px;
  display: block;
}
.simple-pagination ul li span.current.prev, .simple-pagination ul li span.current.next {
  display: none;
}

.nav-tabs {
  margin-bottom: 0;
  border-bottom: none;
}
.nav-tabs li {
  margin-right: 6px;
  margin-bottom: 0;
  position: relative;
  top: 1px;
  border: 1px solid #4a5a75;
  border-bottom: 0;
}
.nav-tabs li.active {
  border: 1px solid #d3d9de;
  border-bottom: 0;
}
.nav-tabs li.active a {
  color: #424242;
  font-weight: bold;
  background: #fff;
  border: none;
  padding-top: 6px;
  padding-bottom: 7px;
}
.nav-tabs li.active a:hover {
  border: none;
}
.nav-tabs li > a {
  margin: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 12px;
  color: #677283;
  border: none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #bbc0c8;
}
.nav-tabs li > a:hover {
  color: #424242;
  background: #fff;
}

.nav-tabs.inline-tabs {
  margin-bottom: 20px;
  border-bottom: 1px solid #d3d9de;
}
.nav-tabs.inline-tabs li {
  margin-right: 5px;
  border: 1px solid #d3d9de;
  border-bottom: 0;
}
.nav-tabs.inline-tabs li:first-child {
  border-left: 0;
}

.hardware-documents-table .download-document {
  width: 20px;
  height: 20px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-blue-table.png) no-repeat 50% 50%;
}
.hardware-documents-table .pin {
  width: 20px;
  height: 20px;
  float: left;
}
.hardware-documents-table .pin.pinned {
  cursor: pointer;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-pin-gunmetal.png) no-repeat 50% 50%;
}
.hardware-documents-table .document-title .document {
  float: left;
  margin-left: 5px;
  padding-left: 20px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-documents-generic-document-blue.png) no-repeat 0 50%;
}
.hardware-documents-table .document-title .video {
  float: left;
  margin-left: 5px;
  padding-left: 20px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-video-link.png) no-repeat 0 50%;
}

.hot-items-table .blank,
.documents-table .blank {
  text-align: center;
  width: 30px;
}
.hot-items-table .download-document,
.documents-table .download-document {
  width: 20px;
  height: 20px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-blue-table.png) no-repeat 50% 50%;
}
.hot-items-table .dcn-title,
.documents-table .dcn-title {
  padding-left: 20px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-documents-generic-document-gunmetal.png) no-repeat 0 50%;
}

.flex-layout .panel-dk label,
.flex-layout .panel-md label {
  color: #677283;
}

.flex-layout .release-history {
  flex-direction: column;
  width: 100%;
  padding-top: 20px;
}
.flex-layout .release-history .cr-lookup {
  border-top: 0;
}
.flex-layout .release-history .cr-lookup-header {
  border-bottom: 0;
}
.flex-layout .release-history .planner-lookup-table .table-controls label {
  float: left;
  margin-right: 20px;
}

.table-security-note {
  padding: 10px;
  color: #677283;
  border: 1px solid #d3d9de;
  background-color: #f6f6f6;
}

button.clear-cr-lookup {
  margin-top: 3px !important;
}

td.cr-number a {
  display: block;
  padding-left: 16px;
}

.critical-cr-icon {
  display: block;
  background: url("resource:/plugins/create-point-common-1.192.24/images/2.0/icons/icon-critical-cr.png") no-repeat 0 2px;
}

p.critical-cr-icon {
  padding-left: 16px;
}

p.opt-out {
  font-weight: bold;
  margin-bottom: 0;
}

#confirm-critical-cr-removal select {
  width: 100%;
}

.planner-request-form h2 {
  font-size: 16px;
}

.panel.requested-crs, .requested-crs.panel-dk {
  border-bottom: 5px solid #d3d9de;
}

.planner-request-banner {
  display: flex;
  flex-direction: row;
  clear: both;
  padding: 10px;
  background-color: #6FB59F;
}
.planner-request-banner h1 {
  flex-grow: 1;
  margin: 0 !important;
  line-height: 40px !important;
  color: #fff;
}

.flex-layout .sidebar-upper.plan-request {
  height: 100%;
  padding: 32px;
  background: #e9ecef url("resource:/plugins/create-point-common-1.192.24/images/2.0/sidebar-large-document.png") no-repeat 50% 95px;
  background-size: 121px 144px;
}
.flex-layout .sidebar-upper.plan-request button {
  width: 100%;
}

.flex-layout .planner-request-form {
  width: 100%;
}

.table-scroller {
  max-height: 350px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.panel.product select, .product.panel-dk select,
.panel.product textarea,
.product.panel-dk textarea {
  width: 100%;
}

.product-msg {
  color: #5AA700;
  font-size: 12px;
  margin-bottom: 0;
}
.product-msg.error {
  color: red;
}

.edit-favorites-list label,
.edit-favorites-list .select-favorite,
.edit-favorites-list .add {
  float: left;
  margin-right: 10px;
}
.edit-favorites-list label {
  width: 150px;
  line-height: 26px !important;
  margin-bottom: 0;
}
.edit-favorites-list .select-favorite {
  width: calc(100% - 195px);
}
.edit-favorites-list .select-favorite select {
  width: 100%;
}
.edit-favorites-list .add {
  width: 35px;
  margin: 0;
}

.submit-plan-request {
  margin-bottom: 20px;
}

.flex-layout .panel .panel, .flex-layout .panel-dk .panel, .flex-layout .panel .panel-dk, .flex-layout .panel-dk .panel-dk,
.flex-layout .panel .panel-md,
.flex-layout .panel-dk .panel-md,
.flex-layout .panel .panel-dk,
.flex-layout .panel-dk .panel-dk {
  padding-left: 0;
  padding-right: 0;
}

.table-attachment {
  width: 100%;
  padding: 8px 8px 0;
  border: 1px solid #d8d8d8;
}
.table-attachment span {
  display: block;
  float: left;
  height: 44px;
  line-height: 44px;
}
.table-attachment .big-count {
  margin-right: 8px;
  font-weight: bold;
  font-size: 44px;
}
.table-attachment button {
  margin-top: 7px;
}
.table-attachment.even {
  background: #e9ecef;
}
.table-attachment + table {
  background: #fff;
}
.table-attachment + .table-attachment {
  border-top: 0;
}

#pre-content .next-release {
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
}

.create-new-plan-request {
  margin-top: 14px;
}

/* CreatePoint 2.0 Styles */
.flex-layout .page-lower h1,
.flex-layout .page-lower h2,
.flex-layout .page-lower h3,
.flex-layout .page-lower h4,
.flex-layout .page-lower h5,
.flex-layout .page-lower h6 {
  font-family: "Arial", "Helvetica", sans-serif;
  font-weight: bold;
  line-height: 1;
}

.flex-layout * {
  box-sizing: border-box;
}

.flex-layout body {
  margin: 0;
  padding: 0;
  font: 14px/1.4 "Arial", "Helvetica", sans-serif;
  color: #404040;
}

.flex-layout a {
  color: #3253dc;
}

.flex-layout .page-lower h1 {
  font-size: 16px;
}

.flex-layout .page-upper:after,
.flex-layout .page-lower .panel:after,
.flex-layout .page-lower .panel-dk:after,
.flex-layout .page-lower .panel-dk:after,
.flex-layout .page-lower .panel-md:after,
.flex-layout .page-lower .table-attachment {
  content: "";
  display: table;
  clear: both;
}

.flex-layout .page-lower {
  display: flex;
}

.flex-layout .sidebar {
  flex: 0 0 266px;
  width: 266px;
  height: auto;
}

.flex-layout .content-main {
  width: 100%;
}

.flex-layout .panel, .flex-layout .panel-dk,
.flex-layout .panel-dk,
.flex-layout .panel-md {
  width: 100%;
  flex-shrink: 0;
  padding: 16px;
  margin-bottom: 20px;
}

.flex-layout .panel.connected, .flex-layout .connected.panel-dk,
.flex-layout .connected.panel-dk,
.flex-layout .connected.panel-md {
  margin-bottom: 0;
}

.flex-layout .panel-sm, .flex-layout .table-controls,
.flex-layout .table-controls {
  padding: 8px;
  font-size: 12px;
}

.flex-layout .panel-sm:after, .flex-layout .table-controls:after,
.flex-layout .table-controls:after {
  content: "";
  display: table;
  clear: both;
}

.flex-layout .panel-md {
  background-color: #f6f6fa;
  border: 1px solid #d8d8d8;
}

.flex-layout .panel-dk {
  background-color: #e9ecef;
  border: 1px solid #d8d8d8;
}

.flex-layout .panel-dk + .panel-dk {
  border-top: 0;
}

.flex-layout .table-controls {
  margin-bottom: 0;
  background-color: #e7e7e7;
}

.flex-layout .table-controls.light {
  padding: 0;
  background-color: transparent;
}

.flex-layout .table-controls .controls-right {
  float: right;
}

.flex-layout .table-controls label {
  font-size: 12px;
  font-weight: bold;
}

.flex-layout input[type="text"],
.flex-layout input[type="password"],
.flex-layout input[type="search"],
.flex-layout input[type="tel"],
.flex-layout input[type="time"] {
  height: 26px;
  padding-left: 4px;
  padding-right: 4px;
  font-size: 12px;
  border-radius: 3px;
  border: 1px solid #aaa;
}

.flex-layout select,
.flex-layout textarea {
  font-size: 12px;
  border-radius: 3px;
  border: 1px solid #aaa;
}

.flex-layout select {
  height: 26px;
  padding-left: 4px;
  padding-right: 4px;
}

.flex-layout select.expand {
  width: 100%;
}

.flex-layout textarea {
  padding: 4px;
}

.flex-layout textarea.expand {
  width: 100%;
}

.flex-layout label {
  font-weight: bold;
  line-height: normal;
  margin: 0 0 8px;
}

.flex-layout label input[type="checkbox"] {
  margin-right: 5px;
}

.flex-layout .sidebar {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  border-right: 1px solid #979797;
  background-color: #fff;
}

.flex-layout .sidebar-upper {
  padding: 10px 13px 20px 39px;
  background: #d3d9de;
}

.flex-layout .sidebar-upper h4,
.flex-layout .sidebar-upper label {
  font-size: 12px;
}

.flex-layout .sidebar-lower {
  flex: 1;
  position: relative;
}

.flex-layout .sidebar-tabs {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.flex-layout .sidebar-tabs * {
  box-sizing: content-box;
}

.flex-layout .sidebar-tabs .tab-vertical {
  position: relative;
  width: 25px;
  height: 40px;
  margin-bottom: 5px;
  padding: 20px 0 35px;
  border: 1px solid #979797;
  border-top: 0;
  border-right: 0;
  background: #fff;
  z-index: 21;
  overflow: hidden;
}

.flex-layout .sidebar-tabs .tab-vertical.round {
  border-bottom-left-radius: 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.flex-layout .sidebar-tabs .tab-text {
  float: left;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
  transform: rotate(-90deg);
  transform-origin: 21px 16px 0;
  z-index: 2;
}

.flex-layout .sidebar-tabs .clip {
  display: block;
  position: absolute;
  top: 100px;
  left: -71px;
  height: 50px;
  width: 100px;
  background: #fff;
  border-right: 1px solid #979797;
  transform: rotate(-60deg);
  z-index: 22;
}

.flex-layout .sidebar-content {
  height: 100%;
  margin-left: 25px;
  padding-bottom: 150px;
  color: #424242;
  background: #fff;
  border-left: 1px solid #979797;
  border-top: 0;
}

.flex-layout .sidebar-content h1,
.flex-layout .sidebar-content h2,
.flex-layout .sidebar-content h3,
.flex-layout .sidebar-content h4,
.flex-layout .sidebar-content h5,
.flex-layout .sidebar-content h6 {
  color: #222;
}

.flex-layout .sidebar-content h4 {
  font-size: 13px;
}

.flex-layout .sidebar .filter-set {
  padding: 0 13px;
  border-top: 1px solid #d8dad6;
}

.flex-layout .tabs:after,
.flex-layout .tabs-sub:after {
  content: "";
  display: table;
  clear: both;
}

.flex-layout .tabs ul,
.flex-layout .tabs-sub ul {
  list-style: none;
}

.flex-layout .tabs li,
.flex-layout .tabs-sub li {
  float: left;
  margin-left: 4px;
}

.flex-layout .tabs li:first-child,
.flex-layout .tabs-sub li:first-child {
  margin-left: 0;
}

.flex-layout .tabs li a,
.flex-layout .tabs-sub li a {
  display: block;
}

.flex-layout .tabs li {
  color: #fff;
  background-color: #bbc0c8;
}

.flex-layout .tabs li.active {
  color: #000;
  background-color: #fff;
}

.flex-layout .tabs-sub {
  display: flex;
  flex-direction: row;
  clear: both;
  font-size: 13px;
  border-bottom: 1px solid #979797;
}

.flex-layout .tabs-sub ul {
  margin: 0;
  padding: 0;
}

.flex-layout .tabs-sub li {
  padding: 8px 0;
  font-weight: bold;
}

.flex-layout .tabs-sub li + li a {
  border-left: 1px solid #979797;
}

.flex-layout .tabs-sub li.active a {
  pointer-events: none;
  color: #000;
}

.flex-layout .tabs-sub a {
  padding: 0 16px;
}

.flex-layout .tab-content {
  display: flex;
  padding: 16px;
}

.flex-layout .tab-content.no-padding {
  padding: 0;
}

.flex-layout .tab-content.flex-rows {
  flex-flow: row wrap;
}

.flex-layout .tab-content.flex-columns {
  flex-flow: column;
}

.flex-layout .video-wrapper {
  margin: 0 auto;
  width: 857px;
  height: 460px;
  background: rgba(0, 0, 0, 0.8);
}

.flex-layout .keyword-filter {
  padding: 13px;
}

.flex-layout .keyword-filter h4 {
  margin: 0 0 4px;
}

.flex-layout .keyword-filter input {
  width: 160px;
}

.flex-layout .keyword-filter button {
  float: right;
}

.flex-layout .filter-set h4 {
  margin: 1em 0 0;
}

.flex-layout .filter-set ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.flex-layout .filter-set label {
  font-weight: normal;
}

.flex-layout .filter-set.checkboxes ul {
  margin-top: 5px;
}

.flex-layout .filter-set.checkboxes input {
  margin-right: 8px;
}

.flex-layout .filter-set.checkboxes li + li {
  margin-top: 10px;
}

.flex-layout .filter-set.checkboxes label {
  font-size: 12px;
}

.flex-layout .filter-set .more {
  display: inline-block;
  margin-bottom: 8px;
  padding: 0 12px 0 0;
  font-size: 12px;
  background: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-more-left-panel-filters.png) no-repeat 100% 50%;
}

.flex-layout .table-filters:after {
  content: "";
  display: table;
  clear: both;
}

.flex-layout .table-filters h4,
.flex-layout .table-filters a.clear,
.flex-layout .table-filters .filter-set {
  float: left;
  height: 20px;
  line-height: 20px;
}

.flex-layout .table-filters h4 {
  margin: 0 5px 0 0;
  font-size: 12px;
}

.flex-layout .table-filters a.clear {
  display: block;
  margin-right: 16px;
}

.flex-layout .modal {
  z-index: 20001 !important;
}

.flex-layout .modal .close-modal {
  border-radius: 0;
}

.flex-layout .modal .modal-body.centered {
  text-align: center;
}

.flex-layout .plan-builder-info h2 {
  font-weight: normal;
}

.flex-layout .plan-builder-info ol {
  font-weight: bold;
}

.flex-layout .planner-lookup-table {
  width: 100%;
  padding: 16px;
}

.flex-layout .planner-lookup-table .cr-lookup h2,
.flex-layout .planner-lookup-table .cr-lookup textarea,
.flex-layout .planner-lookup-table .cr-lookup select,
.flex-layout .planner-lookup-table .cr-lookup .button-wrapper,
.flex-layout .planner-lookup-table .quick-add h2,
.flex-layout .planner-lookup-table .quick-add textarea,
.flex-layout .planner-lookup-table .quick-add select,
.flex-layout .planner-lookup-table .quick-add .button-wrapper {
  float: left;
}

.flex-layout .planner-lookup-table .cr-lookup h2,
.flex-layout .planner-lookup-table .quick-add h2 {
  width: 15%;
  padding-right: 20px;
}

.flex-layout .planner-lookup-table .cr-lookup textarea,
.flex-layout .planner-lookup-table .cr-lookup select,
.flex-layout .planner-lookup-table .quick-add textarea,
.flex-layout .planner-lookup-table .quick-add select {
  width: 60%;
}

.flex-layout .planner-lookup-table .cr-lookup textarea,
.flex-layout .planner-lookup-table .quick-add textarea {
  resize: none;
  height: 100px;
}

.flex-layout .planner-lookup-table .cr-lookup .button-wrapper,
.flex-layout .planner-lookup-table .quick-add .button-wrapper {
  width: 25%;
}

.flex-layout .planner-lookup-table h2 {
  margin: 0 0 8px;
  font-size: 14px;
}

.flex-layout .planner-lookup-table .button-wrapper button {
  float: right;
  width: 130px;
  clear: both;
}

.flex-layout .planner-lookup-table .button-wrapper button + button {
  margin-top: 14px;
}

.flex-layout .planner-lookup-table .table-controls h2,
.flex-layout .planner-lookup-table .table-controls button {
  float: left;
}

.flex-layout .planner-lookup-table .table-controls h2,
.flex-layout .planner-lookup-table .table-controls label {
  line-height: 26px;
}

.flex-layout .planner-lookup-table .table-controls label {
  float: right;
}

.flex-layout .planner-lookup-table .controls-right {
  width: 40%;
}

.flex-layout .release-selector h4 {
  margin: 0 0 3px;
}

.flex-layout .release-selector select {
  width: 100%;
}

.flex-layout .release-selector select + select {
  margin-top: 10px;
}

.flex-layout .release-selector select + h4 {
  margin-top: 10px;
}

.flex-layout .plan-request-builder {
  float: right;
  display: flex;
  flex-direction: column;
  flex: 0 0 210px;
  background: #e9ecef;
}

.flex-layout .plan-request-builder button {
  width: 100%;
  margin-bottom: 5px;
  margin-left: 0;
}

.flex-layout .plan-request-builder table {
  margin-top: 5px;
}

.flex-layout .plan-request-builder table tbody tr {
  background: #f8f5f1;
}

.flex-layout .plan-request-builder header {
  padding: 13px;
  color: #fff;
  text-align: center;
  background: #6FB59F;
}

.flex-layout .plan-request-builder header h2,
.flex-layout .plan-request-builder header h3 {
  margin: 0;
}

.flex-layout .plan-request-builder header h3 {
  margin-bottom: 5px;
  font-size: 14px;
}

.flex-layout .plan-request-builder header h2 {
  font-size: 18px;
}

.flex-layout .plan-request-builder p {
  font-size: 12px;
}

.flex-layout #confirm-plan-request {
  width: 1100px;
  height: 700px;
  margin-left: -550px;
}

.flex-layout #confirm-plan-request .modal-body {
  max-height: 628px;
}

.flex-layout #confirm-plan-request .panel, .flex-layout #confirm-plan-request .panel-dk,
.flex-layout #confirm-plan-request .panel-dk,
.flex-layout #confirm-plan-request .panel-md {
  margin-bottom: 0;
}

.flex-layout #confirm-plan-request .modal-body h2 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: normal;
}

.flex-layout #confirm-plan-request .panel-dk h4 {
  margin-top: 0;
}

.flex-layout #confirm-plan-request textarea {
  height: 80px;
  margin-bottom: 20px;
  resize: vertical;
}

.flex-layout #confirm-plan-request-submitted ul {
  list-style: none;
}

.flex-layout #confirm-plan-request-submitted li {
  display: inline;
  padding-right: 1em;
}

.flex-layout tr.notify {
  background: #fafff3 !important;
  border: 1px solid #7ed321 !important;
}

.flex-layout tr.notify td.message {
  text-align: center;
  font-weight: bold;
  background: #fafff3 !important;
}

.lock-scroll {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-wrapper {
  margin: 0 auto;
  width: 857px;
}
.video-wrapper h2 {
  margin-bottom: 5px !important;
}
.video-wrapper .video {
  height: 460px;
  background: rgba(0, 0, 0, 0.8);
}

/*=========================
Qualcomm CreatePoint Styles
=========================*/
/*====
Basics
====*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font: 14px/1.4 "Helvetica", "Arial", sans-serif;
  color: #424242;
  background: #f3f3f3;
}

a {
  color: #3253dc;
  text-decoration: none;
}
a:hover {
  color: #3253dc;
  text-decoration: underline;
  cursor: pointer;
}

h1 {
  max-width: 610px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 15px;
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: normal;
}

pre {
  background-color: transparent;
  border-style: none;
  color: #424242;
  font: 13px/1.4 "Helvetica", "Arial", sans-serif;
  margin: 0;
  padding: 0;
  white-space: pre;
}


/*====
Layout
====*/
#page {
  min-width: 1000px !important;
}
#page.overflow {
  max-width: 8000px;
}

#main-content {
  *zoom: 1;
  background: #fff;
}
#main-content:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#main-content.no-sidebar #content {
  padding-left: 0;
}
#main-content.no-sidebar #content > .container-fluid {
  padding: 0 20px;
}

#splitter #sidebar {
  width: auto;
  float: none;
  border-right: none;
  overflow: auto;
  white-space: nowrap;
}

#splitter #content {
  float: none;
  padding-left: 0;
}

.text-right {
  text-align: right;
}

.push-right {
  float: right;
}

.resizable-section {
  border: 1px solid #afb0b0;
  margin-bottom: 25px;
}
.resizable-section .ui-layout-center {
  padding: 20px 0;
}

.flush-left {
  margin-left: 0 !important;
}

.flush-right {
  margin-right: 0 !important;
}

/*====
Tables
====*/
.dataTables_info {
  display: none;
}

em.new {
  display: inline-block;
  width: 40px;
  height: 16px;
  background: url(plugins/create-point-common-1.192.24/images/icons/new.png) no-repeat 0 0;
  position: relative;
  top: 3px;
}

.select-and-download button.download,
.select button.download {
  margin-left: 5px;
  width: 16px;
  height: 16px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat center center;
}

th.favorites, td.favorites {
  width: 100px;
}

.select button.download {
  margin-left: 0;
}

.tooltip-title {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sortby {
  display: inline-block;
}
.sortby label {
  font-size: 11px;
  line-height: 14px;
}
.sortby select {
  height: auto;
  width: 150px;
  font-size: 14px;
  line-height: 14px;
  margin: 0;
}

/*===
Forms
===*/
input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="tel"] {
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #8a8a8a;
}

input[type="button"],
input[type="reset"],
input[type="submit"],
.button-default,
.btn,
#apply-cr-lookup,
.fullscreenme,
.closemodal,
.download,
.button-row a,
.files-row a,
.set-personalization button {
  color: #fff;
  background: #3253dc;
  border: none;
}
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button-default:hover,
.btn:hover,
#apply-cr-lookup:hover,
.fullscreenme:hover,
.closemodal:hover,
.download:hover,
.button-row a:hover,
.files-row a:hover,
.set-personalization button:hover {
  background: #3253dc;
  color: #fff;
}
input[type="button"].disabled,
input[type="reset"].disabled,
input[type="submit"].disabled,
.button-default.disabled,
.disabled.btn,
.disabled#apply-cr-lookup,
.disabled.fullscreenme,
.disabled.closemodal,
.disabled.download,
.button-row a.disabled,
.files-row a.disabled,
.set-personalization button.disabled {
  background: #fff;
  border: 1px solid #d9dadb;
  color: #808080;
  padding: 3px 11px;
}
input[type="button"].disabled:hover,
input[type="reset"].disabled:hover,
input[type="submit"].disabled:hover,
.button-default.disabled:hover,
.disabled.btn:hover,
.disabled#apply-cr-lookup:hover,
.disabled.fullscreenme:hover,
.disabled.closemodal:hover,
.disabled.download:hover,
.button-row a.disabled:hover,
.files-row a.disabled:hover,
.set-personalization button.disabled:hover {
  background: #fff;
  color: #808080;
}

.btn.white, .white#apply-cr-lookup {
  background: #fff;
  color: #808080;
  border: 1px solid #d9dadb;
}

label.disabled {
  color: #8f8f8f;
}

textarea {
  border-radius: 0;
}

input[type="checkbox"] {
  margin-top: 0;
}

input.search-query {
  width: 420px;
  height: 27px;
  line-height: 27px;
  border-color: #a5adba;
}

input.search-link {
  width: 27px;
  height: 27px;
  background: #fff url(plugins/create-point-common-1.192.24/images/icons/search-small.png) 50% 50% no-repeat;
  border: 1px solid #222;
  text-indent: -9999px;
}
input.search-link:hover {
  background: #fff url(plugins/create-point-common-1.192.24/images/icons/search-small.png) 50% 50% no-repeat;
}
.product-solution-ui .select2-container,
.personalization-ui .select2-container {
  width: 100%;
  margin-bottom: 8px;
}

.select2-container-active .select2-choice {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.build-sidebar-select {
  width: 165px;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  padding: 0;
}

/*======
Messages
======*/
#download-message {
  float: left;
  padding-left: 15px;
  line-height: 27px;
  color: #808080;
}
#download-message.error {
  color: #f00;
}
#download-message.warning {
  color: #c64736;
}

#clear-selection {
  float: left;
  padding-left: 15px;
  padding-top: 6px;
}

/*==============
Pre-Content Area
==============*/
#pre-content {
  padding-bottom: 0;
  color: #fff;
  background: #4a5a75;
  position: relative;
}
#pre-content header {
  *zoom: 1;
}
#pre-content header:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#pre-content header h1 {
  float: left;
}
#pre-content header h1.no-float {
  float: none;
  margin-bottom: 0;
}
#pre-content header h4 {
  font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 0;
}

#project-select {
  float: left;
  margin-left: 10px;
  position: relative;
  top: 2px;
}
#project-select .sbHolder {
  background-color: transparent;
  border: solid 1px #929BA7;
  color: #929BA7;
  font-size: 11px;
  font-weight: normal;
  height: 25px;
  position: relative;
  width: 125px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
#project-select .sbSelector {
  display: block;
  height: 25px;
  left: 0;
  line-height: 25px;
  outline: none;
  overflow: hidden;
  position: absolute;
  text-indent: 5px;
  top: 0;
  width: 105px;
}
#project-select .sbSelector:link, #project-select .sbSelector:visited, #project-select .sbSelector:hover {
  color: #929BA7;
  outline: none;
  text-decoration: none;
}
#project-select .sbToggle {
  background: url(plugins/create-point-common-1.192.24/images/icons/select-arrows.png) center center no-repeat;
  display: block;
  height: 23px;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
#project-select .sbHolderDisabled {
  background-color: #3C3C3C;
  border: solid 1px #515151;
}
#project-select .sbOptions {
  background-color: #212121;
  border: solid 1px #515151;
  list-style: none;
  left: -1px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 25px;
  width: 125px;
  z-index: 1;
  overflow-y: auto;
}
#project-select .sbOptions li {
  padding: 0 7px;
}
#project-select .sbOptions a {
  border-bottom: dotted 1px #515151;
  display: block;
  outline: none;
  padding: 7px 0 7px 3px;
}
#project-select .sbOptions a:link, #project-select .sbOptions a:visited {
  color: #929BA7;
  text-decoration: none;
}
#project-select .sbOptions a:hover,
#project-select .sbOptions a:focus,
#project-select .sbOptions a.sbFocus {
  color: #929BA7;
}
#project-select .sbOptions li.last a {
  border-bottom: none;
}
#project-select .sbOptions .sbDisabled {
  border-bottom: dotted 1px #515151;
  color: #999;
  display: block;
  padding: 7px 0 7px 3px;
}
#project-select .sbOptions .sbGroup {
  border-bottom: dotted 1px #515151;
  color: #EBB52D;
  display: block;
  font-weight: bold;
  padding: 7px 0 7px 3px;
}
#project-select .sbOptions .sbSub {
  padding-left: 17px;
}

/*=========
Site-Footer
=========*/
#site-footer {
  clear: both;
  border-top: 1px solid #dae2e5;
}
#site-footer small {
  display: block;
  padding: 0 0 50px;
  font-size: 11px;
}

.legal-menu {
  list-style: none;
  margin: 15px 0 15px;
  font-size: 11px;
  *zoom: 1;
}
.legal-menu:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.legal-menu a {
  color: #424242;
}
.legal-menu li {
  float: left;
  padding: 0 10px;
  border-left: 1px solid #424242;
  line-height: 1;
}
.legal-menu li:first-child {
  border: none;
  padding-left: 0;
}

/*======
Sidebars
======*/
#sidebar.dark {
  padding-top: 0;
  border-right: 5px solid #a5a5a5;
}
#sidebar .results-filter {
  padding-top: 12px;
  padding-bottom: 10px;
  font-size: 11px;
}
#sidebar .results-filter.search {
  border-bottom: 1px solid #ebeced;
}
#sidebar .results-filter.search h3 {
  margin-top: 0;
  font-size: 16px;
}
#sidebar .results-filter .container-fluid {
  padding-right: 10px;
}
#sidebar .results-filter .row-fluid [class*="span"] {
  min-height: 0;
}
#sidebar .results-filter label, #sidebar .results-filter input {
  font-size: inherit;
}
#sidebar .results-filter label {
  font-weight: bold;
  font-size: 12px;
}
#sidebar .results-filter label, #sidebar .results-filter .reset-filters {
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
#sidebar .results-filter .reset-filters {
  text-align: right;
}
#sidebar .results-filter input {
  width: 100%;
  height: 25px;
  padding: 0;
  margin-bottom: 0;
  line-height: 25px;
}
#sidebar .results-filter input[type="text"] {
  padding: 0 4px;
}
#sidebar.planner .results-filter h3 {
  font-size: 12px;
}
#sidebar .product-solution-wrap,
#sidebar .personalization-wrap {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.no #sidebar .facet-list input[type='checkbox'] {
  margin-top: 3px;
}

.your-filters {
  border-top: 1px solid #ebeced;
}
.your-filters ul {
  list-style: none;
  margin-bottom: 0;
}
.your-filters li {
  overflow: hidden;
}
.your-filters a.remove-filter {
  display: block;
  float: right;
  width: 14px;
  height: 14px;
  background: url(plugins/create-point-common-1.192.24/images/icons/close-blue.png) no-repeat center center;
  text-indent: -999em;
}

#sidebar-full .results-filter {
  padding-top: 0;
}
#sidebar-full .results-filter input {
  margin-bottom: 12px;
}

.facet-type {
  clear: both;
  font-size: 12px;
}

.facet-pill {
  display: inline-block;
  float: left;
  max-width: 180px;
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 2px 8px 2px 22px;
  position: relative;
  font-size: 10px;
  white-space: nowrap;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #e5e5e5;
  border-radius: 20px;
}
.facet-pill .close {
  display: block;
  position: absolute;
  top: 2px;
  left: 3px;
  margin: 0;
  width: 15px;
  height: 15px;
  text-indent: -99em;
  background: url(plugins/create-point-common-1.192.24/images/sidebar/close.png);
  opacity: 1;
}
.facet-pill .close:hover {
  background: url(plugins/create-point-common-1.192.24/images/sidebar/close-hover.png);
}

.sidebar-tabs.dark {
  padding-top: 15px;
  background: #a5a5a5;
}
.sidebar-tabs.dark .nav-tabs li {
  border-radius: 4px 4px 0 0;
  overflow: hidden;
}
.sidebar-tabs .nav-tabs {
  margin: 0;
  padding-left: 20px;
  list-style: none;
  border-bottom: 1px solid #c2c2c2;
}
.sidebar-tabs .nav-tabs li {
  margin-right: 6px;
  top: 2px;
  line-height: 33px;
}
.sidebar-tabs .nav-tabs li a {
  margin: 0;
  padding: 9px 12px 8px;
  font-size: 14px;
  font-weight: bold;
  background: #cad0d3;
  border: 1px solid #c2c2c2;
  color: #424242;
  border-bottom: 1px solid transparent;
}
.sidebar-tabs .nav-tabs li a:hover {
  border-bottom: 1px solid #c2c2c2;
}
.sidebar-tabs .nav-tabs li.active a, .sidebar-tabs .nav-tabs li:hover a {
  background-color: #fff;
  background-image: none;
}
.sidebar-tabs .nav-tabs li.active a:hover {
  border: 1px solid #c2c2c2;
  border-bottom: none;
}
.sidebar-tabs .nav-tabs li.active:hover a {
  border-bottom: 1px solid transparent;
}
.sidebar-tabs .tab {
  display: none;
}
.sidebar-tabs .tab.active {
  display: block;
}

.tab#document-navigator {
  border-top: 0;
}

.sidebar-section {
  padding: 13px;
}
.sidebar-section.bordered {
  border-top: 1px solid #d3d9de;
}
.sidebar-section.bordered.keyword h3 {
  margin-top: 0;
}

.release select {
  width: 100%;
}
.release button {
  font-size: 11px;
}

.hardware-profile {
  border-bottom: 1px solid #eee;
}
.hardware-profile select {
  margin-bottom: 15px;
}

/*===============
Main Content Area
===============*/
#content h2 {
  font-size: 18px;
  line-height: 1;
  margin: 0 0 10px;
}
#content h2.in-view {
  margin-bottom: 3px;
  margin-right: 15px;
  display: inline-block;
}
#content h3 {
  font-size: 14px;
  line-height: 1;
  padding-top: 10px;
  margin: 0 0 10px;
}
#content > p {
  font-size: 13px;
}
#content .table-links h2 {
  font-size: 16px;
}

.loading {
  padding-left: 25px;
  background: url(plugins/create-point-common-1.192.24/images/ajax-loader.gif) no-repeat 0 50%;
}

#loader {
  margin: 50px auto 0;
  width: 250px;
  padding: 110px 20px 20px;
  background: url(plugins/create-point-common-1.192.24/images/ajax_loader_gray_64.gif) 50% 20px no-repeat;
  border: 1px solid #ebeced;
  -moz-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}
#loader h2 {
  margin: 0;
  text-align: center;
}

/*===================
ChipCenter Components
===================*/
.favorite, .rss, .email-sub {
  float: left;
  margin-left: 10px;
}
.favorite a, .rss a, .email-sub a {
  display: block;
  text-indent: -9999px;
}

.favorite {
  margin-top: 10px;
}

.favorite a {
  width: 16px;
  height: 16px;
  background: url(plugins/create-point-common-1.192.24/images/icons/favsprite.png) no-repeat 0 0;
}
.favorite a:hover {
  background-position: -18px 0;
}
.favorite a.favorited {
  background-position: -36px 0;
}
.favorite a.favorited:hover {
  background-position: -54px 0;
}

.rss {
  margin-top: 8px;
}

.rss a {
  width: 18px;
  height: 18px;
  background: url(plugins/create-point-common-1.192.24/images/icons/rsssprite.png) no-repeat 0 0;
}
.rss a:hover {
  background-position: -20px 0;
}

.email-sub a {
  width: 28px;
  height: 17px;
  background: url(plugins/create-point-common-1.192.24/images/icons/emailsprite.png) no-repeat 0 0;
}
.email-sub a:focus {
  outline: none;
}
.email-sub a:hover {
  background-position: -30px 0;
}
.email-sub a.on {
  background-position: -60px 0;
}
.email-sub a.on:hover {
  background-position: -90px 0;
}
.email-sub a.offon:hover {
  background-position: -60px 0;
}
.email-sub a.onoff:hover {
  background-position: 0 0;
}


#document-navigator {
  padding: 0;
  font-size: 11px;
  border-top: 1px solid #ebeced;
}
#document-navigator h3 {
  padding-left: 20px;
}

.table-links {
  font-size: 11px;
  padding-top: 10px;
  padding-bottom: 3px;
}
.table-links.row-fluid [class*="span"] {
  min-height: 0;
}

.download-all, .download-page, .download-selected {
  float: left;
  font-size: 11px;
  background: #3253dc url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-white.png) no-repeat 10px 50%;
  color: #fff;
  padding: 5px 15px 5px 27px !important;
  border: 1px solid transparent;
}
.download-all:hover, .download-page:hover, .download-selected:hover {
  color: #fff;
  text-decoration: underline;
  background: #3253dc url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-white.png) no-repeat 10px 50%;
}
.download-all.warning, .download-page.warning, .download-selected.warning {
  background-color: #c64736;
}
.download-all.disabled, .download-page.disabled, .download-selected.disabled {
  background: #3253dc url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-disabled.png) no-repeat 10px 50%;
  background-color: #fff;
  border: 1px solid #d9dadb;
  color: #808080;
}
.download-all.disabled:hover, .download-page.disabled:hover, .download-selected.disabled:hover {
  text-decoration: none;
  cursor: default;
  background: #fff url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-download-disabled.png) no-repeat 10px 50%;
  color: #808080;
}
.download-all.page, .download-page.page, .download-selected.page {
  margin-right: 10px;
}

#toggle-descriptions {
  float: right;
  padding-top: 6px;
}

.datatable-docs input, .sample-table input {
  margin: 0;
}

.windows-phone, .android {
  padding-left: 18px;
}

.windows-phone {
  background: url(plugins/create-point-common-1.192.24/images/icons/windows.png) no-repeat 0 50%;
}

.android {
  background: url(plugins/create-point-common-1.192.24/images/icons/android.png) no-repeat 0 50%;
}

.favorite-toggle {
  display: inline-block;
  width: 16px;
  height: 16px;
  text-indent: -9999px;
  background: url(plugins/create-point-common-1.192.24/images/icons/favtablesprite.png) no-repeat 0 0;
}
.favorite-toggle:hover {
  background-position: -18px 0;
}
.favorite-toggle.favorited {
  background-position: -36px 0;
}
.favorite-toggle.favorited:hover {
  background-position: -54px 0;
}

#main-content.no-sidebar #content.document-ui {
  padding-top: 20px;
}

#main-content #content.release-history h2 {
  margin-bottom: 0;
}

.build-num {
  min-width: 230px;
}

.ui-layout-pane.document-viewer#content #pre-content {
  margin-bottom: 0;
}

#document {
  height: 100%;
  margin: 0;
  border: 1px solid #585b5d;
  background: #fff;
}
#document header {
  min-height: 40px;
  padding: 6px 8px 0;
  color: #fff;
  background: #3c3c3c none repeat-x 0 0;
  border-bottom: 1px solid #585b5d;
  *zoom: 1;
}
#document header:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#document h2 {
  float: left;
  margin: 0 0 0 10px !important;
  line-height: 30px;
  font-weight: normal;
  font-size: 14px;
  margin-left: 10px;
}
#document.cr-info header {
  padding-left: 20px;
}
#document.cr-info header h2 {
  font-size: 15px;
}
#document.cr-info #document-viewport header {
  background-color: #f6f8fa;
  background-image: none;
  color: inherit;
  margin-left: -20px;
  margin-right: -20px;
  padding: 5px 20px;
}
#document.cr-info #document-viewport header dl.dl-horizontal {
  float: left;
  margin: 4px 0 0 0;
}
#document.cr-info #document-viewport header dl.dl-horizontal dt {
  clear: none;
  text-align: left;
  width: auto;
}
#document.cr-info #document-viewport header dl.dl-horizontal dd {
  float: left;
  margin-left: 5px;
  margin-right: 25px;
}
#document.cr-info #document-viewport h2 {
  float: none;
  font-size: 15px;
  text-transform: none;
  font-weight: bold;
  margin-left: 0 !important;
  padding: 20px 0 15px 0;
}
#document.cr-info p {
  margin-bottom: 20px;
}
#document.cr-info p:last-of-type {
  margin-bottom: 0;
}
#document a.go-fullscreen, #document a.leave-fullscreen, #document a.close-document {
  display: block;
  width: 13px;
  height: 13px;
  float: left;
  margin-left: 10px;
}
#document a.go-fullscreen {
  background: url(plugins/create-point-common-1.192.24/images/icons/fullscreen.png) no-repeat 50% 50%;
}
#document a.leave-fullscreen {
  background: url(plugins/create-point-common-1.192.24/images/icons/leave-fullscreen.png) no-repeat 50% 50%;
}
#document a.close-document {
  background: url(plugins/create-point-common-1.192.24/images/icons/close-blue.png) no-repeat 50% 50%;
}
#document #document-viewport {
  height: calc(100% - 135px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  font-size: 13px;
}
#document #document-viewport h2 {
  font-size: 15px;
}

.document-ui {
  background: #b2b2b2;
}
.document-ui #document.fullscreen {
  margin: 0;
}
.document-ui.wide {
  padding: 20px !important;
}

.document-ui.ui-layout-pane #document {
  margin: 0 4px;
}

.doc-buttons {
  display: block;
  font-size: 13px;
  background: #e9ecef;
}
.doc-buttons span {
  line-height: 35px;
}
.doc-buttons .vote-up, .doc-buttons .vote-down {
  float: left;
}
.doc-buttons .vote-up, .doc-buttons .vote-down {
  display: block;
  margin: 0;
  padding: 10px 12px 10px 28px;
  border-left: 1px solid #cacaca;
  color: #424242;
}
.doc-buttons .vote-up span, .doc-buttons .vote-down span {
  float: none;
  line-height: inherit;
}
.doc-buttons .vote-up {
  margin-left: 10px;
  background: url(plugins/create-point-common-1.192.24/images/document-table/thumbs-up.png) no-repeat 12px 50%;
}
.doc-buttons .vote-up:hover {
  background: url(plugins/create-point-common-1.192.24/images/document-table/thumbs-up-hover.png) no-repeat 12px 50%;
}
.doc-buttons .vote-up.selected, .doc-buttons .vote-up.selected:hover {
  color: #fff;
  background: #38a817 url(plugins/create-point-common-1.192.24/images/document-table/thumbs-up-active.png) no-repeat 12px 50%;
}
.doc-buttons .vote-down {
  background: url(plugins/create-point-common-1.192.24/images/document-table/thumbs-down.png) no-repeat 12px 50%;
}
.doc-buttons .vote-down:hover {
  background: url(plugins/create-point-common-1.192.24/images/document-table/thumbs-down-hover.png) no-repeat 12px 50%;
}
.doc-buttons .vote-down.selected, .doc-buttons .vote-down.selected:hover {
  color: #fff;
  background: #d8490e url(plugins/create-point-common-1.192.24/images/document-table/thumbs-down-active.png) no-repeat 12px 50%;
}


#toggle-related-docs, .toggle-related-docs {
  padding: 0 10px;
  display: inline-block;
}
#toggle-related-docs span, .toggle-related-docs span {
  padding-right: 20px;
  background: url(plugins/create-point-common-1.192.24/images/icons/related-docs-closed.png) no-repeat right 50%;
}
#toggle-related-docs.open span, .toggle-related-docs.open span {
  background: url(plugins/create-point-common-1.192.24/images/icons/related-docs-open.png) no-repeat right 50%;
}


#document.fullscreen h2 {
  line-height: 1;
  margin: 0;
}

.related-docs {
  background: #e9ecef;
}
.related-docs .document-list {
  display: none;
  padding: 10px;
  font-size: 11px;
}
.related-docs .document-list ul {
  list-style: none;
  margin: 0;
  *zoom: 1;
}
.related-docs .document-list ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.related-docs .document-list li {
  float: left;
  width: 33%;
  padding-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.related-docs .document-list li a {
  padding: 0 15px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat left 50%;
}

.news-items,
.cr-items {
  list-style: none;
  margin-left: 0;
  border-top: 2px solid #4a5a75;
  margin-bottom: 20px;
}
.news-items li,
.cr-items li {
  padding: 25px;
  border: 1px solid #dae2e5;
  border-top: none;
  font-size: 13px;
}
.news-items li ul,
.cr-items li ul {
  list-style-position: inside;
  list-style-type: disc;
  margin-left: 0;
}
.news-items li ul li,
.cr-items li ul li {
  border: 0;
  padding: 0;
}
.news-items h3,
.cr-items h3 {
  margin: 0 0 10px;
  line-height: 1;
  font-size: 18px;
}
.news-items time,
.cr-items time {
  font-size: 11px;
  line-height: 1;
}

#content .news-items h3,
#content .cr-items h3 {
  padding-top: 0;
}

.external-link {
  padding-right: 18px;
  background: url(plugins/create-point-common-1.192.24/images/icons/external-link.png) no-repeat right 50%;
}

/*==================
Dashboard Components
==================*/
.download-list {
  margin-left: 0;
  margin-bottom: 20px;
  list-style: none;
  border: 1px solid #dae2e5;
  font-size: 13px;
}
.download-list li {
  border-top: 1px solid #dae2e5;
  padding: 8px 10px;
  line-height: 1;
}
.download-list li:first-child {
  border-top: none;
}
.download-list li.even {
  background: #f6f8fa;
}
.download-list .row-fluid div {
  line-height: 1;
  min-height: 0;
  margin-bottom: 0;
}
.download-list .row-fluid div.download-controls {
  line-height: 14px;
}
.download-list .title {
  text-transform: uppercase;
}
.download-list .download-controls {
  text-align: right;
  font-size: 11px;
}

.progress-bar-wrap {
  background: #d1d1d1;
}

.progress-bar {
  background: #67b9d4;
}
.progress-bar.paused {
  background: #9e9e9e;
}

.cp-sections {
  list-style: none;
  padding: 0 20px;
  background: #f3f3f3;
  border-top: 2px solid #cbcdc8;
  font-size: 13px;
}
.cp-sections li {
  padding: 10px 0 20px;
  border-top: 1px solid #cbcdc8;
}
.cp-sections li:first-child {
  border: none;
}

/*==================
Hardware Components
==================*/
.show-hide-wrapper {
  overflow: auto;
}

table.table th {
  white-space: nowrap !important;
}

/* datatables elements */
table.DTCR_clonedTable {
  background-color: white;
  z-index: 202;
}

div.DTCR_pointer {
  width: 1px;
  background-color: #3253dc;
  z-index: 201;
}

#download-csv {
  padding-left: 17px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat 0 50%;
  font-size: 11px;
  padding-right: 20px;
}

.table-hidden-cols {
  margin-bottom: 5px;
  border: 1px solid #dae2e5;
  font-size: 12px;
}
.table-hidden-cols .title {
  float: left;
  margin-right: 10px;
}

#hidden-cols {
  *zoom: 1;
  padding: 10px;
  min-height: auto;
  /*   min-height: 40px; */
}
#hidden-cols:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#hidden-cols .msg {
  display: block;
  float: left;
}

.showall-columns {
  white-space: nowrap;
}

ul.hidden-column-list {
  /*   @include legacy-pie-clearfix(); */
  display: block;
  padding-left: 100px;
  list-style-type: none;
  margin: 0 5px 0 10px;
}
ul.hidden-column-list li {
  line-height: 16px;
  /*    display: inline; */
  /* padding-right: 10px; */
  display: block;
  float: left;
  /*    margin-bottom: 5px; */
}
ul.hidden-column-list li a {
  /*
        display: block;
        float: left;
  */
  color: #424242;
  white-space: nowrap;
}
ul.hidden-column-list li.hidden-column a {
  background: url("plugins/create-point-common-1.192.24/images/table-column-hideshow-s79fa694c9e.png") 0 0 no-repeat;
  margin-right: 10px;
  padding-left: 18px;
}
ul.hidden-column-list li.hidden-column a:hover {
  background: url("plugins/create-point-common-1.192.24/images/table-column-hideshow-s79fa694c9e.png") 0 -75px no-repeat;
}
ul.hidden-column-list li.showall a {
  color: #3253dc;
}

.showing-all-columns ul.hidden-column-list li.hidden-column {
  display: none;
}

.hide-column {
  display: block;
  float: left;
  text-indent: -1000em;
  background: url("plugins/create-point-common-1.192.24/images/table-column-hideshow-s79fa694c9e.png") 0 -148px no-repeat;
  /*  width: 16px; */
  margin-right: 5px;
  padding-left: 18px;
}
.hide-column:hover {
  background: url("plugins/create-point-common-1.192.24/images/table-column-hideshow-s79fa694c9e.png") 0 -223px no-repeat;
}

.sorting_asc .hide-column,
.sorting_desc .hide-column {
  background: url("plugins/create-point-common-1.192.24/images/table-column-hideshow-s79fa694c9e.png") 0 -298px no-repeat;
}
.sorting_asc .hide-column:hover,
.sorting_desc .hide-column:hover {
  background: url("plugins/create-point-common-1.192.24/images/table-column-hideshow-s79fa694c9e.png") 0 -223px no-repeat;
}

/*==================
Hardware Components Sidebar
==================*/
.components-filter {
  background: #768196;
  color: #fff;
  padding: 8px 20px;
  margin: 30px 5px 0;
}
.components-filter .select-label {
  font-size: 11px;
  font-weight: bold;
  margin: 0;
}
.components-filter .select {
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: 5px;
  width: 100%;
  height: 20px;
  line-height: 20px;
  padding: 0;
}
#show-sidebar-button {
  background: #e9eaea;
  border: 1px solid #ebeced;
  cursor: pointer;
  display: none;
  font-size: 16px;
  line-height: 18px;
  margin-top: -3px;
  text-align: center;
  height: 20px;
  width: 22px;
  position: absolute;
  left: 0;
}
#show-sidebar-button:hover {
  text-decoration: none;
}

.hide-sidebar #sidebar {
  display: none;
}
.hide-sidebar #content {
  padding-left: 0;
}
.hide-sidebar #content #show-sidebar-button {
  display: block;
}
.hide-sidebar #content h2 {
  margin-left: 20px;
}

/*
#show-sidebar-button {
  background-color: #fff;
  border: 1px solid $borders;
  @include box-shadow(0 0 4px rgba(0,0,0,0.5));
  cursor: pointer;
  display: block;
  padding: 5px 1px;
  position: absolute;
}
*/
#sidebar .facet-list.verification-level label {
  padding-left: 60px;
}

.verification-level-gold {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 40px -75px no-repeat;
}
.verification-level-gold input {
  margin-right: 25px !important;
}

.verification-level-silver {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 40px -227px no-repeat;
}
.verification-level-silver input {
  margin-right: 25px !important;
}

.verification-level-bronze {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 40px 1px no-repeat;
}
.verification-level-bronze input {
  margin-right: 25px !important;
}

.verification-level-qpipeline {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 40px -151px no-repeat;
}
.verification-level-qpipeline input {
  margin-right: 25px !important;
}

/* Table badges using verification sprites */
.column-badge {
  display: block;
  width: 16px;
  text-indent: -1000em;
}
.column-badge.verification-level-gold {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -75px no-repeat;
}
.column-badge.verification-level-silver {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -227px no-repeat;
}
.column-badge.verification-level-bronze {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 1px no-repeat;
}
.column-badge.verification-level-qpipeline {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -151px no-repeat;
}

.download-btn {
  display: block;
  width: 12px;
  height: 12px;
  margin-top: 3px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat 50% 50%;
  text-indent: -9999px;
}

/*==================
Modal
==================*/
.modal-backdrop {
  z-index: 20000;
}

.modal {
  margin-left: -380px;
  border-radius: 0;
  -moz-border-radius: 0;
  width: 760px;
  z-index: 20500;
}
.modal .modal-header {
  background-color: #4a5a75;
  padding: 8px 10px;
  border-bottom: 1px solid #dae2e5;
}
.modal .modal-header h3 {
  color: #fff;
  font-size: 14px;
  line-height: 15px;
}
.modal .modal-header button.close {
  background: transparent url(plugins/create-point-common-1.192.24/images/modal_close_button.png) no-repeat 50% 50%;
  text-indent: -9999px;
  width: 9px;
  height: 9px;
  opacity: 1;
}
.modal .modal-header button.close:hover {
  background: transparent url(plugins/create-point-common-1.192.24/images/modal_close_hover.png) no-repeat 50% 50%;
}
.modal .modal-body {
  font-size: 11px;
}
.modal .modal-body p.border {
  border: 1px solid #ebeced;
  color: #747474;
  padding: 10px 15px;
}
.modal .modal-footer {
  background-color: transparent;
  border-top-style: none;
  padding-top: 10px;
}
.modal.download-package {
  width: 520px;
  margin-left: -260px;
}
.modal.download-package .modal-body {
  font-size: 12px;
}
.modal.download-package .modal-body p.border {
  color: #424242;
}

.modal.custom {
  border: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.modal.custom .modal-header {
  overflow: hidden;
  padding: 3px;
}
.modal.custom .modal-body {
  padding: 0;
  max-height: 100000px !important;
}
.modal.custom .title a {
  padding-left: 18px;
  margin-left: 5px;
  float: left;
  color: #fff;
  line-height: 26px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download-inverse.png) no-repeat 0 7px;
  text-transform: uppercase;
  font-weight: normal;
}
.modal.custom .buttons {
  float: right;
}

#video-modal {
  margin-left: -400px;
}
#video-modal .modal-header .title a {
  background: transparent none;
  padding-left: 0;
}

.fullscreenme, .closemodal, .download {
  display: inline-block;
  background-color: #3253dc;
  padding: 5px 10px;
  font-size: 12px;
}
.fullscreenme span, .closemodal span, .download span {
  padding-right: 18px;
  background-position: 100% 50%;
  background-repeat: no-repeat;
}

.fullscreenme span.max {
  background-image: url(plugins/create-point-common-1.192.24/images/icons/fullscreen.png);
}
.fullscreenme span.min {
  background-image: url(plugins/create-point-common-1.192.24/images/icons/leave-fullscreen.png);
}

.closemodal span {
  background-image: url(plugins/create-point-common-1.192.24/images/icons/close.png);
}

.download span {
  background-image: url(plugins/create-point-common-1.192.24/images/icons/download-inverse.png);
  background-position: 5px 50%;
  padding-left: 22px;
  padding-right: 0;
}

#video-modal {
  width: 800px;
  background: transparent none;
}

#document-modal {
  width: 100%;
  height: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
}

.modal.simple-dialog .modal-header {
  padding: 0 10px;
  color: #fff;
  line-height: 36px;
}
.modal.simple-dialog button.close {
  margin-top: 13px;
  width: 13px;
  height: 13px;
  background: url(plugins/create-point-common-1.192.24/images/icons/close.png) no-repeat 0 0;
}
.modal.simple-dialog button.close:hover {
  background: url(plugins/create-point-common-1.192.24/images/icons/close.png) no-repeat 0 0;
}
.modal.simple-dialog h2 {
  display: inline-block;
  margin: 0;
  font-size: 14px;
}
.modal.simple-dialog .modal-body {
  text-align: center;
  font-size: 13px;
}
.modal.simple-dialog .modal-body h3 {
  font-size: 20px;
  margin-top: 0;
  line-height: 1.4;
}
.modal.simple-dialog .buttons {
  margin-top: 20px;
}

.detail-items {
  list-style: none;
  margin-left: 0;
  border-top: 2px solid #4a5a75;
}
.detail-items li {
  padding: 25px;
  border: 1px solid #dae2e5;
  border-top: none;
  font-size: 13px;
}
.detail-items h3 {
  margin: 0 0 10px;
  line-height: 1;
  font-size: 18px;
}
.detail-items dl {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
}
.detail-items dt {
  font-weight: normal;
  float: left;
  width: 55%;
  /* adjust the width; make sure the total of both is 100% */
}
.detail-items dd {
  float: left;
  margin-left: 0;
  width: 45%;
  /* adjust the width; make sure the total of both is 100% */
}
.detail-items a.download {
  line-height: 13px;
  padding: 0 0 0 15px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat 0 1px;
}

#content .detail-items h3 {
  padding-top: 0;
}
#content .detail-items h3.specific-details {
  /* margin-bottom: 0; */
}
#content .detail-items h3 .chipset-name {
  font-size: 12px;
  font-weight: normal;
}
#content .detail-items .verification-level-gold {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -77px no-repeat;
  padding-left: 17px;
}
#content .detail-items .verification-level-silver {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -229px no-repeat;
  padding-left: 17px;
}
#content .detail-items .verification-level-bronze {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -1px no-repeat;
  padding-left: 17px;
}
#content .detail-items .verification-level-qpipeline {
  background: url("plugins/create-point-common-1.192.24/images/verification-level-s2dd3e9ff45.png") 0 -153px no-repeat;
  padding-left: 17px;
}
#content .detail-items .document-list ul {
  list-style: none;
  margin: 0;
  *zoom: 1;
}
#content .detail-items .document-list ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#content .detail-items .document-list li {
  border-style: none;
  float: left;
  width: 33%;
  padding: 0 0 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#content .detail-items .document-list li a {
  padding: 0 15px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat left 50%;
}

.chipset-detail-selector {
  padding: 15px 0 10px 0;
}
.chipset-detail-selector form {
  margin-bottom: 0;
}
.chipset-detail-selector form label {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 10px;
}
.chipset-detail-selector form select.select {
  font-size: 12px;
  width: 100%;
  height: 20px;
  line-height: 20px;
  padding: 0;
}
.chipset-detail-selector form input[type='submit'] {
  font-size: 12px;
  padding: 0 8px;
  height: 21px;
  line-height: 21px;
}
.chipset-detail-selector form input[type='submit']:disabled {
  background-color: #d3d3d3;
}

table.table-downloads td.text-center {
  text-align: center;
}
table.table-downloads td a:visited {
  color: #660099;
}
table.table-downloads td a.delete:visited {
  color: #3253dc;
}
table.table-downloads td .btn.download, table.table-downloads td .download#apply-cr-lookup {
  background: #3253dc url(plugins/create-point-common-1.192.24/images/icons/download-inverse.png) no-repeat 10px 50%;
  color: #fff;
  font-size: 11px;
  line-height: 19px;
  padding: 2px 15px 2px 27px;
  border: 1px solid transparent;
}
table.table-downloads td .btn.download:hover, table.table-downloads td .download#apply-cr-lookup:hover {
  color: #fff;
  text-decoration: underline;
}
table.table-downloads td .btn.download.disabled, table.table-downloads td .download.disabled#apply-cr-lookup {
  background: #3253dc url(plugins/create-point-common-1.192.24/images/icons/download-gray.png) no-repeat 10px 50%;
  background-color: #fff;
  border: 1px solid #d9dadb;
  color: #808080;
}
table.table-downloads td .btn.download.disabled:hover, table.table-downloads td .download.disabled#apply-cr-lookup:hover {
  text-decoration: none;
  cursor: default;
  background-color: #fff;
  color: #808080;
}

.download-limit {
  font-size: 12px;
  float: right;
  padding-right: 10px;
}

.search-container {
  border: 1px solid #dae2e5;
  border-top: 2px solid #4a5a75;
}
.search-container form {
  background-color: #fff;
  border-bottom: 1px solid #dae2e5;
  margin-bottom: 0;
  padding: 25px 20px;
  -moz-box-shadow: 0px 2px 4px 0px #ddd;
  -webkit-box-shadow: 0px 2px 4px 0px #ddd;
  box-shadow: 0px 2px 4px 0px #ddd;
}
.search-container form input[type='text'] {
  height: 25px;
  width: 590px;
  margin-bottom: 0;
  margin-right: 3px;
}
.search-container form input[type='submit'] {
  font-size: 12px;
  height: 25px;
  padding-left: 15px;
  padding-right: 15px;
}

.results-count {
  color: #424242;
  font-size: 11px;
  padding: 10px 20px 0px 20px;
}

.results-container {
  padding: 10px 0 20px 0;
  min-height: 260px;
}
.results-container p {
  padding: 10px 20px 0 20px;
}
.results-container .results-count {
  color: #424242;
  font-size: 11px;
  padding: 0 20px;
  margin-bottom: 10px;
}
.results-container ul {
  list-style-type: none;
  margin: 0;
}
.results-container ul li {
  border-top: 1px solid #e4e4e4;
  padding: 15px 20px;
}
.results-container ul li:first-child {
  border-top-style: none;
  padding-top: 10px;
}
.results-container ul li em {
  background-color: #ffe9b2;
  font-weight: bold;
  font-style: normal;
}
.results-container ul li a {
  text-transform: uppercase;
}
.results-container ul li a em {
  font-weight: normal;
}
.results-container .simple-pagination {
  margin: 10px 20px 10px 20px;
}
.results-container .simple-pagination ul li {
  border-style: none;
  margin: 0;
  padding: 0;
}

h1.search {
  margin-top: 20px;
  padding-left: 20px;
  line-height: normal;
  background: url(plugins/create-point-common-1.192.24/images/icons/search-large.png) 0 50% no-repeat;
}

h1.search-no-icon {
  margin-top: 20px;
}

#pre-content header h1.search {
  float: none;
  margin-bottom: 15px;
}

.search-conditions {
  margin-bottom: 10px;
  font-size: 11px;
  color: #929BA7;
}

#search-results .message {
  margin: 20px;
}

.search-doc-banner .message {
  margin: 20px;
}

.global-search #content > .container-fluid {
  padding: 0;
}
.global-search .search-box {
  width: 680px;
  margin: 0 auto;
}
.global-search .search-box .location {
  margin-top: 10px;
  font-size: 12px;
}
.global-search .search-header {
  padding: 6px 10px 0;
}
.global-search .search-header h2 {
  display: inline;
}
.global-search .search-header select {
  width: auto;
  height: auto;
  font-size: 12px;
  position: relative;
  top: 3px;
}
.global-search .search-header label, .global-search .search-header span {
  display: inline;
}
.global-search .search-header label {
  font-size: 11px;
}
.global-search .search-header .showing {
  font-size: 11px;
  padding-left: 10px;
}
.global-search .search-header .show {
  font-size: 12px;
}
.global-search .search-header .show-filter {
  display: inline;
  margin: 0;
  list-style: none;
  font-size: 12px;
}
.global-search .search-header .show-filter li {
  display: inline;
  padding: 0 5px;
  border-left: 1px solid #424242;
}
.global-search .search-header .show-filter li:first-child {
  border: none;
}
.global-search .search-header .show-filter a.active {
  color: #424242;
}

#search-controls.search-container {
  border-top: none;
}
#search-controls.search-container form {
  border-bottom: none;
}

.location {
  color: #8a8a8a;
  font-size: 11px;
}

.result {
  padding: 0 0 20px 28px;
  margin: 20px 10px;
  font-size: 13px;
  border-bottom: 1px solid #ebeced;
  position: relative;
}
.result time {
  font-size: 11px;
  color: #8a8a8a;
}
.result h4 {
  font-size: 15px;
  text-transform: uppercase;
  margin: 0;
}
.result i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: transparent none no-repeat 50% 50%;
  position: absolute;
  top: 0px;
  left: 0px;
}
.result.pdf i {
  background: url(plugins/create-point-common-1.192.24/images/icons/pdf-18x20.png) no-repeat 0 50%;
}
.result.xls i {
  background: url(plugins/create-point-common-1.192.24/images/icons/xls-18x20.png) no-repeat 0 50%;
}
.result.mp4 i {
  background: url(plugins/create-point-common-1.192.24/images/icons/mp4-18x20.png) no-repeat 0 50%;
}
.result.zip i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-zip.png) no-repeat 0 50%;
}
.result.tools i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-tools.png) no-repeat 0 50%;
}
.result.hardware-components i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-hardware-components.png) no-repeat 0 -1px;
}
.result.code i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-code.png) no-repeat 0 50%;
}
.result.knowledgebase i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-knowledgebase.png) no-repeat 0 50%;
}
.result.release i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-release.png) no-repeat 0 50%;
}
.result.server-package i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-server-package.png) no-repeat 0 50%;
}
.result.case i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-support-cases-large.png) no-repeat 0px 50%;
}
.result.folder h4 {
  text-transform: none;
}
.result.folder i {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-folder.png) no-repeat 0 0;
}
.result mark {
  background: #f2f035;
}
.result p {
  margin: 10px 0 0;
}

h4.result-count {
  font-size: 14px;
  padding-left: 10px;
}

.result-details {
  margin: 7px 0;
  list-style: none;
}
.result-details li {
  display: inline-block;
  padding-right: 30px;
}

.result-preview {
  overflow: hidden;
  margin-top: 10px;
}
.result-preview .pdf, .result-preview .text {
  float: left;
}
.result-preview .pdf {
  display: none;
}
.result-preview p {
  margin-top: 0;
}
.result-preview.pdf-available .pdf {
  display: block;
  width: 275px;
  padding-right: 15px;
  margin-right: -275px;
}
.result-preview.pdf-available .text {
  padding-left: 275px;
}


/*===========
Tools Section
===========*/
.tools #content {
  padding-top: 0;
}
.tools #content h2 {
  font-size: 15px;
  margin-bottom: 5px;
}
.tools #content #whats-new h2 {
  padding: 15px;
  margin: 10px 0 20px;
  font-size: 20px;
  color: #fff;
  background: #59595c;
}
.tools #content p {
  margin-bottom: 20px;
  font-size: 13px;
}
.tools .table-links {
  padding-top: 0;
}
.tools #tab-viewport h2 {
  margin-top: 5px;
  margin-bottom: 10px;
}

.tool-header {
  margin-top: 10px;
}
.tool-header .favorite {
  margin-top: 21px;
  margin-right: 0px;
  margin-bottom: 4px;
}

.alert-row {
  min-height: 1px;
  margin: 0;
}

.alert {
  margin-bottom: 0;
  padding-left: 23px;
  background-image: url(plugins/create-point-common-1.192.24/images/icons/updated_version_icon.png);
  background-repeat: no-repeat;
  background-position: 10px 12px;
  font-size: 13px;
  color: #000;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

.message {
  margin-bottom: 20px;
  padding: 10px;
  background: #fff;
  border: 1px solid #c2c2c2;
}
.message h3 {
  font-size: 18px !important;
}
.message.message-center, .message.info {
  background: #fcf8e2;
  border: 1px solid #f6d8a6;
}
.message.message-center p, .message.info p {
  margin-top: 5px;
}
.message.message-center p:first-child, .message.info p:first-child {
  margin: 0;
}
.message.message-center ul, .message.info ul {
  margin: 0;
}
.message.message-center ul.inline li, .message.info ul.inline li {
  margin-left: 15px;
}
.message.message-center ul.inline li:first-child, .message.info ul.inline li:first-child {
  margin-left: 0;
}

.tools #content .message p {
  margin: 0;
  padding: 0;
}

.update-legend {
  font-size: 11px;
  padding-left: 10px;
  background: url(plugins/create-point-common-1.192.24/images/icons/updated_version_icon_black.png) no-repeat left 3px;
}

.update-available {
  padding-right: 10px;
  background: url(plugins/create-point-common-1.192.24/images/icons/updated_version_icon_black.png) no-repeat right 3px;
}

.tool-icon {
  float: left;
  width: 36px;
  height: 36px;
  margin-right: 10px;
}
.tool-icon img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}

.tool-title {
  float: left;
}
.tool-title h1 {
  margin: 0;
}

#pre-content .row-fluid {
  margin-bottom: 5px;
}
#pre-content label {
  margin: 0;
  font-size: 11px;
  line-height: 1;
}
#pre-content select {
  height: auto;
  line-height: inherit;
  margin: 0;
}
#pre-content form {
  margin: 0;
}
#pre-content .button-row {
  padding-top: 10px;
}
#pre-content .button-row input, #pre-content .button-row select, #pre-content .button-row label {
  display: inline-block !important;
  width: auto;
  line-height: 27px;
  height: 27px;
}
#pre-content .button-row label {
  margin-right: 5px;
}
#pre-content .button-row select {
  margin-right: 20px;
}
#pre-content .button-row input, #pre-content .button-row a {
  margin-right: 10px;
}
#pre-content .button-row div, #pre-content .button-row form {
  float: left;
}
#pre-content .button-row .select-wrap {
  float: left;
}
#pre-content .download {
  padding: 0;
}
#pre-content .files-row {
  background: #003a55;
}
#pre-content .files-row .row-fluid {
  height: 42px;
  margin-bottom: 0;
}
#pre-content .files-row label {
  display: block;
  float: left;
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 42px;
  color: #fff;
}
#pre-content .files-row .download {
  display: inline-block;
}
#pre-content .files-row input {
  position: relative;
  top: -1px;
  margin-right: 5px;
}

.button-row a, .files-row a {
  height: 27px;
  display: inline-block;
  float: left;
  padding: 7px 20px;
  font-size: 13px;
  line-height: 1;
}

.files-row .download {
  height: 42px;
}
.files-row .download a {
  margin-top: 7px;
}

#complex-tool {
  margin: 0;
}
#complex-tool .files-row .download {
  background: transparent;
}

.tool-summary,
.chipcode-tabs {
  padding-top: 15px;
  background: #e9eaea url(plugins/create-point-common-1.192.24/images/tab-dropshadow.png) repeat-x bottom left;
}
.tool-summary .nav-tabs li,
.chipcode-tabs .nav-tabs li {
  top: 0;
}
.tool-summary .nav-tabs li a,
.chipcode-tabs .nav-tabs li a {
  padding: 9px 12px 8px;
  font-size: 14px;
  background: #cad0d3 url(plugins/create-point-common-1.192.24/images/tab-dropshadow.png) repeat-x bottom left;
  border: 1px solid #c2c2c2;
  color: #424242;
  border-bottom: 1px solid transparent;
}
.tool-summary .nav-tabs li a:hover,
.chipcode-tabs .nav-tabs li a:hover {
  border-bottom: 1px solid #c2c2c2;
}
.tool-summary .nav-tabs li.active a, .tool-summary .nav-tabs li:hover a,
.chipcode-tabs .nav-tabs li.active a,
.chipcode-tabs .nav-tabs li:hover a {
  background-color: #fff;
  background-image: none;
}
.tool-summary .nav-tabs li.active a:hover,
.chipcode-tabs .nav-tabs li.active a:hover {
  border: 1px solid #c2c2c2;
  border-bottom: none;
}
.tool-summary .nav-tabs li.active:hover a,
.chipcode-tabs .nav-tabs li.active:hover a {
  border-bottom: 1px solid transparent;
}

#main-content.no-sidebar #content > #tab-viewport.container-fluid {
  padding-top: 15px;
}

.datatable-videos tr.top {
  border-bottom: none;
}
.datatable-videos tr.bottom {
  border-top: none;
}
.datatable-videos .thumb {
  width: 202px;
}

.chipset-items {
  list-style: none;
  margin: 0 0 25px;
  padding: 0;
  border: 1px solid #dae2e5;
  border-top: 1px solid #4a5a75;
}
.chipset-items li {
  padding: 25px;
  border: 0;
  border-top: 1px solid #4a5a75;
  font-size: 13px;
}
.chipset-items li:last-child p:last-child {
  margin: 0;
}
.chipset-items h4 {
  font-size: 13px;
  margin: 0 0 5px;
}
.chipset-items ul {
  list-style: none;
  margin: 0;
}
.chipset-items ul.bulleted {
  list-style: disc;
  margin-left: 16px;
}
.chipset-items ul.bulleted li {
  margin: 10px 0 0;
  padding: 0;
  word-wrap: break-word;
}
.chipset-items ul li {
  margin-top: 20px;
  padding: 0;
  border: none;
}
.chipset-items ul li:first-child {
  margin: 0;
}

#sidebar .build-range,
#sidebar .product-solution-selector,
#sidebar .personalization-selector {
  *zoom: 1;
  background-color: #d3d9de;
  color: #222;
}
#sidebar .build-range:after,
#sidebar .product-solution-selector:after,
#sidebar .personalization-selector:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#sidebar .build-range .build-range-msg,
#sidebar .product-solution-selector .build-range-msg,
#sidebar .personalization-selector .build-range-msg {
  display: none;
}
#sidebar .build-range .range-reset,
#sidebar .product-solution-selector .range-reset,
#sidebar .personalization-selector .range-reset {
  cursor: pointer;
}
#sidebar .build-range.inactive .range-reset,
#sidebar .product-solution-selector.inactive .range-reset,
#sidebar .personalization-selector.inactive .range-reset {
  display: none;
}
#sidebar .build-range.inactive .build-range-ui,
#sidebar .product-solution-selector.inactive .build-range-ui,
#sidebar .personalization-selector.inactive .build-range-ui {
  display: none;
}
#sidebar .build-range.inactive .build-range-msg,
#sidebar .product-solution-selector.inactive .build-range-msg,
#sidebar .personalization-selector.inactive .build-range-msg {
  display: block;
}
#sidebar .build-range h3,
#sidebar .product-solution-selector h3,
#sidebar .personalization-selector h3 {
  font-weight: normal;
  margin-left: 0;
  padding: 0;
}
#sidebar .build-range h3 .range-reset,
#sidebar .product-solution-selector h3 .range-reset,
#sidebar .personalization-selector h3 .range-reset {
  float: right;
  font-size: 11px;
}
#sidebar .build-range .build-range-ui label,
#sidebar .build-range .product-solution-ui label,
#sidebar .build-range .personalization-ui label,
#sidebar .product-solution-selector .build-range-ui label,
#sidebar .product-solution-selector .product-solution-ui label,
#sidebar .product-solution-selector .personalization-ui label,
#sidebar .personalization-selector .build-range-ui label,
#sidebar .personalization-selector .product-solution-ui label,
#sidebar .personalization-selector .personalization-ui label {
  padding-left: 0;
}
#sidebar .build-range .build-range-ui select,
#sidebar .build-range .product-solution-ui select,
#sidebar .build-range .personalization-ui select,
#sidebar .product-solution-selector .build-range-ui select,
#sidebar .product-solution-selector .product-solution-ui select,
#sidebar .product-solution-selector .personalization-ui select,
#sidebar .personalization-selector .build-range-ui select,
#sidebar .personalization-selector .product-solution-ui select,
#sidebar .personalization-selector .personalization-ui select {
  float: right;
  font-size: 12px;
  width: 160px;
  height: auto;
}
#sidebar .build-range .build-range-ui .apply .btn, #sidebar .build-range .build-range-ui .apply #apply-cr-lookup,
#sidebar .build-range .product-solution-ui .apply .btn,
#sidebar .build-range .product-solution-ui .apply #apply-cr-lookup,
#sidebar .build-range .personalization-ui .apply .btn,
#sidebar .build-range .personalization-ui .apply #apply-cr-lookup,
#sidebar .product-solution-selector .build-range-ui .apply .btn,
#sidebar .product-solution-selector .build-range-ui .apply #apply-cr-lookup,
#sidebar .product-solution-selector .product-solution-ui .apply .btn,
#sidebar .product-solution-selector .product-solution-ui .apply #apply-cr-lookup,
#sidebar .product-solution-selector .personalization-ui .apply .btn,
#sidebar .product-solution-selector .personalization-ui .apply #apply-cr-lookup,
#sidebar .personalization-selector .build-range-ui .apply .btn,
#sidebar .personalization-selector .build-range-ui .apply #apply-cr-lookup,
#sidebar .personalization-selector .product-solution-ui .apply .btn,
#sidebar .personalization-selector .product-solution-ui .apply #apply-cr-lookup,
#sidebar .personalization-selector .personalization-ui .apply .btn,
#sidebar .personalization-selector .personalization-ui .apply #apply-cr-lookup {
  float: right;
}
#sidebar .build-range .build-range-ui .apply input[type='submit'],
#sidebar .build-range .product-solution-ui .apply input[type='submit'],
#sidebar .build-range .personalization-ui .apply input[type='submit'],
#sidebar .product-solution-selector .build-range-ui .apply input[type='submit'],
#sidebar .product-solution-selector .product-solution-ui .apply input[type='submit'],
#sidebar .product-solution-selector .personalization-ui .apply input[type='submit'],
#sidebar .personalization-selector .build-range-ui .apply input[type='submit'],
#sidebar .personalization-selector .product-solution-ui .apply input[type='submit'],
#sidebar .personalization-selector .personalization-ui .apply input[type='submit'] {
  float: right;
  font-size: 11px;
  line-height: 1.375;
  padding: 4px 12px;
}
#sidebar .build-range .build-range-ui .apply input[type='submit']:disabled,
#sidebar .build-range .product-solution-ui .apply input[type='submit']:disabled,
#sidebar .build-range .personalization-ui .apply input[type='submit']:disabled,
#sidebar .product-solution-selector .build-range-ui .apply input[type='submit']:disabled,
#sidebar .product-solution-selector .product-solution-ui .apply input[type='submit']:disabled,
#sidebar .product-solution-selector .personalization-ui .apply input[type='submit']:disabled,
#sidebar .personalization-selector .build-range-ui .apply input[type='submit']:disabled,
#sidebar .personalization-selector .product-solution-ui .apply input[type='submit']:disabled,
#sidebar .personalization-selector .personalization-ui .apply input[type='submit']:disabled {
  background: #fff;
  border: 1px solid #d9dadb;
  color: #808080;
  padding: 3px 11px;
}
#sidebar .build-range .product-solution-ui select,
#sidebar .build-range .personalization-ui select,
#sidebar .product-solution-selector .product-solution-ui select,
#sidebar .product-solution-selector .personalization-ui select,
#sidebar .personalization-selector .product-solution-ui select,
#sidebar .personalization-selector .personalization-ui select {
  width: 140px;
}

/*=============
Select2 Tagging
=============*/
#s2id_cr-lookup-input {
  width: 100%;
  position: relative;
}

#s2id_autogen3 {
  height: auto;
  line-height: 1;
}

.hideSearch {
  display: none !important;
}

.sidebar .cr-lookup-wrapper {
  margin: 0;
  padding: 0;
}

.cr-lookup-wrapper {
  margin: 0 10px 10px;
  padding: 10px;
  font-size: 11px;
  background: #d3d9de;
  color: #222;
}
.cr-lookup-wrapper .row-fluid {
  padding-top: 5px;
}
.cr-lookup-wrapper .filtered-cr-count, .cr-lookup-wrapper .invalid-cr-count {
  font-size: 11px;
  padding-right: 4px;
  line-height: 25px;
}
.cr-lookup-wrapper .invalid-cr-count {
  color: #f00;
}
.cr-lookup-wrapper .filtered-cr-count {
  color: #bbb;
}

.cr-lookup {
  position: relative;
  border-top: 1px solid #eee;
}
.cr-lookup.expanded .cr-lookup-wrapper {
  width: 550px;
  margin: 0 10px 10px;
  padding: 10px;
  position: absolute;
  top: 32px;
  left: 0px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.cr-lookup.expanded .select2-choices {
  height: auto;
  max-height: 10000px;
  overflow: auto;
}
.cr-lookup.expanded #reset-cr-lookup {
  display: block;
  float: left;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  color: #3253dc;
  font-size: 11px;
  line-height: 25px;
  padding: 0;
  margin: 0 14px 0 0;
  cursor: pointer;
}
.cr-lookup.expanded .select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  zoom: 1;
  vertical-align: middle;
}
.cr-lookup.expanded .select2-container-multi .select2-choices {
  min-height: 26px;
  margin: 0;
  padding: 0 5px 0 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
}
.cr-lookup .select2-choices {
  background-color: #fff;
  background-image: none !important;
}

#sidebar .cr-lookup.expanded .select2-choices {
  height: auto;
  max-height: 10000px;
  overflow: scroll;
}
#sidebar .cr-lookup.expanded .select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
}
#sidebar .cr-lookup .select2-choices {
  max-height: 30px;
}

/*for when it appears as a 'header'*/
.cr-lookup-header {
  border-bottom: 1px solid #ebeced;
}

.select2-search-choice span.valid {
  color: #000;
}
.select2-search-choice span.invalid {
  color: #f00;
}
.select2-search-choice span.filtered {
  color: #bbb;
}

#apply-cr-lookup {
  height: 25px;
  padding: 0 8px;
  font-size: 11px;
  margin-bottom: 0;
  line-height: 25px;
}
#apply-cr-lookup:focus, #apply-cr-lookup:focus:hover {
  background: #3253dc;
  color: #fff;
}
#apply-cr-lookup.disabled {
  padding: 0 8px;
}

#reset-cr-lookup {
  display: none;
}

.message.lookup-msg {
  margin: 15px 0 0 0;
  background: #d9f6fa;
  border: 1px solid #3253dc;
  border-bottom: none;
}

/*======
Video.js
======*/
.video-wrap {
  position: relative;
  float: left;
}

.watermark {
  min-width: 137px;
  padding-top: 35px;
  padding-right: 5px;
  position: absolute;
  bottom: 40%;
  right: 10px;
  color: #fff;
  text-align: right;
  background: url(plugins/create-point-common-1.192.24/images/video-watermark.png) no-repeat top right;
  opacity: 0.4;
  z-index: 100;
}

/*=======
Home Page
=======*/
.quick-link-section {
  overflow: hidden;
}

.quick-link-icon {
  width: 90px;
  height: 64px;
  margin-top: 15px;
  float: left;
  margin-right: -90px;
}
.quick-link-icon.software-code {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/software-code-icon.png) no-repeat 0 0;
}
.quick-link-icon.software-documents {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/software-documents-icon.png) no-repeat 0 0;
}
.quick-link-icon.hardware-documents {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/hardware-documents-icon.png) no-repeat 0 0;
}
.quick-link-icon.hardware-components {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/hardware-components-icon.png) no-repeat 0 0;
}
.quick-link-icon.tools {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/tools-icon-new.png) no-repeat 5px 0;
}
.quick-link-icon.support {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/support-icon.png) no-repeat 0 0;
}
.quick-link-icon.general-info {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/general-info-icon.png) no-repeat 0 0;
}
.quick-link-icon.createpoint {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/createpoint-icon.png) no-repeat 0 0;
}
.quick-link-icon.chipcode {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/chipcode-icon.png) no-repeat 0 0;
}
.quick-link-icon.cases {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/cases-icon.png) no-repeat 0 0;
}
.quick-link-icon.register {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/register-icon.png) no-repeat 0 0;
}

#content .quick-link-text {
  padding-left: 90px;
  margin-bottom: 20px;
}
#content .quick-link-text h3 {
  margin-bottom: 5px;
}
#content .quick-link-text h3 a {
  font-size: 18px;
}
#content .quick-link-text p {
  font-size: 13px;
  margin-bottom: 5px;
}
#content .quick-link-text a {
  font-size: 13px;
}

#content .cp-sections.home.quicklinks {
  background: #fff;
  border: 1px solid #cbcdc8;
  border-top: 2px solid #585b5d;
}
#content .cp-sections.home.quicklinks a {
  font-weight: bold;
}
#content .cp-sections.home.quicklinks ul li.quicklink {
  padding-left: 50px;
}
#content .cp-sections.home.quicklinks ul li.quicklink.docs {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/doc-downloads-small.png) no-repeat 0 0;
}
#content .cp-sections.home.quicklinks ul li.quicklink.rma {
  background: url(plugins/create-point-common-1.192.24/images/home-icons/submit-ticket-small.png) no-repeat 0 0;
}

#content .cp-sections.home {
  margin-bottom: 20px;
}
#content .cp-sections.home h2 {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 15px;
}
#content .cp-sections.home ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}
#content .cp-sections.home ul li {
  margin: 0;
  padding: 0;
  border: none;
}

/*==============
Chipcode Planner
==============*/
/*==============
Chipcode Planner
==============*/
header.planner .pull-left {
  margin-right: 20px;
}
header.planner .pull-left span {
  line-height: 26px;
}

.chipcode-planner ul.planner-meta {
  list-style: none;
  float: left;
}
.chipcode-planner ul.planner-meta > li {
  display: block;
  float: left;
  margin-right: 20px;
  line-height: 40px;
}

#main-content .chipcode-planner form {
  margin-bottom: 0;
}
#main-content .chipcode-planner form .build-selectors label {
  font-size: 12px;
  margin-bottom: 15px;
  margin-right: 0.8%;
  width: 19%;
}
#main-content .chipcode-planner form .build-selectors label.last {
  margin-right: 0;
}
#main-content .chipcode-planner form .build-selectors select.select {
  font-size: 12px;
  width: 100%;
  height: 20px;
  line-height: 20px;
  padding: 0;
}
#main-content .chipcode-planner form label.textarea-label {
  font-size: 12px;
  margin-bottom: 0;
  width: 100%;
}
#main-content .chipcode-planner form label.textarea-label textarea {
  font-size: 12px;
  width: 100%;
}
#main-content .chipcode-planner .item-links .load-draft,
#main-content .chipcode-planner .item-links .load-template {
  float: right;
  font-size: 12px;
  margin-left: 10px;
  padding-top: 10px;
}
#main-content .chipcode-planner .item-links .load-draft.disabled,
#main-content .chipcode-planner .item-links .load-template.disabled {
  color: #747474;
}
#main-content .chipcode-planner ul.build-items {
  list-style: none;
  margin-left: 0;
  border-top: 2px solid #4a5a75;
  margin-bottom: 20px;
}
#main-content .chipcode-planner ul.build-items > li {
  padding: 25px;
  border: 1px solid #dae2e5;
  border-top: none;
  font-size: 13px;
}

#main-content .chipcode-tabs {
  background-color: #fff;
  padding-left: 20px;
}
#main-content .chipcode-tabs .title {
  *zoom: 1;
}
#main-content .chipcode-tabs .title:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
#main-content .chipcode-tabs .title h2 {
  float: left;
  font-size: 18px;
  line-height: 1;
  margin: 0 0 10px;
}
#main-content .chipcode-tabs .title .email-sub {
  margin-top: -2px;
}

#main-content .chipcode-planner#content a.cr-link:before {
  content: "\25b6\a0";
}
#main-content .chipcode-planner#content a.cr-link:hover {
  text-decoration: none;
}
#main-content .chipcode-planner#content a.cr-link:hover span {
  text-decoration: underline;
}
#main-content .chipcode-planner#content .open a.cr-link:before {
  content: "\25bc\a0";
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr:hover {
  cursor: pointer;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr a.disabled {
  color: #747474;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr .chipcode-build-crs {
  color: #424242;
  display: none;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr .chipcode-build-crs a {
  color: #3253dc;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr.open > td {
  background-color: #000;
  color: #fff;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr.open > td a {
  color: #fff;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr.open .chipcode-build-crs {
  display: block;
  color: #424242;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr.open .chipcode-build-crs:hover {
  cursor: default;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr.open .chipcode-build-crs a {
  color: #3253dc;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr.open td.description {
  padding: 3px 9px 9px 9px;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr .description-wrap {
  padding-bottom: 5px;
}
#main-content .chipcode-planner#content .chipcode-table > tbody > tr .description-wrap:hover {
  cursor: default;
}
#main-content .chipcode-planner#content .chipcode-build-crs {
  background-color: #fff;
  margin: 0 -8px -8px -8px;
  padding: 12px 8px 12px 8px;
}
#main-content .chipcode-planner#content .chipcode-build-crs h3 {
  margin-bottom: 5px;
}
#main-content .chipcode-planner#content .chipcode-build-crs p {
  margin-bottom: 10px;
  padding-left: 0;
}
#main-content .chipcode-planner#content .chipcode-build-crs td {
  padding-top: 8px;
}
#main-content .chipcode-planner#content .chipcode-build-crs td.description {
  padding-top: 3px;
}
#main-content .chipcode-planner#content .chipcode-build-crs table {
  margin-bottom: 5px;
}
#main-content .chipcode-planner#content p.border {
  border: 1px solid #ebeced;
  color: #747474;
  padding: 10px 15px;
}
#main-content .chipcode-planner#content .required-crs-wrap > p {
  display: none;
}
#main-content .chipcode-planner#content .required-crs-wrap table {
  display: none;
}
#main-content .chipcode-planner#content .required-crs-wrap.open > p {
  display: block;
}
#main-content .chipcode-planner#content .required-crs-wrap.open table {
  display: table;
}
#main-content .chipcode-planner#content .toggle-descriptions {
  float: right;
  padding-top: 6px;
}
#main-content .chipcode-planner#content .build-editor-add-crs {
  *zoom: 1;
  border-top: 1px solid #dae2e5;
  margin: 15px -25px -25px -25px;
}
#main-content .chipcode-planner#content .build-editor-add-crs:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.chipcode-planner .message {
  padding: 5px;
}

.chipcode-planner .extended-detail-row th {
  color: #333;
  background: #e5e5e5;
  border: 1px solid #cbcdc8 !important;
}

/* load draft modal */
.modal.build-editor-load-draft {
  width: 854px;
  margin-left: -427px;
}
.modal.build-editor-load-draft .modal-header {
  overflow: hidden;
  padding: 5px 5px 5px 8px;
}
.modal.build-editor-load-draft .modal-header h3 {
  float: left;
  line-height: 26px;
}
.modal.build-editor-load-draft .modal-header .buttons {
  float: right;
}
.modal.build-editor-load-draft table td, .modal.build-editor-load-draft table th {
  padding: 5px 8px;
}
.modal.build-editor-load-draft table tr td.text-center {
  text-align: center;
}
.modal.build-editor-load-draft table tr.active {
  background-color: #e3e3e3;
}
.modal.build-editor-load-draft table tr.active a {
  color: #4a5a75;
}

.cr-wizard {
  margin-left: 0;
  border: 1px solid #cbcdc8;
  border-top: 2px solid #777979;
  margin-bottom: 20px;
}
.cr-wizard h4 {
  margin-top: 0;
}
.cr-wizard h5 {
  margin-bottom: 5px;
}
.cr-wizard ul, .cr-wizard ol {
  list-style: none;
  margin: 0;
}
.cr-wizard p, .cr-wizard ul {
  margin-bottom: 20px;
}
.cr-wizard .buttons {
  overflow: hidden;
}

.cr-wizard-content {
  padding: 20px;
}

.planner-info {
  font-size: 13px;
  margin: 20px 0 4px;
}

.planner-comments {
  width: 50%;
}

.purpose-label {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 0;
  margin-right: 10px;
  width: 220px;
}
.purpose-label select.select {
  width: 200px;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  padding: 0;
}
.purpose-label i.help {
  float: right;
}

.build-steps {
  border-bottom: 1px solid #cbcdc8;
}
.build-steps li {
  display: inline-block;
  border-right: 1px solid #cbcdc8;
}
.build-steps li.active a {
  color: #424242;
  font-weight: bold;
}
.build-steps li a {
  display: block;
  padding: 10px 20px;
}

.planner-tabs {
  padding: 0 20px;
  border-bottom: 1px solid #a9b2b6;
}
.planner-tabs h2 {
  margin: 0;
  padding: 10px 0;
  font-size: 20px;
}
.planner-tabs .nav-tabs li {
  position: relative;
  top: 1px;
}
.planner-tabs .nav-tabs li a {
  padding: 9px 12px 8px;
  font-size: 14px;
  background: #e4e7e9;
  border: 1px solid #a9b2b6;
  color: #424242;
}
.planner-tabs .nav-tabs li a:hover {
  border-bottom: 1px solid #a9b2b6;
}
.planner-tabs .nav-tabs li.active a, .planner-tabs .nav-tabs li:hover a {
  background-color: #fff;
  background-image: none;
  border-bottom: 1px solid #fff;
}
.planner-tabs .nav-tabs li.active a:hover {
  border: 1px solid #a9b2b6;
  border-bottom: 1px solid #fff;
}
.planner-tabs .nav-tabs li.active:hover a {
  border-bottom: 1px solid transparent;
}

.planner-tab {
  font-size: 13px;
}

.planner-tab h3 {
  padding-top: 15px;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 20px;
}

.request-crs .buttons {
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  top: -2px;
}

a.refresh {
  font-size: 13px;
  padding-left: 5px;
}

.last-refreshed {
  padding-left: 5px;
  font-size: 13px;
  color: #aaa;
  font-style: italic;
}

/*
Request Workflow
*/
.margin10 {
  margin-bottom: 10px;
}

.margin15 {
  margin-bottom: 15px;
}

.request-workflow label {
  font-weight: bold;
  line-height: 1;
}
.request-workflow .panel, .request-workflow .panel-dk {
  margin-bottom: 10px;
  padding: 20px;
  background: #eee;
}
.request-workflow .select2-container {
  width: 100%;
}

span.reject, span.request {
  font-style: italic;
  color: #aaa;
  padding-left: 10px;
}

.hidden-crs {
  font-size: 13px;
  color: #aaa;
}

.toggle-hidden-crs {
  padding-left: 15px;
}

.request-buttons span {
  line-height: 31px;
}

.refresh-known-issues {
  padding-left: 20px;
}

input.comments {
  width: 100%;
  font-size: 12px;
  padding: 12px 6px;
}

table.crs td, table.crs th {
  height: 30px;
  line-height: 30px;
  vertical-align: middle;
}
table.crs th {
  width: 130px;
  text-align: right;
  padding-right: 10px;
}
table.crs td {
  width: 500px;
}
table.crs select {
  margin: 0 10px 0 0;
}

.hidden-cr {
  color: #aaa;
}

.cr-lookup.check-applicability {
  border: 0;
  margin-bottom: 80px;
}
.cr-lookup.check-applicability a {
  color: #fff;
  padding-right: 10px;
}

.switch-to-browse {
  margin-bottom: 15px;
}
.switch-to-browse button {
  font-size: 12px;
}

.crs-not-ready {
  margin-top: 20px;
  margin-bottom: 80px;
}

/*==============
8909
==============*/
i.icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  position: relative;
  top: 3px;
  margin-left: 4px;
}
i.icon.help {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-help.png) no-repeat center center;
}
i.icon-blue.help {
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-help-blue-Info.svg) no-repeat center;
  margin-top: -2px;
}
i.icon.help.build {
  margin: 0 0 3px 5px;
}

.popover.helpinfo {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #f5d6a6;
  background-color: #fcf8e3;
  min-width: 200px;
  z-index: 20500;
}
.popover.helpinfo .arrow {
  display: none;
}
.popover.helpinfo .popover-content {
  padding: 15px;
}
.popover.helpinfo .popover-content h3 {
  font-size: 12px;
  line-height: 22px;
  padding-left: 0;
  margin: 0;
}
.popover.helpinfo .popover-content ul {
  list-style: disc outside;
  margin: 0 0 15px 15px;
}
.popover.helpinfo .popover-content ul:last-child {
  margin-bottom: 0;
}
.popover.helpinfo .popover-content ul li {
  font-size: 12px;
}
.popover.helpinfo .popover-content ul ul {
  margin-bottom: 2px;
  list-style-type: square;
}

/*===========
Video Landing Page
=============*/
.back-links {
  padding-bottom: 15px;
}

.video-landing h2 {
  text-transform: uppercase;
}
.video-landing h2 span.filetype {
  font-size: 14px;
  font-weight: normal;
  color: #a3a3a3;
}
.video-landing .video-info {
  padding: 25px;
  border: 1px solid #dae2e5;
  border-top: 2px solid #4a5a75;
  font-size: 13px;
}
.video-landing .video-info .related-files {
  margin-top: 50px;
}
.video-landing .video-info .related-files h3 span {
  font-weight: normal;
}
.video-landing .video-info .related-files .document-list {
  display: block;
  padding: 0;
  font-size: 11px;
}
.video-landing .video-info .related-files .document-list ul {
  list-style: none;
  margin: 0;
  *zoom: 1;
}
.video-landing .video-info .related-files .document-list ul:after {
  content: "\0020";
  display: block;
  height: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}
.video-landing .video-info .related-files .document-list li {
  float: left;
  width: 33%;
  padding-right: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.video-landing .video-info .related-files .document-list li a {
  padding: 0 15px;
  background: url(plugins/create-point-common-1.192.24/images/icons/download.png) no-repeat left 50%;
}

/*=====================
Personalization Buttons
=====================*/
.set-personalization {
  position: absolute;
  overflow: hidden;
  padding: 5px;
  top: 10px;
  right: 10px;
  font-size: 11px;
  line-height: 25px;
  background: rgba(0, 0, 0, 0.5);
}
.set-personalization div {
  float: left;
  padding: 0 5px;
}
.set-personalization button {
  float: right;
  font-size: 11px;
}

.update-personalization {
  clear: both;
}
.update-personalization span {
  line-height: 23px;
}
.update-personalization .btn, .update-personalization #apply-cr-lookup {
  float: right;
}

#sidebar .personalization-selector {
  margin-bottom: 0;
}

/*================
New HW/SW Doc List
================*/
.featured-filter {
  margin-bottom: 15px;
  padding: 10px;
  background: #eee;
}
.featured-filter label {
  font-size: 14px;
  display: inline-block;
  padding-right: 10px;
  margin: 0 5px 0 0;
}
.featured-filter input {
  position: relative;
  top: -2px;
  margin: 0 5px 0 0;
}

.trail {
  font-size: 12px;
  margin-bottom: 10px;
}

table.table.documents th.sorting span {
  background: url(plugins/create-point-common-1.192.24/images/tables/sortable.png) no-repeat 100% 50%;
}
table.table.documents th.sorting_asc span {
  background: url(plugins/create-point-common-1.192.24/images/tables/sort-down.png) no-repeat 100% 50%;
}
table.table.documents th.sorting_desc span {
  background: url(plugins/create-point-common-1.192.24/images/tables/sort-up.png) no-repeat 100% 50%;
}
table.table.documents .select-and-download {
  width: 90px;
}
table.table.documents .select-and-icon {
  width: 60px;
}
table.table.documents td {
  vertical-align: middle;
  line-height: 1.1;
}
table.table.documents th span {
  display: block;
}
table.table.documents .tooltip-title a {
  white-space: normal;
}
table.table.documents .trending-up .trendicon, table.table.documents .trending-middle .trendicon, table.table.documents .trending-down .trendicon, table.table.documents .no-rank .trendicon {
  display: block;
  width: 20px;
  height: 20px;
}
table.table.documents .no-rank .trendicon {
  background: url(plugins/create-point-common-1.192.24/images/document-table/need-data.png) no-repeat 50% 50%;
}
table.table.documents .trending-up .trendicon {
  background: url(plugins/create-point-common-1.192.24/images/document-table/trending-up.png) no-repeat 50% 50%;
}
table.table.documents .trending-middle .trendicon {
  background: url(plugins/create-point-common-1.192.24/images/document-table/trending-middle.png) no-repeat 50% 50%;
}
table.table.documents .trending-down .trendicon {
  background: url(plugins/create-point-common-1.192.24/images/document-table/trending-down.png) no-repeat 50% 50%;
}

.helpinfo.wide {
  width: 400px;
}
.helpinfo h4 {
  font-size: 14px;
  margin-bottom: 0px;
}
.helpinfo .upvotes, .helpinfo .downvotes {
  display: inline-block;
  padding-left: 20px;
}
.helpinfo .upvotes {
  margin-right: 20px;
  color: #18a000;
  background: url(plugins/create-point-common-1.192.24/images/document-table/thumbs-up-hover.png) no-repeat 0 2px;
}
.helpinfo .downvotes {
  color: #db6627;
  background: url(plugins/create-point-common-1.192.24/images/document-table/thumbs-down-hover.png) no-repeat 0 2px;
}

i.type {
  display: inline-block;
  width: 24px;
  height: 20px;
  background: transparent none no-repeat 0 50%;
  text-indent: -99em;
}
i.type.pdf {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-pdf.png) no-repeat 0 50%;
}
i.type.xls {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-excel.png) no-repeat 0 50%;
}
i.type.mp4 {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-mp4.png) no-repeat 0 50%;
}
i.type.zip {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-zip.png) no-repeat 0 50%;
}
i.type.knowledgebase {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-knowledgebase.png) no-repeat 0 50%;
}
i.type.release {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-release.png) no-repeat 0 50%;
}
i.type.server-package {
  background: url(plugins/create-point-common-1.192.24/images/document-table/type-server-package.png) no-repeat 0 50%;
}

/*
JSTREE
*/
/*========
Datepicker
========*/
.ui-datepicker {
  margin-top: 5px;
  font-size: 12px;
  background: #f6f6f6;
  border: 1px solid #aaa;
  border-radius: 3px;
}
.ui-datepicker:before {
  content: '';
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  top: -5px;
  left: 10px;
  background: url("plugins/create-point-common-1.192.24/images/icons/datepicker-tip.png") no-repeat 0 0;
}
.ui-datepicker .ui-datepicker-header {
  height: 40px;
  line-height: 40px;
  border-bottom: 1px solid #e6e6e6;
}
.ui-datepicker .ui-datepicker-prev {
  float: left;
}
.ui-datepicker .ui-datepicker-next {
  float: right;
}
.ui-datepicker .ui-datepicker-title {
  width: 140px;
  margin: 0 auto;
  text-align: center;
}
.ui-datepicker .ui-datepicker-calendar {
  margin: 10px;
}
.ui-datepicker .ui-datepicker-calendar th span {
  text-transform: uppercase;
}
.ui-datepicker .ui-datepicker-calendar th, .ui-datepicker .ui-datepicker-calendar td a {
  padding: 6px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-calendar a {
  display: block;
}
.ui-datepicker .ui-datepicker-calendar a.ui-state-hover {
  color: #fff;
  text-decoration: none;
  background: #aaa;
  border-radius: 3px;
}
.ui-datepicker .ui-datepicker-unselectable {
  padding: 6px;
  text-align: center;
  color: #e6e6e6;
}

.ui-icon {
  display: block;
  height: 40px;
  width: 40px;
  text-indent: -999em;
}
.ui-icon.ui-icon-circle-triangle-w {
  background: url("plugins/create-point-common-1.192.24/images/icons/datepicker-prev.png") no-repeat center center;
}
.ui-icon.ui-icon-circle-triangle-e {
  background: url("plugins/create-point-common-1.192.24/images/icons/datepicker-next.png") no-repeat center center;
}

/*
Portal Styles (from partial)
*/
.nli-links {
  margin: 0;
  overflow: hidden;
}
.nli-links li {
  float: left;
}
.nli-links a {
  display: block;
  height: 100%;
  padding: 0 20px;
  line-height: 60px;
}
.nli-links a:hover {
  text-decoration: underline;
}

.portal #pre-content.public {
  min-height: 200px;
  padding: 40px 0 20px;
  background: #7BA0FF;
  background-size: cover;
}
i.adas {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-adas.png") no-repeat 0 50%;
}
i.all, i.all-products {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-all-products.png") no-repeat 0 50%;
}
i.audio {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-audio.png") no-repeat 0 50%;
}
i.auto {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-automobile.png") no-repeat 0 50%;
}
i.camera {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-camera.png") no-repeat 0 50%;
}
i.compute {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-computing.png") no-repeat 0 50%;
}
i.connection {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-connection.png") no-repeat 0 50%;
}
i.consumerelectronics {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-consumerelectronics.png") no-repeat 0 50%;
}
i.document-imaging {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-document-imaging.png") no-repeat 0 50%;
}
i.generic {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-generic.png") no-repeat 0 50%;
}
i.infotainment {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-infotainment.png") no-repeat 0 50%;
}
i.iot {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-iot.png") no-repeat 0 50%;
}
i.mobile {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-mobile.png") no-repeat 0 50%;
}
i.network {
  background: url("resource:/plugins/create-point-common-1.192.24/css/images/productkit-icons/pulldown/icon-networking.png") no-repeat 0 50%;
}
i.robotics {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-robotics.png") no-repeat 0 50%;
}
i.smartcities {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-smartcities.png") no-repeat 0 50%;
}
i.telematics {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-telematics.png") no-repeat 0 50%;
}
i.video {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-video.png") no-repeat 0 50%;
}
i.wearables {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/pulldown/icon-wearables.png") no-repeat 0 50%;
}

.pk-icons .adas a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-adas-big.png") no-repeat 50% 5px;
}
.pk-icons .all a, .pk-icons .all-products a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-all-big.png") no-repeat 50% 5px;
}
.pk-icons .audio a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-audio-big.png") no-repeat 50% 5px;
}
.pk-icons .auto a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-auto-big.png") no-repeat 50% 5px;
}
.pk-icons .camera a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-camera-big.png") no-repeat 50% 5px;
}
.pk-icons .compute a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-compute-big.png") no-repeat 50% 5px;
}
.pk-icons .connection a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-connection-big.png") no-repeat 50% 5px;
}
.pk-icons .consumerelectronics a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-consumerelectronics-big.png") no-repeat 50% 5px;
}
.pk-icons .document-imaging a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-document-imaging-big.png") no-repeat 50% 5px;
}
.pk-icons .generic a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-generic-big.png") no-repeat 50% 5px;
}
.pk-icons .infotainment a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-infotainment-big.png") no-repeat 50% 5px;
}
.pk-icons .iot a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-iot-big.png") no-repeat 50% 5px;
}
.pk-icons .mobile a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-mobile-big.png") no-repeat 50% 5px;
}
.pk-icons .network a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-network-big.png") no-repeat 50% 5px;
}
.pk-icons .robotics a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-robotics-big.png") no-repeat 50% 5px;
}
.pk-icons .smartcities a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-smartcities-big.png") no-repeat 50% 5px;
}
.pk-icons .telematics a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-telematics-big.png") no-repeat 50% 5px;
}
.pk-icons .video a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-video-big.png") no-repeat 50% 5px;
}
.pk-icons .wearables a {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/large/icon-wearables-big.png") no-repeat 50% 5px;
}

.context-adas .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-adas-small.png") no-repeat 50% 50%;
}

.context-all .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-all-small.png") no-repeat 50% 50%;
}

.context-audio .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-audio-small.png") no-repeat 50% 50%;
}

.context-auto .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-auto-small.png") no-repeat 50% 50%;
}

.context-camera .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-camera-small.png") no-repeat 50% 50%;
}

.context-compute .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-compute-small.png") no-repeat 50% 50%;
}

.context-connection .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-connection-small.png") no-repeat 50% 50%;
}

.context-consumerelectronics .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-consumerelectronics-small.png") no-repeat 50% 50%;
}

.context-document-imaging .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-document-imaging-small.png") no-repeat 50% 50%;
}

.context-generic .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-generic-small.png") no-repeat 50% 50%;
}

.context-infotainment .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-infotainment-small.png") no-repeat 50% 50%;
}

.context-iot .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-iot-small.png") no-repeat 50% 50%;
}

.context-mobile .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-mobile-small.png") no-repeat 50% 50%;
}

.context-network .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-network-small.png") no-repeat 50% 50%;
}

.context-robotics .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-robotics-small.png") no-repeat 50% 50%;
}

.context-smartcities .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-smartcities-small.png") no-repeat 50% 50%;
}

.context-telematics .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-telematics-small.png") no-repeat 50% 50%;
}

.context-video .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-video-small.png") no-repeat 50% 50%;
}

.context-wearables .context-icon {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/context/icon-wearables-small.png") no-repeat 50% 50%;
}

.nli-links {
  margin: 0;
  overflow: hidden;
}
.nli-links li {
  float: left;
}
.nli-links a {
  display: block;
  height: 100%;
  padding: 0 20px;
  line-height: 60px;
}
.nli-links a:hover {
  text-decoration: underline;
}

.portal #pre-content.public {
  min-height: 200px;
  padding: 40px 0 20px;
  background: url(plugins/create-point-common-1.192.24/images/portal-public-header.png) no-repeat 50% 50%;
  background-size: cover;
}

.createpoint-welcome {
  text-align: center;
}
.createpoint-welcome h1 {
  float: none !important;
  max-width: 100%;
  font-size: 32px;
}
.createpoint-welcome p {
  margin-bottom: 0;
  clear: both;
  font-size: 16px;
}
.createpoint-welcome button {
  display: inline-block;
  height: 40px;
  padding: 0 35px 0 20px;
  line-height: 40px;
  font-size: 16px;
  background: #3253dc url(plugins/create-point-common-1.192.24/images/icons/icon-more.png) no-repeat;
  background-position: calc(100% - 20px) 50%;
  border-radius: 4px;
}
.createpoint-welcome button:hover {
  background: #3253dc url(plugins/create-point-common-1.192.24/images/icons/icon-more.png) no-repeat;
  background-position: calc(100% - 20px) 50%;
}
.createpoint-welcome button + button {
  margin-right: 0;
}

.cta-wrap {
  margin-top: 20px;
  text-align: right;
}

.cta {
  display: inline-block;
  height: 40px;
  margin-left: 10px;
  padding: 0 35px 0 20px;
  line-height: 40px;
  font-size: 18px;
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  color: #fff;
  background: rgba(255, 255, 255, 0.15) url(plugins/create-point-common-1.192.24/images/icons/icon-more.png) no-repeat;
  background-position: calc(100% - 20px) 50%;
  border-radius: 4px;
}
.cta:hover {
  text-decoration: none;
  color: #fff;
}
.cta h2 {
  margin: 0 0 5px;
  padding: 0;
  line-height: 1;
  font-size: 18px;
}
.cta p {
  margin: 0;
  font-size: 12px;
}
.cta + .cta {
  margin-top: 10px;
}

.portal #pre-content header.has-icon {
  padding: 10px 0 0 120px;
  background: url(plugins/create-point-common-1.192.24/images/home-icons/portal-title.png) no-repeat 0 42px;
  min-height: 100px;
}
.portal #pre-content header.has-icon h1, .portal #pre-content header.has-icon h2 {
  float: none;
}
.portal #pre-content header.has-icon h1 {
  margin: 25px 0 0 0;
}
.portal #pre-content header.has-icon h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.4;
}
.portal #pre-content header.has-icon .welcome-message {
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  font-size: 26px;
}

.portal-tabs {
  margin: -28px 0 0;
  padding: 28px 0 0;
  background: #e9eaea;
  width: 100%;
  border-bottom: 1px solid #c2c2c2;
}
.portal-tabs .nav-tabs li a {
  color: #424242;
  font-size: 15px;
  padding: 8px 16px;
  background: #c9d0d3;
  border-top: 1px solid #a9b2b6;
  border-left: 1px solid #a9b2b6;
  border-right: 1px solid #a9b2b6;
}
.portal-tabs .nav-tabs li a:hover {
  background: #fff;
  padding: 8px 16px 7px;
  border-bottom: 1px solid #c2c2c2;
}
.portal-tabs .nav-tabs li.active a {
  color: #424242;
  font-size: 15px;
  padding: 8px 16px;
  background: #fff;
}
.portal-tabs .nav-tabs li.active a:hover {
  background: #fff;
  padding: 8px 16px;
  border: 1px solid #a9b2b6;
  border-bottom: 0px;
}

.portal-lg {
  display: block;
  margin: 0;
  font-size: 38px;
}

.portal-subhead {
  font-size: 20px;
  font-weight: 400;
}

h1.portal {
  margin: 20px 0;
}

.portal #pre-content.big {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOGQ5NSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwNzU5NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #008d95), color-stop(100%, #007595));
  background-image: -moz-linear-gradient(#008d95, #007595);
  background-image: -webkit-linear-gradient(#008d95, #007595);
  background-image: linear-gradient(#008d95, #007595);
}
.portal #content {
  padding-top: 25px;
}
.portal #content h2 {
  font-size: 24px;
}
.portal .quick-link-featured {
  background: #f3f3f3;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.portal .quick-link-featured .quick-link-section {
  margin: 20px 0;
}
.portal .quick-link-featured .quick-link-icon {
  width: 54px;
  height: 54px;
  margin-top: 5px;
}
.portal #content .news-items time {
  font-size: 13px;
  color: #808080;
}
.portal #content .news-items p {
  font-size: 14px;
}
.portal #content .news-items h3 {
  font-size: 20px;
}
.portal .cp-sections.home {
  margin-left: 0;
}
.portal .cp-sections.home li {
  margin-bottom: 0;
  border: none;
}
.portal .quick-link-section {
  margin-bottom: 20px;
}
.portal .quick-link-section.home {
  padding: 0;
  background: #fff;
}
.portal .quick-link-section.home .quick-link-icon {
  width: 72px;
  height: 64px;
}
.portal .quick-link-section.home .quick-link-text {
  padding-left: 82px !important;
}
.portal .quick-link-section.home .quick-link-text h3 {
  font-size: 22px !important;
  font-weight: normal !important;
}
.portal .quick-link-icon {
  width: 64px;
  height: 64px;
  margin-top: 0px;
}
.portal #content .quick-link-text {
  margin: 0;
  padding-left: 74px;
}
.portal #content .quick-link-text h3 {
  padding-top: 0;
  font-size: 18px;
  font-weight: bold;
}
.portal #content .quick-link-text p {
  margin-bottom: 0;
}
.portal #content .quick-link-text .not-permitted {
  color: #808080;
}
.portal #content .quick-link-text p.not-permitted {
  margin-top: 5px;
}
.portal #content .quick-link-featured .quick-link-text {
  padding-left: 64px;
}
.portal table.table.documents .select-and-download {
  width: 50px;
}
.portal table.table.documents .fav {
  width: 60px;
}
.portal #content .cp-touts {
  list-style: none;
  margin: 0;
  padding: 0;
}
.portal #content .cp-touts li {
  padding: 20px;
  margin-bottom: 10px;
  background: #f3f3f3;
}
.portal #content .cp-touts h2 {
  margin: 0;
  font-size: 16px;
}
.portal #content .cp-touts h3, .portal #content .cp-touts p {
  margin: 0;
}
.portal th.delete, .portal td.delete {
  text-align: center;
  width: 90px;
}
.portal th.delete span, .portal td.delete span {
  padding: 0;
}
.portal th.download-link, .portal td.download-link {
  width: 120px;
  text-align: right;
}
.portal .download-count {
  float: right;
  font-size: 14px;
  font-weight: normal;
  color: #8a8f8f;
}
.portal .processing {
  color: #8a8f8f;
}
.portal .error {
  color: #b23937;
}

#content .portal-announcements {
  list-style: none;
  margin: 0;
}
#content .portal-announcements h3 {
  padding-top: 0;
  font-size: 18px;
}
#content .portal-announcements li {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #000;
}
#content .portal-announcements li:first-child, #content .portal-announcements li li {
  margin-top: 0;
  padding-top: 0;
  border: none;
}
#content .portal-announcements li li {
  padding-bottom: 10px;
}
#content .portal-announcements time {
  color: #8e8e8e;
}

.portal #content .quick-link-section.register {
  background: #f3f3f3;
  padding: 20px;
}

.portal #content .quick-link-section.register h3,
.portal #content .quick-link-section.home h3 {
  font-size: 18px;
}

.portal #content .quick-link-icon.register {
  width: 72px;
}

.portal #content .quick-link-text.register {
  padding-left: 82px;
}

#content .login-title {
  margin-top: 40px;
}

.portal-login {
  font-size: 13px;
}
.portal-login .validation-error {
  margin-bottom: 10px;
  font-size: 16px;
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  color: #ed2224;
}
.portal-login label {
  font-size: 13px;
}
.portal-login input {
  display: block;
  font-size: 11px;
}
.portal-login input[type=text], .portal-login input[type=password] {
  padding: 10px 5px;
  width: 100%;
  border: 1px solid #000;
  height: 34px;
}
.portal-login input[type=text] {
  margin-bottom: 20px;
}
.portal-login input[type=submit] {
  width: 155px;
  margin-top: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
}

.no-cssgradients .portal #pre-content.big {
  background: url(plugins/create-point-common-1.192.24/images/portal-header.png) repeat-x 50% 0;
}

#video-carousel {
  width: 450px;
  height: 124px;
  margin: 14px 46px 40px;
  float: right;
}
#video-carousel .video-thumb, #video-carousel .video-text {
  width: 220px;
  height: 124px;
  float: left;
}
#video-carousel .video-text {
  margin-left: 10px;
}
#video-carousel .video-text h4 {
  margin: 0 0 1em;
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 15px;
  font-weight: bold;
}
#video-carousel .video-text p {
  font-size: 13px;
  line-height: 1.2;
}
#video-carousel .video-thumb img {
  display: block;
  position: relative;
  z-index: 1;
}
#video-carousel .video-thumb .overlay {
  display: block;
  width: 220px;
  height: 124px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(plugins/create-point-common-1.192.24/images/rotor/play-icon.png) no-repeat 50% 50%;
}
#video-carousel .video-thumb .overlay:focus {
  outline: 0;
}
#video-carousel .carousel-indicators {
  position: absolute;
  top: auto;
  right: auto;
  bottom: -24px;
  left: -5px;
  margin: 0;
  list-style: none;
}
#video-carousel .carousel-control {
  width: 16px;
  height: 30px;
  margin: 0;
  top: 47px;
  background-color: transparent;
  border: none;
}
#video-carousel .carousel-control.left {
  left: -46px;
  background: url(plugins/create-point-common-1.192.24/images/rotor/rotor-prev.png) no-repeat 0 0;
}
#video-carousel .carousel-control.right {
  right: -46px;
  background: url(plugins/create-point-common-1.192.24/images/rotor/rotor-next.png) no-repeat 0 0;
}

#video-modal.portal {
  width: 570px;
  margin-left: -285px;
}
#video-modal.portal .modal-body {
  background: #fff;
}
#video-modal.portal video {
  width: 100%;
}

#pre-content header h1.home {
  float: none;
}

#pre-content header p {
  font-size: 16px;
  margin-bottom: 15px;
}

.portal-column-wrap {
  height: 100%;
  float: left;
}

.portal.tabs #content {
  margin: 0;
  padding: 0;
}
.portal.tabs #content > .container-fluid {
  padding: 0 !important;
}
.portal.tabs .breadcrumb {
  padding-top: 0;
}

.productkit-filter {
  padding-bottom: 15px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 10;
}
.productkit-filter h2 {
  font-size: 28px;
}
.productkit-filter p {
  font-size: 16px;
}

.selected-kit {
  display: block;
  float: left;
  margin-right: 5px;
  padding: 0 10px;
  background: #e7e7e7;
  height: 27px;
  line-height: 27px;
}
.selected-kit .context-label {
  padding-right: 0;
}

.remove-productkit-filter {
  display: none;
}

#pk-filter-modal.fade.in {
  top: 5%;
}
#pk-filter-modal .selected-kit-wrap {
  clear: both;
  padding-top: 10px;
}
#pk-filter-modal .selected-kit {
  background-color: #095778;
}

.portal-vertical-tabs {
  margin: 0;
  padding: 0;
}

.vertical-tabs-icons,
.vertical-tabs {
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  float: left;
  position: relative;
  z-index: 2;
}

.vertical-tabs-icons {
  background: #3c3c40;
  width: 120px;
}
.vertical-tabs-icons li {
  float: right;
  clear: both;
  margin: 1px 0 0 0;
  line-height: 1;
  border-left: 5px solid #707070;
  background: #000;
  cursor: pointer;
}
.vertical-tabs-icons li:first-child {
  margin-top: 0;
}
.vertical-tabs-icons li.active {
  background: #fff;
}
.vertical-tabs-icons li.active a {
  color: #000;
}
.vertical-tabs-icons a {
  display: block;
  width: 95px;
  padding: 48px 10px 15px;
  background: #000;
  font-size: 12px;
  color: #fff;
  text-align: center;
}

.vertical-tabs {
  background: #fff;
  width: 105px;
  margin-right: 20px;
}
.vertical-tabs li {
  margin-left: 4px;
  line-height: 1;
  border-bottom: 1px solid #e7e7e7;
}
.vertical-tabs li.active {
  background: #e7e7e7;
}
.vertical-tabs a {
  display: block;
  padding: 10px 10px 10px 5px;
  text-align: right;
  font-size: 12px;
}

.vertical-tab-content {
  height: 100%;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  padding-left: 245px;
  margin-left: -245px;
  background: #e7e7e7;
}

.filter-select-row {
  margin-bottom: 15px;
}
.filter-select-row label {
  font-weight: bold;
}
.filter-select-row .filter-wrap {
  display: inline-block;
  padding-right: 20px;
}

.table.product-kits-public .name {
  width: 90%;
}

.table.product-kits {
  width: 100%;
  background: #fff;
}
.table.product-kits i.disabled {
  display: block;
  width: 10px;
  height: 14px;
  position: absolute;
  top: 1px;
  left: 0;
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-kit-lock-default.png") no-repeat 50% 50%;
}
.table.product-kits i.disabled:hover {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-kit-lock-hover.png") no-repeat 50% 50%;
}
.table.product-kits th.name {
  width: 400px;
}
.table.product-kits .name div {
  padding-left: 20px;
  position: relative;
}
.table.product-kits input {
  margin-top: 0;
}
.table.product-kits td {
  vertical-align: middle;
}
.table.product-kits tbody tr:hover {
  cursor: pointer;
}
.table.product-kits td.center {
  text-align: left;
}
.table.product-kits .compare {
  width: 92px;
}
.table.product-kits .select {
  width: 25px;
  text-align: left;
}

th.compare,
td.compare {
  text-align: center !important;
}

.product-kit-selected {
  position: relative;
  background: #fcf8e3 !important;
  border: 1px solid #f1d5a9 !important;
}
.product-kit-selected td {
  position: relative;
}

.product-kit-applied {
  position: absolute;
  top: 0;
  width: 100%;
  background: white;
  text-align: center;
  color: #000;
  border: 1px solid #deb26e;
  box-shadow: 0 0 6px #e7bb67;
}

.video-link,
.first-time {
  float: left;
  margin-left: 10px;
}
.video-link button,
.first-time button {
  margin: 0;
  padding: 5px 40px 5px 15px;
  color: #fff;
  font-size: 16px;
  background: transparent url(plugins/create-point-common-1.192.24/images/icons/icon-help-video.png) no-repeat;
  background-position: calc(100% - 10px) 50%;
  border: 1px solid #fff;
}

.first-time {
  float: right !important;
}

.pk-modal {
  display: none;
  position: absolute;
  left: 20px;
  width: 774px;
  padding: 0px;
  background: #e9ecef;
  color: #000;
  z-index: 2000;
  box-shadow: 0 4px 3px 2.8px rgba(0, 0, 0, 0.2);
}
.pk-modal h3 {
  margin: 0;
  line-height: 1;
  font-size: 18px;
}
.pk-modal .hide-pk-modal {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background: url("plugins/create-point-common-1.192.24/images/icons/close-blue.png") no-repeat 50% 50%;
}
.pk-modal header {
  padding: 15px 15px 0;
  overflow: hidden;
}

.favorite-product-kits {
  border-top: 1px solid #c2c2c2;
  margin-top: 34px;
  padding: 10px 15px 15px;
  position: relative;
  background: #fff;
}
.favorite-product-kits .tab {
  position: absolute;
  top: -35px;
  left: 15px;
  line-height: 34px;
  padding: 0 15px;
  border-top: 1px solid #c2c2c2;
  border-left: 1px solid #c2c2c2;
  border-right: 1px solid #c2c2c2;
  background: #fff;
  font-weight: bold;
}
.favorite-product-kits ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.favorite-product-kits li {
  margin-top: 5px;
}
.favorite-product-kits li button {
  margin-right: 15px;
}

.pk-segment-links {
  list-style: none;
  width: 774px;
  margin: 0;
  padding: 15px;
  overflow: hidden;
}
.pk-segment-links li {
  float: left;
  width: 92px;
  height: 82px;
  background-color: #f6f8fa;
  border: 1px solid #dae2e5;
}
.pk-segment-links li a {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 73px;
  overflow: hidden;
  padding-top: 48px;
  font-size: 12px;
  color: #3253dc;
  text-align: center;
  line-height: 1;
}

.portal .modal-backdrop {
  z-index: 8999 !important;
}

#pk-filter-modal {
  width: 980px;
  height: 683px;
  margin-left: -490px;
}
#pk-filter-modal .rel {
  position: relative;
}
#pk-filter-modal .description {
  float: left;
  color: #fff;
}
#pk-filter-modal .description h2, #pk-filter-modal .description h3 {
  margin: 0;
  line-height: 1;
}
#pk-filter-modal .description h2 {
  font-size: 18px;
}
#pk-filter-modal .description h3 {
  font-size: 14px;
  font-weight: normal;
}
#pk-filter-modal .modal-body {
  padding: 0;
}
#pk-filter-modal .modal-body .container-fluid {
  padding: 0;
  height: 100%;
}
#pk-filter-modal .modal-body {
  max-height: 613px;
  height: 613px;
  overflow: auto;
}
#pk-filter-modal .dataTables_paginate {
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
}

.apply-filter {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  font-size: 14px;
}

.access-level {
  display: inline-block;
  width: 32px;
  height: 14px;
  margin-right: 10px;
  position: relative;
  top: 3px;
}
.access-level.prod {
  background: url("plugins/create-point-common-1.192.24/images/access-level/prod.png") no-repeat 0 50%;
}
.access-level.dev {
  background: url("plugins/create-point-common-1.192.24/images/access-level/dev.png") no-repeat 0 50%;
}
.access-level.mrkt {
  background: url("plugins/create-point-common-1.192.24/images/access-level/mrkt.png") no-repeat 0 50%;
}
.access-level.strt {
  background: url("plugins/create-point-common-1.192.24/images/access-level/strt.png") no-repeat 0 50%;
}

.pk-nav-tabs.nav-tabs > li {
  top: 0;
}
.pk-nav-tabs.nav-tabs > li.active > a {
  font-weight: bold;
}
.pk-nav-tabs.nav-tabs > li > a {
  padding: 4px 30px 5px;
  font-size: 14px;
}

.pk-main {
  width: 100%;
  margin-left: -264px;
  padding: 20px 20px 20px 284px;
  float: left;
  position: relative;
  z-index: 1;
}
.pk-main .dataTables_paginate {
  margin-bottom: 40px;
}

.public .pk-main {
  display: inline-block;
  margin-left: -250px;
  padding-top: 0;
  float: none;
}

.pk-sidebar {
  width: 264px;
  float: left;
  background: #e9ecef;
  position: relative;
  z-index: 2;
  border: 1px solid #d3d9de;
}
.pk-sidebar .filter {
  padding: 25px 40px 5px 10px;
}
.pk-sidebar .keyword-filter {
  padding-right: 40px;
}
.pk-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d3d9de;
}
.pk-sidebar a {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  color: #222;
}
.pk-sidebar a.active {
  background: #3253dc;
  color: #fff;
}
.pk-sidebar li {
  border-bottom: 1px solid #d3d9de;
  margin-right: 20px;
}

.pk-sidebar,
.pk-main {
  height: 100%;
}

.modal .pk-sidebar,
.modal .pk-main {
  margin-top: 0;
}

.pk-selector {
  width: 100%;
}
.pk-selector.select2-container .select2-choice {
  height: auto;
  line-height: auto;
}

.pk-selector-option {
  min-height: 30px;
  line-height: 1.4;
  padding: 8px 5px 5px 26px;
  position: relative;
}

.select2-container i,
.select2-drop i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 30px;
}

.portal .select2-drop {
  height: 300px;
}

.portal .select2-results {
  max-height: 290px;
}

.select2-drop {
  z-index: 20501 !important;
}

.select2-drop-mask {
  z-index: 20501 !important;
}

.modal.dark .modal-header {
  height: 68px;
  padding: 0 15px;
  background: #4a5b75;
  overflow: hidden;
  border: none;
}
.modal.dark .modal-header h2,
.modal.dark .modal-header h3 {
  margin: 0;
  color: #fff;
  line-height: 68px;
  font-size: 18px;
  float: left;
}
.modal.dark .modal-body {
  font-size: 14px;
}
.modal.dark .close,
.modal.dark .close-modal {
  float: right;
  width: 25px;
  height: 25px;
  margin-top: 20px;
  padding: 5px 0 0;
  background: url("plugins/create-point-common-1.192.24/images/icons/close.png") no-repeat 0 50%;
  text-indent: -999em;
}
.modal.dark .current-level {
  line-height: 68px;
  color: #fff;
  float: left;
}

#kit-upgrade .modal-body {
  max-height: 800px;
}
#kit-upgrade .required-actions {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #cfcfcf;
}
#kit-upgrade .required-actions h4 {
  color: #000;
}

.attribution-wrap {
  position: relative;
  padding-right: 40px;
}

.attribution-toggle {
  color: #fff;
  float: right;
  padding: 0 15px 8px;
  font-size: 11px;
  background: url("plugins/create-point-common-1.192.24/images/attribution-hover.png") no-repeat 100% 5px;
}

.attribution {
  display: none;
  position: absolute;
  top: 25px;
  right: 0;
  width: 405px;
  padding: 10px;
  border-radius: 6px;
  background: #3c3c40;
  z-index: 99;
}
.attribution h2 {
  font-size: 20px;
  margin-top: 0;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 3px solid #3253dc;
}
.attribution p {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 0;
}
.attribution .tip {
  width: 25px;
  height: 12px;
  position: absolute;
  top: -12px;
  right: 32px;
  background: url("plugins/create-point-common-1.192.24/images/attribution-tip.png") no-repeat 0 0;
}

.pk-comparison {
  display: none;
  width: 340px;
  position: absolute;
  top: 10px;
  right: 20px;
}
.pk-comparison header {
  color: #fff;
  background: #8a8f8f;
  overflow: hidden;
  line-height: 27px;
  padding-left: 10px;
}
.pk-comparison button {
  float: right;
  padding-top: 0;
  padding-bottom: 0;
}
.pk-comparison ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pk-comparison li {
  padding: 0 10px;
  overflow: hidden;
  line-height: 27px;
  background: #f6f6f6;
  border-top: 1px solid #fff;
}
.pk-comparison li a.remove-pk {
  float: right;
}

@keyframes added {
  0%, 75% {
    background: #eafce3;
  }
  100% {
    background: transparent;
  }
}
.no-requests {
  clear: both;
  margin-top: 50px;
}

.table.product-kits#my-requests {
  margin-top: 15px;
}
.table.product-kits#my-requests tr.expanded {
  background: #000;
  color: #fff;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.table.product-kits#my-requests tr.expanded:hover {
  background: #000 !important;
}
.table.product-kits#my-requests tr.expanded a {
  color: #fff;
}
.table.product-kits#my-requests tr.added td {
  animation-duration: 5s;
  animation-name: added;
}
.table.product-kits#my-requests tr.expanded + .pk-details {
  display: table-row;
}
.table.product-kits#my-requests .pk-details {
  display: none;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
.table.product-kits#my-requests .pk-details:hover {
  background: #fff !important;
}
.table.product-kits#my-requests .pk-details td {
  padding: 15px 60px;
}
.table.product-kits#my-requests .pk-detail-hide {
  float: right;
}

.pk-form header {
  overflow: hidden;
  clear: both;
  margin-bottom: 20px;
  border-bottom: 2px solid #000;
}
.pk-form h3 {
  font-size: 20px;
}
.pk-form h4 {
  margin-top: 0;
  font-size: 14px;
  color: #838383;
}
.pk-form input[type=text] {
  height: 30px;
  width: 100%;
  line-height: 30px;
  border: 1px solid #cfcfcf;
}
.pk-form fieldset {
  margin-bottom: 20px;
  padding: 20px 20px 0;
  border: 1px solid #cfcfcf;
}
.pk-form .control-label {
  width: 200px;
  text-align: left;
}
.pk-form .controls {
  margin-left: 220px;
  width: calc(100% - 220px);
}
.pk-form .message {
  font-weight: bold;
}

.status-blocks {
  float: right;
  margin-top: 9px;
  margin-bottom: -19px;
  border-top: 1px solid #8a8f8f;
}
.status-blocks .block {
  position: relative;
  top: -10px;
  display: inline-block;
  width: 25px;
  height: 19px;
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-upgrade-blank.png") no-repeat 0 0;
}
.status-blocks .block.complete {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-upgrade-complete.png") no-repeat 0 0;
}
.status-blocks .block.complete-current {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-upgrade-complete-current.png") no-repeat 0 0;
}
.status-blocks .block.in-progress {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-upgrade-in-progress.png") no-repeat 0 0;
}
.status-blocks .block.declined {
  background: url("plugins/create-point-common-1.192.24/images/productkit-icons/icon-upgrade-declined.png") no-repeat 0 0;
}

/*
Kit Level Table
*/
th.kit-level,
td.kit-level {
  width: 375px;
  min-width: 375px;
}

.kit-level .upgrade-link {
  width: 72px;
  height: 14px;
  margin-right: 10px;
  float: left;
}
.kit-level .upgrade-link a {
  display: block;
  height: 14px;
  line-height: 14px;
  padding-right: 20px;
  background: url("plugins/create-point-common-1.192.24/images/kit-level/icon-upgrade-disabled.png") no-repeat 100% 50%;
  pointer-events: none;
}
.kit-level .upgrade-link a.upgrade-available {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/icon-upgrade-available.png") no-repeat 100% 50%;
  pointer-events: auto;
}
.kit-level .upgrade-link a.upgrade-pending {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/icon-upgrade-disabled.png") no-repeat 100% 50%;
  pointer-events: none;
}
.kit-level .upgrade-link a.register {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-kit-lock-default.png") no-repeat 100% 50%;
  pointer-events: none;
}
.kit-level .status {
  float: left;
  min-width: 60px;
}
.kit-level .status .eval,
.kit-level .status .prod {
  height: 14px;
  margin-left: 10px;
  padding-left: 15px;
  padding-right: 3px;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  border: 1px solid #ddd;
}
.kit-level .status .eval {
  background: #fff url("plugins/create-point-common-1.192.24/images/kit-level/processing.png") no-repeat 3px 50%;
}
.kit-level .status .prod {
  background: #fff url("plugins/create-point-common-1.192.24/images/kit-level/check.png") no-repeat 3px 50%;
}
.kit-level .chevrons {
  position: relative;
  overflow: hidden;
  float: left;
  min-width: 132px;
}
.kit-level .chevron {
  height: 14px;
  float: left;
  position: relative;
  left: -3px;
  color: #000;
  z-index: 2;
}
.kit-level .chevron:first-child {
  left: 0;
  z-index: 3;
}
.kit-level .chevron:last-child {
  left: -6px;
  z-index: 1;
}
.kit-level .chevron .tail,
.kit-level .chevron .content,
.kit-level .chevron .head {
  float: left;
}
.kit-level .chevron .tail {
  width: 4px;
  height: 14px;
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-na-back.png") no-repeat 0 0;
}
.kit-level .chevron .content {
  width: 36px;
  height: 14px;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
  background: #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.kit-level .chevron .head {
  width: 4px;
  height: 14px;
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-na-front.png") no-repeat 0 0;
}
.kit-level .chevron.available .tail {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-available-back.png") no-repeat 0 0;
}
.kit-level .chevron.available .content {
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.kit-level .chevron.available .head {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-available-front.png") no-repeat 0 0;
}
.kit-level .chevron.processing .tail {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-processing-back.png") no-repeat 0 0;
}
.kit-level .chevron.processing .content {
  background: #ffb700;
  border-top: 1px solid #ffb700;
  border-bottom: 1px solid #ffb700;
}
.kit-level .chevron.processing .head {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-processing-front.png") no-repeat 0 0;
}
.kit-level .chevron.current .tail {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-current-back.png") no-repeat 0 0;
}
.kit-level .chevron.current .content {
  background: #5cb952;
  border-top: 1px solid #5cb952;
  border-bottom: 1px solid #5cb952;
}
.kit-level .chevron.current .head {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-current-front.png") no-repeat 0 0;
}
.kit-level .chevron.upgraded .tail {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-upgraded-back.png") no-repeat 0 0;
}
.kit-level .chevron.upgraded .content {
  background: #badfbf;
  border-top: 1px solid #badfbf;
  border-bottom: 1px solid #badfbf;
}
.kit-level .chevron.upgraded .head {
  background: url("plugins/create-point-common-1.192.24/images/kit-level/pk-upgraded-front.png") no-repeat 0 0;
}

/*
Login Page
*/
/*========
Login Page
========*/
#pre-content.hero {
  padding: 80px 0 180px;
  background-image: linear-gradient(to bottom, #008b93 0%, #003b67 100%);
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwOGI5MyIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwM2I2NyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #008b93), color-stop(100%, #003b67));
  background: -moz-linear-gradient(top, #008b93, #003b67);
  background: -webkit-linear-gradient(top, #008b93, #003b67);
  background: linear-gradient(to bottom, #008b93, #003b67);
}
#pre-content.hero h1 {
  font-size: 36px;
}

.no-cssgradients #pre-content.hero {
  background: #003b67 url(plugins/create-point-common-1.192.24/images/login-bg.png) repeat-x 0 0;
}

.breadcrumb {
  margin: 0;
  padding: 10px 0 0;
  font-size: 11px;
  color: #929BA7;
  background: transparent none;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  min-height: 30px;
}
.breadcrumb a, .breadcrumb .active {
  color: #929BA7;
}
.breadcrumb > li {
  background: url(plugins/create-point-common-1.192.24/images/icons/breadcrumb-divider.png) no-repeat 2px 50%;
  text-shadow: none;
  padding-left: 10px;
}
.breadcrumb > li:first-child {
  background: transparent none;
  padding-left: 0;
}

.hero-text {
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 6px solid #fff;
  border-bottom: 3px solid #fff;
  font-size: 13px;
}

.hero-links {
  margin: 0;
  list-style: none;
  font-size: 13px;
}
.hero-links a {
  color: #fff;
  text-decoration: underline;
}

#login,
#register {
  padding: 20px 0;
  background: #fff;
  color: #424242;
}
#login h2,
#register h2 {
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  font-weight: normal;
  margin: 0 0 20px;
  line-height: 1;
}
#login label,
#register label {
  margin: 0;
  display: block;
  font-size: 11px;
  font-weight: bold;
}
#login input,
#register input {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
#login input[type="submit"],
#register input[type="submit"] {
  margin: 0;
  padding: 0;
  font-size: 13px;
  line-height: 33px;
  height: 33px;
}
#login ul,
#register ul {
  margin: 0;
  list-style: none;
  font-size: 11px;
}

#content small {
  color: #888;
}

form#register {
  border: 1px solid #e9e9e9;
}
form#register h3 {
  padding-top: 0px !important;
}
form#register select {
  width: 100%;
}
form#register label {
  margin: 20px 0 10px;
  color: #c5c5c5;
  font-weight: normal;
  font-size: 14px;
}
form#register input[type="radio"] {
  position: relative;
  top: 4px;
  width: auto;
  margin-right: 5px;
}
form#register .contract-question {
  margin-top: 20px;
}
form#register .contract label {
  margin: 0 30px 0 0;
  color: #000;
}
form#register .btn, form#register #apply-cr-lookup {
  width: 150px;
  margin-top: 20px;
}
form#register .validation-error {
  margin-top: 10px;
  font-size: 14px;
  font-family: "Qualcomm", "Helvetica", "Arial", sans-serif;
  font-weight: 600;
  color: #ed2224;
}
form#register .span6 {
  padding-right: 10px;
}
form#register .span6 + .span6 {
  padding-left: 10px;
  padding-right: 0;
}
form#register .selection {
  position: relative;
}
form#register .selection .span6:first-child:after {
  display: block;
  position: absolute;
  top: 5px;
  right: calc(50% - 10px);
  content: 'OR';
  color: #c5c5c5;
}
form#register .radio-group .help-block {
  clear: both;
}

#main-content.registration-confirmation {
  background: #fff url(plugins/create-point-common-1.192.24/images/registration-bg.png) no-repeat top right;
}

#registration-modal .modal-header {
  position: relative;
  height: 40px;
  padding: 0;
  line-height: 40px;
}
#registration-modal .modal-header h2 {
  margin: 0 10px;
  float: left;
  color: #fff;
  font-size: 14px;
}
#registration-modal .close-modal {
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  text-indent: -999em;
  background: transparent url(plugins/create-point-common-1.192.24/images/icons/close.png) no-repeat center center;
}
#registration-modal .modal-body {
  text-align: center;
}

.custom-select {
  width: 100%;
  height: 30px;
}
.custom-select.select2-container {
  margin-bottom: 15px;
}
.custom-select.select2-container .select2-choice {
  height: 30px;
  line-height: 30px;
  background-image: none;
}
.custom-select.select2-container .select2-choice abbr {
  background: transparent none !important;
}
.custom-select.select2-container .select2-choice .select2-arrow {
  width: 30px;
  background: #3253dc url(plugins/create-point-common-1.192.24/images/icons/select-down.png) no-repeat center center;
}
.custom-select.select2-container .select2-choice .select2-arrow b {
  background: transparent none !important;
}
.custom-select.select2-dropdown-open .select2-choice {
  background-color: #fff;
}
.custom-select.select2-dropdown-open .select2-choice .select2-arrow {
  background: #fff url(plugins/create-point-common-1.192.24/images/icons/select-up.png) no-repeat center center;
}

.error .custom-select .select2-choice {
  border: 1px solid #f00;
}

/*
Impersonation (From QC)
*/
#impersonation-banner {
  width: calc( 100% + 40px );
  height: 40px;
  padding-top: 8px;
  background-color: red;
  margin-left: -20px;
  padding-right: 20px;
  border-bottom: solid darkred 2px;
}

#impersonation-banner .impersonating {
  color: white;
  font-size: 18px;
  font-weight: bold;
  float: left;
}

#impersonation-banner .impersonated-user {
  color: white;
  font-size: 16px;
  float: left;
  margin-left: 10px;
  padding-top: 2px;
}

/*Help*/
.help pre {
  margin-bottom: 15px;
}
.help code {
  text-align: left;
  display: inline-block;
  background: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.help pre code {
  display: block;
  padding: 10px 15px;
}
.help .back-to-topics {
  display: block;
  padding: 0 20px 15px;
  margin-bottom: 20px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
}
.help .help-topic-list {
  margin-left: 0;
  list-style: none;
  font-size: 13px;
  border: 1px solid #ccc;
}
.help .help-topic-list li:first-child {
  border: none;
}
.help .help-topic-list li {
  padding: 5px 15px;
  border-top: 1px solid #cbcdc8;
}
.help .help-topic-list li:nth-child(even) {
  background: #f6f6f6;
}
.help .help-topic-list span {
  float: right;
  color: #c9c9c9;
}

.filter-help-topics {
  margin-left: 20px;
  margin-right: 10px;
  padding: 10px;
  background: #768196;
}
.filter-help-topics h3 {
  margin-top: 0;
  color: #fff;
}
.filter-help-topics input {
  border: none;
  width: 100%;
  margin: 0;
}

/*
Support
*/
.support-message {
  margin: 10px 0 20px;
  padding: 10px;
  font-size: 12px;
  border: 1px solid #ebeced;
}
.support-message h4 {
  margin: 0;
  font-size: 14px;
}
.support-message p:last-child {
  margin: 0;
}

#content .support-links-block {
  padding: 0 20px;
  border: 1px solid #d2d4d0;
}
#content .support-links-block .link {
  padding: 20px 0;
  border-top: 1px solid #d2d4d0;
}
#content .support-links-block .link:first-child {
  border-top: 0;
}
#content .support-links-block .link h3 {
  margin: 0 0 5px;
  padding: 0;
}
#content .support-links-block .link p {
  font-size: 13px;
}
#content .support-links-block .link .btn, #content .support-links-block .link #apply-cr-lookup {
  font-size: 13px;
}

.case-type {
  background: #eee;
  padding-bottom: 20px;
}

.case-type-selector.select2-container {
  display: block;
}

table.cases td {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}

table .case-title {
  padding-left: 30px;
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-support-cases-small.png) no-repeat 10px 50%;
}

.case-title {
  padding-left: 30px;
  line-height: 1.2 !important;
  text-transform: uppercase;
  background: url(plugins/create-point-common-1.192.24/images/icons/icon-support-cases-large.png) no-repeat 0px 50%;
}

.case-details {
  list-style: none;
  margin-left: 0;
}


.case-pane {
  margin-bottom: 30px;
  padding: 20px;
  border: 1px solid #d2d4d0;
}
.case-pane .comment {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
}
.case-pane .comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.comments.collapsed .comment-container {
  display: none;
}
.comments.collapsed .toggle-comments {
  background: #eee url(plugins/create-point-common-1.192.24/images/icons/icon-comments-maximize.png) no-repeat 10px 50%;
}

.comment-container {
  padding: 10px;
  border: 1px solid #d2d4d0;
}

.back-to-cases {
  border-bottom: 1px solid #d2d4d0;
  margin-bottom: 20px;
}
.back-to-cases a {
  font-weight: bold;
}

.toggle-comments {
  display: block;
  padding: 10px 10px 10px 30px;
  background: #eee url(plugins/create-point-common-1.192.24/images/icons/icon-comments-minimize.png) no-repeat 10px 50%;
  border: 1px solid #d2d4d0;
}

/*
Table of Contents
*/
.table-of-contents #content h2 {
  font-size: 24px;
  float: left;
}
.table-of-contents #content table td {
  font-size: 16px;
}
.table-of-contents #content table h3 {
  color: #666;
  font-size: 18px;
}
.table-of-contents #content table ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.table-of-contents #content table ul li {
  line-height: 1.6;
}
.table-of-contents #content .spec {
  width: 30%;
}
.table-of-contents .kit-info {
  margin-bottom: 30px;
  clear: both;
}
.table-of-contents .kit-info .upgrade {
  border-left: 1px solid #000;
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 20px;
  background: url("plugins/create-point-common-1.192.24/images/icons/upgrade.png") no-repeat 100% 50%;
}
.table-of-contents .buttons {
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #eee;
}

.toc-header .favorite {
  float: left;
  margin: 0 8px 0 0;
}
.toc-header .favorite a {
  display: block;
  width: 20px;
  height: 20px;
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-star-off.png") no-repeat 50% 50%;
}
.toc-header .favorite a.favorited {
  background: url("plugins/create-point-common-1.192.24/images/icons/icon-star-on.png") no-repeat 50% 50%;
}

/*
Filebox
*/
.filebox i.apply-watermark, .filebox i.allow-editing, .filebox i.allow-copy-paste, .filebox i.file-visibility {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
}
.filebox i.hidden {
  visibility: hidden;
}
.filebox i.apply-watermark {
  background: url(plugins/create-point-common-1.192.24/images/filebox/watermark.png) no-repeat 50% 50%;
}
.filebox i.allow-editing {
  background: url(plugins/create-point-common-1.192.24/images/filebox/edit.png) no-repeat 50% 50%;
}
.filebox i.allow-copy-paste {
  background: url(plugins/create-point-common-1.192.24/images/filebox/copy-paste.png) no-repeat 50% 50%;
}
.filebox i.file-visibility {
  width: 100%;
  background: url(plugins/create-point-common-1.192.24/images/filebox/file-visibility.png) no-repeat 50% 50%;
}
.filebox td.pdf-attributes {
  min-width: 100px;
}
.filebox td.pdf-attributes i {
  width: 30%;
}
.filebox .filebox-legend {
  float: right;
  color: #808080;
}
.filebox .filebox-legend i {
  position: relative;
  top: 1px;
  margin: 0 0 0 15px;
  width: 13px;
  height: 13px;
  background-size: 13px 13px;
}
.filebox .filebox-legend i:first-of-type {
  margin-left: 0;
}
.filebox .filebox-legend label {
  font-size: 13px;
}
.filebox .filebox-legend label > span {
  font-weight: bold;
  color: #000;
}
.filebox .qualcomm-logo {
  width: 65px;
  height: 15px;
  background: url(plugins/create-point-common-1.192.24/images/filebox/logo-qualcomm.png) no-repeat 50% 50%;
}
.filebox .file {
  display: block;
  height: 16px;
  line-height: 16px;
  padding-left: 25px;
  background: url(plugins/create-point-common-1.192.24/images/filebox/file.png) no-repeat 0% 50%;
}
.filebox .visibility {
  text-align: center;
}

.file-dropzone {
  padding: 10px;
  border: 1px dashed #3253dc;
  text-align: center;
}

#uploading .modal-body {
  text-align: center;
}

.filebox-modal {
  width: 90%;
  margin: 0 5%;
  left: 0;
}
.filebox-modal .modal-body {
  max-height: 80vh;
  padding: 25px 90px 50px 60px;
}
.filebox-modal .modal-body .row-fluid {
  margin-bottom: 16px;
}
.filebox-modal h3 {
  margin-top: 0;
}
.filebox-modal .invalid {
  color: #f00;
}

.review-files label {
  line-height: 30px;
}
.review-files .span3 > label {
  text-align: right;
  font-weight: bold;
}
.review-files .filename {
  font-weight: bold;
  color: #737878;
  line-height: 30px;
}
.review-files .required {
  font-size: 12px;
  line-height: 30px;
}
.review-files .checkbox {
  margin-right: 25px;
}
.review-files .checkbox input[type="checkbox"] {
  margin-top: 10px;
}
.review-files textarea {
  width: 100%;
}
.review-files select {
  margin-bottom: 0;
}
.review-files .modal-actions {
  border-top: 1px solid #d8d8d8;
  padding-top: 15px;
}
.review-files .file-page {
  padding: 0 10px;
  font-size: 12px;
}
.review-files .apply-watermark {
  padding-right: 21px;
  background: url(plugins/create-point-common-1.192.24/images/filebox/watermark.png) no-repeat 100% 50%;
}
.review-files .allow-editing {
  padding-right: 21px;
  background: url(plugins/create-point-common-1.192.24/images/filebox/edit.png) no-repeat 100% 50%;
}
.review-files .allow-copy-paste {
  padding-right: 21px;
  background: url(plugins/create-point-common-1.192.24/images/filebox/copy-paste.png) no-repeat 100% 50%;
}
.review-files .accept-terms {
  border: 1px solid #eee;
}
.review-files .accept-terms .row-fluid {
  margin: 0;
}
.review-files .accept-terms .span3 {
  text-align: center;
}
.review-files .accept-terms .span3 button {
  margin-top: 40px;
}
.review-files .upload-successful {
  padding-top: 20px;
  border: 1px solid #eee;
}
.review-files .file-queue {
  border: none;
  margin-bottom: 0;
}
.review-files .file-queue tr {
  border: 0;
}
.review-files .file-queue th {
  padding: 4px 8px;
  background: #8a8f8f;
  text-transform: uppercase;
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.review-files .file-queue th:first-child {
  border-left: 0 !important;
}
.review-files .file-queue th:last-child {
  border-right: 0 !important;
}
.review-files .file-queue td {
  font-size: 12px;
  padding: 4px 8px;
  line-height: 1;
  vertical-align: middle;
  color: #808080;
}
.review-files .file-queue .description {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-files .file-queue .attributes,
.review-files .file-queue .remove {
  text-align: center;
}
.review-files .file-queue .upload-status {
  text-align: right;
}
.review-files .file-queue .upload-status .pending {
  font-style: italic;
}
.review-files .file-queue .upload-status .complete {
  font-weight: bold;
}

.filebox-controls {
  padding: 20px 0 10px;
  overflow: hidden;
  font-size: 12px;
}
.filebox-controls a {
  margin-left: 24px;
  line-height: 24px;
}

.table.deleted-files {
  display: none;
}
.table.deleted-files th {
  background: #000;
  border: 1px solid #fff;
}

.btn.btn-primary.inverted, .btn-primary.inverted#apply-cr-lookup {
  background: #fff;
  color: #3253dc;
  border: 1px solid #3253dc;
}
.btn.btn-large.disabled, .btn-large.disabled#apply-cr-lookup {
  padding: 11px 19px;
}
.btn.filebox-download-selected, .filebox-download-selected#apply-cr-lookup, .btn.filebox-recover-selected, .filebox-recover-selected#apply-cr-lookup, .btn.filebox-delete-selected, .filebox-delete-selected#apply-cr-lookup {
  padding-left: 25px;
  background-color: #3253dc;
  color: #fff;
}
.btn.filebox-download-selected.disabled, .filebox-download-selected.disabled#apply-cr-lookup, .btn.filebox-recover-selected.disabled, .filebox-recover-selected.disabled#apply-cr-lookup, .btn.filebox-delete-selected.disabled, .filebox-delete-selected.disabled#apply-cr-lookup {
  color: #808080;
  background-color: #fff;
  border: solid 1px #808080;
}
.btn.filebox-download-selected, .filebox-download-selected#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/download-white.png);
  background-repeat: no-repeat;
  background-position: 8px 50%;
}
.btn.filebox-download-selected.disabled, .filebox-download-selected.disabled#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/download-grey.png);
}
.btn.filebox-download-selected.disabled:hover, .filebox-download-selected.disabled#apply-cr-lookup:hover {
  background-position: 8px 50%;
  background-repeat: no-repeat;
  background-color: #fff;
}
.btn.filebox-recover-selected, .filebox-recover-selected#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/recover-white.png);
  background-repeat: no-repeat;
  background-position: 8px 50%;
}
.btn.filebox-recover-selected.disabled, .filebox-recover-selected.disabled#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/recover.png);
}
.btn.filebox-recover-selected.disabled:hover, .filebox-recover-selected.disabled#apply-cr-lookup:hover {
  background-position: 8px 50%;
  background-repeat: no-repeat;
  background-color: #fff;
}
.btn.filebox-delete-selected, .filebox-delete-selected#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/delete-white.png);
  background-repeat: no-repeat;
  background-position: 8px 50%;
}
.btn.filebox-delete-selected.disabled, .filebox-delete-selected.disabled#apply-cr-lookup {
  background-image: url(plugins/create-point-common-1.192.24/images/filebox/delete.png);
}
.btn.filebox-delete-selected.disabled:hover, .filebox-delete-selected.disabled#apply-cr-lookup:hover {
  background-position: 8px 50%;
  background-repeat: no-repeat;
  background-color: #fff;
}

.filebox-group-selector {
  background: #768196;
  margin: 0 10px;
  padding: 0 10px;
  overflow: hidden;
  color: #fff;
}
.filebox-group-selector .select-wrap {
  margin-bottom: 10px;
}
.filebox-group-selector .select2-container {
  width: 100%;
  font-size: 12px;
}

/*
Hardware Purchase
*/
h3.inline {
  display: inline-block;
}

.purchase-link {
  width: 100px;
}
.purchase-link a {
  float: right;
}
.change-org-link{
  margin-left: 11px;
  color: #3253DC !important;
  font-size: 12px !important;
  letter-spacing: 0.5px;
  line-height: 14px;
}
.change-org-info{
  margin-top: -2px;
  margin-left: 7px;
}
/* application-specific styles */
.marginless {
    margin: 0 !important;
}

.display-inline {
    display: inline;
}

.text-underline {
    text-decoration: underline;
}

/*==========================*/
/* Welcome Page Section     */
/* =========================*/
#welcome-list .section-header {
    font-size: 12pt;
    font-weight: bold;
    text-decoration: underline;
}
#welcome-list .text-large {
    font-size: 12pt;
}
#welcome-list .text-large-bold {
    font-size: 12pt;
    font-weight: bold;
}
#welcome-list .text-small {
    font-size: 10pt;
}
#welcome-list .text-small-bold {
    font-size: 10pt;
    font-weight: bold;
}
#welcome-list .table-style {
    width: 665.6pt;
    border-collapse: collapse;
    border: 0;
    cellspacing: 0;
    cellpadding :0;
    width: 887pt;
}
#welcome-list .tr-height {
    height:29.2pt;
}
#welcome-list .th-one-style {
    width: 154.0pt;
    border: solid white 1.0pt;
    border-bottom: solid white 3.0pt;
    background: #70CFEE;
    padding: .05in .1in .05in .1in;
    height: 29.2pt;
    width: 205pt;
    vertical-align: top;
}
#welcome-list .th-two-style {
    width: 511.6pt;
    border-top: solid white 1.0pt;
    border-left: none;
    border-bottom: solid white 3.0pt;
    border-right: solid white 1.0pt;
    background: #70CFEE;
    padding: .05in .1in .05in .1in;
    height: 29.2pt;
    width: 682pt;
    vertical-align: top;
}
#welcome-list .td-one-even-style {
    width: 154.0pt;
    border: solid white 1.0pt;
    border-top: none;
    background: #C6D9F1;
    padding: .05in .1in .05in .1in;
    height: 29.2pt;
    width: 205pt;
    vertical-align: top;
}
#welcome-list .td-two-even-style {
    width: 511.6pt;
    border-top: none;
    border-left: none;
    border-bottom: solid white 1.0pt;
    border-right: solid white 1.0pt;
    background: #C6D9F1;
    padding: .05in .1in .05in .1in;
    height: 29.2pt;
    width: 682pt;
    vertical-align: top;
}
#welcome-list .td-one-odd-style {
    width: 154.0pt;
    border: solid white 1.0pt;
    border-top: none;
    background: #EEECE1;
    padding: .05in .1in .05in .1in;
    height: 29.2pt;
    width: 205pt;
    vertical-align: top;
}
#welcome-list .td-two-odd-style {
    width: 511.6pt;
    border-top: none;
    border-left: none;
    border-bottom: solid white 1.0pt;
    border-right: solid white 1.0pt;
    background: #EEECE1;
    padding: .05in .1in .05in .1in;
    height: 29.2pt;
    width: 682pt;
    vertical-align: top;
}

table.table-overflow.table td.medium-plus, table.table-overflow.table th.medium-plus {
    width: 220px;
}

table.table th.extra-small, table.table td.extra-small {
    width: 30px;
}

/*override margin for dragging column*/
ul.dragtable-sortable table {
    margin-bottom: 0;
}

/*override styles for select2 box on ChipCenter Release History select page /chipcenter/#search/releaseHistory */

.product-solution-ui .select2-container {
    width:100%;
    margin-bottom:5px;
}

/*Overrides and additions for styles from LiveAxle*/

.result i {
    width: 24px; /*was cutting off knowledgebase icon*/
}
.result.knowledgebase i {
    background: url(plugins/create-point-common-1.192.24/images/icons/icon-knowledgebase.png) no-repeat 0 50%;
}
.result.release i {
    background: url(plugins/create-point-common-1.192.24/images/icons/icon-release.png) no-repeat 0 50%;
}
.result.server-package i {
    background: url(plugins/create-point-common-1.192.24/images/icons/icon-server-package.png) no-repeat 0 50%;
}
.result.zip i {
    background: url(plugins/create-point-common-1.192.24/images/icons/icon-zip.png) no-repeat 0 50%;
}

/* temporary addition */
i.type.tools {
    background: url(plugins/create-point-common-1.192.24/images/document-table/type-tools.png) no-repeat 0 50%;
}


/* Filter component additions */

#sidebar .reset-all {
    font-size: 12px;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 10px;
    display: block;
}


#navbar .placeholder {
    color:#AAAAAA;
    margin:0;
    padding:0;
    padding-left:20px;
}

/* Spacing for list items from main content */
.tooltip-inner ul {
    padding-left:20px;
}

.tooltip-inner {
    text-align:left;
}

/* Removing Transparent background for Tool Tip */
.tooltip.in {
    opacity: 1;
}

/* Max width for Tooltip content size */
div.tooltip-inner {
    max-width: 350px;
}

.download.text-color {
    color: #3253dc;
}

.full-width {
    width: 100%;
}

.email-sub-toggle {
    display: block;
    width: 30px;
    height: 32px;
    text-indent: -9999px;
    background: url(plugins/create-point-common-1.192.24/images/icons/emailsprite.png) no-repeat 0 0;
}
.email-sub-toggle:hover {
    background-position: -30px 0;
}
.email-sub-toggle.subscribed {
    background-position: -60px 0;
}
.email-sub-toggle.subscribed:hover {
    background-position: -90px 0;
}

.susbcribe-all {
    float: left;
}
.unsusbcribe-all {
    float: left;
}

/**** FIX for IE8 ****/
.nav-flyout ul a.hover {
    text-decoration: underline;
    background: #515151;
}

/**** INTERNATIONALIZABLE NEW TITLE ICON **********/

.new-title {
    border:solid 1px orangered;
    border-radius: 9px;
    padding: 2px 5px 2px;
    color: orangered;
    font-size: 9px;
}

.dcnLink {
    white-space:nowrap;
}

/**** Change to modal title ****/
.modal.custom .title span {
    padding-left: 5px;
    margin-left: 5px;
    float: left;
    color: #fff;
    line-height: 26px;
    text-transform: uppercase;
    font-weight: normal;
}

/***** Restore search rule removed from style.css in changeset 142911.  ***********/

.result .context.less span:nth-child(n+5) {
    display: none;
}

/*** Temporary fix. LiveAxle needs to change this in their drop. */

h1 {
    max-width: none;
}

.quick-link-icon.generaldocs {
    background: url(plugins/create-point-common-1.192.24/images/home-icons/general_docs_icon.png) no-repeat 0 0;
}

#site-footer small {
    display: block;
    padding: 0 0 10px;
    font-size: 11px;
}

/************** IMPERSONATION BANNER *********************/
#impersonation-banner {
    width: calc( 100% + 40px );
    height: 40px;
    padding-top: 8px;
    background-color: red;
    margin-left: -20px;
    padding-right: 20px;
    border-bottom: solid darkred 2px;
}

#impersonation-banner .impersonating {
    color: white;
    font-size: 18px;
    font-weight: bold;
    float:left;
}

#impersonation-banner .impersonated-user {
    color:white;
    font-size:16px;
    float:left;
    margin-left:10px;
    padding-top:2px;
}

.selected-facet-list {
    white-space:normal;
}

#distribute-email-list {
    height: 100px;
    width: 260px;
}

a.vote-up span.vote-count, a.vote-down span.vote-count {
    float: none;
    line-height: inherit;
}

#pdf-viewer-iframe {
    width: 100%;
    height: 1040px;
}

#redistributeSelectedDocuments {
    margin-left: 10px;
    padding: 5px 15px 5px 15px;
    background-image: none;
}

#dataPackage {
    margin-left: auto;
    width: 60%;
    line-height:10;
}

.num-per-page {
    float: right;
    margin-top: -40px;
}

.download-title-grid {
    float: right;
    margin-left: 7px;
}

/*****************************GENERAL PURPOSE STYLES***********************************/
.verySmall {
    font-size: 8px;
}

.bottomPadding50 {
    padding: 0 0 50px;
}

#helpki {
    border-left: 1px solid #2f2f31;
    float: left;
    position: relative;
}

.helpki {
    display: block;
    line-height: 60px;
    padding: 0 20px;
    background: url(plugins/create-point-common-1.192.24/images/icons/icon-help-8x14-transparent-bg.png) no-repeat center center;
    border-left: 1px solid #4f4f52;
}
.helpki:hover, .helpki.active {
    background-color: #2a2a2d;
}

.helpki, .close-helpki {
    display: block;
    text-indent: -9999px;
    float: right;
}

.noLineHeight {
    line-height: inherit;
}


.pk-form fieldset {
    padding-top: 10px;
}

.pk-form .control-group {
    margin-bottom: 5px;
}
.markHighlight  em  {
    background: #f2f035;
}

#agreement{
    height:200px;
    overflow:auto;
    overflow-y: auto;
    width: 640px;
}
.table.product-kits .kit-level{
    width: 300px;
}
.context .remove-productkit-filter:hover {
    background-color: grey;
}
.context .remove-productkit-filter {
    background-color: grey;
}

.search-modal-sidebar, .context-modal-sidebar, #sidebar {
    width: 230px;
    height: 100%;
    min-height: 400px;
    position: relative;
    margin-right: -230px;
    float: left;
    padding-top: 15px;
    border-right: 1px solid #ebeced;
}

.fullscreenme, .closemodal, .download {
    display: inline-block;
    background: #3253dc;
    padding: 5px 10px;
    font-size: 12px;
}

#sidebar .product-solution-selector {
    *zoom: 1;
    background-color: #768196;
    margin-left: 10px;
    padding: 10px;
    margin-bottom: 5px;
    color: #fff;
}

.table-of-contents .buttons button {
    width: 250px;
    height: 75px;
    font-size: 20px;
    background: #fff;
    color: #3253dc;
    border: 1px solid #3253dc;
}
.table-of-contents .buttons button:hover {
    background: #3253dc;
    color: #fff;
}

a.buy,
a.buy:hover {
    display: inline-block;
    margin-left: 12px;
    padding-right: 30px;
    background-image: url("plugins/create-point-common-1.192.24/images/icons/external-link-white.png");
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) 50%;
}

.portal #pre-content.public {
    min-height: 200px;
    padding: 40px 0 20px;
    background: url(plugins/create-point-common-1.192.24/images/portal-public-header.png) no-repeat 50% 50%;
    background-size: cover;
}

.pk-sidebar {
    width: 230px;
    float: left;
    background: #768196;
    position: relative;
    z-index: 2;
}
.pk-sidebar .filter {
    padding: 15px 20px;
}
.pk-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #677283;
}
.pk-sidebar a {
    display: block;
    padding: 8px 30px;
    font-size: 12px;
    color: #fff;
}
.pk-sidebar a.active {
    background: #fff;
    color: #000;
}

.pk-sidebar li {
    border-bottom: 1px solid #677283;
    margin-right: 0px;
}

.pk-sidebar,
.pk-main {
    margin-top: 10px;
    height: 100%;
}

.modal .pk-sidebar,
.modal .pk-main {
    margin-top: 0;
}

.pk-selector {
    width: 100%;
}
.pk-selector.select2-container .select2-choice {
    height: auto;
    line-height: auto;
}

.pk-selector-option {
    min-height: 30px;
    line-height: 1.4;
    padding: 8px 5px 5px 26px;
    position: relative;
}

.createpoint-sections {
    position: relative;
    font-family: "Helvetica", "Arial", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.navbar .btn {
    margin-top: 0px;
    color: #fff;
    background: #3253dc;
    border: none;
}

.close-advanced-search {
    position: absolute;
    top: 5px;
    right: 10px;
    float: right;
    width: 13px;
    height: 13px;
    margin-top: 8px;
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: 0;
}

.advanced-search h3 {
    font-size: 12px;
    line-height: 1;
}

.tt-header {
    margin: 0;
    padding: 8px 4px;
    font-size: 16px;
    line-height: 1;
    border-top: 1px solid #a6a6a6;
}

.tt-suggestion {
    padding: 8px 4px;
    color: #3253dc;
    font-size: 12px;
    line-height: 12px;
    border-top: 1px solid #E9ECEF;
    cursor: pointer;
    font-family: Helvetica, Arial, sans-serif;
}

button.btn.btn-clear-context, button.btn-clear-context#apply-cr-lookup {
    height: 18px;
    padding-right: 24px;
    color: #fff;
    font-size: 11px;
    font-family: "Qualcomm Next", "Helvetica", "Arial", sans-serif;
    font-weight: 400;
    line-height: 2px;
    border-color: #fff;
    background-image: url(plugins/create-point-common-1.192.24/images/2.0/icons/icon-clear-filter-white.png);
    background-position: calc(100% - 5px) 50%;
    background-repeat: no-repeat;
}

#document-navigator{
    height: 1380px;
}

#search-filter-tabs{
    height: 1400px;
}

.navigator-unfiltered-align {
    padding: 0 10px 0px 10px;
}

#document-navigator h3 {
    padding-left: 10px;
}

i.document-imaging {
    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/printer_dropdown.png") no-repeat 0 50% !important;
}

.pk-icons .document-imaging a {
    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/printer_flyout.png") no-repeat 50% 5px !important;
}
.context-document-imaging .context-icon {
    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/printer_context.png") no-repeat 50% 50% !important;
}
.broadcast-message{
    padding:10px;
    text-align:center;
    background:#555;
    color:#BBB
}
i.fa-bullhorn {
    background: url("plugins/create-point-common-1.192.24/images/icons/bullhorn.png") no-repeat;
}
.banner-icon {
    display: inline-block;
    padding: 0 20px;
    background: url(plugins/create-point-common-1.192.24/images/icons/bullhorn.png) no-repeat center center;
    min-height: 20px;
    vertical-align: middle;
}
/*.context .remove-productkit-filter {*/
/*    position: relative;*/
/*    top: 2px;*/
/*    display: inline-block;*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    margin-right: 10px;*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/icon-reset-filter.png") no-repeat 0 0;*/
/*}*/
/*.context .remove-productkit-filter:hover {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/flyout/icon-reset-filter-hover.png") no-repeat 0 0;*/
/*}*/

/*.fullscreenme, .closemodal, .download {*/
/*    display: inline-block;*/
/*    background-color: #3253dc;*/
/*    padding: 5px 10px;*/
/*    font-size: 12px;*/
/*    background: #3253dc*/
/*}*/


/*i.all-products {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/all-categories.png") no-repeat 0 50%;*/
/*}*/

/*i.compute {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/computing.png") no-repeat 0 50%;*/
/*}*/
/*i.connection {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/connectivity.png") no-repeat 0 50%;*/
/*}*/
/*i.consumerelectronics {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/consumer-electronics.png") no-repeat 0 50%;*/
/*}*/
/*i.network {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/networking.png") no-repeat 0 50%;*/
/*}*/

/*i.audio {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/voice-and-music.png") no-repeat 0 50%;*/
/*}*/
/*i.smartcities {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/smart-cities.png") no-repeat 0 50%;*/
/*}*/
/*i.auto {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/automobile.png") no-repeat 0 50%;*/
/*}*/
/*i.iot {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/dropdown/iot.png") no-repeat 0 50%;*/
/*}*/


/*.context-audio .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/audio-small.png") no-repeat 50% 50%;*/
/*}*/

/*.context-auto .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/auto-small.png") no-repeat 50% 50%;*/
/*}*/


/*.context-compute .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/computing.png") no-repeat 50% 50%;*/
/*}*/

/*.context-connection .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/connectivity.png") no-repeat 50% 50%;*/
/*}*/

/*.context-consumerelectronics .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/consumer-electronics.png") no-repeat 50% 50%;*/
/*}*/

/*.context-iot .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/iot-small.png") no-repeat 50% 50%;*/
/*}*/

/*.context-network .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/networking.png") no-repeat 50% 50%;*/
/*}*/

/*.context-smartcities .context-icon {*/
/*    background: url("plugins/create-point-common-1.192.24/images/2.0/productkit/context/smart-cities.png") no-repeat 50% 50%;*/
/*}*/


#s2id_cr-lookup-input {
    position: relative;
    display: block;
    width: 60%;
    float: left;
}

.broadcast-message{
    padding:10px;
    text-align:center;
    background:#555;
    color:#BBB
}
i.fa-bullhorn {
    background: url("plugins/create-point-common-1.192.24/images/icons/bullhorn.png") no-repeat;
}
.banner-icon {
    display: inline-block;
    padding: 0 10px;
    background: url(plugins/create-point-common-1.192.24/images/icons/bullhorn.png) no-repeat center center;
    min-height: 20px;
    vertical-align: middle;
}

#pkAnnouncementMessage p a{
    background: none!important;
    border: none;
    padding: 0!important;
    /*optional*/
    font-family: arial, sans-serif;
    /*input has OS specific font-family*/
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

#pkAnnouncementText h4{
    color: black;
}

#pkAnnouncementMessage .modal-header{
    display:none;
}

.productkit-migrated-kits ul, .productkit-migrated-kits li{
    list-style:none;
    color:black;
}

#pkAnnouncementText{
    text-align:left;
}
#pkAnnouncementMessage .icon-warning-sign{
    padding-left:20px;
}
.name.icon-warning-sign{
    vertical-align : 1px;
}
#pkAnnouncementMessage i.warning-icon-grey {
    display: block;
    width: 15px;
    height: 14px;
    position: absolute;
    padding-right: 264px;
    background: url("plugins/create-point-common-1.192.24/images/icons/warning-icon-grey.png") no-repeat 50% 50%;
}
.table.product-kits i.warning-icon-blue {
    display: block;
    width: 15px;
    height: 14px;
    position: absolute;
    top: 1px;
    left: -2px;
    background: url("plugins/create-point-common-1.192.24/images/icons/warning-icon-blue.png") no-repeat 50% 50%;
}
#pkAnnouncementMessage p{
    color:white;
}
#announcementBanner p{
    color:white;
}
#announcementBanner{
    display:inline-flex;
}

#qlaAnnouncementMessage p a{
    background: none!important;
    border: none;
    padding: 0!important;
    /*optional*/
    font-family: arial, sans-serif;
    /*input has OS specific font-family*/
    color: white;
    text-decoration: underline;
    cursor: pointer;
}
#qlaAnnouncementMessage .modal-header{
    display:none;
}
#qlaAnnouncementMessage .icon-warning-sign{
    padding-left:20px;
}
#qlaAnnouncementMessage i.warning-icon-grey {
    display: block;
    width: 15px;
    height: 14px;
    position: absolute;
    padding-right: 264px;
    background: url("resource:/plugins/create-point-common-1.192.24/css/images/icons/warning-icon-grey.png") no-repeat 50% 50%;
}
#qlaAnnouncementMessage p{
    color:white;
}

.header-search-wrapper #filter-tooltip {
    margin-top: 10px;
    float: left;
}

.popover.helpinfoglobalnavtooltip {
    min-width: 350px;
    z-index: 20500;
    box-shadow: none;
    border: 1px solid #f5d6a6;
    background-color: #fcf8e3;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}
.popover.helpinfoChangeOrgtooltip {
    width: 263px;
    z-index: 20500;
    border-radius: 4px;
    color: #677284;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 15px;
    margin-right: 40px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 16px 0 rgba(74,90,117,0.06), 0 2px 4px 0 rgba(74,90,117,0.16);
}

