
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjNDAzYzNmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2U9IiMxZTI5MmQiPjwvcGF0aD4KPC9zdmc+");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjOWU5ZTllIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiM4ODgiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3goQDSYgDiGofgAAAslJREFUOMvtlM9LFGEYx7/vvOPM6ywuuyPFihWFBUsdNnA6KLIh+QPx4KWExULdHQ/9A9EfUodYmATDYg/iRewQzklFWxcEBcGgEplDkDtI6sw4PzrIbrOuedBb9MALD7zv+3m+z4/3Bf7bZS2bzQIAcrmcMDExcTeXy10DAFVVAQDksgFUVZ1ljD3yfd+0LOuFpmnvVVW9GHhkZAQcxwkNDQ2FSCQyRMgJxnVdy7KstKZpn7nwha6urqqfTqfPBAJAuVymlNLXoigOhfd5nmeiKL5TVTV+lmIKwAOA7u5u6Lped2BsbOwjY6yf4zgQQkAIAcedaPR9H67r3uYBQFEUFItFtLe332lpaVkUBOHK3t5eRtf1DwAwODiIubk5DA8PM8bYW1EU+wEgCIJqsCAIQAiB7/u253k2BQDDMJBKpa4mEon5eDx+UxAESJL0uK2t7XosFlvSdf0QAEmlUnlRFJ9Waho2Qghc1/U9z3uWz+eX+Wr+lL6SZfleEAQIggA8z6OpqSknimIvYyybSCReMsZ6TislhCAIAti2Dc/zejVNWwCAavN8339j27YbTg0AGGM3WltbP4WhlRWq6Q/btrs1TVsYHx+vNgqKoqBUKn2NRqPFxsbGJzzP05puUlpt0ukyOI6z7zjOwNTU1OLo6CgmJyf/gA3DgKIoWF1d/cIY24/FYgOU0pp0z/Ityzo8Pj5OTk9PbwHA+vp6zWghDC+VSiuRSOQgGo32UErJ38CO42wdHR09LBQK3zKZDDY2NupmFmF4R0cHVlZWlmRZ/iVJUn9FeWWcCCE4ODjYtG27Z2Zm5juAOmgdGAB2d3cBADs7O8uSJN2SZfl+WKlpmpumaT6Yn58vn/fs6XmbhmHMNjc3tzDGFI7jYJrm5vb29sDa2trPC/9aiqJUy5pOp4f6+vqeJ5PJBAB0dnZe/t8NBajx/z37Df5OGX8d13xzAAAAAElFTkSuQmCC);
  }
}
/* Fancy CSS END */



.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url("fonts/font_0000_be25f781506d.woff")format("woff");}.ff1{font-family:ff1;line-height:1.163086;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url("fonts/font_0001_c88eb0675d9e.woff")format("woff");}.ff2{font-family:ff2;line-height:1.049805;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.137300px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:25.667400px;}
.ls3{letter-spacing:29.474400px;}
.ls1{letter-spacing:31.709026px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws47{word-spacing:-12.000000px;}
.ws24{word-spacing:-4.905441px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:1.219010px;}
.ws25{word-spacing:2.698846px;}
.wsa{word-spacing:6.017400px;}
.ws44{word-spacing:6.984600px;}
.wse{word-spacing:7.326000px;}
.ws5{word-spacing:7.895716px;}
.wsb{word-spacing:8.004600px;}
.ws12{word-spacing:8.192485px;}
.ws2f{word-spacing:8.239104px;}
.ws6{word-spacing:8.325863px;}
.ws4{word-spacing:9.201339px;}
.ws3{word-spacing:9.269146px;}
.ws10{word-spacing:9.515100px;}
.ws2e{word-spacing:10.219704px;}
.ws21{word-spacing:10.220004px;}
.ws2b{word-spacing:10.220304px;}
.ws40{word-spacing:10.340904px;}
.ws1f{word-spacing:10.456870px;}
.ws1e{word-spacing:12.549784px;}
.ws46{word-spacing:12.777120px;}
.ws8{word-spacing:12.924671px;}
.ws45{word-spacing:13.194600px;}
.ws9{word-spacing:13.602536px;}
.wsf{word-spacing:14.523943px;}
.ws7{word-spacing:14.824938px;}
.ws19{word-spacing:15.601920px;}
.ws1d{word-spacing:16.485767px;}
.ws22{word-spacing:16.780800px;}
.ws15{word-spacing:17.620463px;}
.ws30{word-spacing:18.547441px;}
.ws1b{word-spacing:18.607008px;}
.ws1c{word-spacing:18.762000px;}
.ws1a{word-spacing:19.694400px;}
.ws31{word-spacing:20.325121px;}
.ws32{word-spacing:22.723800px;}
.ws33{word-spacing:22.782000px;}
.ws2d{word-spacing:24.588000px;}
.ws34{word-spacing:24.765000px;}
.ws4a{word-spacing:25.602696px;}
.ws2a{word-spacing:25.948200px;}
.ws49{word-spacing:26.140167px;}
.ws3e{word-spacing:26.545192px;}
.ws2{word-spacing:26.832288px;}
.ws17{word-spacing:27.584914px;}
.ws3d{word-spacing:27.812279px;}
.ws16{word-spacing:27.928800px;}
.ws38{word-spacing:28.046400px;}
.ws1{word-spacing:28.571081px;}
.ws37{word-spacing:30.028800px;}
.ws39{word-spacing:30.029400px;}
.ws2c{word-spacing:30.328079px;}
.ws36{word-spacing:30.444239px;}
.ws3a{word-spacing:31.842592px;}
.ws26{word-spacing:32.054488px;}
.ws23{word-spacing:33.767992px;}
.ws18{word-spacing:33.768592px;}
.ws3c{word-spacing:33.825112px;}
.ws3f{word-spacing:35.474159px;}
.ws41{word-spacing:35.807812px;}
.ws14{word-spacing:37.409871px;}
.ws42{word-spacing:41.072384px;}
.ws28{word-spacing:41.372271px;}
.ws35{word-spacing:41.486871px;}
.ws3b{word-spacing:43.054784px;}
.ws13{word-spacing:45.255758px;}
.ws29{word-spacing:45.334071px;}
.ws43{word-spacing:48.286679px;}
.ws20{word-spacing:50.539071px;}
.wsd{word-spacing:53.974076px;}
.ws11{word-spacing:69.169216px;}
.ws27{word-spacing:90.402879px;}
.ws48{word-spacing:94.604679px;}
._5{width:32.818640px;}
._8{width:33.837738px;}
._2e{width:36.427249px;}
._b{width:37.600468px;}
._a{width:39.525940px;}
._4{width:40.662939px;}
._6{width:43.032536px;}
._26{width:47.428800px;}
._1{width:49.735938px;}
._c{width:51.018491px;}
._3d{width:52.591430px;}
._7{width:53.801048px;}
._1f{width:54.829379px;}
._3{width:57.114003px;}
._f{width:58.536567px;}
._13{width:60.454784px;}
._3a{width:61.702663px;}
._10{width:62.853471px;}
._0{width:64.486610px;}
._9{width:65.779416px;}
._1d{width:67.182259px;}
._15{width:68.796471px;}
._2d{width:70.436216px;}
._2b{width:71.487057px;}
._27{width:72.899669px;}
._3b{width:74.059202px;}
._37{width:75.270528px;}
._2c{width:78.002181px;}
._19{width:80.541212px;}
._17{width:84.168505px;}
._20{width:86.072143px;}
._d{width:87.386525px;}
._32{width:88.407975px;}
._1e{width:89.747564px;}
._11{width:91.035250px;}
._42{width:92.575394px;}
._39{width:93.902488px;}
._25{width:96.665017px;}
._24{width:99.973334px;}
._14{width:102.488348px;}
._22{width:104.310758px;}
._35{width:106.409878px;}
._29{width:108.186014px;}
._31{width:109.849012px;}
._1c{width:112.147994px;}
._2a{width:113.208770px;}
._23{width:115.042150px;}
._46{width:116.502158px;}
._41{width:120.812246px;}
._12{width:122.430671px;}
._2f{width:124.412471px;}
._44{width:125.943873px;}
._36{width:127.473508px;}
._45{width:129.469093px;}
._30{width:130.721466px;}
._47{width:133.002919px;}
._34{width:142.859387px;}
._18{width:145.541219px;}
._1b{width:147.052427px;}
._28{width:148.471732px;}
._48{width:149.506427px;}
._21{width:169.875944px;}
._3f{width:171.249193px;}
._1a{width:174.823891px;}
._16{width:187.111572px;}
._43{width:190.723612px;}
._38{width:191.988857px;}
._3c{width:193.013129px;}
._33{width:197.589249px;}
._2{width:200.226176px;}
._3e{width:201.917888px;}
._49{width:236.826934px;}
._40{width:242.057128px;}
._e{width:1724.081400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.000000px;}
.fsb{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs9{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs5{font-size:102.000000px;}
.fs0{font-size:108.000000px;}
.fs3{font-size:228.000000px;}
.fs4{font-size:234.000000px;}
.y0{bottom:0.000000px;}
.y14{bottom:96.431595px;}
.y13{bottom:105.487785px;}
.y31{bottom:153.777900px;}
.y4b{bottom:156.850500px;}
.y8{bottom:181.594500px;}
.y4a{bottom:183.954300px;}
.y30{bottom:244.087800px;}
.y2f{bottom:267.167100px;}
.y48{bottom:275.805900px;}
.y2e{bottom:317.339250px;}
.y2d{bottom:338.411550px;}
.y12{bottom:349.333950px;}
.y2c{bottom:361.490850px;}
.y2b{bottom:384.570000px;}
.y47{bottom:392.251650px;}
.y2a{bottom:409.154400px;}
.y46{bottom:415.842000px;}
.y29{bottom:432.735300px;}
.y11{bottom:437.380200px;}
.y28{bottom:456.316350px;}
.y45{bottom:466.034100px;}
.y10{bottom:476.120550px;}
.y27{bottom:479.897250px;}
.y44{bottom:487.114800px;}
.y26{bottom:503.979900px;}
.y43{bottom:510.705150px;}
.yf{bottom:519.892050px;}
.y25{bottom:527.059050px;}
.ye{bottom:561.148050px;}
.y49{bottom:584.989650px;}
.y24{bottom:600.310500px;}
.yd{bottom:601.397700px;}
.y42{bottom:651.745200px;}
.y23{bottom:668.043000px;}
.y41{bottom:675.335400px;}
.yc{bottom:686.257500px;}
.y22{bottom:691.624050px;}
.y21{bottom:715.204950px;}
.y40{bottom:723.519900px;}
.yb{bottom:728.016600px;}
.y20{bottom:738.284100px;}
.y7{bottom:745.960650px;}
.y3f{bottom:746.608350px;}
.y1f{bottom:762.366750px;}
.y3e{bottom:773.210100px;}
.y1e{bottom:786.449400px;}
.y6{bottom:790.960650px;}
.y3d{bottom:793.788900px;}
.y3c{bottom:809.348550px;}
.y1d{bottom:810.532200px;}
.y3b{bottom:832.436850px;}
.y1c{bottom:833.109600px;}
.y5{bottom:850.464600px;}
.y3a{bottom:856.529100px;}
.y4{bottom:877.464600px;}
.y39{bottom:880.621350px;}
.y38{bottom:903.709800px;}
.y1b{bottom:904.019700px;}
.y3{bottom:904.464600px;}
.y37{bottom:927.300150px;}
.y2{bottom:931.464600px;}
.y36{bottom:951.894300px;}
.y35{bottom:973.978800px;}
.y1a{bottom:977.605650px;}
.y19{bottom:998.176200px;}
.y18{bottom:1022.258850px;}
.y34{bottom:1024.170900px;}
.y1{bottom:1026.992100px;}
.y17{bottom:1044.836400px;}
.y33{bottom:1070.849700px;}
.ya{bottom:1081.878600px;}
.y16{bottom:1093.001700px;}
.y9{bottom:1125.650250px;}
.y15{bottom:1140.163650px;}
.y32{bottom:1143.628350px;}
.h9{height:55.042969px;}
.ha{height:65.050781px;}
.h6{height:70.054688px;}
.h8{height:77.180269px;}
.h4{height:77.888672px;}
.h7{height:85.066406px;}
.h3{height:89.015625px;}
.hb{height:90.070312px;}
.h2{height:100.142578px;}
.h5{height:195.152344px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:58.788735px;}
.x13{left:76.084905px;}
.x2{left:93.898110px;}
.x1d{left:96.299010px;}
.x5{left:97.454743px;}
.x1e{left:99.272745px;}
.x4{left:101.193030px;}
.x1f{left:137.435715px;}
.xd{left:153.587250px;}
.x17{left:154.743765px;}
.x1a{left:156.229575px;}
.x20{left:157.756260px;}
.x10{left:168.491550px;}
.x9{left:180.911790px;}
.xa{left:182.402220px;}
.x1{left:192.857085px;}
.xe{left:195.319320px;}
.xf{left:206.249070px;}
.xc{left:246.987570px;}
.x8{left:277.016040px;}
.x6{left:315.104190px;}
.x12{left:327.470670px;}
.xb{left:332.935620px;}
.x7{left:347.609040px;}
.x16{left:350.374740px;}
.x11{left:376.158120px;}
.x21{left:382.769145px;}
.x18{left:389.996190px;}
.x1c{left:425.392695px;}
.x15{left:432.093840px;}
.x19{left:441.503940px;}
.x22{left:475.946295px;}
.x1b{left:678.737490px;}
.x14{left:726.905820px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.677600pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:22.815467pt;}
.ls3{letter-spacing:26.199467pt;}
.ls1{letter-spacing:28.185801pt;}
.ws47{word-spacing:-10.666667pt;}
.ws24{word-spacing:-4.360392pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:1.083565pt;}
.ws25{word-spacing:2.398974pt;}
.wsa{word-spacing:5.348800pt;}
.ws44{word-spacing:6.208533pt;}
.wse{word-spacing:6.512000pt;}
.ws5{word-spacing:7.018414pt;}
.wsb{word-spacing:7.115200pt;}
.ws12{word-spacing:7.282209pt;}
.ws2f{word-spacing:7.323648pt;}
.ws6{word-spacing:7.400767pt;}
.ws4{word-spacing:8.178968pt;}
.ws3{word-spacing:8.239241pt;}
.ws10{word-spacing:8.457867pt;}
.ws2e{word-spacing:9.084181pt;}
.ws21{word-spacing:9.084448pt;}
.ws2b{word-spacing:9.084715pt;}
.ws40{word-spacing:9.191915pt;}
.ws1f{word-spacing:9.294995pt;}
.ws1e{word-spacing:11.155363pt;}
.ws46{word-spacing:11.357440pt;}
.ws8{word-spacing:11.488596pt;}
.ws45{word-spacing:11.728533pt;}
.ws9{word-spacing:12.091143pt;}
.wsf{word-spacing:12.910172pt;}
.ws7{word-spacing:13.177723pt;}
.ws19{word-spacing:13.868373pt;}
.ws1d{word-spacing:14.654015pt;}
.ws22{word-spacing:14.916267pt;}
.ws15{word-spacing:15.662634pt;}
.ws30{word-spacing:16.486614pt;}
.ws1b{word-spacing:16.539563pt;}
.ws1c{word-spacing:16.677333pt;}
.ws1a{word-spacing:17.506133pt;}
.ws31{word-spacing:18.066774pt;}
.ws32{word-spacing:20.198933pt;}
.ws33{word-spacing:20.250667pt;}
.ws2d{word-spacing:21.856000pt;}
.ws34{word-spacing:22.013333pt;}
.ws4a{word-spacing:22.757952pt;}
.ws2a{word-spacing:23.065067pt;}
.ws49{word-spacing:23.235704pt;}
.ws3e{word-spacing:23.595726pt;}
.ws2{word-spacing:23.850923pt;}
.ws17{word-spacing:24.519924pt;}
.ws3d{word-spacing:24.722026pt;}
.ws16{word-spacing:24.825600pt;}
.ws38{word-spacing:24.930133pt;}
.ws1{word-spacing:25.396516pt;}
.ws37{word-spacing:26.692267pt;}
.ws39{word-spacing:26.692800pt;}
.ws2c{word-spacing:26.958293pt;}
.ws36{word-spacing:27.061546pt;}
.ws3a{word-spacing:28.304526pt;}
.ws26{word-spacing:28.492878pt;}
.ws23{word-spacing:30.015993pt;}
.ws18{word-spacing:30.016526pt;}
.ws3c{word-spacing:30.066766pt;}
.ws3f{word-spacing:31.532586pt;}
.ws41{word-spacing:31.829166pt;}
.ws14{word-spacing:33.253219pt;}
.ws42{word-spacing:36.508786pt;}
.ws28{word-spacing:36.775352pt;}
.ws35{word-spacing:36.877219pt;}
.ws3b{word-spacing:38.270919pt;}
.ws13{word-spacing:40.227341pt;}
.ws29{word-spacing:40.296952pt;}
.ws43{word-spacing:42.921493pt;}
.ws20{word-spacing:44.923619pt;}
.wsd{word-spacing:47.976957pt;}
.ws11{word-spacing:61.483747pt;}
.ws27{word-spacing:80.358115pt;}
.ws48{word-spacing:84.093048pt;}
._5{width:29.172125pt;}
._8{width:30.077989pt;}
._2e{width:32.379777pt;}
._b{width:33.422638pt;}
._a{width:35.134169pt;}
._4{width:36.144835pt;}
._6{width:38.251143pt;}
._26{width:42.158933pt;}
._1{width:44.209723pt;}
._c{width:45.349770pt;}
._3d{width:46.747938pt;}
._7{width:47.823154pt;}
._1f{width:48.737226pt;}
._3{width:50.768003pt;}
._f{width:52.032504pt;}
._13{width:53.737586pt;}
._3a{width:54.846812pt;}
._10{width:55.869752pt;}
._0{width:57.321431pt;}
._9{width:58.470592pt;}
._1d{width:59.717564pt;}
._15{width:61.152419pt;}
._2d{width:62.609970pt;}
._2b{width:63.544051pt;}
._27{width:64.799706pt;}
._3b{width:65.830402pt;}
._37{width:66.907136pt;}
._2c{width:69.335272pt;}
._19{width:71.592189pt;}
._17{width:74.816449pt;}
._20{width:76.508571pt;}
._d{width:77.676911pt;}
._32{width:78.584867pt;}
._1e{width:79.775613pt;}
._11{width:80.920222pt;}
._42{width:82.289239pt;}
._39{width:83.468878pt;}
._25{width:85.924459pt;}
._24{width:88.865186pt;}
._14{width:91.100754pt;}
._22{width:92.720674pt;}
._35{width:94.586558pt;}
._29{width:96.165346pt;}
._31{width:97.643566pt;}
._1c{width:99.687106pt;}
._2a{width:100.630018pt;}
._23{width:102.259689pt;}
._46{width:103.557474pt;}
._41{width:107.388663pt;}
._12{width:108.827263pt;}
._2f{width:110.588863pt;}
._44{width:111.950109pt;}
._36{width:113.309785pt;}
._45{width:115.083638pt;}
._30{width:116.196859pt;}
._47{width:118.224817pt;}
._34{width:126.986122pt;}
._18{width:129.369972pt;}
._1b{width:130.713269pt;}
._28{width:131.974873pt;}
._48{width:132.894602pt;}
._21{width:151.000839pt;}
._3f{width:152.221505pt;}
._1a{width:155.399014pt;}
._16{width:166.321397pt;}
._43{width:169.532099pt;}
._38{width:170.656762pt;}
._3c{width:171.567226pt;}
._33{width:175.634888pt;}
._2{width:177.978823pt;}
._3e{width:179.482567pt;}
._49{width:210.512830pt;}
._40{width:215.161892pt;}
._e{width:1532.516800pt;}
.fs7{font-size:42.666667pt;}
.fsb{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs9{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs5{font-size:90.666667pt;}
.fs0{font-size:96.000000pt;}
.fs3{font-size:202.666667pt;}
.fs4{font-size:208.000000pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:85.716973pt;}
.y13{bottom:93.766920pt;}
.y31{bottom:136.691467pt;}
.y4b{bottom:139.422667pt;}
.y8{bottom:161.417333pt;}
.y4a{bottom:163.514933pt;}
.y30{bottom:216.966933pt;}
.y2f{bottom:237.481867pt;}
.y48{bottom:245.160800pt;}
.y2e{bottom:282.079333pt;}
.y2d{bottom:300.810267pt;}
.y12{bottom:310.519067pt;}
.y2c{bottom:321.325200pt;}
.y2b{bottom:341.840000pt;}
.y47{bottom:348.668133pt;}
.y2a{bottom:363.692800pt;}
.y46{bottom:369.637333pt;}
.y29{bottom:384.653600pt;}
.y11{bottom:388.782400pt;}
.y28{bottom:405.614533pt;}
.y45{bottom:414.252533pt;}
.y10{bottom:423.218267pt;}
.y27{bottom:426.575333pt;}
.y44{bottom:432.990933pt;}
.y26{bottom:447.982133pt;}
.y43{bottom:453.960133pt;}
.yf{bottom:462.126267pt;}
.y25{bottom:468.496933pt;}
.ye{bottom:498.798267pt;}
.y49{bottom:519.990800pt;}
.y24{bottom:533.609333pt;}
.yd{bottom:534.575733pt;}
.y42{bottom:579.329067pt;}
.y23{bottom:593.816000pt;}
.y41{bottom:600.298133pt;}
.yc{bottom:610.006667pt;}
.y22{bottom:614.776933pt;}
.y21{bottom:635.737733pt;}
.y40{bottom:643.128800pt;}
.yb{bottom:647.125867pt;}
.y20{bottom:656.252533pt;}
.y7{bottom:663.076133pt;}
.y3f{bottom:663.651867pt;}
.y1f{bottom:677.659333pt;}
.y3e{bottom:687.297867pt;}
.y1e{bottom:699.066133pt;}
.y6{bottom:703.076133pt;}
.y3d{bottom:705.590133pt;}
.y3c{bottom:719.420933pt;}
.y1d{bottom:720.473067pt;}
.y3b{bottom:739.943867pt;}
.y1c{bottom:740.541867pt;}
.y5{bottom:755.968533pt;}
.y3a{bottom:761.359200pt;}
.y4{bottom:779.968533pt;}
.y39{bottom:782.774533pt;}
.y38{bottom:803.297600pt;}
.y1b{bottom:803.573067pt;}
.y3{bottom:803.968533pt;}
.y37{bottom:824.266800pt;}
.y2{bottom:827.968533pt;}
.y36{bottom:846.128267pt;}
.y35{bottom:865.758933pt;}
.y1a{bottom:868.982800pt;}
.y19{bottom:887.267733pt;}
.y18{bottom:908.674533pt;}
.y34{bottom:910.374133pt;}
.y1{bottom:912.881867pt;}
.y17{bottom:928.743467pt;}
.y33{bottom:951.866400pt;}
.ya{bottom:961.669867pt;}
.y16{bottom:971.557067pt;}
.y9{bottom:1000.578000pt;}
.y15{bottom:1013.478800pt;}
.y32{bottom:1016.558533pt;}
.h9{height:48.927083pt;}
.ha{height:57.822917pt;}
.h6{height:62.270833pt;}
.h8{height:68.604683pt;}
.h4{height:69.234375pt;}
.h7{height:75.614583pt;}
.h3{height:79.125000pt;}
.hb{height:80.062500pt;}
.h2{height:89.015625pt;}
.h5{height:173.468750pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:52.256653pt;}
.x13{left:67.631027pt;}
.x2{left:83.464987pt;}
.x1d{left:85.599120pt;}
.x5{left:86.626439pt;}
.x1e{left:88.242440pt;}
.x4{left:89.949360pt;}
.x1f{left:122.165080pt;}
.xd{left:136.522000pt;}
.x17{left:137.550013pt;}
.x1a{left:138.870733pt;}
.x20{left:140.227787pt;}
.x10{left:149.770267pt;}
.x9{left:160.810480pt;}
.xa{left:162.135307pt;}
.x1{left:171.428520pt;}
.xe{left:173.617173pt;}
.xf{left:183.332507pt;}
.xc{left:219.544507pt;}
.x8{left:246.236480pt;}
.x6{left:280.092613pt;}
.x12{left:291.085040pt;}
.xb{left:295.942773pt;}
.x7{left:308.985813pt;}
.x16{left:311.444213pt;}
.x11{left:334.362773pt;}
.x21{left:340.239240pt;}
.x18{left:346.663280pt;}
.x1c{left:378.126840pt;}
.x15{left:384.083413pt;}
.x19{left:392.447947pt;}
.x22{left:423.063373pt;}
.x1b{left:603.322213pt;}
.x14{left:646.138507pt;}
}


body.paper-page .doc-shell[data-scieee-split-doc="1"] #page-container {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: max-content !important;
  min-width: 100% !important;
  height: auto !important;
  overflow: visible !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] #sidebar,
body.paper-page .doc-shell[data-scieee-split-doc="1"] .loading-indicator {
  display: none !important;
}

body.paper-page .doc-shell[data-scieee-split-doc="1"] .pf {
  display: block !important;
  position: relative !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
