
    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_2bcded744917f81f47942975.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_eb954a8a84a0ea8b2d1dfc04.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_2381a4b9a4d4df1d84511d24.woff')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_90c16d5e417b62265085f763.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893066;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_41cbb10674f1a3001517d572.woff')format("woff");}.ff5{font-family:ff5;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-26.135998px;}
.v3{vertical-align:-23.760001px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:28.513380px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000002px;}
.ls1{letter-spacing:0.000023px;}
.ls4{letter-spacing:14.994141px;}
.lsa{letter-spacing:17.999986px;}
.ls7{letter-spacing:18.000000px;}
.ls5{letter-spacing:19.494141px;}
.ls8{letter-spacing:23.994141px;}
.ls3{letter-spacing:27.000000px;}
.ls2{letter-spacing:28.403173px;}
.ls6{letter-spacing:28.494141px;}
.ls9{letter-spacing:31.500000px;}
.lsb{letter-spacing:54.000000px;}
.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;}
}
.ws27{word-spacing:-18.000000px;}
.ws1d{word-spacing:-15.000000px;}
.ws1{word-spacing:-12.600000px;}
.ws5d{word-spacing:-10.800000px;}
.ws9c{word-spacing:-5.167531px;}
.ws54{word-spacing:-0.095493px;}
.ws34{word-spacing:-0.072000px;}
.ws7c{word-spacing:-0.017719px;}
.ws7f{word-spacing:-0.017717px;}
.ws76{word-spacing:-0.017674px;}
.ws7b{word-spacing:-0.017629px;}
.ws9a{word-spacing:-0.017615px;}
.ws55{word-spacing:-0.017600px;}
.ws5b{word-spacing:-0.017594px;}
.ws15{word-spacing:-0.017588px;}
.wsb{word-spacing:-0.017582px;}
.wsa{word-spacing:-0.017573px;}
.ws59{word-spacing:-0.017571px;}
.ws8a{word-spacing:-0.017539px;}
.ws70{word-spacing:-0.017536px;}
.ws87{word-spacing:-0.016340px;}
.ws16{word-spacing:-0.016265px;}
.ws11{word-spacing:-0.016243px;}
.ws79{word-spacing:-0.016229px;}
.ws7a{word-spacing:-0.016226px;}
.ws7e{word-spacing:-0.016131px;}
.ws8b{word-spacing:-0.014964px;}
.ws7{word-spacing:-0.014920px;}
.ws10{word-spacing:-0.014818px;}
.ws56{word-spacing:-0.011729px;}
.ws3e{word-spacing:-0.000034px;}
.ws13{word-spacing:-0.000023px;}
.ws61{word-spacing:-0.000013px;}
.ws23{word-spacing:-0.000012px;}
.ws5{word-spacing:0.000000px;}
.ws5f{word-spacing:0.000002px;}
.ws5e{word-spacing:0.000009px;}
.wse{word-spacing:0.000011px;}
.ws3d{word-spacing:0.000020px;}
.ws37{word-spacing:0.000022px;}
.ws58{word-spacing:0.000033px;}
.ws8d{word-spacing:4.482359px;}
.ws6e{word-spacing:4.482415px;}
.ws17{word-spacing:4.482422px;}
.ws52{word-spacing:4.482425px;}
.ws51{word-spacing:4.482427px;}
.ws85{word-spacing:4.482440px;}
.wsf{word-spacing:4.483690px;}
.ws18{word-spacing:4.483746px;}
.ws9b{word-spacing:4.483758px;}
.ws6f{word-spacing:4.483768px;}
.ws7d{word-spacing:4.483773px;}
.ws64{word-spacing:4.483774px;}
.ws69{word-spacing:4.483802px;}
.ws1a{word-spacing:4.483836px;}
.ws1c{word-spacing:4.483971px;}
.ws50{word-spacing:4.487648px;}
.ws8c{word-spacing:4.487666px;}
.ws1b{word-spacing:4.488188px;}
.ws19{word-spacing:4.488235px;}
.ws65{word-spacing:4.488281px;}
.ws93{word-spacing:4.499887px;}
.ws2e{word-spacing:4.499966px;}
.ws78{word-spacing:4.499977px;}
.ws29{word-spacing:4.499978px;}
.ws57{word-spacing:4.499988px;}
.ws38{word-spacing:4.499989px;}
.ws6c{word-spacing:4.499996px;}
.ws32{word-spacing:4.499997px;}
.ws24{word-spacing:4.500000px;}
.ws33{word-spacing:4.500002px;}
.ws4a{word-spacing:4.500010px;}
.ws40{word-spacing:4.500022px;}
.ws3f{word-spacing:4.500033px;}
.ws99{word-spacing:5.365640px;}
.ws95{word-spacing:5.365642px;}
.ws4c{word-spacing:5.368716px;}
.ws62{word-spacing:5.994141px;}
.ws88{word-spacing:8.979852px;}
.ws83{word-spacing:8.982326px;}
.ws75{word-spacing:8.982340px;}
.ws9{word-spacing:8.982361px;}
.ws80{word-spacing:8.982374px;}
.ws12{word-spacing:8.982421px;}
.ws82{word-spacing:8.982429px;}
.ws8{word-spacing:8.982541px;}
.wsc{word-spacing:8.983750px;}
.ws66{word-spacing:8.983773px;}
.ws5a{word-spacing:8.983775px;}
.ws81{word-spacing:8.983848px;}
.ws84{word-spacing:8.983971px;}
.ws67{word-spacing:8.984981px;}
.ws4f{word-spacing:8.985061px;}
.ws6{word-spacing:8.999965px;}
.ws3{word-spacing:8.999977px;}
.ws3b{word-spacing:8.999986px;}
.ws8e{word-spacing:8.999988px;}
.ws20{word-spacing:8.999989px;}
.ws28{word-spacing:8.999998px;}
.ws8f{word-spacing:8.999999px;}
.ws2{word-spacing:9.000000px;}
.ws3c{word-spacing:9.000002px;}
.ws22{word-spacing:9.000011px;}
.ws21{word-spacing:9.000023px;}
.ws2d{word-spacing:9.000034px;}
.ws63{word-spacing:10.494141px;}
.ws6a{word-spacing:13.483702px;}
.ws74{word-spacing:13.485056px;}
.ws89{word-spacing:13.488185px;}
.ws53{word-spacing:13.488281px;}
.ws42{word-spacing:13.499977px;}
.ws25{word-spacing:13.499988px;}
.ws39{word-spacing:13.499999px;}
.ws1f{word-spacing:13.500000px;}
.ws26{word-spacing:13.500001px;}
.ws3a{word-spacing:13.500022px;}
.ws36{word-spacing:13.500034px;}
.ws91{word-spacing:14.359378px;}
.ws92{word-spacing:14.359379px;}
.ws6b{word-spacing:14.994141px;}
.ws86{word-spacing:17.928011px;}
.ws72{word-spacing:17.928022px;}
.wsd{word-spacing:17.982385px;}
.ws68{word-spacing:17.982418px;}
.ws5c{word-spacing:17.983723px;}
.ws4d{word-spacing:17.999977px;}
.ws43{word-spacing:17.999986px;}
.ws44{word-spacing:17.999988px;}
.ws41{word-spacing:17.999998px;}
.ws2b{word-spacing:18.000000px;}
.ws45{word-spacing:18.000008px;}
.ws35{word-spacing:18.000010px;}
.ws2c{word-spacing:18.000012px;}
.ws60{word-spacing:18.000022px;}
.ws94{word-spacing:18.859379px;}
.ws9d{word-spacing:18.862481px;}
.ws98{word-spacing:18.862516px;}
.ws97{word-spacing:18.865660px;}
.ws73{word-spacing:19.494141px;}
.ws2a{word-spacing:22.499967px;}
.ws48{word-spacing:22.499978px;}
.ws90{word-spacing:22.499988px;}
.ws4{word-spacing:22.500000px;}
.ws49{word-spacing:22.500011px;}
.ws96{word-spacing:23.359379px;}
.ws30{word-spacing:26.999978px;}
.ws1e{word-spacing:26.999987px;}
.ws31{word-spacing:27.000000px;}
.ws6d{word-spacing:31.499977px;}
.ws14{word-spacing:31.499988px;}
.ws2f{word-spacing:31.500001px;}
.ws4e{word-spacing:31.500033px;}
.ws46{word-spacing:35.999977px;}
.ws0{word-spacing:36.000000px;}
.ws77{word-spacing:40.499997px;}
.ws47{word-spacing:40.499999px;}
.ws4b{word-spacing:44.999999px;}
.ws71{word-spacing:529.888941px;}
._19{margin-left:-9.281193px;}
._1f{margin-left:-7.980469px;}
._11{margin-left:-6.905625px;}
._c{margin-left:-5.027388px;}
._0{margin-left:-3.972635px;}
._8{margin-left:-2.646203px;}
._9{margin-left:-1.004468px;}
._21{width:2.671880px;}
._a{width:14.759745px;}
._1d{width:15.965893px;}
._f{width:17.999999px;}
._4{width:19.473381px;}
._17{width:21.309683px;}
._1{width:22.500021px;}
._7{width:23.973381px;}
._15{width:25.523438px;}
._d{width:27.000023px;}
._5{width:28.442141px;}
._2{width:31.499999px;}
._1e{width:32.852542px;}
._e{width:35.999989px;}
._6{width:37.422618px;}
._14{width:40.499985px;}
._1c{width:41.568706px;}
._1b{width:42.875572px;}
._3{width:45.000001px;}
._18{width:48.023438px;}
._b{width:49.500000px;}
._16{width:52.066406px;}
._13{width:54.000028px;}
._12{width:58.500002px;}
._1a{width:60.046875px;}
._22{width:61.171874px;}
._20{width:65.671875px;}
._10{width:156.023438px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:39.600001px;}
.fs3{font-size:43.200002px;}
.fs1{font-size:50.399999px;}
.fs2{font-size:59.999999px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y165{bottom:110.114655px;}
.yf7{bottom:110.115375px;}
.y96{bottom:116.055375px;}
.y141{bottom:124.739655px;}
.y7d{bottom:124.740375px;}
.y164{bottom:128.114655px;}
.y98{bottom:128.115375px;}
.y53{bottom:130.244775px;}
.yf6{bottom:134.055375px;}
.y140{bottom:142.739655px;}
.y7c{bottom:143.550375px;}
.ydb{bottom:146.115375px;}
.y52{bottom:151.619775px;}
.y163{bottom:152.054655px;}
.y97{bottom:152.055375px;}
.y13f{bottom:160.739655px;}
.y7b{bottom:162.990375px;}
.y9c{bottom:164.115375px;}
.yf8{bottom:170.055375px;}
.y28{bottom:170.249970px;}
.y166{bottom:172.583655px;}
.y51{bottom:172.994775px;}
.y13e{bottom:178.739655px;}
.y7a{bottom:180.990375px;}
.yc8{bottom:181.995150px;}
.y9b{bottom:182.115375px;}
.y111{bottom:188.055375px;}
.y27{bottom:188.249970px;}
.y50{bottom:194.369775px;}
.y13d{bottom:196.739655px;}
.y79{bottom:198.990375px;}
.y9a{bottom:200.115375px;}
.yc6{bottom:203.370150px;}
.yf5{bottom:204.495150px;}
.y112{bottom:206.055375px;}
.y26{bottom:206.249970px;}
.yc7{bottom:210.498120px;}
.y13c{bottom:214.739655px;}
.y4f{bottom:215.744775px;}
.y123{bottom:218.115375px;}
.y99{bottom:224.055375px;}
.y25{bottom:224.249970px;}
.y78{bottom:224.334375px;}
.yc5{bottom:224.745150px;}
.yf4{bottom:225.870150px;}
.y13b{bottom:232.739655px;}
.y122{bottom:236.115375px;}
.y4e{bottom:237.119970px;}
.y9d{bottom:242.055375px;}
.y24{bottom:242.249970px;}
.yf3{bottom:247.245150px;}
.y162{bottom:248.294415px;}
.ydf{bottom:250.740375px;}
.y121{bottom:254.115375px;}
.y13a{bottom:256.679655px;}
.y4d{bottom:258.494970px;}
.y9e{bottom:260.055375px;}
.y110{bottom:264.120150px;}
.yc4{bottom:267.495150px;}
.yf2{bottom:268.620150px;}
.y144{bottom:268.739655px;}
.yde{bottom:268.740375px;}
.y120{bottom:272.115375px;}
.y9f{bottom:278.055375px;}
.y4c{bottom:279.869970px;}
.y23{bottom:282.119970px;}
.y10f{bottom:285.495150px;}
.y143{bottom:286.739655px;}
.ydd{bottom:286.740375px;}
.yc3{bottom:288.870150px;}
.yf1{bottom:289.995150px;}
.y11f{bottom:290.115375px;}
.y161{bottom:291.044415px;}
.y77{bottom:295.619775px;}
.y4b{bottom:301.244970px;}
.y22{bottom:303.494970px;}
.y10e{bottom:306.870150px;}
.y11e{bottom:308.115375px;}
.yc2{bottom:310.245150px;}
.y142{bottom:310.679655px;}
.ydc{bottom:310.680375px;}
.yf0{bottom:311.370150px;}
.y95{bottom:314.745150px;}
.y76{bottom:316.994775px;}
.y4a{bottom:322.619970px;}
.ye1{bottom:322.740375px;}
.y21{bottom:324.869970px;}
.y10d{bottom:328.245150px;}
.yc1{bottom:331.620150px;}
.y11d{bottom:332.055375px;}
.yef{bottom:332.745150px;}
.y160{bottom:333.794415px;}
.y75{bottom:338.369775px;}
.y49{bottom:343.994970px;}
.y20{bottom:346.244970px;}
.ye0{bottom:346.680375px;}
.y10c{bottom:349.620150px;}
.yee{bottom:354.120150px;}
.y94{bottom:357.495150px;}
.y74{bottom:359.744775px;}
.ye2{bottom:364.680375px;}
.y48{bottom:365.369970px;}
.y11c{bottom:365.370150px;}
.y1f{bottom:367.619970px;}
.y139{bottom:370.994415px;}
.y10b{bottom:370.995150px;}
.yed{bottom:375.495150px;}
.y15f{bottom:376.619415px;}
.y92{bottom:378.870150px;}
.y73{bottom:381.119775px;}
.y93{bottom:385.997745px;}
.y47{bottom:386.744970px;}
.y11b{bottom:386.745150px;}
.yc0{bottom:390.120150px;}
.y138{bottom:392.369415px;}
.y10a{bottom:392.370150px;}
.yec{bottom:396.870150px;}
.y15e{bottom:397.919415px;}
.y91{bottom:400.245150px;}
.y72{bottom:402.494775px;}
.y46{bottom:408.119970px;}
.y1e{bottom:409.874970px;}
.ybf{bottom:411.495150px;}
.y137{bottom:413.744415px;}
.y109{bottom:413.745150px;}
.yda{bottom:418.245150px;}
.y90{bottom:421.620150px;}
.y71{bottom:423.869775px;}
.y1d{bottom:427.874970px;}
.y45{bottom:429.494970px;}
.ybe{bottom:432.870150px;}
.y108{bottom:435.120150px;}
.yd9{bottom:439.620150px;}
.y15d{bottom:440.744415px;}
.y8f{bottom:442.995150px;}
.y70{bottom:445.244775px;}
.y11a{bottom:445.245150px;}
.y1c{bottom:445.874970px;}
.y44{bottom:450.869970px;}
.ybd{bottom:454.245150px;}
.y107{bottom:456.495150px;}
.yd8{bottom:460.995150px;}
.y15c{bottom:462.119415px;}
.y136{bottom:463.623120px;}
.y1b{bottom:463.874970px;}
.y6f{bottom:466.619775px;}
.y119{bottom:466.620150px;}
.y43{bottom:472.244970px;}
.ybc{bottom:475.620150px;}
.y135{bottom:477.870150px;}
.y1a{bottom:481.874970px;}
.yd7{bottom:482.370150px;}
.y15b{bottom:483.419415px;}
.y8e{bottom:485.744775px;}
.y6e{bottom:487.994775px;}
.y118{bottom:487.995150px;}
.y42{bottom:493.619970px;}
.y106{bottom:493.620150px;}
.ybb{bottom:496.995150px;}
.y134{bottom:499.245150px;}
.y19{bottom:499.875015px;}
.yd6{bottom:503.745150px;}
.y8d{bottom:507.119775px;}
.y41{bottom:514.994970px;}
.y105{bottom:514.995150px;}
.yba{bottom:518.370150px;}
.y133{bottom:520.620150px;}
.yd5{bottom:525.120150px;}
.y15a{bottom:525.869416px;}
.y8c{bottom:528.494775px;}
.y6d{bottom:530.744775px;}
.y40{bottom:536.369970px;}
.y103{bottom:536.370150px;}
.y18{bottom:539.745015px;}
.yb9{bottom:539.745150px;}
.y132{bottom:541.995150px;}
.y104{bottom:543.498120px;}
.yd4{bottom:546.495150px;}
.y8a{bottom:549.869775px;}
.y6c{bottom:552.119775px;}
.y8b{bottom:556.998120px;}
.y3f{bottom:557.744970px;}
.y102{bottom:557.745150px;}
.y17{bottom:561.120015px;}
.yb8{bottom:561.120150px;}
.y131{bottom:563.370150px;}
.yd3{bottom:567.870150px;}
.y159{bottom:568.994415px;}
.y89{bottom:571.244775px;}
.yeb{bottom:574.998120px;}
.y3e{bottom:579.119970px;}
.y101{bottom:579.120150px;}
.y130{bottom:584.745150px;}
.yd2{bottom:589.245150px;}
.y158{bottom:590.369415px;}
.y88{bottom:592.619775px;}
.y6b{bottom:594.869775px;}
.yb7{bottom:598.245150px;}
.y16{bottom:600.000015px;}
.y3d{bottom:600.494970px;}
.y12f{bottom:606.120150px;}
.yd0{bottom:610.620150px;}
.y100{bottom:616.245150px;}
.yd1{bottom:617.748120px;}
.y15{bottom:618.000015px;}
.yb6{bottom:619.620150px;}
.y3c{bottom:621.869970px;}
.y157{bottom:627.494415px;}
.y87{bottom:631.994775px;}
.ycf{bottom:631.995150px;}
.y14{bottom:636.000015px;}
.yff{bottom:637.620150px;}
.yb5{bottom:640.995150px;}
.y3b{bottom:643.244970px;}
.y156{bottom:648.869415px;}
.y12e{bottom:648.870150px;}
.y85{bottom:653.369775px;}
.yce{bottom:653.370150px;}
.y13{bottom:654.000015px;}
.yfe{bottom:658.995150px;}
.y86{bottom:660.498120px;}
.yb4{bottom:662.370150px;}
.y3a{bottom:664.619970px;}
.y155{bottom:670.244415px;}
.y12{bottom:672.000015px;}
.y83{bottom:674.744775px;}
.ycd{bottom:674.745150px;}
.yfd{bottom:680.370150px;}
.y84{bottom:681.873120px;}
.y39{bottom:685.994970px;}
.y11{bottom:690.000015px;}
.y6a{bottom:690.494775px;}
.y154{bottom:691.619415px;}
.y82{bottom:696.119775px;}
.ycc{bottom:696.120150px;}
.yfc{bottom:701.745150px;}
.yea{bottom:703.248120px;}
.y38{bottom:707.369970px;}
.y10{bottom:708.000015px;}
.y69{bottom:711.869775px;}
.y80{bottom:717.494775px;}
.yb3{bottom:717.495150px;}
.yfb{bottom:723.120150px;}
.y81{bottom:724.623120px;}
.yf{bottom:726.000015px;}
.y153{bottom:728.744415px;}
.y68{bottom:733.244775px;}
.y7f{bottom:738.869775px;}
.yb2{bottom:738.870150px;}
.y37{bottom:744.494970px;}
.y12c{bottom:744.495150px;}
.ye9{bottom:745.998120px;}
.y152{bottom:750.119415px;}
.y12d{bottom:751.623120px;}
.y67{bottom:754.619775px;}
.y7e{bottom:760.244775px;}
.yb1{bottom:760.245150px;}
.y36{bottom:765.869970px;}
.ye{bottom:765.870015px;}
.y12b{bottom:765.870150px;}
.y65{bottom:775.994775px;}
.yb0{bottom:781.620150px;}
.y66{bottom:783.123120px;}
.y151{bottom:787.244415px;}
.yd{bottom:787.245015px;}
.y12a{bottom:787.245150px;}
.y117{bottom:788.748120px;}
.y64{bottom:797.369775px;}
.yaf{bottom:802.995150px;}
.y150{bottom:808.619415px;}
.yc{bottom:808.620015px;}
.y129{bottom:808.620150px;}
.y63{bottom:818.744775px;}
.yfa{bottom:818.745150px;}
.y35{bottom:824.369970px;}
.yae{bottom:824.370150px;}
.y14f{bottom:829.994415px;}
.yb{bottom:829.995015px;}
.y128{bottom:829.995150px;}
.y116{bottom:831.498120px;}
.y62{bottom:840.119775px;}
.yf9{bottom:840.120150px;}
.yad{bottom:845.745150px;}
.ya{bottom:851.370015px;}
.y61{bottom:861.494775px;}
.ye8{bottom:861.495150px;}
.y14e{bottom:867.119415px;}
.yac{bottom:867.120150px;}
.y9{bottom:872.745015px;}
.y115{bottom:874.248120px;}
.y60{bottom:882.869775px;}
.ye7{bottom:882.870150px;}
.y14d{bottom:888.494415px;}
.yab{bottom:888.495150px;}
.y8{bottom:894.120015px;}
.y5f{bottom:904.244775px;}
.y34{bottom:904.244970px;}
.ye6{bottom:904.245150px;}
.yaa{bottom:909.870150px;}
.y7{bottom:915.495015px;}
.y5e{bottom:925.619775px;}
.y33{bottom:925.619970px;}
.ye5{bottom:925.620150px;}
.ya9{bottom:931.245150px;}
.y114{bottom:938.373120px;}
.y14c{bottom:946.994415px;}
.y5d{bottom:946.994775px;}
.y32{bottom:946.994970px;}
.ye4{bottom:946.995150px;}
.ya8{bottom:952.620150px;}
.y5c{bottom:968.369775px;}
.y31{bottom:968.369970px;}
.ye3{bottom:968.370150px;}
.y6{bottom:973.994985px;}
.y113{bottom:973.995150px;}
.y5b{bottom:989.744775px;}
.y30{bottom:989.744970px;}
.ya7{bottom:989.745150px;}
.y127{bottom:995.370147px;}
.ycb{bottom:996.873120px;}
.y5a{bottom:1011.119781px;}
.y2f{bottom:1011.119964px;}
.ya6{bottom:1011.120147px;}
.y16b{bottom:1013.369414px;}
.y126{bottom:1016.745147px;}
.y14b{bottom:1032.494414px;}
.y59{bottom:1032.494781px;}
.y2e{bottom:1032.494964px;}
.ya5{bottom:1032.495147px;}
.y16a{bottom:1034.744414px;}
.y125{bottom:1038.120147px;}
.y14a{bottom:1053.869414px;}
.y58{bottom:1053.869781px;}
.y2d{bottom:1053.869964px;}
.y5{bottom:1053.869987px;}
.ya4{bottom:1053.870147px;}
.y169{bottom:1056.044414px;}
.y124{bottom:1059.495147px;}
.yca{bottom:1060.998117px;}
.y148{bottom:1075.244414px;}
.y57{bottom:1075.244781px;}
.y2c{bottom:1075.244964px;}
.y4{bottom:1075.244987px;}
.ya3{bottom:1075.245147px;}
.y149{bottom:1082.373117px;}
.y147{bottom:1096.619414px;}
.y56{bottom:1096.619781px;}
.y2b{bottom:1096.619964px;}
.y3{bottom:1096.619987px;}
.ya2{bottom:1096.620147px;}
.y168{bottom:1098.869414px;}
.y146{bottom:1117.994414px;}
.y55{bottom:1117.994781px;}
.y2a{bottom:1117.994964px;}
.y2{bottom:1117.994997px;}
.ya1{bottom:1117.995147px;}
.y167{bottom:1120.169414px;}
.y145{bottom:1139.369414px;}
.y54{bottom:1139.369781px;}
.y29{bottom:1139.369964px;}
.y1{bottom:1139.369997px;}
.ya0{bottom:1139.370147px;}
.yc9{bottom:1146.498117px;}
.h5{height:27.653063px;}
.h8{height:32.273438px;}
.h7{height:38.369533px;}
.h4{height:38.728127px;}
.h3{height:53.789061px;}
.ha{height:63.351563px;}
.h1{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:66.524319px;}
.h9{height:67.238507px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1d{left:79.350003px;}
.x6{left:106.350003px;}
.x1{left:120.404450px;}
.xa{left:127.725003px;}
.xd{left:149.100003px;}
.xb{left:154.725003px;}
.x7{left:159.225003px;}
.x8{left:170.475003px;}
.xc{left:181.725003px;}
.x9{left:184.335366px;}
.x1b{left:233.940834px;}
.x21{left:236.709389px;}
.x12{left:278.255280px;}
.x5{left:307.747717px;}
.x18{left:312.172260px;}
.x20{left:328.634175px;}
.x1f{left:338.732805px;}
.x19{left:352.347060px;}
.x11{left:357.145890px;}
.x3{left:365.491852px;}
.x4{left:372.492344px;}
.x2{left:395.440567px;}
.x1c{left:405.670305px;}
.x10{left:460.821675px;}
.xe{left:462.043350px;}
.xf{left:465.717180px;}
.x1a{left:474.980850px;}
.x14{left:518.381235px;}
.x1e{left:541.496475px;}
.x17{left:549.854880px;}
.x16{left:551.234760px;}
.x13{left:567.512100px;}
.x23{left:635.240610px;}
.x24{left:640.074600px;}
.x22{left:692.624400px;}
.x15{left:719.387100px;}
@media print{
.v1{vertical-align:-23.231998pt;}
.v3{vertical-align:-21.120001pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:25.345227pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000002pt;}
.ls1{letter-spacing:0.000020pt;}
.ls4{letter-spacing:13.328125pt;}
.lsa{letter-spacing:15.999988pt;}
.ls7{letter-spacing:16.000000pt;}
.ls5{letter-spacing:17.328125pt;}
.ls8{letter-spacing:21.328125pt;}
.ls3{letter-spacing:24.000000pt;}
.ls2{letter-spacing:25.247265pt;}
.ls6{letter-spacing:25.328125pt;}
.ls9{letter-spacing:28.000000pt;}
.lsb{letter-spacing:48.000000pt;}
.ws27{word-spacing:-16.000000pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws1{word-spacing:-11.200000pt;}
.ws5d{word-spacing:-9.600000pt;}
.ws9c{word-spacing:-4.593361pt;}
.ws54{word-spacing:-0.084883pt;}
.ws34{word-spacing:-0.064000pt;}
.ws7c{word-spacing:-0.015751pt;}
.ws7f{word-spacing:-0.015749pt;}
.ws76{word-spacing:-0.015710pt;}
.ws7b{word-spacing:-0.015670pt;}
.ws9a{word-spacing:-0.015658pt;}
.ws55{word-spacing:-0.015645pt;}
.ws5b{word-spacing:-0.015639pt;}
.ws15{word-spacing:-0.015634pt;}
.wsb{word-spacing:-0.015628pt;}
.wsa{word-spacing:-0.015621pt;}
.ws59{word-spacing:-0.015619pt;}
.ws8a{word-spacing:-0.015591pt;}
.ws70{word-spacing:-0.015588pt;}
.ws87{word-spacing:-0.014524pt;}
.ws16{word-spacing:-0.014458pt;}
.ws11{word-spacing:-0.014438pt;}
.ws79{word-spacing:-0.014426pt;}
.ws7a{word-spacing:-0.014423pt;}
.ws7e{word-spacing:-0.014339pt;}
.ws8b{word-spacing:-0.013301pt;}
.ws7{word-spacing:-0.013262pt;}
.ws10{word-spacing:-0.013172pt;}
.ws56{word-spacing:-0.010426pt;}
.ws3e{word-spacing:-0.000030pt;}
.ws13{word-spacing:-0.000020pt;}
.ws61{word-spacing:-0.000012pt;}
.ws23{word-spacing:-0.000010pt;}
.ws5{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.000002pt;}
.ws5e{word-spacing:0.000008pt;}
.wse{word-spacing:0.000010pt;}
.ws3d{word-spacing:0.000018pt;}
.ws37{word-spacing:0.000020pt;}
.ws58{word-spacing:0.000030pt;}
.ws8d{word-spacing:3.984319pt;}
.ws6e{word-spacing:3.984369pt;}
.ws17{word-spacing:3.984375pt;}
.ws52{word-spacing:3.984377pt;}
.ws51{word-spacing:3.984379pt;}
.ws85{word-spacing:3.984391pt;}
.wsf{word-spacing:3.985502pt;}
.ws18{word-spacing:3.985552pt;}
.ws9b{word-spacing:3.985562pt;}
.ws6f{word-spacing:3.985572pt;}
.ws7d{word-spacing:3.985576pt;}
.ws64{word-spacing:3.985577pt;}
.ws69{word-spacing:3.985602pt;}
.ws1a{word-spacing:3.985632pt;}
.ws1c{word-spacing:3.985752pt;}
.ws50{word-spacing:3.989020pt;}
.ws8c{word-spacing:3.989036pt;}
.ws1b{word-spacing:3.989501pt;}
.ws19{word-spacing:3.989542pt;}
.ws65{word-spacing:3.989583pt;}
.ws93{word-spacing:3.999900pt;}
.ws2e{word-spacing:3.999970pt;}
.ws78{word-spacing:3.999979pt;}
.ws29{word-spacing:3.999980pt;}
.ws57{word-spacing:3.999989pt;}
.ws38{word-spacing:3.999990pt;}
.ws6c{word-spacing:3.999996pt;}
.ws32{word-spacing:3.999997pt;}
.ws24{word-spacing:4.000000pt;}
.ws33{word-spacing:4.000001pt;}
.ws4a{word-spacing:4.000009pt;}
.ws40{word-spacing:4.000020pt;}
.ws3f{word-spacing:4.000029pt;}
.ws99{word-spacing:4.769457pt;}
.ws95{word-spacing:4.769460pt;}
.ws4c{word-spacing:4.772192pt;}
.ws62{word-spacing:5.328125pt;}
.ws88{word-spacing:7.982091pt;}
.ws83{word-spacing:7.984290pt;}
.ws75{word-spacing:7.984302pt;}
.ws9{word-spacing:7.984321pt;}
.ws80{word-spacing:7.984332pt;}
.ws12{word-spacing:7.984375pt;}
.ws82{word-spacing:7.984381pt;}
.ws8{word-spacing:7.984481pt;}
.wsc{word-spacing:7.985556pt;}
.ws66{word-spacing:7.985576pt;}
.ws5a{word-spacing:7.985578pt;}
.ws81{word-spacing:7.985642pt;}
.ws84{word-spacing:7.985752pt;}
.ws67{word-spacing:7.986649pt;}
.ws4f{word-spacing:7.986721pt;}
.ws6{word-spacing:7.999969pt;}
.ws3{word-spacing:7.999980pt;}
.ws3b{word-spacing:7.999988pt;}
.ws8e{word-spacing:7.999989pt;}
.ws20{word-spacing:7.999990pt;}
.ws28{word-spacing:7.999998pt;}
.ws8f{word-spacing:7.999999pt;}
.ws2{word-spacing:8.000000pt;}
.ws3c{word-spacing:8.000002pt;}
.ws22{word-spacing:8.000010pt;}
.ws21{word-spacing:8.000020pt;}
.ws2d{word-spacing:8.000030pt;}
.ws63{word-spacing:9.328125pt;}
.ws6a{word-spacing:11.985513pt;}
.ws74{word-spacing:11.986716pt;}
.ws89{word-spacing:11.989498pt;}
.ws53{word-spacing:11.989583pt;}
.ws42{word-spacing:11.999980pt;}
.ws25{word-spacing:11.999989pt;}
.ws39{word-spacing:11.999999pt;}
.ws1f{word-spacing:12.000000pt;}
.ws26{word-spacing:12.000001pt;}
.ws3a{word-spacing:12.000020pt;}
.ws36{word-spacing:12.000030pt;}
.ws91{word-spacing:12.763891pt;}
.ws92{word-spacing:12.763893pt;}
.ws6b{word-spacing:13.328125pt;}
.ws86{word-spacing:15.936010pt;}
.ws72{word-spacing:15.936019pt;}
.wsd{word-spacing:15.984342pt;}
.ws68{word-spacing:15.984371pt;}
.ws5c{word-spacing:15.985531pt;}
.ws4d{word-spacing:15.999980pt;}
.ws43{word-spacing:15.999988pt;}
.ws44{word-spacing:15.999990pt;}
.ws41{word-spacing:15.999998pt;}
.ws2b{word-spacing:16.000000pt;}
.ws45{word-spacing:16.000007pt;}
.ws35{word-spacing:16.000009pt;}
.ws2c{word-spacing:16.000011pt;}
.ws60{word-spacing:16.000020pt;}
.ws94{word-spacing:16.763893pt;}
.ws9d{word-spacing:16.766649pt;}
.ws98{word-spacing:16.766681pt;}
.ws97{word-spacing:16.769476pt;}
.ws73{word-spacing:17.328125pt;}
.ws2a{word-spacing:19.999970pt;}
.ws48{word-spacing:19.999980pt;}
.ws90{word-spacing:19.999990pt;}
.ws4{word-spacing:20.000000pt;}
.ws49{word-spacing:20.000010pt;}
.ws96{word-spacing:20.763892pt;}
.ws30{word-spacing:23.999980pt;}
.ws1e{word-spacing:23.999989pt;}
.ws31{word-spacing:24.000000pt;}
.ws6d{word-spacing:27.999980pt;}
.ws14{word-spacing:27.999990pt;}
.ws2f{word-spacing:28.000000pt;}
.ws4e{word-spacing:28.000030pt;}
.ws46{word-spacing:31.999979pt;}
.ws0{word-spacing:32.000000pt;}
.ws77{word-spacing:35.999998pt;}
.ws47{word-spacing:35.999999pt;}
.ws4b{word-spacing:40.000000pt;}
.ws71{word-spacing:471.012392pt;}
._19{margin-left:-8.249949pt;}
._1f{margin-left:-7.093750pt;}
._11{margin-left:-6.138333pt;}
._c{margin-left:-4.468789pt;}
._0{margin-left:-3.531231pt;}
._8{margin-left:-2.352180pt;}
._9{margin-left:-0.892860pt;}
._21{width:2.375004pt;}
._a{width:13.119774pt;}
._1d{width:14.191905pt;}
._f{width:15.999999pt;}
._4{width:17.309672pt;}
._17{width:18.941940pt;}
._1{width:20.000018pt;}
._7{width:21.309672pt;}
._15{width:22.687500pt;}
._d{width:24.000020pt;}
._5{width:25.281903pt;}
._2{width:27.999999pt;}
._1e{width:29.202259pt;}
._e{width:31.999990pt;}
._6{width:33.264549pt;}
._14{width:35.999987pt;}
._1c{width:36.949961pt;}
._1b{width:38.111619pt;}
._3{width:40.000001pt;}
._18{width:42.687500pt;}
._b{width:44.000000pt;}
._16{width:46.281250pt;}
._13{width:48.000025pt;}
._12{width:52.000002pt;}
._1a{width:53.375000pt;}
._22{width:54.374999pt;}
._20{width:58.375000pt;}
._10{width:138.687500pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:35.200001pt;}
.fs3{font-size:38.400002pt;}
.fs1{font-size:44.799999pt;}
.fs2{font-size:53.333332pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y165{bottom:97.879693pt;}
.yf7{bottom:97.880333pt;}
.y96{bottom:103.160333pt;}
.y141{bottom:110.879693pt;}
.y7d{bottom:110.880333pt;}
.y164{bottom:113.879693pt;}
.y98{bottom:113.880333pt;}
.y53{bottom:115.773134pt;}
.yf6{bottom:119.160333pt;}
.y140{bottom:126.879693pt;}
.y7c{bottom:127.600333pt;}
.ydb{bottom:129.880333pt;}
.y52{bottom:134.773134pt;}
.y163{bottom:135.159693pt;}
.y97{bottom:135.160333pt;}
.y13f{bottom:142.879693pt;}
.y7b{bottom:144.880333pt;}
.y9c{bottom:145.880333pt;}
.yf8{bottom:151.160333pt;}
.y28{bottom:151.333306pt;}
.y166{bottom:153.407693pt;}
.y51{bottom:153.773134pt;}
.y13e{bottom:158.879693pt;}
.y7a{bottom:160.880333pt;}
.yc8{bottom:161.773467pt;}
.y9b{bottom:161.880333pt;}
.y111{bottom:167.160333pt;}
.y27{bottom:167.333306pt;}
.y50{bottom:172.773134pt;}
.y13d{bottom:174.879693pt;}
.y79{bottom:176.880333pt;}
.y9a{bottom:177.880333pt;}
.yc6{bottom:180.773467pt;}
.yf5{bottom:181.773467pt;}
.y112{bottom:183.160333pt;}
.y26{bottom:183.333306pt;}
.yc7{bottom:187.109440pt;}
.y13c{bottom:190.879693pt;}
.y4f{bottom:191.773134pt;}
.y123{bottom:193.880333pt;}
.y99{bottom:199.160333pt;}
.y25{bottom:199.333306pt;}
.y78{bottom:199.408333pt;}
.yc5{bottom:199.773467pt;}
.yf4{bottom:200.773467pt;}
.y13b{bottom:206.879693pt;}
.y122{bottom:209.880333pt;}
.y4e{bottom:210.773307pt;}
.y9d{bottom:215.160333pt;}
.y24{bottom:215.333306pt;}
.yf3{bottom:219.773467pt;}
.y162{bottom:220.706147pt;}
.ydf{bottom:222.880333pt;}
.y121{bottom:225.880333pt;}
.y13a{bottom:228.159693pt;}
.y4d{bottom:229.773307pt;}
.y9e{bottom:231.160333pt;}
.y110{bottom:234.773467pt;}
.yc4{bottom:237.773467pt;}
.yf2{bottom:238.773467pt;}
.y144{bottom:238.879693pt;}
.yde{bottom:238.880333pt;}
.y120{bottom:241.880333pt;}
.y9f{bottom:247.160333pt;}
.y4c{bottom:248.773307pt;}
.y23{bottom:250.773307pt;}
.y10f{bottom:253.773467pt;}
.y143{bottom:254.879693pt;}
.ydd{bottom:254.880333pt;}
.yc3{bottom:256.773467pt;}
.yf1{bottom:257.773467pt;}
.y11f{bottom:257.880333pt;}
.y161{bottom:258.706147pt;}
.y77{bottom:262.773134pt;}
.y4b{bottom:267.773307pt;}
.y22{bottom:269.773307pt;}
.y10e{bottom:272.773467pt;}
.y11e{bottom:273.880333pt;}
.yc2{bottom:275.773467pt;}
.y142{bottom:276.159693pt;}
.ydc{bottom:276.160333pt;}
.yf0{bottom:276.773467pt;}
.y95{bottom:279.773467pt;}
.y76{bottom:281.773134pt;}
.y4a{bottom:286.773307pt;}
.ye1{bottom:286.880333pt;}
.y21{bottom:288.773307pt;}
.y10d{bottom:291.773467pt;}
.yc1{bottom:294.773467pt;}
.y11d{bottom:295.160333pt;}
.yef{bottom:295.773467pt;}
.y160{bottom:296.706147pt;}
.y75{bottom:300.773134pt;}
.y49{bottom:305.773307pt;}
.y20{bottom:307.773307pt;}
.ye0{bottom:308.160333pt;}
.y10c{bottom:310.773467pt;}
.yee{bottom:314.773467pt;}
.y94{bottom:317.773467pt;}
.y74{bottom:319.773134pt;}
.ye2{bottom:324.160333pt;}
.y48{bottom:324.773307pt;}
.y11c{bottom:324.773467pt;}
.y1f{bottom:326.773307pt;}
.y139{bottom:329.772814pt;}
.y10b{bottom:329.773467pt;}
.yed{bottom:333.773467pt;}
.y15f{bottom:334.772814pt;}
.y92{bottom:336.773467pt;}
.y73{bottom:338.773134pt;}
.y93{bottom:343.109107pt;}
.y47{bottom:343.773307pt;}
.y11b{bottom:343.773467pt;}
.yc0{bottom:346.773467pt;}
.y138{bottom:348.772814pt;}
.y10a{bottom:348.773467pt;}
.yec{bottom:352.773467pt;}
.y15e{bottom:353.706147pt;}
.y91{bottom:355.773467pt;}
.y72{bottom:357.773134pt;}
.y46{bottom:362.773307pt;}
.y1e{bottom:364.333306pt;}
.ybf{bottom:365.773467pt;}
.y137{bottom:367.772814pt;}
.y109{bottom:367.773467pt;}
.yda{bottom:371.773467pt;}
.y90{bottom:374.773467pt;}
.y71{bottom:376.773134pt;}
.y1d{bottom:380.333306pt;}
.y45{bottom:381.773307pt;}
.ybe{bottom:384.773467pt;}
.y108{bottom:386.773467pt;}
.yd9{bottom:390.773467pt;}
.y15d{bottom:391.772814pt;}
.y8f{bottom:393.773467pt;}
.y70{bottom:395.773134pt;}
.y11a{bottom:395.773467pt;}
.y1c{bottom:396.333306pt;}
.y44{bottom:400.773307pt;}
.ybd{bottom:403.773467pt;}
.y107{bottom:405.773467pt;}
.yd8{bottom:409.773467pt;}
.y15c{bottom:410.772814pt;}
.y136{bottom:412.109440pt;}
.y1b{bottom:412.333306pt;}
.y6f{bottom:414.773134pt;}
.y119{bottom:414.773467pt;}
.y43{bottom:419.773307pt;}
.ybc{bottom:422.773467pt;}
.y135{bottom:424.773467pt;}
.y1a{bottom:428.333306pt;}
.yd7{bottom:428.773467pt;}
.y15b{bottom:429.706147pt;}
.y8e{bottom:431.773134pt;}
.y6e{bottom:433.773134pt;}
.y118{bottom:433.773467pt;}
.y42{bottom:438.773307pt;}
.y106{bottom:438.773467pt;}
.ybb{bottom:441.773467pt;}
.y134{bottom:443.773467pt;}
.y19{bottom:444.333346pt;}
.yd6{bottom:447.773467pt;}
.y8d{bottom:450.773134pt;}
.y41{bottom:457.773307pt;}
.y105{bottom:457.773467pt;}
.yba{bottom:460.773467pt;}
.y133{bottom:462.773467pt;}
.yd5{bottom:466.773467pt;}
.y15a{bottom:467.439481pt;}
.y8c{bottom:469.773134pt;}
.y6d{bottom:471.773134pt;}
.y40{bottom:476.773307pt;}
.y103{bottom:476.773467pt;}
.y18{bottom:479.773347pt;}
.yb9{bottom:479.773467pt;}
.y132{bottom:481.773467pt;}
.y104{bottom:483.109440pt;}
.yd4{bottom:485.773467pt;}
.y8a{bottom:488.773134pt;}
.y6c{bottom:490.773134pt;}
.y8b{bottom:495.109440pt;}
.y3f{bottom:495.773307pt;}
.y102{bottom:495.773467pt;}
.y17{bottom:498.773347pt;}
.yb8{bottom:498.773467pt;}
.y131{bottom:500.773467pt;}
.yd3{bottom:504.773467pt;}
.y159{bottom:505.772814pt;}
.y89{bottom:507.773134pt;}
.yeb{bottom:511.109440pt;}
.y3e{bottom:514.773307pt;}
.y101{bottom:514.773467pt;}
.y130{bottom:519.773467pt;}
.yd2{bottom:523.773467pt;}
.y158{bottom:524.772814pt;}
.y88{bottom:526.773134pt;}
.y6b{bottom:528.773134pt;}
.yb7{bottom:531.773467pt;}
.y16{bottom:533.333346pt;}
.y3d{bottom:533.773307pt;}
.y12f{bottom:538.773467pt;}
.yd0{bottom:542.773467pt;}
.y100{bottom:547.773467pt;}
.yd1{bottom:549.109440pt;}
.y15{bottom:549.333346pt;}
.yb6{bottom:550.773467pt;}
.y3c{bottom:552.773307pt;}
.y157{bottom:557.772814pt;}
.y87{bottom:561.773134pt;}
.ycf{bottom:561.773467pt;}
.y14{bottom:565.333346pt;}
.yff{bottom:566.773467pt;}
.yb5{bottom:569.773467pt;}
.y3b{bottom:571.773307pt;}
.y156{bottom:576.772814pt;}
.y12e{bottom:576.773467pt;}
.y85{bottom:580.773134pt;}
.yce{bottom:580.773467pt;}
.y13{bottom:581.333346pt;}
.yfe{bottom:585.773467pt;}
.y86{bottom:587.109440pt;}
.yb4{bottom:588.773467pt;}
.y3a{bottom:590.773307pt;}
.y155{bottom:595.772814pt;}
.y12{bottom:597.333346pt;}
.y83{bottom:599.773134pt;}
.ycd{bottom:599.773467pt;}
.yfd{bottom:604.773467pt;}
.y84{bottom:606.109440pt;}
.y39{bottom:609.773307pt;}
.y11{bottom:613.333346pt;}
.y6a{bottom:613.773134pt;}
.y154{bottom:614.772814pt;}
.y82{bottom:618.773134pt;}
.ycc{bottom:618.773467pt;}
.yfc{bottom:623.773467pt;}
.yea{bottom:625.109440pt;}
.y38{bottom:628.773307pt;}
.y10{bottom:629.333346pt;}
.y69{bottom:632.773134pt;}
.y80{bottom:637.773134pt;}
.yb3{bottom:637.773467pt;}
.yfb{bottom:642.773467pt;}
.y81{bottom:644.109440pt;}
.yf{bottom:645.333346pt;}
.y153{bottom:647.772814pt;}
.y68{bottom:651.773134pt;}
.y7f{bottom:656.773134pt;}
.yb2{bottom:656.773467pt;}
.y37{bottom:661.773307pt;}
.y12c{bottom:661.773467pt;}
.ye9{bottom:663.109440pt;}
.y152{bottom:666.772814pt;}
.y12d{bottom:668.109440pt;}
.y67{bottom:670.773134pt;}
.y7e{bottom:675.773134pt;}
.yb1{bottom:675.773467pt;}
.y36{bottom:680.773307pt;}
.ye{bottom:680.773347pt;}
.y12b{bottom:680.773467pt;}
.y65{bottom:689.773134pt;}
.yb0{bottom:694.773467pt;}
.y66{bottom:696.109440pt;}
.y151{bottom:699.772814pt;}
.yd{bottom:699.773347pt;}
.y12a{bottom:699.773467pt;}
.y117{bottom:701.109440pt;}
.y64{bottom:708.773134pt;}
.yaf{bottom:713.773467pt;}
.y150{bottom:718.772814pt;}
.yc{bottom:718.773347pt;}
.y129{bottom:718.773467pt;}
.y63{bottom:727.773134pt;}
.yfa{bottom:727.773467pt;}
.y35{bottom:732.773307pt;}
.yae{bottom:732.773467pt;}
.y14f{bottom:737.772814pt;}
.yb{bottom:737.773347pt;}
.y128{bottom:737.773467pt;}
.y116{bottom:739.109440pt;}
.y62{bottom:746.773134pt;}
.yf9{bottom:746.773467pt;}
.yad{bottom:751.773467pt;}
.ya{bottom:756.773347pt;}
.y61{bottom:765.773134pt;}
.ye8{bottom:765.773467pt;}
.y14e{bottom:770.772814pt;}
.yac{bottom:770.773467pt;}
.y9{bottom:775.773347pt;}
.y115{bottom:777.109440pt;}
.y60{bottom:784.773134pt;}
.ye7{bottom:784.773467pt;}
.y14d{bottom:789.772814pt;}
.yab{bottom:789.773467pt;}
.y8{bottom:794.773347pt;}
.y5f{bottom:803.773134pt;}
.y34{bottom:803.773307pt;}
.ye6{bottom:803.773467pt;}
.yaa{bottom:808.773467pt;}
.y7{bottom:813.773347pt;}
.y5e{bottom:822.773134pt;}
.y33{bottom:822.773307pt;}
.ye5{bottom:822.773467pt;}
.ya9{bottom:827.773467pt;}
.y114{bottom:834.109440pt;}
.y14c{bottom:841.772814pt;}
.y5d{bottom:841.773134pt;}
.y32{bottom:841.773307pt;}
.ye4{bottom:841.773467pt;}
.ya8{bottom:846.773467pt;}
.y5c{bottom:860.773134pt;}
.y31{bottom:860.773307pt;}
.ye3{bottom:860.773467pt;}
.y6{bottom:865.773320pt;}
.y113{bottom:865.773467pt;}
.y5b{bottom:879.773134pt;}
.y30{bottom:879.773307pt;}
.ya7{bottom:879.773467pt;}
.y127{bottom:884.773464pt;}
.ycb{bottom:886.109440pt;}
.y5a{bottom:898.773139pt;}
.y2f{bottom:898.773302pt;}
.ya6{bottom:898.773464pt;}
.y16b{bottom:900.772812pt;}
.y126{bottom:903.773464pt;}
.y14b{bottom:917.772812pt;}
.y59{bottom:917.773139pt;}
.y2e{bottom:917.773302pt;}
.ya5{bottom:917.773464pt;}
.y16a{bottom:919.772812pt;}
.y125{bottom:922.773464pt;}
.y14a{bottom:936.772812pt;}
.y58{bottom:936.773139pt;}
.y2d{bottom:936.773302pt;}
.y5{bottom:936.773322pt;}
.ya4{bottom:936.773464pt;}
.y169{bottom:938.706146pt;}
.y124{bottom:941.773464pt;}
.yca{bottom:943.109438pt;}
.y148{bottom:955.772812pt;}
.y57{bottom:955.773139pt;}
.y2c{bottom:955.773302pt;}
.y4{bottom:955.773322pt;}
.ya3{bottom:955.773464pt;}
.y149{bottom:962.109438pt;}
.y147{bottom:974.772812pt;}
.y56{bottom:974.773139pt;}
.y2b{bottom:974.773302pt;}
.y3{bottom:974.773322pt;}
.ya2{bottom:974.773464pt;}
.y168{bottom:976.772812pt;}
.y146{bottom:993.772812pt;}
.y55{bottom:993.773139pt;}
.y2a{bottom:993.773302pt;}
.y2{bottom:993.773331pt;}
.ya1{bottom:993.773464pt;}
.y167{bottom:995.706146pt;}
.y145{bottom:1012.772812pt;}
.y54{bottom:1012.773139pt;}
.y29{bottom:1012.773302pt;}
.y1{bottom:1012.773331pt;}
.ya0{bottom:1012.773464pt;}
.yc9{bottom:1019.109438pt;}
.h5{height:24.580501pt;}
.h8{height:28.687500pt;}
.h7{height:34.106251pt;}
.h4{height:34.425001pt;}
.h3{height:47.812499pt;}
.ha{height:56.312500pt;}
.h1{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:59.132728pt;}
.h9{height:59.767562pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1d{left:70.533336pt;}
.x6{left:94.533336pt;}
.x1{left:107.026178pt;}
.xa{left:113.533336pt;}
.xd{left:132.533336pt;}
.xb{left:137.533336pt;}
.x7{left:141.533336pt;}
.x8{left:151.533336pt;}
.xc{left:161.533336pt;}
.x9{left:163.853659pt;}
.x1b{left:207.947408pt;}
.x21{left:210.408345pt;}
.x12{left:247.338027pt;}
.x5{left:273.553526pt;}
.x18{left:277.486453pt;}
.x20{left:292.119267pt;}
.x1f{left:301.095827pt;}
.x19{left:313.197387pt;}
.x11{left:317.463013pt;}
.x3{left:324.881646pt;}
.x4{left:331.104306pt;}
.x2{left:351.502726pt;}
.x1c{left:360.595827pt;}
.x10{left:409.619267pt;}
.xe{left:410.705200pt;}
.xf{left:413.970827pt;}
.x1a{left:422.205200pt;}
.x14{left:460.783320pt;}
.x1e{left:481.330200pt;}
.x17{left:488.759893pt;}
.x16{left:489.986453pt;}
.x13{left:504.455200pt;}
.x23{left:564.658320pt;}
.x24{left:568.955200pt;}
.x22{left:615.666133pt;}
.x15{left:639.455200pt;}
}




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