
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* 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("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #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("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -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(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_8fa6a459c6745c357dc90da0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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('chunks/assets/font_5ae697c8a7487060cbe1c622.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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('chunks/assets/font_e99ff107d6853d91e5d56c1d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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('chunks/assets/font_27028b9c78a569c94fc40677.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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('chunks/assets/font_3e8e7da1e403b54cabbfba8e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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('chunks/assets/font_877d76c805c07863e7ad8af1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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('chunks/assets/font_1303f3bf1c18dafafedb7ced.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.125488;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('chunks/assets/font_2e2f879251c8f3b4329934df.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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('chunks/assets/font_f9f4719e09cfeae5c3ab1cde.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{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);}
.v3{vertical-align:-75.120000px;}
.v1{vertical-align:-32.100000px;}
.v2{vertical-align:-14.280000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-3.600000px;}
.ls24{letter-spacing:-2.202000px;}
.ls14{letter-spacing:-0.544800px;}
.ls18{letter-spacing:-0.383400px;}
.ls17{letter-spacing:-0.310200px;}
.ls23{letter-spacing:-0.302400px;}
.ls32{letter-spacing:-0.288000px;}
.ls2a{letter-spacing:-0.283200px;}
.ls1e{letter-spacing:-0.265800px;}
.lsa{letter-spacing:-0.229800px;}
.ls29{letter-spacing:-0.211200px;}
.ls25{letter-spacing:-0.175800px;}
.ls27{letter-spacing:-0.168600px;}
.ls2b{letter-spacing:-0.100800px;}
.ls22{letter-spacing:-0.076800px;}
.ls2{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls1a{letter-spacing:0.015120px;}
.lsd{letter-spacing:0.023040px;}
.lsb{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.079200px;}
.ls1f{letter-spacing:0.100800px;}
.ls1d{letter-spacing:0.103200px;}
.ls12{letter-spacing:0.130800px;}
.ls20{letter-spacing:0.165000px;}
.lsf{letter-spacing:0.165600px;}
.ls9{letter-spacing:0.168000px;}
.ls1b{letter-spacing:0.204480px;}
.ls1{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.229200px;}
.ls10{letter-spacing:0.238200px;}
.ls31{letter-spacing:0.256800px;}
.ls30{letter-spacing:0.263400px;}
.ls13{letter-spacing:0.274800px;}
.ls15{letter-spacing:0.276600px;}
.ls26{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.298800px;}
.ls19{letter-spacing:0.312000px;}
.ls21{letter-spacing:0.358800px;}
.ls1c{letter-spacing:0.473760px;}
.ls11{letter-spacing:51.393600px;}
.ls4{letter-spacing:51.444000px;}
.ls2c{letter-spacing:57.600000px;}
.ls2d{letter-spacing:65.916000px;}
.ls2f{letter-spacing:70.149600px;}
.ls2e{letter-spacing:70.200000px;}
.ls5{letter-spacing:91.501920px;}
.ls6{letter-spacing:101.793600px;}
.ls7{letter-spacing:101.844000px;}
.ls3{letter-spacing:132.516000px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,139,139),0 0.015em rgb(0,139,139),0.015em 0 rgb(0,139,139),0 -0.015em  rgb(0,139,139);}
.sc4{text-shadow:-0.015em 0 rgb(255,255,0),0 0.015em rgb(255,255,0),0.015em 0 rgb(255,255,0),0 -0.015em  rgb(255,255,0);}
.sc3{text-shadow:-0.015em 0 rgb(64,64,64),0 0.015em rgb(64,64,64),0.015em 0 rgb(64,64,64),0 -0.015em  rgb(64,64,64);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,139,139);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(255,255,0);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(64,64,64);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-88.226784px;}
.ws17{word-spacing:-54.497760px;}
.ws1e{word-spacing:-54.218304px;}
.ws18{word-spacing:-54.185760px;}
.ws1d{word-spacing:-43.805040px;}
.ws1f{word-spacing:-43.446240px;}
.ws1a{word-spacing:-32.677344px;}
.wsb{word-spacing:-32.576544px;}
.ws0{word-spacing:-32.544000px;}
.ws2{word-spacing:-27.174240px;}
.ws21{word-spacing:-24.440544px;}
.ws3{word-spacing:-24.408000px;}
.ws14{word-spacing:-21.870960px;}
.wsa{word-spacing:-21.809760px;}
.ws9{word-spacing:-21.674304px;}
.ws7{word-spacing:-21.641760px;}
.ws15{word-spacing:-21.331560px;}
.ws16{word-spacing:-21.290904px;}
.ws13{word-spacing:-21.096960px;}
.ws8{word-spacing:-19.070784px;}
.ws6{word-spacing:-19.038240px;}
.wsf{word-spacing:-18.807600px;}
.wsc{word-spacing:-16.304544px;}
.ws5{word-spacing:-16.272000px;}
.wsd{word-spacing:-14.319360px;}
.ws1b{word-spacing:-0.200160px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.717120px;}
.ws12{word-spacing:22.038240px;}
.wse{word-spacing:34.040880px;}
.ws10{word-spacing:38.478240px;}
.ws11{word-spacing:56.096880px;}
.ws1c{word-spacing:1561.942992px;}
.ws20{word-spacing:2382.897120px;}
._4{margin-left:-23.312688px;}
._2{margin-left:-21.139200px;}
._1b{margin-left:-19.660008px;}
._17{margin-left:-18.316320px;}
._c{margin-left:-15.216144px;}
._1c{margin-left:-14.024640px;}
._19{margin-left:-11.458368px;}
._f{margin-left:-10.113984px;}
._b{margin-left:-8.883936px;}
._5{margin-left:-7.620240px;}
._10{margin-left:-6.437664px;}
._3{margin-left:-4.570800px;}
._6{margin-left:-3.548832px;}
._1{margin-left:-2.315760px;}
._0{margin-left:-1.205520px;}
._8{width:1.061040px;}
._7{width:2.327760px;}
._15{width:4.285920px;}
._16{width:13.568880px;}
._1a{width:20.491200px;}
._e{width:23.220960px;}
._18{width:25.831680px;}
._9{width:34.244880px;}
._a{width:51.987936px;}
._14{width:381.442320px;}
._12{width:382.726320px;}
._d{width:619.412832px;}
._11{width:920.772672px;}
._13{width:1026.573360px;}
.fce{color:rgb(127,127,127);}
.fc0{color:rgb(255,255,255);}
.fc6{color:rgb(0,165,140);}
.fc8{color:rgb(0,0,0);}
.fc1{color:rgb(255,212,36);}
.fc2{color:rgb(218,175,0);}
.fca{color:rgb(64,64,64);}
.fc7{color:rgb(160,193,194);}
.fc3{color:rgb(103,255,247);}
.fcf{color:rgb(255,0,255);}
.fc4{color:rgb(160,205,146);}
.fcd{color:rgb(255,255,0);}
.fc5{color:rgb(10,81,93);}
.fc10{color:rgb(0,139,139);}
.fc9{color:rgb(255,0,0);}
.fcc{color:rgb(0,169,143);}
.fcb{color:transparent;}
.fs15{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs14{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs13{font-size:72.144000px;}
.fsc{font-size:84.240000px;}
.fsf{font-size:84.384000px;}
.fsd{font-size:95.760000px;}
.fs10{font-size:95.904000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fs7{font-size:120.240000px;}
.fs11{font-size:120.384000px;}
.fs3{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fsa{font-size:192.240000px;}
.fs2{font-size:198.000000px;}
.fs16{font-size:239.760000px;}
.fs12{font-size:239.904000px;}
.fs0{font-size:264.240000px;}
.fs1{font-size:264.384000px;}
.fs17{font-size:390.240000px;}
.fs9{font-size:390.384000px;}
.fs6{font-size:450.144000px;}
.fs18{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:22.140000px;}
.y25{bottom:31.464000px;}
.y58{bottom:44.892000px;}
.y80{bottom:45.072000px;}
.y99{bottom:48.420000px;}
.y47{bottom:51.228000px;}
.ya6{bottom:52.200000px;}
.y46{bottom:54.324000px;}
.y24{bottom:56.700000px;}
.y57{bottom:70.092000px;}
.y6d{bottom:71.928000px;}
.y98{bottom:77.220000px;}
.y23{bottom:81.900000px;}
.y55{bottom:82.404000px;}
.yab{bottom:84.132000px;}
.ye1{bottom:84.708000px;}
.ya4{bottom:92.550000px;}
.ya1{bottom:92.595000px;}
.y8d{bottom:92.625000px;}
.y87{bottom:92.670000px;}
.y35{bottom:92.700000px;}
.ybc{bottom:92.730000px;}
.y85{bottom:92.805000px;}
.ya3{bottom:95.760000px;}
.y74{bottom:105.948000px;}
.y79{bottom:110.268000px;}
.y54{bottom:111.240000px;}
.ye0{bottom:113.508000px;}
.y97{bottom:115.056000px;}
.y72{bottom:117.000000px;}
.y3c{bottom:123.408000px;}
.y34{bottom:125.640000px;}
.y9c{bottom:135.720000px;}
.ya0{bottom:139.140000px;}
.ydf{bottom:142.308000px;}
.y96{bottom:143.856000px;}
.y45{bottom:145.980000px;}
.y78{bottom:148.104000px;}
.y1d{bottom:152.250000px;}
.y33{bottom:158.790000px;}
.y3b{bottom:158.940000px;}
.y48{bottom:164.130000px;}
.yb7{bottom:166.110000px;}
.y6{bottom:170.895000px;}
.yde{bottom:171.105000px;}
.y56{bottom:177.990000px;}
.y8a{bottom:179.025000px;}
.y9d{bottom:179.070000px;}
.y95{bottom:181.650000px;}
.y9e{bottom:182.520000px;}
.y62{bottom:182.550000px;}
.y68{bottom:185.910000px;}
.ya5{bottom:188.310000px;}
.y1c{bottom:190.050000px;}
.y32{bottom:191.730000px;}
.y21{bottom:194.220000px;}
.ydd{bottom:199.905000px;}
.y12{bottom:207.075000px;}
.y40{bottom:207.645000px;}
.y8f{bottom:207.825000px;}
.y89{bottom:207.870000px;}
.y67{bottom:214.710000px;}
.y6e{bottom:216.645000px;}
.y63{bottom:221.655000px;}
.y5{bottom:223.095000px;}
.y77{bottom:223.710000px;}
.ydc{bottom:228.750000px;}
.ya2{bottom:231.735000px;}
.y37{bottom:241.170000px;}
.y66{bottom:243.510000px;}
.y53{bottom:246.450000px;}
.ye3{bottom:246.750000px;}
.y8e{bottom:247.680000px;}
.ye5{bottom:248.655000px;}
.y9a{bottom:250.920000px;}
.y3e{bottom:255.960000px;}
.y64{bottom:256.470000px;}
.y38{bottom:257.295000px;}
.y31{bottom:257.790000px;}
.y11{bottom:260.355000px;}
.y76{bottom:270.510000px;}
.y9f{bottom:275.145000px;}
.ydb{bottom:275.550000px;}
.yd3{bottom:275.580000px;}
.y3f{bottom:278.100000px;}
.y2b{bottom:283.755000px;}
.y94{bottom:286.095000px;}
.y30{bottom:290.730000px;}
.y65{bottom:292.320000px;}
.y10{bottom:292.785000px;}
.y69{bottom:294.555000px;}
.yc0{bottom:295.845000px;}
.yc7{bottom:296.025000px;}
.yda{bottom:304.350000px;}
.y52{bottom:305.895000px;}
.y20{bottom:312.300000px;}
.yba{bottom:315.390000px;}
.y88{bottom:316.080000px;}
.y75{bottom:316.440000px;}
.yc8{bottom:316.470000px;}
.y3d{bottom:319.395000px;}
.yc9{bottom:319.575000px;}
.ycf{bottom:321.270000px;}
.y13{bottom:321.330000px;}
.y2a{bottom:321.555000px;}
.ye2{bottom:322.350000px;}
.y2f{bottom:323.715000px;}
.y93{bottom:323.895000px;}
.y5b{bottom:327.675000px;}
.y5a{bottom:328.605000px;}
.yf{bottom:334.185000px;}
.y4{bottom:335.235000px;}
.y51{bottom:338.295000px;}
.y9b{bottom:343.590000px;}
.y61{bottom:346.350000px;}
.yd2{bottom:349.740000px;}
.y1f{bottom:350.100000px;}
.yd9{bottom:351.150000px;}
.y9{bottom:353.130000px;}
.ybf{bottom:353.490000px;}
.y92{bottom:361.695000px;}
.y8c{bottom:362.880000px;}
.y7e{bottom:363.135000px;}
.ye{bottom:366.585000px;}
.y50{bottom:370.695000px;}
.y39{bottom:371.625000px;}
.yc2{bottom:371.700000px;}
.y83{bottom:371.730000px;}
.y60{bottom:375.150000px;}
.yd8{bottom:379.980000px;}
.yac{bottom:382.575000px;}
.y6f{bottom:387.510000px;}
.y1e{bottom:387.930000px;}
.ybd{bottom:389.160000px;}
.ye4{bottom:389.775000px;}
.yd1{bottom:391.140000px;}
.yc5{bottom:391.290000px;}
.y36{bottom:393.195000px;}
.y73{bottom:394.455000px;}
.y3{bottom:394.635000px;}
.y29{bottom:397.185000px;}
.yb4{bottom:398.235000px;}
.y7d{bottom:400.935000px;}
.y4f{bottom:403.125000px;}
.yd{bottom:407.985000px;}
.y2e{bottom:411.915000px;}
.y5f{bottom:412.950000px;}
.yc6{bottom:413.130000px;}
.yb5{bottom:414.570000px;}
.yb9{bottom:415.080000px;}
.y91{bottom:426.705000px;}
.yd7{bottom:426.780000px;}
.y86{bottom:431.280000px;}
.ybb{bottom:432.900000px;}
.y28{bottom:434.985000px;}
.yd0{bottom:435.990000px;}
.y4e{bottom:436.245000px;}
.yce{bottom:438.300000px;}
.y7c{bottom:438.735000px;}
.y5e{bottom:441.795000px;}
.y44{bottom:442.440000px;}
.yc{bottom:449.430000px;}
.yb0{bottom:452.085000px;}
.ycd{bottom:453.270000px;}
.yc1{bottom:454.140000px;}
.y82{bottom:454.215000px;}
.y90{bottom:455.505000px;}
.yd6{bottom:455.580000px;}
.y2d{bottom:456.915000px;}
.y71{bottom:460.470000px;}
.yaa{bottom:465.015000px;}
.y43{bottom:468.105000px;}
.y27{bottom:472.785000px;}
.y7b{bottom:476.565000px;}
.y84{bottom:476.640000px;}
.y2{bottom:477.465000px;}
.y5d{bottom:479.595000px;}
.ybe{bottom:481.830000px;}
.yd5{bottom:484.380000px;}
.y1b{bottom:486.975000px;}
.yaf{bottom:489.885000px;}
.ycc{bottom:491.115000px;}
.yb{bottom:491.550000px;}
.y4d{bottom:493.590000px;}
.ya9{bottom:493.815000px;}
.y41{bottom:494.670000px;}
.y8b{bottom:495.105000px;}
.y2c{bottom:501.945000px;}
.y5c{bottom:508.395000px;}
.y49{bottom:512.025000px;}
.y1a{bottom:512.175000px;}
.y42{bottom:519.690000px;}
.y7a{bottom:523.365000px;}
.y4c{bottom:526.755000px;}
.yae{bottom:527.730000px;}
.yb6{bottom:529.845000px;}
.ya8{bottom:531.645000px;}
.y70{bottom:532.260000px;}
.y16{bottom:533.415000px;}
.y81{bottom:536.655000px;}
.y19{bottom:537.375000px;}
.y4b{bottom:537.480000px;}
.ya{bottom:545.550000px;}
.y26{bottom:548.430000px;}
.y17{bottom:552.060000px;}
.y1{bottom:556.665000px;}
.yad{bottom:565.530000px;}
.y4a{bottom:566.175000px;}
.ya7{bottom:569.445000px;}
.y18{bottom:570.600000px;}
.y59{bottom:584.535000px;}
.yb3{bottom:588.240000px;}
.yca{bottom:588.960000px;}
.yb8{bottom:592.635000px;}
.y3a{bottom:599.760000px;}
.y7f{bottom:604.080000px;}
.yd4{bottom:618.195000px;}
.ycb{bottom:621.870000px;}
.yc4{bottom:635.580000px;}
.yb1{bottom:637.530000px;}
.yb2{bottom:638.070000px;}
.y22{bottom:643.350000px;}
.y6c{bottom:649.410000px;}
.yc3{bottom:660.780000px;}
.y6b{bottom:678.210000px;}
.y6a{bottom:707.010000px;}
.y14{bottom:717.045000px;}
.ye6{bottom:728.385000px;}
.y8{bottom:736.845000px;}
.y15{bottom:785.595000px;}
.h18{height:50.364141px;}
.h17{height:55.825312px;}
.hd{height:60.328125px;}
.h5{height:68.554688px;}
.h1f{height:70.995234px;}
.h16{height:71.613281px;}
.h15{height:71.756508px;}
.he{height:80.208984px;}
.h11{height:80.346094px;}
.h1e{height:80.703984px;}
.hf{height:91.177734px;}
.h12{height:91.314844px;}
.h1d{height:95.245664px;}
.h1c{height:95.388891px;}
.ha{height:102.832031px;}
.h9{height:102.969141px;}
.h6{height:107.419922px;}
.h1b{height:107.563148px;}
.h8{height:114.486328px;}
.h13{height:114.623437px;}
.h4{height:115.875000px;}
.h25{height:119.594180px;}
.h1a{height:123.116836px;}
.h19{height:123.264281px;}
.h10{height:137.246484px;}
.h24{height:143.226562px;}
.hc{height:183.041016px;}
.h3{height:188.525391px;}
.h21{height:201.780000px;}
.h20{height:228.287109px;}
.h14{height:228.424219px;}
.h1{height:251.595703px;}
.h2{height:251.732813px;}
.h23{height:371.566406px;}
.hb{height:371.703516px;}
.h22{height:403.380000px;}
.h7{height:428.603906px;}
.h26{height:457.259766px;}
.h0{height:810.000000px;}
.w7{width:55.440000px;}
.w6{width:97.920000px;}
.w9{width:98.100000px;}
.w4{width:106.380000px;}
.w5{width:106.560000px;}
.wa{width:115.020000px;}
.w2{width:129.780000px;}
.w8{width:131.940000px;}
.wd{width:213.840000px;}
.wb{width:263.700000px;}
.wc{width:334.980000px;}
.w3{width:507.780000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x45{left:10.836000px;}
.x5b{left:27.720000px;}
.x5e{left:30.090000px;}
.x3f{left:37.619979px;}
.x42{left:42.515979px;}
.x8{left:53.315979px;}
.x2e{left:55.115979px;}
.xf{left:68.327979px;}
.x2c{left:73.619979px;}
.x31{left:76.751979px;}
.x27{left:85.067979px;}
.x58{left:88.560000px;}
.x64{left:91.475979px;}
.x32{left:112.463979px;}
.x84{left:116.459979px;}
.x28{left:124.703979px;}
.x7f{left:126.863979px;}
.x6a{left:146.520000px;}
.x61{left:148.680000px;}
.x78{left:152.279979px;}
.x72{left:169.094979px;}
.x18{left:171.794979px;}
.x80{left:180.899979px;}
.x6b{left:190.515000px;}
.x70{left:223.275000px;}
.x9{left:224.609979px;}
.x81{left:234.899979px;}
.x73{left:244.469979px;}
.x47{left:250.454979px;}
.x66{left:252.509979px;}
.x62{left:255.060000px;}
.x33{left:261.899979px;}
.x69{left:268.919979px;}
.x3a{left:274.784979px;}
.x82{left:288.899979px;}
.x34{left:295.094979px;}
.x5{left:296.714979px;}
.x1{left:309.749979px;}
.x10{left:323.789979px;}
.x3{left:339.734979px;}
.x83{left:342.899979px;}
.x6{left:346.754979px;}
.x63{left:369.900000px;}
.x2{left:376.709979px;}
.x48{left:392.505000px;}
.x6c{left:410.040000px;}
.x7d{left:414.209979px;}
.x7e{left:426.269979px;}
.x46{left:428.324979px;}
.x88{left:434.189979px;}
.xd{left:438.509979px;}
.x4{left:445.754979px;}
.x6d{left:495.389979px;}
.x17{left:517.349979px;}
.x56{left:541.260000px;}
.x36{left:583.529979px;}
.x89{left:586.469979px;}
.x60{left:590.294979px;}
.x16{left:591.869979px;}
.x37{left:619.229979px;}
.x75{left:623.234979px;}
.x74{left:629.354979px;}
.x68{left:638.069979px;}
.x3c{left:648.284979px;}
.x3d{left:650.804979px;}
.x11{left:656.129979px;}
.x3e{left:657.644979px;}
.x76{left:658.724979px;}
.x65{left:664.124979px;}
.x57{left:686.699979px;}
.x6e{left:744.840000px;}
.x2b{left:754.124979px;}
.x21{left:755.894979px;}
.x2a{left:757.364979px;}
.x38{left:768.629979px;}
.x7c{left:774.149979px;}
.x85{left:776.264979px;}
.x20{left:780.689979px;}
.x4f{left:783.074979px;}
.x1e{left:787.319979px;}
.x86{left:797.504979px;}
.x39{left:801.824979px;}
.x4e{left:807.869979px;}
.x13{left:809.999979px;}
.x4c{left:814.499979px;}
.x6f{left:830.234979px;}
.x1a{left:833.729979px;}
.x40{left:836.669979px;}
.x87{left:838.049979px;}
.x79{left:849.674979px;}
.x59{left:851.580000px;}
.x2d{left:853.664979px;}
.x49{left:860.909979px;}
.x5a{left:873.899979px;}
.x43{left:886.499979px;}
.x14{left:898.664979px;}
.x5c{left:906.840000px;}
.x3b{left:914.069979px;}
.xa{left:920.234979px;}
.x5d{left:929.549979px;}
.x19{left:938.369979px;}
.x7a{left:940.829979px;}
.xb{left:951.914979px;}
.xc{left:973.184979px;}
.x12{left:1003.679979px;}
.x2f{left:1033.949979px;}
.x5f{left:1038.600000px;}
.x30{left:1055.189979px;}
.x77{left:1059.554979px;}
.x67{left:1062.794979px;}
.x41{left:1068.989979px;}
.x23{left:1073.879979px;}
.x1b{left:1077.149979px;}
.x1f{left:1080.179979px;}
.x7b{left:1094.219979px;}
.x51{left:1101.059979px;}
.x4a{left:1104.329979px;}
.x4d{left:1107.359979px;}
.x22{left:1117.589979px;}
.x71{left:1128.884979px;}
.x50{left:1144.769979px;}
.x44{left:1209.494979px;}
.x1c{left:1215.824979px;}
.x15{left:1220.114979px;}
.x7{left:1222.769979px;}
.x55{left:1236.674979px;}
.x4b{left:1243.004979px;}
.x1d{left:1268.429979px;}
.x29{left:1294.559979px;}
.x24{left:1301.399979px;}
.x25{left:1308.749979px;}
.x26{left:1326.059979px;}
.x52{left:1328.579979px;}
.x53{left:1335.959979px;}
.x54{left:1353.239979px;}
.x35{left:1405.799979px;}
.xe{left:1413.899979px;}
@media print{
.v3{vertical-align:-66.773333pt;}
.v1{vertical-align:-28.533333pt;}
.v2{vertical-align:-12.693333pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-3.200000pt;}
.ls24{letter-spacing:-1.957333pt;}
.ls14{letter-spacing:-0.484267pt;}
.ls18{letter-spacing:-0.340800pt;}
.ls17{letter-spacing:-0.275733pt;}
.ls23{letter-spacing:-0.268800pt;}
.ls32{letter-spacing:-0.256000pt;}
.ls2a{letter-spacing:-0.251733pt;}
.ls1e{letter-spacing:-0.236267pt;}
.lsa{letter-spacing:-0.204267pt;}
.ls29{letter-spacing:-0.187733pt;}
.ls25{letter-spacing:-0.156267pt;}
.ls27{letter-spacing:-0.149867pt;}
.ls2b{letter-spacing:-0.089600pt;}
.ls22{letter-spacing:-0.068267pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls1a{letter-spacing:0.013440pt;}
.lsd{letter-spacing:0.020480pt;}
.lsb{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.070400pt;}
.ls1f{letter-spacing:0.089600pt;}
.ls1d{letter-spacing:0.091733pt;}
.ls12{letter-spacing:0.116267pt;}
.ls20{letter-spacing:0.146667pt;}
.lsf{letter-spacing:0.147200pt;}
.ls9{letter-spacing:0.149333pt;}
.ls1b{letter-spacing:0.181760pt;}
.ls1{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.203733pt;}
.ls10{letter-spacing:0.211733pt;}
.ls31{letter-spacing:0.228267pt;}
.ls30{letter-spacing:0.234133pt;}
.ls13{letter-spacing:0.244267pt;}
.ls15{letter-spacing:0.245867pt;}
.ls26{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.265600pt;}
.ls19{letter-spacing:0.277333pt;}
.ls21{letter-spacing:0.318933pt;}
.ls1c{letter-spacing:0.421120pt;}
.ls11{letter-spacing:45.683200pt;}
.ls4{letter-spacing:45.728000pt;}
.ls2c{letter-spacing:51.200000pt;}
.ls2d{letter-spacing:58.592000pt;}
.ls2f{letter-spacing:62.355200pt;}
.ls2e{letter-spacing:62.400000pt;}
.ls5{letter-spacing:81.335040pt;}
.ls6{letter-spacing:90.483200pt;}
.ls7{letter-spacing:90.528000pt;}
.ls3{letter-spacing:117.792000pt;}
.ws4{word-spacing:-78.423808pt;}
.ws17{word-spacing:-48.442453pt;}
.ws1e{word-spacing:-48.194048pt;}
.ws18{word-spacing:-48.165120pt;}
.ws1d{word-spacing:-38.937813pt;}
.ws1f{word-spacing:-38.618880pt;}
.ws1a{word-spacing:-29.046528pt;}
.wsb{word-spacing:-28.956928pt;}
.ws0{word-spacing:-28.928000pt;}
.ws2{word-spacing:-24.154880pt;}
.ws21{word-spacing:-21.724928pt;}
.ws3{word-spacing:-21.696000pt;}
.ws14{word-spacing:-19.440853pt;}
.wsa{word-spacing:-19.386453pt;}
.ws9{word-spacing:-19.266048pt;}
.ws7{word-spacing:-19.237120pt;}
.ws15{word-spacing:-18.961387pt;}
.ws16{word-spacing:-18.925248pt;}
.ws13{word-spacing:-18.752853pt;}
.ws8{word-spacing:-16.951808pt;}
.ws6{word-spacing:-16.922880pt;}
.wsf{word-spacing:-16.717867pt;}
.wsc{word-spacing:-14.492928pt;}
.ws5{word-spacing:-14.464000pt;}
.wsd{word-spacing:-12.728320pt;}
.ws1b{word-spacing:-0.177920pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.637440pt;}
.ws12{word-spacing:19.589547pt;}
.wse{word-spacing:30.258560pt;}
.ws10{word-spacing:34.202880pt;}
.ws11{word-spacing:49.863893pt;}
.ws1c{word-spacing:1388.393771pt;}
.ws20{word-spacing:2118.130773pt;}
._4{margin-left:-20.722389pt;}
._2{margin-left:-18.790400pt;}
._1b{margin-left:-17.475563pt;}
._17{margin-left:-16.281173pt;}
._c{margin-left:-13.525461pt;}
._1c{margin-left:-12.466347pt;}
._19{margin-left:-10.185216pt;}
._f{margin-left:-8.990208pt;}
._b{margin-left:-7.896832pt;}
._5{margin-left:-6.773547pt;}
._10{margin-left:-5.722368pt;}
._3{margin-left:-4.062933pt;}
._6{margin-left:-3.154517pt;}
._1{margin-left:-2.058453pt;}
._0{margin-left:-1.071573pt;}
._8{width:0.943147pt;}
._7{width:2.069120pt;}
._15{width:3.809707pt;}
._16{width:12.061227pt;}
._1a{width:18.214400pt;}
._e{width:20.640853pt;}
._18{width:22.961493pt;}
._9{width:30.439893pt;}
._a{width:46.211499pt;}
._14{width:339.059840pt;}
._12{width:340.201173pt;}
._d{width:550.589184pt;}
._11{width:818.464597pt;}
._13{width:912.509653pt;}
.fs15{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs14{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs13{font-size:64.128000pt;}
.fsc{font-size:74.880000pt;}
.fsf{font-size:75.008000pt;}
.fsd{font-size:85.120000pt;}
.fs10{font-size:85.248000pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fs7{font-size:106.880000pt;}
.fs11{font-size:107.008000pt;}
.fs3{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fsa{font-size:170.880000pt;}
.fs2{font-size:176.000000pt;}
.fs16{font-size:213.120000pt;}
.fs12{font-size:213.248000pt;}
.fs0{font-size:234.880000pt;}
.fs1{font-size:235.008000pt;}
.fs17{font-size:346.880000pt;}
.fs9{font-size:347.008000pt;}
.fs6{font-size:400.128000pt;}
.fs18{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:19.680000pt;}
.y25{bottom:27.968000pt;}
.y58{bottom:39.904000pt;}
.y80{bottom:40.064000pt;}
.y99{bottom:43.040000pt;}
.y47{bottom:45.536000pt;}
.ya6{bottom:46.400000pt;}
.y46{bottom:48.288000pt;}
.y24{bottom:50.400000pt;}
.y57{bottom:62.304000pt;}
.y6d{bottom:63.936000pt;}
.y98{bottom:68.640000pt;}
.y23{bottom:72.800000pt;}
.y55{bottom:73.248000pt;}
.yab{bottom:74.784000pt;}
.ye1{bottom:75.296000pt;}
.ya4{bottom:82.266667pt;}
.ya1{bottom:82.306667pt;}
.y8d{bottom:82.333333pt;}
.y87{bottom:82.373333pt;}
.y35{bottom:82.400000pt;}
.ybc{bottom:82.426667pt;}
.y85{bottom:82.493333pt;}
.ya3{bottom:85.120000pt;}
.y74{bottom:94.176000pt;}
.y79{bottom:98.016000pt;}
.y54{bottom:98.880000pt;}
.ye0{bottom:100.896000pt;}
.y97{bottom:102.272000pt;}
.y72{bottom:104.000000pt;}
.y3c{bottom:109.696000pt;}
.y34{bottom:111.680000pt;}
.y9c{bottom:120.640000pt;}
.ya0{bottom:123.680000pt;}
.ydf{bottom:126.496000pt;}
.y96{bottom:127.872000pt;}
.y45{bottom:129.760000pt;}
.y78{bottom:131.648000pt;}
.y1d{bottom:135.333333pt;}
.y33{bottom:141.146667pt;}
.y3b{bottom:141.280000pt;}
.y48{bottom:145.893333pt;}
.yb7{bottom:147.653333pt;}
.y6{bottom:151.906667pt;}
.yde{bottom:152.093333pt;}
.y56{bottom:158.213333pt;}
.y8a{bottom:159.133333pt;}
.y9d{bottom:159.173333pt;}
.y95{bottom:161.466667pt;}
.y9e{bottom:162.240000pt;}
.y62{bottom:162.266667pt;}
.y68{bottom:165.253333pt;}
.ya5{bottom:167.386667pt;}
.y1c{bottom:168.933333pt;}
.y32{bottom:170.426667pt;}
.y21{bottom:172.640000pt;}
.ydd{bottom:177.693333pt;}
.y12{bottom:184.066667pt;}
.y40{bottom:184.573333pt;}
.y8f{bottom:184.733333pt;}
.y89{bottom:184.773333pt;}
.y67{bottom:190.853333pt;}
.y6e{bottom:192.573333pt;}
.y63{bottom:197.026667pt;}
.y5{bottom:198.306667pt;}
.y77{bottom:198.853333pt;}
.ydc{bottom:203.333333pt;}
.ya2{bottom:205.986667pt;}
.y37{bottom:214.373333pt;}
.y66{bottom:216.453333pt;}
.y53{bottom:219.066667pt;}
.ye3{bottom:219.333333pt;}
.y8e{bottom:220.160000pt;}
.ye5{bottom:221.026667pt;}
.y9a{bottom:223.040000pt;}
.y3e{bottom:227.520000pt;}
.y64{bottom:227.973333pt;}
.y38{bottom:228.706667pt;}
.y31{bottom:229.146667pt;}
.y11{bottom:231.426667pt;}
.y76{bottom:240.453333pt;}
.y9f{bottom:244.573333pt;}
.ydb{bottom:244.933333pt;}
.yd3{bottom:244.960000pt;}
.y3f{bottom:247.200000pt;}
.y2b{bottom:252.226667pt;}
.y94{bottom:254.306667pt;}
.y30{bottom:258.426667pt;}
.y65{bottom:259.840000pt;}
.y10{bottom:260.253333pt;}
.y69{bottom:261.826667pt;}
.yc0{bottom:262.973333pt;}
.yc7{bottom:263.133333pt;}
.yda{bottom:270.533333pt;}
.y52{bottom:271.906667pt;}
.y20{bottom:277.600000pt;}
.yba{bottom:280.346667pt;}
.y88{bottom:280.960000pt;}
.y75{bottom:281.280000pt;}
.yc8{bottom:281.306667pt;}
.y3d{bottom:283.906667pt;}
.yc9{bottom:284.066667pt;}
.ycf{bottom:285.573333pt;}
.y13{bottom:285.626667pt;}
.y2a{bottom:285.826667pt;}
.ye2{bottom:286.533333pt;}
.y2f{bottom:287.746667pt;}
.y93{bottom:287.906667pt;}
.y5b{bottom:291.266667pt;}
.y5a{bottom:292.093333pt;}
.yf{bottom:297.053333pt;}
.y4{bottom:297.986667pt;}
.y51{bottom:300.706667pt;}
.y9b{bottom:305.413333pt;}
.y61{bottom:307.866667pt;}
.yd2{bottom:310.880000pt;}
.y1f{bottom:311.200000pt;}
.yd9{bottom:312.133333pt;}
.y9{bottom:313.893333pt;}
.ybf{bottom:314.213333pt;}
.y92{bottom:321.506667pt;}
.y8c{bottom:322.560000pt;}
.y7e{bottom:322.786667pt;}
.ye{bottom:325.853333pt;}
.y50{bottom:329.506667pt;}
.y39{bottom:330.333333pt;}
.yc2{bottom:330.400000pt;}
.y83{bottom:330.426667pt;}
.y60{bottom:333.466667pt;}
.yd8{bottom:337.760000pt;}
.yac{bottom:340.066667pt;}
.y6f{bottom:344.453333pt;}
.y1e{bottom:344.826667pt;}
.ybd{bottom:345.920000pt;}
.ye4{bottom:346.466667pt;}
.yd1{bottom:347.680000pt;}
.yc5{bottom:347.813333pt;}
.y36{bottom:349.506667pt;}
.y73{bottom:350.626667pt;}
.y3{bottom:350.786667pt;}
.y29{bottom:353.053333pt;}
.yb4{bottom:353.986667pt;}
.y7d{bottom:356.386667pt;}
.y4f{bottom:358.333333pt;}
.yd{bottom:362.653333pt;}
.y2e{bottom:366.146667pt;}
.y5f{bottom:367.066667pt;}
.yc6{bottom:367.226667pt;}
.yb5{bottom:368.506667pt;}
.yb9{bottom:368.960000pt;}
.y91{bottom:379.293333pt;}
.yd7{bottom:379.360000pt;}
.y86{bottom:383.360000pt;}
.ybb{bottom:384.800000pt;}
.y28{bottom:386.653333pt;}
.yd0{bottom:387.546667pt;}
.y4e{bottom:387.773333pt;}
.yce{bottom:389.600000pt;}
.y7c{bottom:389.986667pt;}
.y5e{bottom:392.706667pt;}
.y44{bottom:393.280000pt;}
.yc{bottom:399.493333pt;}
.yb0{bottom:401.853333pt;}
.ycd{bottom:402.906667pt;}
.yc1{bottom:403.680000pt;}
.y82{bottom:403.746667pt;}
.y90{bottom:404.893333pt;}
.yd6{bottom:404.960000pt;}
.y2d{bottom:406.146667pt;}
.y71{bottom:409.306667pt;}
.yaa{bottom:413.346667pt;}
.y43{bottom:416.093333pt;}
.y27{bottom:420.253333pt;}
.y7b{bottom:423.613333pt;}
.y84{bottom:423.680000pt;}
.y2{bottom:424.413333pt;}
.y5d{bottom:426.306667pt;}
.ybe{bottom:428.293333pt;}
.yd5{bottom:430.560000pt;}
.y1b{bottom:432.866667pt;}
.yaf{bottom:435.453333pt;}
.ycc{bottom:436.546667pt;}
.yb{bottom:436.933333pt;}
.y4d{bottom:438.746667pt;}
.ya9{bottom:438.946667pt;}
.y41{bottom:439.706667pt;}
.y8b{bottom:440.093333pt;}
.y2c{bottom:446.173333pt;}
.y5c{bottom:451.906667pt;}
.y49{bottom:455.133333pt;}
.y1a{bottom:455.266667pt;}
.y42{bottom:461.946667pt;}
.y7a{bottom:465.213333pt;}
.y4c{bottom:468.226667pt;}
.yae{bottom:469.093333pt;}
.yb6{bottom:470.973333pt;}
.ya8{bottom:472.573333pt;}
.y70{bottom:473.120000pt;}
.y16{bottom:474.146667pt;}
.y81{bottom:477.026667pt;}
.y19{bottom:477.666667pt;}
.y4b{bottom:477.760000pt;}
.ya{bottom:484.933333pt;}
.y26{bottom:487.493333pt;}
.y17{bottom:490.720000pt;}
.y1{bottom:494.813333pt;}
.yad{bottom:502.693333pt;}
.y4a{bottom:503.266667pt;}
.ya7{bottom:506.173333pt;}
.y18{bottom:507.200000pt;}
.y59{bottom:519.586667pt;}
.yb3{bottom:522.880000pt;}
.yca{bottom:523.520000pt;}
.yb8{bottom:526.786667pt;}
.y3a{bottom:533.120000pt;}
.y7f{bottom:536.960000pt;}
.yd4{bottom:549.506667pt;}
.ycb{bottom:552.773333pt;}
.yc4{bottom:564.960000pt;}
.yb1{bottom:566.693333pt;}
.yb2{bottom:567.173333pt;}
.y22{bottom:571.866667pt;}
.y6c{bottom:577.253333pt;}
.yc3{bottom:587.360000pt;}
.y6b{bottom:602.853333pt;}
.y6a{bottom:628.453333pt;}
.y14{bottom:637.373333pt;}
.ye6{bottom:647.453333pt;}
.y8{bottom:654.973333pt;}
.y15{bottom:698.306667pt;}
.h18{height:44.768125pt;}
.h17{height:49.622500pt;}
.hd{height:53.625000pt;}
.h5{height:60.937500pt;}
.h1f{height:63.106875pt;}
.h16{height:63.656250pt;}
.h15{height:63.783562pt;}
.he{height:71.296875pt;}
.h11{height:71.418750pt;}
.h1e{height:71.736875pt;}
.hf{height:81.046875pt;}
.h12{height:81.168750pt;}
.h1d{height:84.662813pt;}
.h1c{height:84.790125pt;}
.ha{height:91.406250pt;}
.h9{height:91.528125pt;}
.h6{height:95.484375pt;}
.h1b{height:95.611688pt;}
.h8{height:101.765625pt;}
.h13{height:101.887500pt;}
.h4{height:103.000000pt;}
.h25{height:106.305937pt;}
.h1a{height:109.437187pt;}
.h19{height:109.568250pt;}
.h10{height:121.996875pt;}
.h24{height:127.312500pt;}
.hc{height:162.703125pt;}
.h3{height:167.578125pt;}
.h21{height:179.360000pt;}
.h20{height:202.921875pt;}
.h14{height:203.043750pt;}
.h1{height:223.640625pt;}
.h2{height:223.762500pt;}
.h23{height:330.281250pt;}
.hb{height:330.403125pt;}
.h22{height:358.560000pt;}
.h7{height:380.981250pt;}
.h26{height:406.453125pt;}
.h0{height:720.000000pt;}
.w7{width:49.280000pt;}
.w6{width:87.040000pt;}
.w9{width:87.200000pt;}
.w4{width:94.560000pt;}
.w5{width:94.720000pt;}
.wa{width:102.240000pt;}
.w2{width:115.360000pt;}
.w8{width:117.280000pt;}
.wd{width:190.080000pt;}
.wb{width:234.400000pt;}
.wc{width:297.760000pt;}
.w3{width:451.360000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x45{left:9.632000pt;}
.x5b{left:24.640000pt;}
.x5e{left:26.746667pt;}
.x3f{left:33.439981pt;}
.x42{left:37.791981pt;}
.x8{left:47.391981pt;}
.x2e{left:48.991981pt;}
.xf{left:60.735981pt;}
.x2c{left:65.439981pt;}
.x31{left:68.223981pt;}
.x27{left:75.615981pt;}
.x58{left:78.720000pt;}
.x64{left:81.311981pt;}
.x32{left:99.967981pt;}
.x84{left:103.519981pt;}
.x28{left:110.847981pt;}
.x7f{left:112.767981pt;}
.x6a{left:130.240000pt;}
.x61{left:132.160000pt;}
.x78{left:135.359981pt;}
.x72{left:150.306648pt;}
.x18{left:152.706648pt;}
.x80{left:160.799981pt;}
.x6b{left:169.346667pt;}
.x70{left:198.466667pt;}
.x9{left:199.653314pt;}
.x81{left:208.799981pt;}
.x73{left:217.306648pt;}
.x47{left:222.626648pt;}
.x66{left:224.453314pt;}
.x62{left:226.720000pt;}
.x33{left:232.799981pt;}
.x69{left:239.039981pt;}
.x3a{left:244.253314pt;}
.x82{left:256.799981pt;}
.x34{left:262.306648pt;}
.x5{left:263.746648pt;}
.x1{left:275.333314pt;}
.x10{left:287.813314pt;}
.x3{left:301.986648pt;}
.x83{left:304.799981pt;}
.x6{left:308.226648pt;}
.x63{left:328.800000pt;}
.x2{left:334.853314pt;}
.x48{left:348.893333pt;}
.x6c{left:364.480000pt;}
.x7d{left:368.186648pt;}
.x7e{left:378.906648pt;}
.x46{left:380.733314pt;}
.x88{left:385.946648pt;}
.xd{left:389.786648pt;}
.x4{left:396.226648pt;}
.x6d{left:440.346648pt;}
.x17{left:459.866648pt;}
.x56{left:481.120000pt;}
.x36{left:518.693314pt;}
.x89{left:521.306648pt;}
.x60{left:524.706648pt;}
.x16{left:526.106648pt;}
.x37{left:550.426648pt;}
.x75{left:553.986648pt;}
.x74{left:559.426648pt;}
.x68{left:567.173314pt;}
.x3c{left:576.253314pt;}
.x3d{left:578.493314pt;}
.x11{left:583.226648pt;}
.x3e{left:584.573314pt;}
.x76{left:585.533314pt;}
.x65{left:590.333314pt;}
.x57{left:610.399981pt;}
.x6e{left:662.080000pt;}
.x2b{left:670.333314pt;}
.x21{left:671.906648pt;}
.x2a{left:673.213314pt;}
.x38{left:683.226648pt;}
.x7c{left:688.133314pt;}
.x85{left:690.013314pt;}
.x20{left:693.946648pt;}
.x4f{left:696.066648pt;}
.x1e{left:699.839981pt;}
.x86{left:708.893314pt;}
.x39{left:712.733314pt;}
.x4e{left:718.106648pt;}
.x13{left:719.999981pt;}
.x4c{left:723.999981pt;}
.x6f{left:737.986648pt;}
.x1a{left:741.093314pt;}
.x40{left:743.706648pt;}
.x87{left:744.933314pt;}
.x79{left:755.266648pt;}
.x59{left:756.960000pt;}
.x2d{left:758.813314pt;}
.x49{left:765.253314pt;}
.x5a{left:776.799981pt;}
.x43{left:787.999981pt;}
.x14{left:798.813314pt;}
.x5c{left:806.080000pt;}
.x3b{left:812.506648pt;}
.xa{left:817.986648pt;}
.x5d{left:826.266648pt;}
.x19{left:834.106648pt;}
.x7a{left:836.293314pt;}
.xb{left:846.146648pt;}
.xc{left:865.053314pt;}
.x12{left:892.159981pt;}
.x2f{left:919.066648pt;}
.x5f{left:923.200000pt;}
.x30{left:937.946648pt;}
.x77{left:941.826648pt;}
.x67{left:944.706648pt;}
.x41{left:950.213314pt;}
.x23{left:954.559981pt;}
.x1b{left:957.466648pt;}
.x1f{left:960.159981pt;}
.x7b{left:972.639981pt;}
.x51{left:978.719981pt;}
.x4a{left:981.626648pt;}
.x4d{left:984.319981pt;}
.x22{left:993.413314pt;}
.x71{left:1003.453314pt;}
.x50{left:1017.573314pt;}
.x44{left:1075.106648pt;}
.x1c{left:1080.733314pt;}
.x15{left:1084.546648pt;}
.x7{left:1086.906648pt;}
.x55{left:1099.266648pt;}
.x4b{left:1104.893314pt;}
.x1d{left:1127.493314pt;}
.x29{left:1150.719981pt;}
.x24{left:1156.799981pt;}
.x25{left:1163.333314pt;}
.x26{left:1178.719981pt;}
.x52{left:1180.959981pt;}
.x53{left:1187.519981pt;}
.x54{left:1202.879981pt;}
.x35{left:1249.599981pt;}
.xe{left:1256.799981pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  