@charset "UTF-8";

/*
 * (C) Copyright 2014-2017 Redwood Technology B.V., Houten, The Netherlands
 *
 * $Id$
 *
 * This is the actual CSS file that is used for the context help
 *
 */


/* Preferred font 'Open Sans' supplied by Google's CDN */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600);

* {
  /* Default box sizing: Include padding&border within element size
     Note: We use border-box, not supported in strict mode using IE6+IE7+(IE8+intranet) */
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}


/* FROM GENERATED SCSS DO NOT CHANGE */
/* UIButton (Default plain grey gradient button with red hover text & gradient)
   NOTE: UIFieldChooser-Button - Currently adds a glyph we might move glyph support to here.
   =========================================================================================================== */
/* STATUS: done */
.UIButton, button, input[type="button"], input[type="submit"] {
  background: linear-gradient(to bottom, #FFFFFF, #F0F0F0);
  transition: 0.2s ease;
  color: #333333;
  padding: 1px 6px;
  height: 21px;
  /* This is done so that normal buttons that appear the same height as editors */
  border: 1px solid #D1D1D1;
  overflow: hidden;
  cursor: pointer; }
  .UIButton.NoLeftBorder, button.NoLeftBorder, input[type="button"].NoLeftBorder, input[type="submit"].NoLeftBorder {
    border-left: 0px solid #D1D1D1; }
  .UIButton.Disabled, button.Disabled, input[type="button"].Disabled, input[type="submit"].Disabled {
    color: #9D9D9D;
    background: #F2F2F2;
    text-decoration: none;
    cursor: default; }
  .UIButton.UIButton LeftMargin, button.UIButton LeftMargin, input[type="button"].UIButton LeftMargin, input[type="submit"].UIButton LeftMargin {
    margin-left: 7px; }

.UIButton:Hover, button:Hover, input[type="button"]:Hover, input[type="submit"]:Hover {
  background: linear-gradient(to top, #FFFFFF, #D9D9D9);
  transition: 0.2s ease;
  color: #FF0000; }
  .UIButton:Hover.Disabled, button:Hover.Disabled, input[type="button"]:Hover.Disabled, input[type="submit"]:Hover.Disabled {
    color: #9D9D9D;
    background: #F2F2F2;
    text-decoration: none;
    cursor: default; }

.UIButton:Active, button:Active, input[type="button"]:Active, input[type="submit"]:Active {
  background: linear-gradient(to top, #F0F0F0, #ECECEC);
  transition: 0.2s ease;
  color: #cc0000; }
  .UIButton:Active.Disabled, button:Active.Disabled, input[type="button"]:Active.Disabled, input[type="submit"]:Active.Disabled {
    color: #9D9D9D;
    background: #F2F2F2;
    text-decoration: none;
    cursor: default; }

/* UISplitter (The splitter that is can placed between two panels)
   =========================================================================================================== */
/* STATUS: done */
div.UISplitter {
  background-color: transparent;
  /* Selectors */ }
  div.UISplitter.UISplitter-Drag {
    background-color: #EFE3BF;
    /* Exception: not from palette */
    z-index: 999; }
  div.UISplitter.UISplitter-Horizontal {
    cursor: e-resize;
    width: 7px; }
  div.UISplitter.UISplitter-Vertical {
    cursor: n-resize;
    height: 7px; }
  div.UISplitter span.UISplitter-HorizontalHandleDown {
    cursor: pointer; }
  div.UISplitter span.UISplitter-HorizontalHandleUp {
    cursor: pointer; }
  div.UISplitter span.UISplitter-VerticalHandleLeft {
    cursor: pointer; }
  div.UISplitter span.UISplitter-VerticalHandleRight {
    cursor: pointer; }

/* STATUS: unthemed */
iframe.UIDraggingLayer, div.UIDraggingLayer {
  opacity: 0;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 900; }

/* STATUS: unthemed */
div.UIDraggingLayer {
  /* We explicitly set a background color, or else in IE the splitter appears stuck behind elements, we do make it 100% transparent */
  background: white;
  z-index: 901; }
/* FROM GENERATED SCSS DO NOT CHANGE */

body
{
  font-family:
    'Open Sans',           /* Preferred font (either 'Google CDN' or 'locally installed')  */
    'Segoe UI',            /* Windows 7 & 8, Vista or Office2007 */
    'Avenir',              /* MacOS best alternative to "Segoe" (available from 'Mountain Lion') TODO does not match "Segoe normal" it is to fat */
    'Helvetica Neue',      /* MacOS second best alternative FF compatible family name  */
    Helvetica,             /* Any "Helvetica" family */
    'Microsoft YaHei New', /* Asian specific fall-backs */
    'Microsoft Yahei', '微软雅黑', '宋体', 'SimSun', 'STXihei', 'STHeiti', '华文细黑',
    Arial,
    sans-serif             /* Any other sans-serif */
  ;
  font-size: 9pt;
  font-weight: 400;
  color: #333333;
}

.leftContainer
{
  border: 7px solid transparent;
  border-right: none;
}

.rightContainer
{
  border: 7px solid transparent;
  border-left: none;
}


body#root
{
  background: linear-gradient(to bottom, #DEE4D7, #F8EED0, #DDC9A2, #AB9FA0); background-attachment: fixed;
}

iframe
{
  border: none;
  border: 1px solid #B5B5B5;
}

iframe#toc
{
  height: 100%;
  width: 100%;
}

iframe#topic
{
  height: 100%;
  width: 100%;
}

input, select, textarea, button, table
{
  font-family:inherit;
  font-size: inherit;
  font-weight: inherit;
}

body {
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: auto;
}

html.topic {
overflow-y: scroll;
}

topImage {
  vertical-align: middle;
}

.topBar {
  border-collapse: collapse;
  color: #676767;
  vertical-align: middle;
  background: linear-gradient(to bottom, #FFFFFF, #ECECEC);
  padding-top: 8px;
  padding-left: 1%;
  padding-bottom: 7px;
  margin: 0;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #B5B5B5;
}

.topBarToc {
  border-collapse: collapse;
  color: #676767;
  vertical-align: middle;
  background: linear-gradient(to bottom, #FFFFFF, #ECECEC);
  padding-top: 8px;
  padding-bottom: 7px;
  margin: 0;
  width: 100%;
  border: none;
  border-bottom: 1px solid #B5B5B5;
  overflow : hidden;
}
.topTitle {
  word-wrap: break-word;
}
.topTitle:first-child {
  font-size: 11pt;
}

.topBar .topTitle:first-child {
  float: left;
}

.content{
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}

p {
  padding-right: 15px;
  padding-left: 5px;
}

p.format {
  font-family: "Courier New", Courier, Monospace;
  margin-top: 0em;
  margin-bottom: 0em;
}

h1 {
  font-size: 13pt;
  color: #676767;
}

h2 {
  font-size: 11pt;
  color: #676767;
}

h2.related {
  font-size: 11pt;
  color: #800080;
  background: transparent;
}

h3 {
  font-size: 10pt;
  margin-left: 10px;
}

table {
  margin-top: 10px;
  margin-bottom: 0em;
  border-collapse:collapse;
}

tr {
  vertical-align: top;
  text-align: left;
}
tr.firstrow {
  font-weight : bold;
  background: linear-gradient(to bottom, #FFFFFF, #ECECEC);
  color: #676767;
}

tr.firstrow b { font-weight: 400; }


td {
  padding-top:3px;
  padding-bottom:3px;
  padding-left:5px;
  padding-right:5px;
  border: 1px solid #B5B5B5;
  vertical-align: top;
  margin-left: 1em;
  margin-right: 1em;
  text-align: inherit;
}

a:link {
  color: #3C97D3;
  background: transparent;
}

a:active {
  color: #3C97D3;
  background: transparent;
}

a:visited {
  color: #3C97D3;
  background: transparent;
}

a:hover {
  color: #FF0000;
  background: transparent;
}

a.disabledTopTitle {
  color: #888;
}

a.disabledTopTitle:link {
  color: #888;
  background: transparent;
}
a.disabledTopTitle:visited {
  color: #888;
  background: transparent;
}
a.disabledTopTitle:active {
  color:#888;
  background: transparent;
}

pre {
  font-family: Courier, Monospace;
  margin-top: 0em;
  margin-bottom: 0em;
}

code {
  font-family: "Courier New", Courier, Monospace;
  margin-top: 0em;
  margin-bottom: 0em;
}


/* Admonition styles */

.frame {
  margin: 5px 20px 5px 20px;
}

.frame .content {
  margin: 0px;
}

.note {
  border: solid 1px #7099C5;
  background-color: #c0c0ff;
}

.note .label {
  background-color: #7099C5;
  color: #ffffff;
}

.important {
  border: solid 1px #7099C5;
  background-color: #c0c0ff;
}

.important .label {
  background-color: #7099C5;
  color: #ffffff;
}

.warning {
  border: solid 1px #D00000;
  background-color: #ffc0c0;
}

.warning .label {
  background-color: #D00000;
  color: #ffffff;
}

.caution {
  border: solid 1px #D00000;
  background-color: #ffc0c0;
}

.caution .label {
  background-color: #D00000;
  color: #ffffff;
}

.tip {
  border: solid 1px #98d000;
  background-color: #ffffc0;
}

.tip .label {
  background-color: #98d000;
  color: #000000;
}

.literal {
  font-family: "Courier New", Courier, Monospace;
}

.term {
  font-weight: bold;
}
/* Tree elements */
span.toctree_sign {
    background-repeat : no-repeat;
    padding-left : 15px;
    width : 15px;
    background-position : center center;
}
div.instructions {
    padding-right:15px;
    background-color: #D0D0D0;
}
div.toctree_no-sign {
    padding-left : 15px;
}
div.toctree_node-container {
    padding-left : 15px;
}
a.toctree_node {
    text-decoration : none;
}
a.toctree_node:active {
    color : #FFFFFF !important;
    background-color : #36495E !important;
}
a.toctree_node:focus {
    color : #FFFFFF !important;
    background-color : #36495E !important;
} /* Modifiers */
div.toctree_invisible {
    display : none;
}
span.toctree_sign-expanded {
    background-image : url('images/redbook/minus.png');
}
span.toctree_sign-collapsed {
    background-image : url('images/redbook/plus.png');
}
.ieHack {
padding-left : 10px;
/* 4ie*/
//padding-left : 0px;
}
.searchDiv {
    padding-left : 10px;
    text-decoration : none;
}
.searchDiv input {
  height: 21px;
  padding: 0px;
}

.top-pdf-image {
    padding-left : 10px;
    width : 370px;
    color: #676767 !important;
    text-align : left;
    font-size : 10pt;
    text-decoration : none;
    overflow : visible;
    display : inline;
}
a.top-pdf {
    padding-right : 10px;
    color: #676767;
    text-decoration : none;
    float : right;
}
keywords {
  padding-left : 10px;
  font-size : 8pt;
}
div.skipNav {
    display: none;
}
.subNav {
    color: #676767;
    vertical-align: middle;
    background: linear-gradient(to bottom, #FFFFFF, #ECECEC);
    border-bottom:1px solid #9eadc0;
    float:left;
    width:100%;
    overflow:hidden;
}
.subNav div {
    clear:left;
    float:left;
    padding:0 0 5px 6px;
}
ul.navList, ul.subNavList {
    float:left;
    margin:0 25px 0 0;
    padding:0;
}
ul.navList li {
    list-style:none;
    float:left;
    padding:3px 6px;
}
ul.subNavList li {
    list-style:none;
    float:left;
    font-size:90%;
}
.topNav {
   background-color : #f2f2f2;
}

/*
Heading styles
*/
div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {
    background-color:#dee3e9;
    border-top:1px solid #9eadc0;
    border-bottom:1px solid #9eadc0;
    margin:0 0 6px -8px;
    padding:2px 5px;
}
ul.blockList ul.blockList ul.blockList li.blockList h3 {
    background-color:#dee3e9;
    border-top:1px solid #9eadc0;
    border-bottom:1px solid #9eadc0;
    margin:0 0 6px -8px;
    padding:2px 5px;
}
ul.blockList ul.blockList li.blockList h3 {
    padding:0;
    margin:15px 0;
}
ul.blockList li.blockList h2 {
    padding:0px 0 20px 0;
}
/*
Page layout container styles
*/
.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {
    clear : both;
    padding : 10px 20px;
    position : relative;
}
.indexContainer {
    margin : 10px;
    position : relative;
    font-size : 1.0em;
}
.indexContainer h2 {
    font-size : 1.1em;
    padding : 0 0 3px 0;
}
.indexContainer ul {
    margin : 0;
    padding : 0;
}
.indexContainer ul li {
    list-style : none;
}
.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {
    font-size : 1.1em;
    font-weight : bold;
    margin : 10px 0 0 0;
    color : #4E4E4E;
}
.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {
    margin : 10px 0 10px 20px;
}
.serializedFormContainer dl.nameValue dt {
    margin-left : 1px;
    font-size : 1.1em;
    display : inline;
    font-weight : bold;
}
.serializedFormContainer dl.nameValue dd {
    margin : 0 0 0 1px;
    font-size : 1.1em;
    display : inline;
}
/*
List styles
*/
ul.horizontal li {
    display : inline;
    font-size : 0.9em;
}
ul.inheritance {
    margin : 0;
    padding : 0;
}
ul.inheritance li {
    display : inline;
    list-style : none;
}
ul.inheritance li ul.inheritance {
    margin-left : 15px;
    padding-left : 15px;
    padding-top : 1px;
}
ul.blockList, ul.blockListLast {
    margin : 10px 0 10px 0;
    padding : 0;
}
ul.blockList li.blockList, ul.blockListLast li.blockList {
    list-style : none;
    margin-bottom : 25px;
}
ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {
    padding : 0px 20px 5px 10px;
    border : 1px solid #9eadc0;
    background-color : #f9f9f9;
}
ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {
    padding : 0 0 5px 8px;
    background-color : #ffffff;
    border : 1px solid #9eadc0;
    border-top : none;
}
ul.blockList ul.blockList ul.blockList ul.blockList li.blockList {
    margin-left : 0;
    padding-left : 0;
    padding-bottom : 15px;
    border : none;
    border-bottom : 1px solid #9eadc0;
}
ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {
    list-style : none;
    border-bottom : none;
    padding-bottom : 0;
}
table tr td dl, table tr td dl dt, table tr td dl dd {
    margin-top : 0;
    margin-bottom : 1px;
}
/*
Table styles
*/
.contentContainer table, .classUseContainer table, .constantValuesContainer table {
    border-bottom : 1px solid #9eadc0;
    width : 100%;
}
.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table {
    width : 100%;
}
.contentContainer .description table, .contentContainer .details table {
    border-bottom : none;
}
.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{
    vertical-align : top;
    padding-right : 20px;
}
.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast,
.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast,
.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne,
.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne {
    padding-right : 3px;
}
.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption {
    text-align : left;
    background-repeat : no-repeat;
    font-weight : bold;
    clear : none;
    overflow : hidden;
    padding : 0px;
    margin : 0px;
}
.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {
    white-space : nowrap;
    display : block;
    float : left;
    height : 18px;
}
.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {
    width : 10px;
    background-repeat : no-repeat;
    background-position : top right;
    position : relative;
    float:left;
}
ul.blockList ul.blockList li.blockList table {
    margin : 0 0 12px 0px;
    width : 100%;
}
.tableSubHeadingColor {
    background-color : #f2f2f2;
}
.altColor {
    background-color : #ffffff;
}
.rowColor {
    background-color : #f2f2f2;
}
.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td {
    text-align:left;
    padding:3px 3px 3px 7px;
}
th.colFirst, th.colLast, th.colOne, .constantValuesContainer th {
    background : #dee3e9;
    border-top : 1px solid #9eadc0;
    border-bottom : 1px solid #9eadc0;
    text-align : left;
    padding : 3px 3px 3px 7px;
}
td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {
    font-weight : bold;
}
td.colFirst, th.colFirst {
    border-left : 1px solid #9eadc0;
    white-space : nowrap;
}
td.colLast, th.colLast {
    border-right : 1px solid #9eadc0;
}
td.colOne, th.colOne {
    border-right : 1px solid #9eadc0;
    border-left : 1px solid #9eadc0;
}
table.overviewSummary  {
    padding : 0px;
    margin-left : 0px;
}
table.overviewSummary td.colFirst, table.overviewSummary th.colFirst,
table.overviewSummary td.colOne, table.overviewSummary th.colOne {
    width : 25%;
    vertical-align : middle;
}
table.packageSummary td.colFirst, table.overviewSummary th.colFirst {
    width : 25%;
    vertical-align : middle;
}
/*
Styles for SEARCH dropdown
*/
.ui-widget {
  font-family: Verdana,Arial,sans-serif;
  font-size: 1.1em;
}
.ui-widget.ui-widget-content {
  border: 1px solid #d3d3d3;
}
.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff;
  color: #222222;
}
.ui-widget-content a {
  color: #222222;
}
.ui-state-active,
.ui-widget-content .ui-state-active {
  border: 1px solid #aaaaaa !important;
  background: #dadada !important;
  font-weight: normal !important;
  color: #212121 !important;
}
