
    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_2f33ad86fd1946bcccfb0f2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_555dae87d1307b0baba88b4d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012207;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_19babcde575f7f3586823356.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973000;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_76378e07bd153042f7e26435.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.791000;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_94f0b2ef20c63f68bb74d825.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_959b52f581b71737e685332b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951172;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_3c725ead335891b33e5c4c66.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.714000;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_b51ce6c7b49f61ed0ebf41fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.173000;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_b31cf6e48cc0cda7a2cb676d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.979000;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_cf1b301e1cd5c9d27f6c6b59.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.937500;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:ffb;src:url('chunks/assets/font_4d2a4bb1677b3be084cb4eb8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.088379;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:ffc;src:url('chunks/assets/font_28d6264314c0967e9624d488.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.186035;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:ffd;src:url('chunks/assets/font_9434d55cb59fd08e86436800.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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:ffe;src:url('chunks/assets/font_2d31e8b3cfe892634ead28a3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.186035;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:fff;src:url('chunks/assets/font_9d88dbccf52936c1c95c6974.woff2')format("woff");}.fff{font-family:fff;line-height:1.087891;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:ff10;src:url('chunks/assets/font_9ba5904cf09660778a033eaf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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:ff11;src:url('chunks/assets/font_f8f63529cb3ee09ee04e9d5a.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.088379;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:ff12;src:url('chunks/assets/font_4f4f13996ab7fc6aeb4b945a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.088379;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:ff13;src:url('chunks/assets/font_7256d2ddfcbbd7af1df62bc4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.096191;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:ff14;src:url('chunks/assets/font_367bfd3cc8b85e49ad5c8f35.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.942383;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;}
.m1{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);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.598800px;}
.ls8{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.414600px;}
.ls2{letter-spacing:-0.368400px;}
.lsd{letter-spacing:-0.238800px;}
.lsa{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.492600px;}
.lsf{letter-spacing:0.504000px;}
.lse{letter-spacing:1.080000px;}
.ls4{letter-spacing:196.865760px;}
.ls1{letter-spacing:846.081600px;}
.ls5{letter-spacing:849.485760px;}
.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;}
}
.ws3{word-spacing:-252.722801px;}
.ws5{word-spacing:-66.240000px;}
.ws0{word-spacing:-31.589840px;}
.wsa{word-spacing:-23.809080px;}
.ws9{word-spacing:-23.316480px;}
.ws6{word-spacing:-22.948080px;}
.wsb{word-spacing:-22.717680px;}
.ws2{word-spacing:-22.214376px;}
.ws8{word-spacing:-20.874360px;}
.ws7{word-spacing:-16.813440px;}
.wse{word-spacing:-16.272000px;}
.wsc{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.696000px;}
.ws10{word-spacing:-15.264000px;}
.wsf{word-spacing:-13.066800px;}
.ws1{word-spacing:-12.362698px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-20.201135px;}
._a{margin-left:-17.603688px;}
._5{margin-left:-10.991634px;}
._2{margin-left:-9.075511px;}
._3{margin-left:-6.206624px;}
._0{margin-left:-4.322145px;}
._13{margin-left:-3.294328px;}
._1{margin-left:-2.129592px;}
._4{margin-left:-1.000784px;}
._8{width:1.531032px;}
._f{width:2.711192px;}
._14{width:4.680000px;}
._c{width:6.306063px;}
._b{width:7.560000px;}
._21{width:8.758675px;}
._6{width:10.073101px;}
._10{width:11.440784px;}
._12{width:12.864184px;}
._15{width:13.976128px;}
._1d{width:17.595528px;}
._22{width:19.219032px;}
._11{width:21.004968px;}
._d{width:22.486560px;}
._e{width:23.688000px;}
._1b{width:25.250072px;}
._1e{width:29.997120px;}
._24{width:31.320000px;}
._23{width:32.422560px;}
._1c{width:34.344000px;}
._1f{width:35.640000px;}
._1a{width:36.776686px;}
._18{width:37.985592px;}
._19{width:39.240000px;}
._20{width:41.222910px;}
._16{width:45.208784px;}
._17{width:46.813830px;}
._25{width:851.150400px;}
._7{width:2537.705760px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(90,94,234);}
.fc6{color:transparent;}
.fc5{color:rgb(60,59,208);}
.fc3{color:rgb(9,9,105);}
.fc2{color:rgb(211,231,242);}
.fc9{color:rgb(68,84,106);}
.fc4{color:rgb(252,252,252);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:0.990124px;}
.fs3{font-size:4.685961px;}
.fs4{font-size:29.698647px;}
.fs2{font-size:46.129472px;}
.fs14{font-size:47.520000px;}
.fs1{font-size:49.826245px;}
.fs15{font-size:54.720000px;}
.fs12{font-size:60.480000px;}
.fse{font-size:66.240000px;}
.fs13{font-size:72.000000px;}
.fs9{font-size:78.011401px;}
.fs5{font-size:80.597985px;}
.fs7{font-size:82.718985px;}
.fs11{font-size:83.520000px;}
.fs8{font-size:95.751620px;}
.fs10{font-size:96.480000px;}
.fs6{font-size:98.936935px;}
.fsf{font-size:119.520000px;}
.fsa{font-size:215.662771px;}
.fsc{font-size:270.659171px;}
.fsb{font-size:286.624251px;}
.fsd{font-size:308.198538px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000013px;}
.y8{bottom:0.201445px;}
.ya{bottom:2.173170px;}
.y50{bottom:3.240000px;}
.y4{bottom:3.251309px;}
.y6{bottom:3.394142px;}
.yd0{bottom:3.960000px;}
.y14{bottom:4.091949px;}
.y12{bottom:5.078248px;}
.ye{bottom:5.217616px;}
.yc{bottom:5.374097px;}
.y10{bottom:5.500168px;}
.y1d{bottom:6.840000px;}
.yb5{bottom:10.800000px;}
.yb8{bottom:10.845000px;}
.y64{bottom:12.240000px;}
.y16{bottom:12.923908px;}
.y1a{bottom:13.768823px;}
.y2b{bottom:15.120000px;}
.y36{bottom:15.480000px;}
.y18{bottom:15.502435px;}
.ybb{bottom:17.640000px;}
.y33{bottom:21.240000px;}
.y4f{bottom:23.040000px;}
.y58{bottom:23.400000px;}
.y54{bottom:23.445000px;}
.y39{bottom:33.480000px;}
.y5a{bottom:43.230000px;}
.y53{bottom:43.245000px;}
.y4e{bottom:43.560000px;}
.y61{bottom:43.605000px;}
.y2a{bottom:47.160000px;}
.y48{bottom:56.160000px;}
.y38{bottom:56.205000px;}
.y3{bottom:56.790010px;}
.y20{bottom:57.240000px;}
.y57{bottom:63.360000px;}
.y52{bottom:63.405000px;}
.y4d{bottom:65.550000px;}
.y29{bottom:70.245000px;}
.y47{bottom:70.596000px;}
.y27{bottom:70.605000px;}
.y5{bottom:74.430010px;}
.y1f{bottom:77.436000px;}
.y5f{bottom:83.550000px;}
.y55{bottom:83.565000px;}
.y4c{bottom:87.150000px;}
.y26{bottom:93.645000px;}
.y28{bottom:94.725000px;}
.y9{bottom:96.750009px;}
.y5e{bottom:103.710000px;}
.y4b{bottom:108.750000px;}
.y83{bottom:111.276000px;}
.y5d{bottom:123.870000px;}
.yec{bottom:124.596000px;}
.ya4{bottom:126.036000px;}
.yad{bottom:134.316000px;}
.yd8{bottom:139.716000px;}
.y82{bottom:142.956000px;}
.y5c{bottom:143.670000px;}
.yeb{bottom:146.916000px;}
.ya3{bottom:157.710000px;}
.yac{bottom:165.990000px;}
.yea{bottom:169.950000px;}
.yd7{bottom:174.270000px;}
.y81{bottom:174.630000px;}
.yb6{bottom:174.990000px;}
.yb9{bottom:175.035000px;}
.ybc{bottom:181.830000px;}
.yf{bottom:187.470005px;}
.ya2{bottom:189.390000px;}
.ye9{bottom:193.350000px;}
.yd6{bottom:195.915000px;}
.yab{bottom:197.715000px;}
.yaf{bottom:199.515000px;}
.y80{bottom:206.355000px;}
.ye8{bottom:212.115000px;}
.yd5{bottom:219.315000px;}
.ya1{bottom:221.115000px;}
.yae{bottom:221.475000px;}
.yb2{bottom:226.155000px;}
.y11{bottom:227.430003px;}
.yaa{bottom:229.395000px;}
.y13{bottom:230.310003px;}
.y7f{bottom:237.675000px;}
.yba{bottom:241.995000px;}
.yd4{bottom:243.435000px;}
.ya0{bottom:252.795000px;}
.ya9{bottom:261.075000px;}
.yd3{bottom:266.835000px;}
.y7e{bottom:269.355000px;}
.y9f{bottom:284.475000px;}
.yd2{bottom:285.555000px;}
.ya8{bottom:292.755000px;}
.yd{bottom:293.310000px;}
.yb{bottom:297.630000px;}
.y7d{bottom:301.035000px;}
.y105{bottom:312.195000px;}
.y9e{bottom:316.155000px;}
.ya7{bottom:324.465000px;}
.y7c{bottom:332.745000px;}
.y104{bottom:342.465000px;}
.y3b{bottom:343.545000px;}
.y9d{bottom:347.865000px;}
.ya6{bottom:356.145000px;}
.y62{bottom:360.465000px;}
.y7b{bottom:364.425000px;}
.y103{bottom:374.145000px;}
.y3a{bottom:377.025000px;}
.y9c{bottom:379.545000px;}
.ya5{bottom:389.985000px;}
.y37{bottom:393.585000px;}
.y7a{bottom:396.105000px;}
.y102{bottom:405.825000px;}
.y9b{bottom:410.865000px;}
.ye7{bottom:429.225000px;}
.y79{bottom:430.305000px;}
.y101{bottom:437.505000px;}
.yb7{bottom:439.665000px;}
.y60{bottom:441.105000px;}
.y9a{bottom:442.545000px;}
.ye6{bottom:451.950000px;}
.y35{bottom:467.070000px;}
.y100{bottom:469.230000px;}
.y99{bottom:474.270000px;}
.ye5{bottom:476.430000px;}
.y78{bottom:482.910000px;}
.yd1{bottom:486.870000px;}
.ye4{bottom:500.550000px;}
.y34{bottom:500.910000px;}
.y5b{bottom:501.630000px;}
.ycf{bottom:502.350000px;}
.y98{bottom:505.950000px;}
.y77{bottom:514.590000px;}
.ye3{bottom:524.670000px;}
.yff{bottom:532.590000px;}
.y32{bottom:534.390000px;}
.y97{bottom:537.630000px;}
.y19{bottom:540.989990px;}
.yce{bottom:542.670000px;}
.y76{bottom:545.910000px;}
.ye2{bottom:549.150000px;}
.yfe{bottom:563.910000px;}
.ye1{bottom:567.870000px;}
.y96{bottom:569.310000px;}
.y31{bottom:574.020000px;}
.y75{bottom:577.620000px;}
.ycd{bottom:585.180000px;}
.yfd{bottom:595.620000px;}
.y95{bottom:601.020000px;}
.y30{bottom:607.500000px;}
.y74{bottom:609.300000px;}
.y63{bottom:617.580000px;}
.ycc{bottom:622.260000px;}
.yfc{bottom:627.300000px;}
.yb4{bottom:630.540000px;}
.y94{bottom:632.700000px;}
.y15{bottom:633.149986px;}
.y2{bottom:638.382501px;}
.y2f{bottom:640.980000px;}
.ycb{bottom:653.940000px;}
.yfb{bottom:658.980000px;}
.y59{bottom:662.580000px;}
.y93{bottom:664.380000px;}
.y73{bottom:672.660000px;}
.y2e{bottom:674.460000px;}
.yca{bottom:685.620000px;}
.yfa{bottom:690.660000px;}
.y92{bottom:696.060000px;}
.y72{bottom:704.370000px;}
.y2d{bottom:708.330000px;}
.y17{bottom:715.229983px;}
.yc9{bottom:716.970000px;}
.yf9{bottom:722.370000px;}
.y56{bottom:723.090000px;}
.y91{bottom:727.770000px;}
.y71{bottom:736.050000px;}
.y2c{bottom:741.810000px;}
.yc8{bottom:748.650000px;}
.yf8{bottom:754.050000px;}
.y90{bottom:759.450000px;}
.ye0{bottom:767.370000px;}
.y70{bottom:767.730000px;}
.y25{bottom:775.290000px;}
.yc7{bottom:780.330000px;}
.yf7{bottom:785.730000px;}
.ydf{bottom:789.690000px;}
.y8f{bottom:791.130000px;}
.y6f{bottom:799.410000px;}
.y51{bottom:803.730000px;}
.yc6{bottom:812.010000px;}
.yde{bottom:812.730000px;}
.yf6{bottom:817.410000px;}
.yb3{bottom:821.370000px;}
.y8e{bottom:822.810000px;}
.y6e{bottom:831.135000px;}
.ydd{bottom:836.895000px;}
.yc5{bottom:843.735000px;}
.yf5{bottom:849.135000px;}
.y8d{bottom:854.175000px;}
.y6d{bottom:862.815000px;}
.ydc{bottom:869.295000px;}
.yc4{bottom:875.415000px;}
.yf4{bottom:880.815000px;}
.y8c{bottom:885.855000px;}
.y6c{bottom:894.495000px;}
.y44{bottom:900.615000px;}
.y24{bottom:902.055000px;}
.y4a{bottom:904.575000px;}
.yc3{bottom:907.095000px;}
.yf3{bottom:912.495000px;}
.y8b{bottom:917.535000px;}
.y6b{bottom:926.175000px;}
.y1b{bottom:931.560298px;}
.y43{bottom:931.575000px;}
.y23{bottom:932.655000px;}
.yc2{bottom:938.775000px;}
.yf2{bottom:944.175000px;}
.y8a{bottom:949.215000px;}
.y6a{bottom:957.885000px;}
.y42{bottom:960.405000px;}
.y22{bottom:967.605000px;}
.yc1{bottom:970.485000px;}
.yf1{bottom:975.885000px;}
.y89{bottom:980.925000px;}
.y41{bottom:988.845000px;}
.y69{bottom:989.205000px;}
.y21{bottom:998.925000px;}
.yc0{bottom:1002.165000px;}
.yf0{bottom:1007.205000px;}
.y88{bottom:1012.605000px;}
.y40{bottom:1017.285000px;}
.y68{bottom:1020.885000px;}
.ybf{bottom:1033.845000px;}
.yef{bottom:1038.885000px;}
.y87{bottom:1044.285000px;}
.y3f{bottom:1045.725000px;}
.y67{bottom:1052.565000px;}
.ybe{bottom:1065.525000px;}
.y3e{bottom:1067.685000px;}
.yee{bottom:1070.565000px;}
.ydb{bottom:1072.365000px;}
.y86{bottom:1075.965000px;}
.y66{bottom:1084.290000px;}
.y3d{bottom:1090.050000px;}
.ybd{bottom:1099.410000px;}
.yed{bottom:1102.290000px;}
.yda{bottom:1106.610000px;}
.y85{bottom:1107.690000px;}
.y49{bottom:1108.050000px;}
.y65{bottom:1118.490000px;}
.yb1{bottom:1119.570000px;}
.y3c{bottom:1136.490000px;}
.y84{bottom:1139.370000px;}
.yd9{bottom:1141.170000px;}
.yb0{bottom:1142.250000px;}
.y1e{bottom:1171.410000px;}
.y46{bottom:1173.930000px;}
.y1c{bottom:1187.250000px;}
.y45{bottom:1194.090000px;}
.y7{bottom:1239.029961px;}
.h3{height:0.764348px;}
.h9{height:3.560232px;}
.ha{height:9.720000px;}
.h8{height:11.520000px;}
.h6{height:14.399999px;}
.h4{height:15.839999px;}
.h41{height:20.880000px;}
.hb{height:22.273986px;}
.h1f{height:22.716000px;}
.h14{height:23.759999px;}
.hc{height:24.839999px;}
.h10{height:26.279999px;}
.h38{height:28.080000px;}
.h12{height:29.159999px;}
.he{height:29.879999px;}
.h27{height:32.040000px;}
.h28{height:32.076000px;}
.h2a{height:32.400000px;}
.h7{height:35.842599px;}
.h30{height:36.080859px;}
.h5{height:38.017425px;}
.h29{height:38.196000px;}
.h42{height:41.788125px;}
.h20{height:50.294531px;}
.h43{height:50.585625px;}
.h3a{height:52.624688px;}
.h26{height:54.208125px;}
.h2f{height:54.667969px;}
.h15{height:54.998037px;}
.hd{height:56.821580px;}
.h3b{height:57.636562px;}
.h32{height:58.921875px;}
.h2c{height:58.944375px;}
.h35{height:60.156000px;}
.h39{height:62.648438px;}
.h2e{height:63.078750px;}
.h44{height:63.210938px;}
.h23{height:63.414844px;}
.h11{height:64.272651px;}
.h25{height:64.558125px;}
.h16{height:67.319997px;}
.h37{height:70.171875px;}
.h2b{height:72.036000px;}
.h22{height:73.255078px;}
.h2d{height:73.324687px;}
.h34{height:80.280000px;}
.h1a{height:81.719997px;}
.h40{height:84.702656px;}
.h18{height:85.319996px;}
.h13{height:89.815019px;}
.hf{height:92.802845px;}
.h33{height:100.476000px;}
.h21{height:103.996406px;}
.h24{height:110.556000px;}
.h31{height:125.676000px;}
.h36{height:160.590000px;}
.h3d{height:190.830000px;}
.h3e{height:190.875000px;}
.h3f{height:197.670000px;}
.h17{height:202.291680px;}
.h1b{height:253.878302px;}
.h19{height:268.853547px;}
.h3c{height:279.105000px;}
.h1c{height:297.411589px;}
.h1d{height:1262.880000px;}
.h1e{height:1263.000000px;}
.h2{height:1275.749947px;}
.h0{height:1275.749959px;}
.h1{height:1275.750000px;}
.w4{width:2.160000px;}
.w20{width:17.640000px;}
.w6{width:18.719999px;}
.w5{width:47.519998px;}
.wb{width:63.719997px;}
.w3{width:65.159997px;}
.w2{width:86.399996px;}
.w8{width:89.999996px;}
.w1d{width:101.592000px;}
.w7{width:122.039995px;}
.wa{width:127.079995px;}
.w19{width:171.075000px;}
.w1a{width:190.155000px;}
.w13{width:212.115000px;}
.w12{width:212.475000px;}
.w11{width:212.505000px;}
.w23{width:212.835000px;}
.w22{width:212.865000px;}
.w15{width:231.225000px;}
.w1b{width:309.345000px;}
.w21{width:309.705000px;}
.w1f{width:310.830000px;}
.w9{width:318.599987px;}
.wd{width:446.759981px;}
.w16{width:467.790000px;}
.w1c{width:499.860000px;}
.we{width:592.919975px;}
.w1e{width:638.175000px;}
.w18{width:670.935000px;}
.w17{width:699.735000px;}
.wc{width:843.479965px;}
.w10{width:892.500000px;}
.w14{width:892.799987px;}
.wf{width:892.800000px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:1.589410px;}
.x14{left:7.560000px;}
.x1b{left:10.845000px;}
.xb{left:37.374627px;}
.xa{left:44.999998px;}
.x13{left:96.876000px;}
.xe{left:105.870000px;}
.x18{left:111.276000px;}
.x8{left:112.319995px;}
.xc{left:127.476000px;}
.x2{left:148.319994px;}
.x17{left:182.594987px;}
.x20{left:204.540000px;}
.x10{left:212.835000px;}
.x7{left:260.279989px;}
.x9{left:281.519988px;}
.x1d{left:307.584000px;}
.x1f{left:309.705000px;}
.x6{left:316.439987px;}
.x15{left:329.190000px;}
.xd{left:339.990000px;}
.x1{left:393.798512px;}
.x3{left:437.399982px;}
.x11{left:442.619987px;}
.x12{left:446.579987px;}
.x1e{left:455.940000px;}
.x19{left:472.860000px;}
.x1c{left:515.019000px;}
.x5{left:551.159977px;}
.xf{left:552.450000px;}
.x16{left:765.644987px;}
.x1a{left:791.205000px;}
.x23{left:831.929987px;}
.x21{left:836.249987px;}
.x22{left:838.769987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.532267pt;}
.ls8{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.368533pt;}
.ls2{letter-spacing:-0.327467pt;}
.lsd{letter-spacing:-0.212267pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.437867pt;}
.lsf{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.960000pt;}
.ls4{letter-spacing:174.991787pt;}
.ls1{letter-spacing:752.072533pt;}
.ls5{letter-spacing:755.098453pt;}
.ws3{word-spacing:-224.642490pt;}
.ws5{word-spacing:-58.880000pt;}
.ws0{word-spacing:-28.079857pt;}
.wsa{word-spacing:-21.163627pt;}
.ws9{word-spacing:-20.725760pt;}
.ws6{word-spacing:-20.398293pt;}
.wsb{word-spacing:-20.193493pt;}
.ws2{word-spacing:-19.746112pt;}
.ws8{word-spacing:-18.554987pt;}
.ws7{word-spacing:-14.945280pt;}
.wse{word-spacing:-14.464000pt;}
.wsc{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.952000pt;}
.ws10{word-spacing:-13.568000pt;}
.wsf{word-spacing:-11.614933pt;}
.ws1{word-spacing:-10.989065pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-17.956565pt;}
._a{margin-left:-15.647722pt;}
._5{margin-left:-9.770341pt;}
._2{margin-left:-8.067121pt;}
._3{margin-left:-5.516999pt;}
._0{margin-left:-3.841906pt;}
._13{margin-left:-2.928291pt;}
._1{margin-left:-1.892971pt;}
._4{margin-left:-0.889586pt;}
._8{width:1.360918pt;}
._f{width:2.409948pt;}
._14{width:4.160000pt;}
._c{width:5.605390pt;}
._b{width:6.720000pt;}
._21{width:7.785488pt;}
._6{width:8.953868pt;}
._10{width:10.169586pt;}
._12{width:11.434830pt;}
._15{width:12.423225pt;}
._1d{width:15.640469pt;}
._22{width:17.083584pt;}
._11{width:18.671082pt;}
._d{width:19.988053pt;}
._e{width:21.056000pt;}
._1b{width:22.444508pt;}
._1e{width:26.664107pt;}
._24{width:27.840000pt;}
._23{width:28.820053pt;}
._1c{width:30.528000pt;}
._1f{width:31.680000pt;}
._1a{width:32.690387pt;}
._18{width:33.764971pt;}
._19{width:34.880000pt;}
._20{width:36.642586pt;}
._16{width:40.185586pt;}
._17{width:41.612294pt;}
._25{width:756.578133pt;}
._7{width:2255.738453pt;}
.fs0{font-size:0.880110pt;}
.fs3{font-size:4.165299pt;}
.fs4{font-size:26.398798pt;}
.fs2{font-size:41.003975pt;}
.fs14{font-size:42.240000pt;}
.fs1{font-size:44.289996pt;}
.fs15{font-size:48.640000pt;}
.fs12{font-size:53.760000pt;}
.fse{font-size:58.880000pt;}
.fs13{font-size:64.000000pt;}
.fs9{font-size:69.343467pt;}
.fs5{font-size:71.642654pt;}
.fs7{font-size:73.527986pt;}
.fs11{font-size:74.240000pt;}
.fs8{font-size:85.112551pt;}
.fs10{font-size:85.760000pt;}
.fs6{font-size:87.943943pt;}
.fsf{font-size:106.240000pt;}
.fsa{font-size:191.700241pt;}
.fsc{font-size:240.585930pt;}
.fsb{font-size:254.777112pt;}
.fsd{font-size:273.954256pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000011pt;}
.y8{bottom:0.179062pt;}
.ya{bottom:1.931706pt;}
.y50{bottom:2.880000pt;}
.y4{bottom:2.890052pt;}
.y6{bottom:3.017015pt;}
.yd0{bottom:3.520000pt;}
.y14{bottom:3.637288pt;}
.y12{bottom:4.513998pt;}
.ye{bottom:4.637881pt;}
.yc{bottom:4.776975pt;}
.y10{bottom:4.889038pt;}
.y1d{bottom:6.080000pt;}
.yb5{bottom:9.600000pt;}
.yb8{bottom:9.640000pt;}
.y64{bottom:10.880000pt;}
.y16{bottom:11.487918pt;}
.y1a{bottom:12.238953pt;}
.y2b{bottom:13.440000pt;}
.y36{bottom:13.760000pt;}
.y18{bottom:13.779942pt;}
.ybb{bottom:15.680000pt;}
.y33{bottom:18.880000pt;}
.y4f{bottom:20.480000pt;}
.y58{bottom:20.800000pt;}
.y54{bottom:20.840000pt;}
.y39{bottom:29.760000pt;}
.y5a{bottom:38.426667pt;}
.y53{bottom:38.440000pt;}
.y4e{bottom:38.720000pt;}
.y61{bottom:38.760000pt;}
.y2a{bottom:41.920000pt;}
.y48{bottom:49.920000pt;}
.y38{bottom:49.960000pt;}
.y3{bottom:50.480009pt;}
.y20{bottom:50.880000pt;}
.y57{bottom:56.320000pt;}
.y52{bottom:56.360000pt;}
.y4d{bottom:58.266667pt;}
.y29{bottom:62.440000pt;}
.y47{bottom:62.752000pt;}
.y27{bottom:62.760000pt;}
.y5{bottom:66.160008pt;}
.y1f{bottom:68.832000pt;}
.y5f{bottom:74.266667pt;}
.y55{bottom:74.280000pt;}
.y4c{bottom:77.466667pt;}
.y26{bottom:83.240000pt;}
.y28{bottom:84.200000pt;}
.y9{bottom:86.000008pt;}
.y5e{bottom:92.186667pt;}
.y4b{bottom:96.666667pt;}
.y83{bottom:98.912000pt;}
.y5d{bottom:110.106667pt;}
.yec{bottom:110.752000pt;}
.ya4{bottom:112.032000pt;}
.yad{bottom:119.392000pt;}
.yd8{bottom:124.192000pt;}
.y82{bottom:127.072000pt;}
.y5c{bottom:127.706667pt;}
.yeb{bottom:130.592000pt;}
.ya3{bottom:140.186667pt;}
.yac{bottom:147.546667pt;}
.yea{bottom:151.066667pt;}
.yd7{bottom:154.906667pt;}
.y81{bottom:155.226667pt;}
.yb6{bottom:155.546667pt;}
.yb9{bottom:155.586667pt;}
.ybc{bottom:161.626667pt;}
.yf{bottom:166.640004pt;}
.ya2{bottom:168.346667pt;}
.ye9{bottom:171.866667pt;}
.yd6{bottom:174.146667pt;}
.yab{bottom:175.746667pt;}
.yaf{bottom:177.346667pt;}
.y80{bottom:183.426667pt;}
.ye8{bottom:188.546667pt;}
.yd5{bottom:194.946667pt;}
.ya1{bottom:196.546667pt;}
.yae{bottom:196.866667pt;}
.yb2{bottom:201.026667pt;}
.y11{bottom:202.160003pt;}
.yaa{bottom:203.906667pt;}
.y13{bottom:204.720003pt;}
.y7f{bottom:211.266667pt;}
.yba{bottom:215.106667pt;}
.yd4{bottom:216.386667pt;}
.ya0{bottom:224.706667pt;}
.ya9{bottom:232.066667pt;}
.yd3{bottom:237.186667pt;}
.y7e{bottom:239.426667pt;}
.y9f{bottom:252.866667pt;}
.yd2{bottom:253.826667pt;}
.ya8{bottom:260.226667pt;}
.yd{bottom:260.720000pt;}
.yb{bottom:264.560000pt;}
.y7d{bottom:267.586667pt;}
.y105{bottom:277.506667pt;}
.y9e{bottom:281.026667pt;}
.ya7{bottom:288.413333pt;}
.y7c{bottom:295.773333pt;}
.y104{bottom:304.413333pt;}
.y3b{bottom:305.373333pt;}
.y9d{bottom:309.213333pt;}
.ya6{bottom:316.573333pt;}
.y62{bottom:320.413333pt;}
.y7b{bottom:323.933333pt;}
.y103{bottom:332.573333pt;}
.y3a{bottom:335.133333pt;}
.y9c{bottom:337.373333pt;}
.ya5{bottom:346.653333pt;}
.y37{bottom:349.853333pt;}
.y7a{bottom:352.093333pt;}
.y102{bottom:360.733333pt;}
.y9b{bottom:365.213333pt;}
.ye7{bottom:381.533333pt;}
.y79{bottom:382.493333pt;}
.y101{bottom:388.893333pt;}
.yb7{bottom:390.813333pt;}
.y60{bottom:392.093333pt;}
.y9a{bottom:393.373333pt;}
.ye6{bottom:401.733333pt;}
.y35{bottom:415.173333pt;}
.y100{bottom:417.093333pt;}
.y99{bottom:421.573333pt;}
.ye5{bottom:423.493333pt;}
.y78{bottom:429.253333pt;}
.yd1{bottom:432.773333pt;}
.ye4{bottom:444.933333pt;}
.y34{bottom:445.253333pt;}
.y5b{bottom:445.893333pt;}
.ycf{bottom:446.533333pt;}
.y98{bottom:449.733333pt;}
.y77{bottom:457.413333pt;}
.ye3{bottom:466.373333pt;}
.yff{bottom:473.413333pt;}
.y32{bottom:475.013333pt;}
.y97{bottom:477.893333pt;}
.y19{bottom:480.879991pt;}
.yce{bottom:482.373333pt;}
.y76{bottom:485.253333pt;}
.ye2{bottom:488.133333pt;}
.yfe{bottom:501.253333pt;}
.ye1{bottom:504.773333pt;}
.y96{bottom:506.053333pt;}
.y31{bottom:510.240000pt;}
.y75{bottom:513.440000pt;}
.ycd{bottom:520.160000pt;}
.yfd{bottom:529.440000pt;}
.y95{bottom:534.240000pt;}
.y30{bottom:540.000000pt;}
.y74{bottom:541.600000pt;}
.y63{bottom:548.960000pt;}
.ycc{bottom:553.120000pt;}
.yfc{bottom:557.600000pt;}
.yb4{bottom:560.480000pt;}
.y94{bottom:562.400000pt;}
.y15{bottom:562.799988pt;}
.y2{bottom:567.451112pt;}
.y2f{bottom:569.760000pt;}
.ycb{bottom:581.280000pt;}
.yfb{bottom:585.760000pt;}
.y59{bottom:588.960000pt;}
.y93{bottom:590.560000pt;}
.y73{bottom:597.920000pt;}
.y2e{bottom:599.520000pt;}
.yca{bottom:609.440000pt;}
.yfa{bottom:613.920000pt;}
.y92{bottom:618.720000pt;}
.y72{bottom:626.106667pt;}
.y2d{bottom:629.626667pt;}
.y17{bottom:635.759985pt;}
.yc9{bottom:637.306667pt;}
.yf9{bottom:642.106667pt;}
.y56{bottom:642.746667pt;}
.y91{bottom:646.906667pt;}
.y71{bottom:654.266667pt;}
.y2c{bottom:659.386667pt;}
.yc8{bottom:665.466667pt;}
.yf8{bottom:670.266667pt;}
.y90{bottom:675.066667pt;}
.ye0{bottom:682.106667pt;}
.y70{bottom:682.426667pt;}
.y25{bottom:689.146667pt;}
.yc7{bottom:693.626667pt;}
.yf7{bottom:698.426667pt;}
.ydf{bottom:701.946667pt;}
.y8f{bottom:703.226667pt;}
.y6f{bottom:710.586667pt;}
.y51{bottom:714.426667pt;}
.yc6{bottom:721.786667pt;}
.yde{bottom:722.426667pt;}
.yf6{bottom:726.586667pt;}
.yb3{bottom:730.106667pt;}
.y8e{bottom:731.386667pt;}
.y6e{bottom:738.786667pt;}
.ydd{bottom:743.906667pt;}
.yc5{bottom:749.986667pt;}
.yf5{bottom:754.786667pt;}
.y8d{bottom:759.266667pt;}
.y6d{bottom:766.946667pt;}
.ydc{bottom:772.706667pt;}
.yc4{bottom:778.146667pt;}
.yf4{bottom:782.946667pt;}
.y8c{bottom:787.426667pt;}
.y6c{bottom:795.106667pt;}
.y44{bottom:800.546667pt;}
.y24{bottom:801.826667pt;}
.y4a{bottom:804.066667pt;}
.yc3{bottom:806.306667pt;}
.yf3{bottom:811.106667pt;}
.y8b{bottom:815.586667pt;}
.y6b{bottom:823.266667pt;}
.y1b{bottom:828.053598pt;}
.y43{bottom:828.066667pt;}
.y23{bottom:829.026667pt;}
.yc2{bottom:834.466667pt;}
.yf2{bottom:839.266667pt;}
.y8a{bottom:843.746667pt;}
.y6a{bottom:851.453333pt;}
.y42{bottom:853.693333pt;}
.y22{bottom:860.093333pt;}
.yc1{bottom:862.653333pt;}
.yf1{bottom:867.453333pt;}
.y89{bottom:871.933333pt;}
.y41{bottom:878.973333pt;}
.y69{bottom:879.293333pt;}
.y21{bottom:887.933333pt;}
.yc0{bottom:890.813333pt;}
.yf0{bottom:895.293333pt;}
.y88{bottom:900.093333pt;}
.y40{bottom:904.253333pt;}
.y68{bottom:907.453333pt;}
.ybf{bottom:918.973333pt;}
.yef{bottom:923.453333pt;}
.y87{bottom:928.253333pt;}
.y3f{bottom:929.533333pt;}
.y67{bottom:935.613333pt;}
.ybe{bottom:947.133333pt;}
.y3e{bottom:949.053333pt;}
.yee{bottom:951.613333pt;}
.ydb{bottom:953.213333pt;}
.y86{bottom:956.413333pt;}
.y66{bottom:963.813333pt;}
.y3d{bottom:968.933333pt;}
.ybd{bottom:977.253333pt;}
.yed{bottom:979.813333pt;}
.yda{bottom:983.653333pt;}
.y85{bottom:984.613333pt;}
.y49{bottom:984.933333pt;}
.y65{bottom:994.213333pt;}
.yb1{bottom:995.173333pt;}
.y3c{bottom:1010.213333pt;}
.y84{bottom:1012.773333pt;}
.yd9{bottom:1014.373333pt;}
.yb0{bottom:1015.333333pt;}
.y1e{bottom:1041.253333pt;}
.y46{bottom:1043.493333pt;}
.y1c{bottom:1055.333333pt;}
.y45{bottom:1061.413333pt;}
.y7{bottom:1101.359965pt;}
.h3{height:0.679421pt;}
.h9{height:3.164651pt;}
.ha{height:8.640000pt;}
.h8{height:10.240000pt;}
.h6{height:12.799999pt;}
.h4{height:14.079999pt;}
.h41{height:18.560000pt;}
.hb{height:19.799098pt;}
.h1f{height:20.192000pt;}
.h14{height:21.119999pt;}
.hc{height:22.079999pt;}
.h10{height:23.359999pt;}
.h38{height:24.960000pt;}
.h12{height:25.919999pt;}
.he{height:26.559999pt;}
.h27{height:28.480000pt;}
.h28{height:28.512000pt;}
.h2a{height:28.800000pt;}
.h7{height:31.860088pt;}
.h30{height:32.071875pt;}
.h5{height:33.793267pt;}
.h29{height:33.952000pt;}
.h42{height:37.145000pt;}
.h20{height:44.706250pt;}
.h43{height:44.965000pt;}
.h3a{height:46.777500pt;}
.h26{height:48.185000pt;}
.h2f{height:48.593750pt;}
.h15{height:48.887144pt;}
.hd{height:50.508071pt;}
.h3b{height:51.232500pt;}
.h32{height:52.375000pt;}
.h2c{height:52.395000pt;}
.h35{height:53.472000pt;}
.h39{height:55.687500pt;}
.h2e{height:56.070000pt;}
.h44{height:56.187500pt;}
.h23{height:56.368750pt;}
.h11{height:57.131245pt;}
.h25{height:57.385000pt;}
.h16{height:59.839998pt;}
.h37{height:62.375000pt;}
.h2b{height:64.032000pt;}
.h22{height:65.115625pt;}
.h2d{height:65.177500pt;}
.h34{height:71.360000pt;}
.h1a{height:72.639997pt;}
.h40{height:75.291250pt;}
.h18{height:75.839997pt;}
.h13{height:79.835573pt;}
.hf{height:82.491418pt;}
.h33{height:89.312000pt;}
.h21{height:92.441250pt;}
.h24{height:98.272000pt;}
.h31{height:111.712000pt;}
.h36{height:142.746667pt;}
.h3d{height:169.626667pt;}
.h3e{height:169.666667pt;}
.h3f{height:175.706667pt;}
.h17{height:179.814826pt;}
.h1b{height:225.669602pt;}
.h19{height:238.980931pt;}
.h3c{height:248.093333pt;}
.h1c{height:264.365857pt;}
.h1d{height:1122.560000pt;}
.h1e{height:1122.666667pt;}
.h2{height:1133.999953pt;}
.h0{height:1133.999964pt;}
.h1{height:1134.000000pt;}
.w4{width:1.920000pt;}
.w20{width:15.680000pt;}
.w6{width:16.639999pt;}
.w5{width:42.239998pt;}
.wb{width:56.639998pt;}
.w3{width:57.919998pt;}
.w2{width:76.799997pt;}
.w8{width:79.999997pt;}
.w1d{width:90.304000pt;}
.w7{width:108.479995pt;}
.wa{width:112.959995pt;}
.w19{width:152.066667pt;}
.w1a{width:169.026667pt;}
.w13{width:188.546667pt;}
.w12{width:188.866667pt;}
.w11{width:188.893333pt;}
.w23{width:189.186667pt;}
.w22{width:189.213333pt;}
.w15{width:205.533333pt;}
.w1b{width:274.973333pt;}
.w21{width:275.293333pt;}
.w1f{width:276.293333pt;}
.w9{width:283.199988pt;}
.wd{width:397.119983pt;}
.w16{width:415.813333pt;}
.w1c{width:444.320000pt;}
.we{width:527.039978pt;}
.w1e{width:567.266667pt;}
.w18{width:596.386667pt;}
.w17{width:621.986667pt;}
.wc{width:749.759969pt;}
.w10{width:793.333333pt;}
.w14{width:793.599988pt;}
.wf{width:793.600000pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.412809pt;}
.x14{left:6.720000pt;}
.x1b{left:9.640000pt;}
.xb{left:33.221891pt;}
.xa{left:39.999998pt;}
.x13{left:86.112000pt;}
.xe{left:94.106667pt;}
.x18{left:98.912000pt;}
.x8{left:99.839996pt;}
.xc{left:113.312000pt;}
.x2{left:131.839995pt;}
.x17{left:162.306655pt;}
.x20{left:181.813333pt;}
.x10{left:189.186667pt;}
.x7{left:231.359990pt;}
.x9{left:250.239990pt;}
.x1d{left:273.408000pt;}
.x1f{left:275.293333pt;}
.x6{left:281.279988pt;}
.x15{left:292.613333pt;}
.xd{left:302.213333pt;}
.x1{left:350.043122pt;}
.x3{left:388.799984pt;}
.x11{left:393.439988pt;}
.x12{left:396.959988pt;}
.x1e{left:405.280000pt;}
.x19{left:420.320000pt;}
.x1c{left:457.794667pt;}
.x5{left:489.919980pt;}
.xf{left:491.066667pt;}
.x16{left:680.573322pt;}
.x1a{left:703.293333pt;}
.x23{left:739.493322pt;}
.x21{left:743.333322pt;}
.x22{left:745.573322pt;}
}




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