
/* 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_69f41e8af627.woff")format("woff");}.ff1{font-family:ff1;line-height:0.960000;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_f5c8f8b00e71.woff")format("woff");}.ff2{font-family:ff2;line-height:0.962000;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:ff3;src:url("fonts/font_0002_77c1682b4a73.woff")format("woff");}.ff3{font-family:ff3;line-height:0.938965;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:ff4;src:url("fonts/font_0003_526343f04097.woff")format("woff");}.ff4{font-family:ff4;line-height:1.284668;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:ff5;src:url("fonts/font_0004_412a6383a73d.woff")format("woff");}.ff5{font-family:ff5;line-height:1.040039;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:ff6;src:url("fonts/font_0005_cb4b69e51f2c.woff")format("woff");}.ff6{font-family:ff6;line-height:1.040039;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:ff7;src:url("fonts/font_0006_4e06b6c64300.woff")format("woff");}.ff7{font-family:ff7;line-height:0.938965;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:ff8;src:url("fonts/font_0007_cd29e01c7f6d.woff")format("woff");}.ff8{font-family:ff8;line-height:0.998047;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:ff9;src:url("fonts/font_0008_fc8dcf2c453d.woff")format("woff");}.ff9{font-family:ff9;line-height:0.921387;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:ffa;src:url("fonts/font_0009_607ee881e9e2.woff")format("woff");}.ffa{font-family:ffa;line-height:0.921387;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;}
.m4{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v8{vertical-align:-23.760000px;}
.v5{vertical-align:-14.400000px;}
.v3{vertical-align:-5.760000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.880000px;}
.v4{vertical-align:5.760000px;}
.v7{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v6{vertical-align:33.120000px;}
.ls21{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.223800px;}
.lsc{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.181200px;}
.lsf{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.045360px;}
.ls18{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.181440px;}
.ls4{letter-spacing:0.269400px;}
.ls7{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.432000px;}
.ls2{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.864000px;}
.ls1a{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.080000px;}
.ls14{letter-spacing:2.340000px;}
.ls8{letter-spacing:2.801520px;}
.lsb{letter-spacing:3.104640px;}
.ls9{letter-spacing:3.521520px;}
.ls1d{letter-spacing:3.600000px;}
.ls16{letter-spacing:9.360000px;}
.ls19{letter-spacing:12.240000px;}
.ls15{letter-spacing:14.400000px;}
.lsa{letter-spacing:18.944640px;}
.ls1b{letter-spacing:33.840000px;}
.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;}
}
.ws1c{word-spacing:-72.000000px;}
.ws8{word-spacing:-48.240000px;}
.ws17{word-spacing:-18.864000px;}
.ws15{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.576000px;}
.ws1b{word-spacing:-18.432000px;}
.wse{word-spacing:-18.288000px;}
.wsc{word-spacing:-18.144000px;}
.ws1f{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.ws14{word-spacing:-17.712000px;}
.ws1a{word-spacing:-17.208000px;}
.ws1e{word-spacing:-17.064000px;}
.ws4{word-spacing:-15.786786px;}
.ws10{word-spacing:-15.624000px;}
.ws11{word-spacing:-15.552000px;}
.ws7{word-spacing:-12.420000px;}
.wsb{word-spacing:-12.329400px;}
.ws1d{word-spacing:-12.105360px;}
.wsa{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.878800px;}
.ws19{word-spacing:-11.836200px;}
.ws12{word-spacing:-11.700000px;}
.wsf{word-spacing:-0.216000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.113574px;}
.ws6{word-spacing:0.170361px;}
.ws3{word-spacing:15.729999px;}
.ws2{word-spacing:31.459998px;}
.ws1{word-spacing:31.687146px;}
._e{margin-left:-7.893393px;}
._d{margin-left:-6.076209px;}
._3{margin-left:-4.542960px;}
._1{margin-left:-2.725776px;}
._4{margin-left:-1.476462px;}
._b{width:1.078953px;}
._0{width:2.271480px;}
._13{width:3.536643px;}
._2{width:4.542960px;}
._10{width:6.240000px;}
._11{width:7.272000px;}
._14{width:8.386080px;}
._7{width:9.483429px;}
._12{width:10.944000px;}
._15{width:12.636462px;}
._16{width:14.147538px;}
._17{width:15.729936px;}
._9{width:16.922526px;}
._8{width:18.682923px;}
._a{width:19.705089px;}
._18{width:20.793087px;}
._19{width:21.902913px;}
._20{width:23.124348px;}
._1c{width:24.240000px;}
._1d{width:25.549047px;}
._21{width:27.360000px;}
._22{width:28.513047px;}
._1a{width:29.963085px;}
._1b{width:31.032000px;}
._c{width:32.425377px;}
._1e{width:34.174623px;}
._1f{width:35.797377px;}
._6{width:37.252272px;}
._5{width:43.328481px;}
._23{width:52.992000px;}
._24{width:54.000000px;}
._26{width:107.976000px;}
._25{width:143.976000px;}
._f{width:846.156000px;}
.fc2{color:transparent;}
.fc1{color:rgb(91,75,75);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs2{font-size:56.787000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:90.859200px;}
.fs1{font-size:113.574000px;}
.fs4{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y102{bottom:7.020000px;}
.yff{bottom:7.200000px;}
.y10e{bottom:18.720000px;}
.y109{bottom:30.060000px;}
.y100{bottom:30.240000px;}
.y108{bottom:30.780000px;}
.yfe{bottom:30.960000px;}
.y80{bottom:42.660000px;}
.ya2{bottom:46.440000px;}
.y63{bottom:49.545000px;}
.y64{bottom:49.905000px;}
.yfd{bottom:54.720000px;}
.y9e{bottom:55.440000px;}
.y83{bottom:63.360000px;}
.ya5{bottom:68.220000px;}
.y1e{bottom:71.820000px;}
.yf7{bottom:71.856000px;}
.y107{bottom:78.480000px;}
.yfc{bottom:78.525000px;}
.y82{bottom:84.060000px;}
.ya1{bottom:87.840000px;}
.y9c{bottom:96.840000px;}
.y7e{bottom:102.105000px;}
.y1d{bottom:107.676000px;}
.ya4{bottom:109.620000px;}
.y1c{bottom:111.475500px;}
.y15f{bottom:115.776000px;}
.ye3{bottom:129.096000px;}
.y1b{bottom:129.409500px;}
.y183{bottom:131.616000px;}
.y8e{bottom:133.416000px;}
.yd8{bottom:133.596000px;}
.y125{bottom:134.316000px;}
.y15e{bottom:136.476000px;}
.y9d{bottom:138.240000px;}
.y7c{bottom:138.996000px;}
.y149{bottom:140.076000px;}
.yf6{bottom:146.196000px;}
.ya0{bottom:147.240000px;}
.y1a{bottom:147.342000px;}
.ybe{bottom:150.690000px;}
.ya3{bottom:151.020000px;}
.y6c{bottom:151.590000px;}
.y182{bottom:152.310000px;}
.y15d{bottom:157.170000px;}
.yc5{bottom:159.690000px;}
.y7f{bottom:161.505000px;}
.y69{bottom:161.850000px;}
.y138{bottom:163.110000px;}
.ye8{bottom:164.370000px;}
.y19{bottom:165.274500px;}
.yb2{bottom:169.410000px;}
.y58{bottom:169.590000px;}
.ye2{bottom:170.490000px;}
.y181{bottom:173.010000px;}
.y8d{bottom:174.810000px;}
.yd7{bottom:174.990000px;}
.y124{bottom:175.710000px;}
.y15c{bottom:177.870000px;}
.y7b{bottom:180.390000px;}
.y148{bottom:181.470000px;}
.yf5{bottom:187.590000px;}
.y10d{bottom:190.110000px;}
.ybd{bottom:192.090000px;}
.y6b{bottom:192.990000px;}
.y180{bottom:193.710000px;}
.y15b{bottom:198.570000px;}
.yc4{bottom:201.090000px;}
.y68{bottom:203.250000px;}
.y137{bottom:204.510000px;}
.ye7{bottom:205.770000px;}
.yb1{bottom:210.810000px;}
.y57{bottom:210.990000px;}
.ye1{bottom:211.890000px;}
.y17f{bottom:214.410000px;}
.y8c{bottom:216.210000px;}
.yd6{bottom:216.390000px;}
.y123{bottom:217.110000px;}
.y18{bottom:219.072000px;}
.y10c{bottom:221.610000px;}
.y7a{bottom:221.790000px;}
.y147{bottom:222.870000px;}
.yf4{bottom:228.990000px;}
.ybc{bottom:233.490000px;}
.y17e{bottom:235.110000px;}
.y17{bottom:237.006000px;}
.y15a{bottom:239.970000px;}
.y67{bottom:244.650000px;}
.y136{bottom:245.910000px;}
.y56{bottom:252.390000px;}
.y10b{bottom:252.975000px;}
.ye0{bottom:253.290000px;}
.y16{bottom:254.938500px;}
.y17d{bottom:255.810000px;}
.y8b{bottom:257.610000px;}
.y41{bottom:257.790000px;}
.y122{bottom:258.510000px;}
.yc3{bottom:260.490000px;}
.ye6{bottom:261.390000px;}
.y79{bottom:263.190000px;}
.y146{bottom:264.270000px;}
.yb0{bottom:270.210000px;}
.y9a{bottom:270.390000px;}
.y15{bottom:272.871000px;}
.ybb{bottom:274.890000px;}
.y17c{bottom:276.510000px;}
.y10a{bottom:284.475000px;}
.y66{bottom:286.050000px;}
.y135{bottom:287.310000px;}
.y6a{bottom:293.790000px;}
.ydf{bottom:294.690000px;}
.y159{bottom:296.310000px;}
.y17b{bottom:297.210000px;}
.y8a{bottom:299.010000px;}
.yd5{bottom:299.190000px;}
.y121{bottom:299.955000px;}
.y55{bottom:300.630000px;}
.y78{bottom:304.590000px;}
.y145{bottom:305.715000px;}
.y14{bottom:308.736000px;}
.yaf{bottom:311.610000px;}
.y99{bottom:311.790000px;}
.y106{bottom:315.975000px;}
.yba{bottom:316.290000px;}
.yf3{bottom:317.190000px;}
.y17a{bottom:317.955000px;}
.yc2{bottom:319.890000px;}
.y40{bottom:326.190000px;}
.y13{bottom:326.668500px;}
.y65{bottom:327.450000px;}
.y2c{bottom:328.530000px;}
.y134{bottom:328.755000px;}
.y54{bottom:335.190000px;}
.yde{bottom:336.090000px;}
.y179{bottom:338.655000px;}
.y89{bottom:340.410000px;}
.yd4{bottom:340.590000px;}
.y120{bottom:341.355000px;}
.y12{bottom:344.602500px;}
.y77{bottom:345.990000px;}
.y62{bottom:347.070000px;}
.y144{bottom:347.115000px;}
.y158{bottom:352.875000px;}
.yae{bottom:353.010000px;}
.y98{bottom:353.235000px;}
.yb9{bottom:357.735000px;}
.yf2{bottom:358.635000px;}
.y178{bottom:359.355000px;}
.yc1{bottom:361.335000px;}
.y11{bottom:362.535000px;}
.y3f{bottom:367.635000px;}
.y2b{bottom:369.975000px;}
.y133{bottom:370.155000px;}
.y53{bottom:376.635000px;}
.y177{bottom:380.055000px;}
.y10{bottom:380.467500px;}
.y88{bottom:381.855000px;}
.yd3{bottom:382.035000px;}
.y11f{bottom:382.755000px;}
.y76{bottom:387.435000px;}
.y157{bottom:394.275000px;}
.yad{bottom:394.455000px;}
.y97{bottom:394.635000px;}
.ydd{bottom:395.535000px;}
.yf{bottom:398.400000px;}
.yb8{bottom:399.135000px;}
.yf1{bottom:400.035000px;}
.y176{bottom:400.755000px;}
.yc0{bottom:402.735000px;}
.y143{bottom:403.455000px;}
.y3e{bottom:409.035000px;}
.y2a{bottom:411.375000px;}
.y132{bottom:411.555000px;}
.y52{bottom:418.035000px;}
.y105{bottom:418.755000px;}
.y175{bottom:421.455000px;}
.y87{bottom:423.255000px;}
.yd2{bottom:423.435000px;}
.y11e{bottom:424.155000px;}
.y75{bottom:428.835000px;}
.y156{bottom:435.675000px;}
.yac{bottom:435.855000px;}
.y96{bottom:436.035000px;}
.ydc{bottom:436.935000px;}
.yb7{bottom:440.535000px;}
.ye5{bottom:441.435000px;}
.y174{bottom:442.155000px;}
.y142{bottom:444.855000px;}
.y104{bottom:450.285000px;}
.y3d{bottom:450.435000px;}
.ye{bottom:452.199000px;}
.y131{bottom:452.955000px;}
.ybf{bottom:458.175000px;}
.y51{bottom:459.435000px;}
.y173{bottom:462.855000px;}
.yd1{bottom:464.835000px;}
.y11d{bottom:465.555000px;}
.yd{bottom:470.131500px;}
.y29{bottom:470.775000px;}
.y155{bottom:477.075000px;}
.yab{bottom:477.255000px;}
.y95{bottom:477.435000px;}
.ydb{bottom:478.335000px;}
.y103{bottom:481.785000px;}
.y86{bottom:482.655000px;}
.yf0{bottom:482.835000px;}
.y172{bottom:483.555000px;}
.y74{bottom:488.235000px;}
.y141{bottom:490.755000px;}
.y3c{bottom:491.835000px;}
.yb6{bottom:499.935000px;}
.y50{bottom:500.835000px;}
.y85{bottom:503.895000px;}
.y171{bottom:504.255000px;}
.yc{bottom:505.996500px;}
.yd0{bottom:506.235000px;}
.y11c{bottom:506.955000px;}
.y130{bottom:512.355000px;}
.y101{bottom:513.285000px;}
.y154{bottom:518.475000px;}
.yaa{bottom:518.655000px;}
.y94{bottom:518.835000px;}
.y28{bottom:519.015000px;}
.yda{bottom:519.735000px;}
.yb{bottom:523.929000px;}
.yef{bottom:524.235000px;}
.y170{bottom:524.955000px;}
.y73{bottom:529.635000px;}
.y140{bottom:532.155000px;}
.y3b{bottom:533.235000px;}
.y185{bottom:533.415000px;}
.yb5{bottom:541.335000px;}
.ya{bottom:541.861500px;}
.y4f{bottom:542.235000px;}
.yfb{bottom:544.605000px;}
.y16f{bottom:545.655000px;}
.ycf{bottom:547.635000px;}
.y11b{bottom:548.355000px;}
.y9{bottom:559.795500px;}
.y153{bottom:559.905000px;}
.ya9{bottom:560.055000px;}
.y93{bottom:560.235000px;}
.yee{bottom:565.635000px;}
.y16e{bottom:566.385000px;}
.y72{bottom:571.035000px;}
.y12f{bottom:571.785000px;}
.y3a{bottom:574.635000px;}
.yd9{bottom:575.175000px;}
.y27{bottom:578.415000px;}
.y13f{bottom:582.585000px;}
.yb4{bottom:582.735000px;}
.y4e{bottom:583.635000px;}
.y16d{bottom:587.085000px;}
.yce{bottom:589.035000px;}
.y11a{bottom:589.785000px;}
.y184{bottom:592.845000px;}
.y152{bottom:601.305000px;}
.y92{bottom:601.635000px;}
.y8{bottom:604.626000px;}
.yed{bottom:607.035000px;}
.y16c{bottom:607.785000px;}
.y71{bottom:612.435000px;}
.y39{bottom:616.065000px;}
.ya8{bottom:619.485000px;}
.y4d{bottom:625.065000px;}
.y16b{bottom:628.485000px;}
.ycd{bottom:630.465000px;}
.y26{bottom:631.005000px;}
.y119{bottom:631.185000px;}
.y84{bottom:638.025000px;}
.yb3{bottom:638.205000px;}
.ya7{bottom:640.725000px;}
.y13e{bottom:641.985000px;}
.y151{bottom:642.705000px;}
.y91{bottom:643.065000px;}
.yec{bottom:648.465000px;}
.y16a{bottom:649.185000px;}
.y70{bottom:653.865000px;}
.y38{bottom:657.465000px;}
.y4c{bottom:666.465000px;}
.y169{bottom:669.885000px;}
.ycc{bottom:671.865000px;}
.y25{bottom:672.405000px;}
.y118{bottom:672.585000px;}
.y150{bottom:683.925000px;}
.y90{bottom:684.465000px;}
.yfa{bottom:687.210000px;}
.yeb{bottom:689.865000px;}
.y12e{bottom:690.585000px;}
.ye4{bottom:691.305000px;}
.y6f{bottom:695.265000px;}
.y37{bottom:698.865000px;}
.y13d{bottom:701.385000px;}
.y81{bottom:705.165000px;}
.y4b{bottom:707.865000px;}
.y168{bottom:711.285000px;}
.ycb{bottom:713.265000px;}
.y24{bottom:713.805000px;}
.y117{bottom:713.985000px;}
.y14f{bottom:725.325000px;}
.yc6{bottom:725.865000px;}
.yf9{bottom:728.610000px;}
.yea{bottom:731.265000px;}
.y12d{bottom:731.985000px;}
.y8f{bottom:732.705000px;}
.y7{bottom:738.300000px;}
.y36{bottom:740.265000px;}
.y13c{bottom:747.285000px;}
.y4a{bottom:749.265000px;}
.y167{bottom:752.685000px;}
.y6e{bottom:754.665000px;}
.y23{bottom:755.205000px;}
.y116{bottom:755.385000px;}
.y14e{bottom:766.725000px;}
.y61{bottom:767.265000px;}
.yf8{bottom:770.010000px;}
.ye9{bottom:772.665000px;}
.y12c{bottom:773.385000px;}
.y6{bottom:774.165000px;}
.ya6{bottom:774.825000px;}
.y35{bottom:781.665000px;}
.y49{bottom:790.665000px;}
.y166{bottom:794.085000px;}
.yca{bottom:796.065000px;}
.y115{bottom:796.785000px;}
.y13b{bottom:806.685000px;}
.y14d{bottom:808.125000px;}
.y60{bottom:808.665000px;}
.y5{bottom:810.031500px;}
.y7d{bottom:813.525000px;}
.y6d{bottom:814.065000px;}
.y12b{bottom:814.830000px;}
.y34{bottom:823.065000px;}
.y186{bottom:831.570000px;}
.y48{bottom:832.065000px;}
.y165{bottom:835.530000px;}
.yc9{bottom:837.465000px;}
.y114{bottom:838.230000px;}
.y22{bottom:844.125000px;}
.y14c{bottom:849.570000px;}
.y5f{bottom:850.065000px;}
.y12a{bottom:856.230000px;}
.y33{bottom:864.465000px;}
.y13a{bottom:866.130000px;}
.y4{bottom:872.796000px;}
.y47{bottom:873.465000px;}
.y164{bottom:876.930000px;}
.yc8{bottom:878.910000px;}
.y113{bottom:879.630000px;}
.y9b{bottom:883.410000px;}
.y14b{bottom:890.970000px;}
.y5e{bottom:891.510000px;}
.y129{bottom:897.630000px;}
.y3{bottom:902.683500px;}
.y32{bottom:905.910000px;}
.y139{bottom:912.030000px;}
.y46{bottom:914.910000px;}
.y163{bottom:918.330000px;}
.y21{bottom:919.950000px;}
.y112{bottom:921.030000px;}
.y14a{bottom:926.790000px;}
.y2{bottom:932.571000px;}
.y5d{bottom:932.910000px;}
.yc7{bottom:938.310000px;}
.y128{bottom:939.030000px;}
.y31{bottom:947.310000px;}
.y45{bottom:956.310000px;}
.y162{bottom:959.730000px;}
.y111{bottom:962.430000px;}
.y1{bottom:962.460000px;}
.y5c{bottom:974.310000px;}
.y127{bottom:980.430000px;}
.y30{bottom:988.710000px;}
.y9f{bottom:991.770000px;}
.y20{bottom:995.910000px;}
.y44{bottom:997.710000px;}
.y161{bottom:1001.130000px;}
.y110{bottom:1003.830000px;}
.y5b{bottom:1015.710000px;}
.y126{bottom:1021.830000px;}
.y2f{bottom:1030.110000px;}
.y43{bottom:1039.110000px;}
.y160{bottom:1042.530000px;}
.y5a{bottom:1057.110000px;}
.y10f{bottom:1063.230000px;}
.y2e{bottom:1071.510000px;}
.y1f{bottom:1071.870000px;}
.y42{bottom:1080.510000px;}
.y59{bottom:1098.510000px;}
.y2d{bottom:1139.910000px;}
.h1d{height:23.760000px;}
.h21{height:23.796000px;}
.h20{height:23.940000px;}
.h1e{height:23.976000px;}
.ha{height:34.884492px;}
.h23{height:35.460000px;}
.h5{height:42.135954px;}
.h4{height:42.192741px;}
.h19{height:50.800781px;}
.h7{height:52.066406px;}
.h1b{height:53.680781px;}
.h1c{height:54.946406px;}
.h1a{height:57.796523px;}
.hb{height:59.343750px;}
.h12{height:59.400000px;}
.h13{height:59.436000px;}
.hc{height:62.244492px;}
.hf{height:62.364492px;}
.h15{height:62.424492px;}
.hd{height:66.636000px;}
.h9{height:67.120313px;}
.h2{height:67.417526px;}
.he{height:69.722578px;}
.h3{height:84.385482px;}
.h1f{height:95.220000px;}
.h18{height:95.256000px;}
.h11{height:100.800000px;}
.h8{height:129.315234px;}
.h14{height:167.760000px;}
.h10{height:178.230000px;}
.h16{height:892.980000px;}
.h17{height:893.250000px;}
.h22{height:1188.000000px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1{height:1263.000000px;}
.w22{width:18.000000px;}
.w5{width:29.700000px;}
.wc{width:59.796000px;}
.w12{width:72.360000px;}
.w1b{width:82.440000px;}
.w1a{width:83.880000px;}
.w10{width:89.640000px;}
.w1c{width:93.240000px;}
.wf{width:97.740000px;}
.w1e{width:98.280000px;}
.w1d{width:98.316000px;}
.w11{width:98.496000px;}
.w7{width:106.416000px;}
.wb{width:108.180000px;}
.w9{width:113.220000px;}
.w19{width:115.200000px;}
.w18{width:115.236000px;}
.w17{width:115.380000px;}
.w8{width:119.916000px;}
.w16{width:123.876000px;}
.w1f{width:129.420000px;}
.w6{width:132.840000px;}
.we{width:143.856000px;}
.wa{width:198.930000px;}
.wd{width:263.370000px;}
.w4{width:632.985000px;}
.w0{width:892.914000px;}
.w3{width:892.979987px;}
.w2{width:892.980000px;}
.w1{width:893.250000px;}
.w21{width:917.999986px;}
.w20{width:918.000000px;}
.w15{width:1262.879981px;}
.w13{width:1262.880000px;}
.w14{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:5.220000px;}
.x9{left:8.100000px;}
.x15{left:15.120000px;}
.xb{left:20.340000px;}
.x1e{left:84.959981px;}
.x20{left:86.580000px;}
.x1f{left:100.079981px;}
.x1{left:102.046500px;}
.x3{left:106.235987px;}
.xa{left:107.856000px;}
.x6{left:109.296000px;}
.x5{left:121.355987px;}
.x2b{left:123.155986px;}
.x4{left:160.229987px;}
.x7{left:201.819000px;}
.x21{left:211.890000px;}
.x11{left:217.650000px;}
.xc{left:242.130000px;}
.x12{left:279.075000px;}
.x22{left:328.710000px;}
.xd{left:350.175000px;}
.x16{left:370.155000px;}
.x23{left:445.575000px;}
.x2c{left:457.304986px;}
.x17{left:470.085000px;}
.xe{left:471.705000px;}
.x13{left:543.885000px;}
.x24{left:562.215000px;}
.xf{left:586.365000px;}
.x25{left:647.565000px;}
.x14{left:689.190000px;}
.x26{left:731.625000px;}
.x8{left:745.170000px;}
.x18{left:768.749987px;}
.x2{left:777.749987px;}
.x1c{left:780.629987px;}
.x2a{left:792.180000px;}
.x27{left:826.305000px;}
.x19{left:837.899987px;}
.x1b{left:868.499987px;}
.x1a{left:871.199987px;}
.x28{left:926.070000px;}
.x29{left:1025.790000px;}
.x1d{left:1138.649981px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v8{vertical-align:-21.120000pt;}
.v5{vertical-align:-12.800000pt;}
.v3{vertical-align:-5.120000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.560000pt;}
.v4{vertical-align:5.120000pt;}
.v7{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v6{vertical-align:29.440000pt;}
.ls21{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.198933pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.161067pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.040320pt;}
.ls18{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.161280pt;}
.ls4{letter-spacing:0.239467pt;}
.ls7{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.384000pt;}
.ls2{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls14{letter-spacing:2.080000pt;}
.ls8{letter-spacing:2.490240pt;}
.lsb{letter-spacing:2.759680pt;}
.ls9{letter-spacing:3.130240pt;}
.ls1d{letter-spacing:3.200000pt;}
.ls16{letter-spacing:8.320000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls15{letter-spacing:12.800000pt;}
.lsa{letter-spacing:16.839680pt;}
.ls1b{letter-spacing:30.080000pt;}
.ws1c{word-spacing:-64.000000pt;}
.ws8{word-spacing:-42.880000pt;}
.ws17{word-spacing:-16.768000pt;}
.ws15{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.512000pt;}
.ws1b{word-spacing:-16.384000pt;}
.wse{word-spacing:-16.256000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws1f{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws1a{word-spacing:-15.296000pt;}
.ws1e{word-spacing:-15.168000pt;}
.ws4{word-spacing:-14.032699pt;}
.ws10{word-spacing:-13.888000pt;}
.ws11{word-spacing:-13.824000pt;}
.ws7{word-spacing:-11.040000pt;}
.wsb{word-spacing:-10.959467pt;}
.ws1d{word-spacing:-10.760320pt;}
.wsa{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.558933pt;}
.ws19{word-spacing:-10.521067pt;}
.ws12{word-spacing:-10.400000pt;}
.wsf{word-spacing:-0.192000pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.100955pt;}
.ws6{word-spacing:0.151432pt;}
.ws3{word-spacing:13.982221pt;}
.ws2{word-spacing:27.964443pt;}
.ws1{word-spacing:28.166352pt;}
._e{margin-left:-7.016349pt;}
._d{margin-left:-5.401075pt;}
._3{margin-left:-4.038187pt;}
._1{margin-left:-2.422912pt;}
._4{margin-left:-1.312411pt;}
._b{width:0.959069pt;}
._0{width:2.019093pt;}
._13{width:3.143683pt;}
._2{width:4.038187pt;}
._10{width:5.546667pt;}
._11{width:6.464000pt;}
._14{width:7.454293pt;}
._7{width:8.429715pt;}
._12{width:9.728000pt;}
._15{width:11.232411pt;}
._16{width:12.575589pt;}
._17{width:13.982165pt;}
._9{width:15.042245pt;}
._8{width:16.607043pt;}
._a{width:17.515635pt;}
._18{width:18.482744pt;}
._19{width:19.469256pt;}
._20{width:20.554976pt;}
._1c{width:21.546667pt;}
._1d{width:22.710264pt;}
._21{width:24.320000pt;}
._22{width:25.344931pt;}
._1a{width:26.633853pt;}
._1b{width:27.584000pt;}
._c{width:28.822557pt;}
._1e{width:30.377443pt;}
._1f{width:31.819891pt;}
._6{width:33.113131pt;}
._5{width:38.514205pt;}
._23{width:47.104000pt;}
._24{width:48.000000pt;}
._26{width:95.978667pt;}
._25{width:127.978667pt;}
._f{width:752.138667pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs2{font-size:50.477333pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:80.763733pt;}
.fs1{font-size:100.954667pt;}
.fs4{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y102{bottom:6.240000pt;}
.yff{bottom:6.400000pt;}
.y10e{bottom:16.640000pt;}
.y109{bottom:26.720000pt;}
.y100{bottom:26.880000pt;}
.y108{bottom:27.360000pt;}
.yfe{bottom:27.520000pt;}
.y80{bottom:37.920000pt;}
.ya2{bottom:41.280000pt;}
.y63{bottom:44.040000pt;}
.y64{bottom:44.360000pt;}
.yfd{bottom:48.640000pt;}
.y9e{bottom:49.280000pt;}
.y83{bottom:56.320000pt;}
.ya5{bottom:60.640000pt;}
.y1e{bottom:63.840000pt;}
.yf7{bottom:63.872000pt;}
.y107{bottom:69.760000pt;}
.yfc{bottom:69.800000pt;}
.y82{bottom:74.720000pt;}
.ya1{bottom:78.080000pt;}
.y9c{bottom:86.080000pt;}
.y7e{bottom:90.760000pt;}
.y1d{bottom:95.712000pt;}
.ya4{bottom:97.440000pt;}
.y1c{bottom:99.089333pt;}
.y15f{bottom:102.912000pt;}
.ye3{bottom:114.752000pt;}
.y1b{bottom:115.030667pt;}
.y183{bottom:116.992000pt;}
.y8e{bottom:118.592000pt;}
.yd8{bottom:118.752000pt;}
.y125{bottom:119.392000pt;}
.y15e{bottom:121.312000pt;}
.y9d{bottom:122.880000pt;}
.y7c{bottom:123.552000pt;}
.y149{bottom:124.512000pt;}
.yf6{bottom:129.952000pt;}
.ya0{bottom:130.880000pt;}
.y1a{bottom:130.970667pt;}
.ybe{bottom:133.946667pt;}
.ya3{bottom:134.240000pt;}
.y6c{bottom:134.746667pt;}
.y182{bottom:135.386667pt;}
.y15d{bottom:139.706667pt;}
.yc5{bottom:141.946667pt;}
.y7f{bottom:143.560000pt;}
.y69{bottom:143.866667pt;}
.y138{bottom:144.986667pt;}
.ye8{bottom:146.106667pt;}
.y19{bottom:146.910667pt;}
.yb2{bottom:150.586667pt;}
.y58{bottom:150.746667pt;}
.ye2{bottom:151.546667pt;}
.y181{bottom:153.786667pt;}
.y8d{bottom:155.386667pt;}
.yd7{bottom:155.546667pt;}
.y124{bottom:156.186667pt;}
.y15c{bottom:158.106667pt;}
.y7b{bottom:160.346667pt;}
.y148{bottom:161.306667pt;}
.yf5{bottom:166.746667pt;}
.y10d{bottom:168.986667pt;}
.ybd{bottom:170.746667pt;}
.y6b{bottom:171.546667pt;}
.y180{bottom:172.186667pt;}
.y15b{bottom:176.506667pt;}
.yc4{bottom:178.746667pt;}
.y68{bottom:180.666667pt;}
.y137{bottom:181.786667pt;}
.ye7{bottom:182.906667pt;}
.yb1{bottom:187.386667pt;}
.y57{bottom:187.546667pt;}
.ye1{bottom:188.346667pt;}
.y17f{bottom:190.586667pt;}
.y8c{bottom:192.186667pt;}
.yd6{bottom:192.346667pt;}
.y123{bottom:192.986667pt;}
.y18{bottom:194.730667pt;}
.y10c{bottom:196.986667pt;}
.y7a{bottom:197.146667pt;}
.y147{bottom:198.106667pt;}
.yf4{bottom:203.546667pt;}
.ybc{bottom:207.546667pt;}
.y17e{bottom:208.986667pt;}
.y17{bottom:210.672000pt;}
.y15a{bottom:213.306667pt;}
.y67{bottom:217.466667pt;}
.y136{bottom:218.586667pt;}
.y56{bottom:224.346667pt;}
.y10b{bottom:224.866667pt;}
.ye0{bottom:225.146667pt;}
.y16{bottom:226.612000pt;}
.y17d{bottom:227.386667pt;}
.y8b{bottom:228.986667pt;}
.y41{bottom:229.146667pt;}
.y122{bottom:229.786667pt;}
.yc3{bottom:231.546667pt;}
.ye6{bottom:232.346667pt;}
.y79{bottom:233.946667pt;}
.y146{bottom:234.906667pt;}
.yb0{bottom:240.186667pt;}
.y9a{bottom:240.346667pt;}
.y15{bottom:242.552000pt;}
.ybb{bottom:244.346667pt;}
.y17c{bottom:245.786667pt;}
.y10a{bottom:252.866667pt;}
.y66{bottom:254.266667pt;}
.y135{bottom:255.386667pt;}
.y6a{bottom:261.146667pt;}
.ydf{bottom:261.946667pt;}
.y159{bottom:263.386667pt;}
.y17b{bottom:264.186667pt;}
.y8a{bottom:265.786667pt;}
.yd5{bottom:265.946667pt;}
.y121{bottom:266.626667pt;}
.y55{bottom:267.226667pt;}
.y78{bottom:270.746667pt;}
.y145{bottom:271.746667pt;}
.y14{bottom:274.432000pt;}
.yaf{bottom:276.986667pt;}
.y99{bottom:277.146667pt;}
.y106{bottom:280.866667pt;}
.yba{bottom:281.146667pt;}
.yf3{bottom:281.946667pt;}
.y17a{bottom:282.626667pt;}
.yc2{bottom:284.346667pt;}
.y40{bottom:289.946667pt;}
.y13{bottom:290.372000pt;}
.y65{bottom:291.066667pt;}
.y2c{bottom:292.026667pt;}
.y134{bottom:292.226667pt;}
.y54{bottom:297.946667pt;}
.yde{bottom:298.746667pt;}
.y179{bottom:301.026667pt;}
.y89{bottom:302.586667pt;}
.yd4{bottom:302.746667pt;}
.y120{bottom:303.426667pt;}
.y12{bottom:306.313333pt;}
.y77{bottom:307.546667pt;}
.y62{bottom:308.506667pt;}
.y144{bottom:308.546667pt;}
.y158{bottom:313.666667pt;}
.yae{bottom:313.786667pt;}
.y98{bottom:313.986667pt;}
.yb9{bottom:317.986667pt;}
.yf2{bottom:318.786667pt;}
.y178{bottom:319.426667pt;}
.yc1{bottom:321.186667pt;}
.y11{bottom:322.253333pt;}
.y3f{bottom:326.786667pt;}
.y2b{bottom:328.866667pt;}
.y133{bottom:329.026667pt;}
.y53{bottom:334.786667pt;}
.y177{bottom:337.826667pt;}
.y10{bottom:338.193333pt;}
.y88{bottom:339.426667pt;}
.yd3{bottom:339.586667pt;}
.y11f{bottom:340.226667pt;}
.y76{bottom:344.386667pt;}
.y157{bottom:350.466667pt;}
.yad{bottom:350.626667pt;}
.y97{bottom:350.786667pt;}
.ydd{bottom:351.586667pt;}
.yf{bottom:354.133333pt;}
.yb8{bottom:354.786667pt;}
.yf1{bottom:355.586667pt;}
.y176{bottom:356.226667pt;}
.yc0{bottom:357.986667pt;}
.y143{bottom:358.626667pt;}
.y3e{bottom:363.586667pt;}
.y2a{bottom:365.666667pt;}
.y132{bottom:365.826667pt;}
.y52{bottom:371.586667pt;}
.y105{bottom:372.226667pt;}
.y175{bottom:374.626667pt;}
.y87{bottom:376.226667pt;}
.yd2{bottom:376.386667pt;}
.y11e{bottom:377.026667pt;}
.y75{bottom:381.186667pt;}
.y156{bottom:387.266667pt;}
.yac{bottom:387.426667pt;}
.y96{bottom:387.586667pt;}
.ydc{bottom:388.386667pt;}
.yb7{bottom:391.586667pt;}
.ye5{bottom:392.386667pt;}
.y174{bottom:393.026667pt;}
.y142{bottom:395.426667pt;}
.y104{bottom:400.253333pt;}
.y3d{bottom:400.386667pt;}
.ye{bottom:401.954667pt;}
.y131{bottom:402.626667pt;}
.ybf{bottom:407.266667pt;}
.y51{bottom:408.386667pt;}
.y173{bottom:411.426667pt;}
.yd1{bottom:413.186667pt;}
.y11d{bottom:413.826667pt;}
.yd{bottom:417.894667pt;}
.y29{bottom:418.466667pt;}
.y155{bottom:424.066667pt;}
.yab{bottom:424.226667pt;}
.y95{bottom:424.386667pt;}
.ydb{bottom:425.186667pt;}
.y103{bottom:428.253333pt;}
.y86{bottom:429.026667pt;}
.yf0{bottom:429.186667pt;}
.y172{bottom:429.826667pt;}
.y74{bottom:433.986667pt;}
.y141{bottom:436.226667pt;}
.y3c{bottom:437.186667pt;}
.yb6{bottom:444.386667pt;}
.y50{bottom:445.186667pt;}
.y85{bottom:447.906667pt;}
.y171{bottom:448.226667pt;}
.yc{bottom:449.774667pt;}
.yd0{bottom:449.986667pt;}
.y11c{bottom:450.626667pt;}
.y130{bottom:455.426667pt;}
.y101{bottom:456.253333pt;}
.y154{bottom:460.866667pt;}
.yaa{bottom:461.026667pt;}
.y94{bottom:461.186667pt;}
.y28{bottom:461.346667pt;}
.yda{bottom:461.986667pt;}
.yb{bottom:465.714667pt;}
.yef{bottom:465.986667pt;}
.y170{bottom:466.626667pt;}
.y73{bottom:470.786667pt;}
.y140{bottom:473.026667pt;}
.y3b{bottom:473.986667pt;}
.y185{bottom:474.146667pt;}
.yb5{bottom:481.186667pt;}
.ya{bottom:481.654667pt;}
.y4f{bottom:481.986667pt;}
.yfb{bottom:484.093333pt;}
.y16f{bottom:485.026667pt;}
.ycf{bottom:486.786667pt;}
.y11b{bottom:487.426667pt;}
.y9{bottom:497.596000pt;}
.y153{bottom:497.693333pt;}
.ya9{bottom:497.826667pt;}
.y93{bottom:497.986667pt;}
.yee{bottom:502.786667pt;}
.y16e{bottom:503.453333pt;}
.y72{bottom:507.586667pt;}
.y12f{bottom:508.253333pt;}
.y3a{bottom:510.786667pt;}
.yd9{bottom:511.266667pt;}
.y27{bottom:514.146667pt;}
.y13f{bottom:517.853333pt;}
.yb4{bottom:517.986667pt;}
.y4e{bottom:518.786667pt;}
.y16d{bottom:521.853333pt;}
.yce{bottom:523.586667pt;}
.y11a{bottom:524.253333pt;}
.y184{bottom:526.973333pt;}
.y152{bottom:534.493333pt;}
.y92{bottom:534.786667pt;}
.y8{bottom:537.445333pt;}
.yed{bottom:539.586667pt;}
.y16c{bottom:540.253333pt;}
.y71{bottom:544.386667pt;}
.y39{bottom:547.613333pt;}
.ya8{bottom:550.653333pt;}
.y4d{bottom:555.613333pt;}
.y16b{bottom:558.653333pt;}
.ycd{bottom:560.413333pt;}
.y26{bottom:560.893333pt;}
.y119{bottom:561.053333pt;}
.y84{bottom:567.133333pt;}
.yb3{bottom:567.293333pt;}
.ya7{bottom:569.533333pt;}
.y13e{bottom:570.653333pt;}
.y151{bottom:571.293333pt;}
.y91{bottom:571.613333pt;}
.yec{bottom:576.413333pt;}
.y16a{bottom:577.053333pt;}
.y70{bottom:581.213333pt;}
.y38{bottom:584.413333pt;}
.y4c{bottom:592.413333pt;}
.y169{bottom:595.453333pt;}
.ycc{bottom:597.213333pt;}
.y25{bottom:597.693333pt;}
.y118{bottom:597.853333pt;}
.y150{bottom:607.933333pt;}
.y90{bottom:608.413333pt;}
.yfa{bottom:610.853333pt;}
.yeb{bottom:613.213333pt;}
.y12e{bottom:613.853333pt;}
.ye4{bottom:614.493333pt;}
.y6f{bottom:618.013333pt;}
.y37{bottom:621.213333pt;}
.y13d{bottom:623.453333pt;}
.y81{bottom:626.813333pt;}
.y4b{bottom:629.213333pt;}
.y168{bottom:632.253333pt;}
.ycb{bottom:634.013333pt;}
.y24{bottom:634.493333pt;}
.y117{bottom:634.653333pt;}
.y14f{bottom:644.733333pt;}
.yc6{bottom:645.213333pt;}
.yf9{bottom:647.653333pt;}
.yea{bottom:650.013333pt;}
.y12d{bottom:650.653333pt;}
.y8f{bottom:651.293333pt;}
.y7{bottom:656.266667pt;}
.y36{bottom:658.013333pt;}
.y13c{bottom:664.253333pt;}
.y4a{bottom:666.013333pt;}
.y167{bottom:669.053333pt;}
.y6e{bottom:670.813333pt;}
.y23{bottom:671.293333pt;}
.y116{bottom:671.453333pt;}
.y14e{bottom:681.533333pt;}
.y61{bottom:682.013333pt;}
.yf8{bottom:684.453333pt;}
.ye9{bottom:686.813333pt;}
.y12c{bottom:687.453333pt;}
.y6{bottom:688.146667pt;}
.ya6{bottom:688.733333pt;}
.y35{bottom:694.813333pt;}
.y49{bottom:702.813333pt;}
.y166{bottom:705.853333pt;}
.yca{bottom:707.613333pt;}
.y115{bottom:708.253333pt;}
.y13b{bottom:717.053333pt;}
.y14d{bottom:718.333333pt;}
.y60{bottom:718.813333pt;}
.y5{bottom:720.028000pt;}
.y7d{bottom:723.133333pt;}
.y6d{bottom:723.613333pt;}
.y12b{bottom:724.293333pt;}
.y34{bottom:731.613333pt;}
.y186{bottom:739.173333pt;}
.y48{bottom:739.613333pt;}
.y165{bottom:742.693333pt;}
.yc9{bottom:744.413333pt;}
.y114{bottom:745.093333pt;}
.y22{bottom:750.333333pt;}
.y14c{bottom:755.173333pt;}
.y5f{bottom:755.613333pt;}
.y12a{bottom:761.093333pt;}
.y33{bottom:768.413333pt;}
.y13a{bottom:769.893333pt;}
.y4{bottom:775.818667pt;}
.y47{bottom:776.413333pt;}
.y164{bottom:779.493333pt;}
.yc8{bottom:781.253333pt;}
.y113{bottom:781.893333pt;}
.y9b{bottom:785.253333pt;}
.y14b{bottom:791.973333pt;}
.y5e{bottom:792.453333pt;}
.y129{bottom:797.893333pt;}
.y3{bottom:802.385333pt;}
.y32{bottom:805.253333pt;}
.y139{bottom:810.693333pt;}
.y46{bottom:813.253333pt;}
.y163{bottom:816.293333pt;}
.y21{bottom:817.733333pt;}
.y112{bottom:818.693333pt;}
.y14a{bottom:823.813333pt;}
.y2{bottom:828.952000pt;}
.y5d{bottom:829.253333pt;}
.yc7{bottom:834.053333pt;}
.y128{bottom:834.693333pt;}
.y31{bottom:842.053333pt;}
.y45{bottom:850.053333pt;}
.y162{bottom:853.093333pt;}
.y111{bottom:855.493333pt;}
.y1{bottom:855.520000pt;}
.y5c{bottom:866.053333pt;}
.y127{bottom:871.493333pt;}
.y30{bottom:878.853333pt;}
.y9f{bottom:881.573333pt;}
.y20{bottom:885.253333pt;}
.y44{bottom:886.853333pt;}
.y161{bottom:889.893333pt;}
.y110{bottom:892.293333pt;}
.y5b{bottom:902.853333pt;}
.y126{bottom:908.293333pt;}
.y2f{bottom:915.653333pt;}
.y43{bottom:923.653333pt;}
.y160{bottom:926.693333pt;}
.y5a{bottom:939.653333pt;}
.y10f{bottom:945.093333pt;}
.y2e{bottom:952.453333pt;}
.y1f{bottom:952.773333pt;}
.y42{bottom:960.453333pt;}
.y59{bottom:976.453333pt;}
.y2d{bottom:1013.253333pt;}
.h1d{height:21.120000pt;}
.h21{height:21.152000pt;}
.h20{height:21.280000pt;}
.h1e{height:21.312000pt;}
.ha{height:31.008437pt;}
.h23{height:31.520000pt;}
.h5{height:37.454181pt;}
.h4{height:37.504659pt;}
.h19{height:45.156250pt;}
.h7{height:46.281250pt;}
.h1b{height:47.716250pt;}
.h1c{height:48.841250pt;}
.h1a{height:51.374688pt;}
.hb{height:52.750000pt;}
.h12{height:52.800000pt;}
.h13{height:52.832000pt;}
.hc{height:55.328438pt;}
.hf{height:55.435104pt;}
.h15{height:55.488437pt;}
.hd{height:59.232000pt;}
.h9{height:59.662500pt;}
.h2{height:59.926690pt;}
.he{height:61.975625pt;}
.h3{height:75.009317pt;}
.h1f{height:84.640000pt;}
.h18{height:84.672000pt;}
.h11{height:89.600000pt;}
.h8{height:114.946875pt;}
.h14{height:149.120000pt;}
.h10{height:158.426667pt;}
.h16{height:793.760000pt;}
.h17{height:794.000000pt;}
.h22{height:1056.000000pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w22{width:16.000000pt;}
.w5{width:26.400000pt;}
.wc{width:53.152000pt;}
.w12{width:64.320000pt;}
.w1b{width:73.280000pt;}
.w1a{width:74.560000pt;}
.w10{width:79.680000pt;}
.w1c{width:82.880000pt;}
.wf{width:86.880000pt;}
.w1e{width:87.360000pt;}
.w1d{width:87.392000pt;}
.w11{width:87.552000pt;}
.w7{width:94.592000pt;}
.wb{width:96.160000pt;}
.w9{width:100.640000pt;}
.w19{width:102.400000pt;}
.w18{width:102.432000pt;}
.w17{width:102.560000pt;}
.w8{width:106.592000pt;}
.w16{width:110.112000pt;}
.w1f{width:115.040000pt;}
.w6{width:118.080000pt;}
.we{width:127.872000pt;}
.wa{width:176.826667pt;}
.wd{width:234.106667pt;}
.w4{width:562.653333pt;}
.w0{width:793.701333pt;}
.w3{width:793.759988pt;}
.w2{width:793.760000pt;}
.w1{width:794.000000pt;}
.w21{width:815.999988pt;}
.w20{width:816.000000pt;}
.w15{width:1122.559983pt;}
.w13{width:1122.560000pt;}
.w14{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:4.640000pt;}
.x9{left:7.200000pt;}
.x15{left:13.440000pt;}
.xb{left:18.080000pt;}
.x1e{left:75.519983pt;}
.x20{left:76.960000pt;}
.x1f{left:88.959983pt;}
.x1{left:90.708000pt;}
.x3{left:94.431988pt;}
.xa{left:95.872000pt;}
.x6{left:97.152000pt;}
.x5{left:107.871988pt;}
.x2b{left:109.471988pt;}
.x4{left:142.426655pt;}
.x7{left:179.394667pt;}
.x21{left:188.346667pt;}
.x11{left:193.466667pt;}
.xc{left:215.226667pt;}
.x12{left:248.066667pt;}
.x22{left:292.186667pt;}
.xd{left:311.266667pt;}
.x16{left:329.026667pt;}
.x23{left:396.066667pt;}
.x2c{left:406.493321pt;}
.x17{left:417.853333pt;}
.xe{left:419.293333pt;}
.x13{left:483.453333pt;}
.x24{left:499.746667pt;}
.xf{left:521.213333pt;}
.x25{left:575.613333pt;}
.x14{left:612.613333pt;}
.x26{left:650.333333pt;}
.x8{left:662.373333pt;}
.x18{left:683.333322pt;}
.x2{left:691.333322pt;}
.x1c{left:693.893322pt;}
.x2a{left:704.160000pt;}
.x27{left:734.493333pt;}
.x19{left:744.799988pt;}
.x1b{left:771.999988pt;}
.x1a{left:774.399988pt;}
.x28{left:823.173333pt;}
.x29{left:911.813333pt;}
.x1d{left:1012.133317pt;}
}


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;
}
