
    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_b7d892ee1567a910689610a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_ae768dda0e5f311657743a41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.869629;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_9510e79b8f09feacca66ab17.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.250000;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_a6e87f2a2b623c53bcf1f730.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_91acd880c48a1d5c9a7f77c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952148;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_c89c9b11878ead5bd2edeecb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.053760px;}
.ls4{letter-spacing:0.053833px;}
.ls2{letter-spacing:0.053906px;}
.lsd{letter-spacing:25.508160px;}
.ls5{letter-spacing:36.070800px;}
.lsa{letter-spacing:38.700000px;}
.lsb{letter-spacing:39.850800px;}
.ls1{letter-spacing:43.378800px;}
.ls7{letter-spacing:47.158800px;}
.ls8{letter-spacing:47.161200px;}
.ls9{letter-spacing:50.938800px;}
.lsc{letter-spacing:54.466800px;}
.ls6{letter-spacing:74.232000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(15,17,21),0 0.015em rgb(15,17,21),0.015em 0 rgb(15,17,21),0 -0.015em  rgb(15,17,21);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(15,17,21);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-47.514240px;}
.ws7f{word-spacing:-46.284480px;}
.ws25{word-spacing:-41.176800px;}
.ws63{word-spacing:-38.076480px;}
.ws3a{word-spacing:-33.357600px;}
.ws78{word-spacing:-31.074906px;}
.ws58{word-spacing:-30.916800px;}
.ws27{word-spacing:-28.607040px;}
.ws2a{word-spacing:-28.476000px;}
.ws28{word-spacing:-26.873280px;}
.ws6f{word-spacing:-26.197920px;}
.ws64{word-spacing:-23.757120px;}
.ws26{word-spacing:-22.105440px;}
.ws4{word-spacing:-21.532946px;}
.ws6{word-spacing:-21.532873px;}
.ws5{word-spacing:-21.532800px;}
.ws7{word-spacing:-21.479040px;}
.ws77{word-spacing:-20.996821px;}
.ws24{word-spacing:-14.319360px;}
.ws65{word-spacing:-5.814720px;}
.ws45{word-spacing:-2.796725px;}
.wse{word-spacing:-2.577096px;}
.ws14{word-spacing:-2.249916px;}
.ws73{word-spacing:-2.094906px;}
.ws1c{word-spacing:-2.077175px;}
.ws13{word-spacing:-2.066142px;}
.ws60{word-spacing:-1.936814px;}
.ws57{word-spacing:-1.936597px;}
.ws32{word-spacing:-1.857546px;}
.ws4d{word-spacing:-1.840756px;}
.ws23{word-spacing:-1.742713px;}
.wsd{word-spacing:-1.740398px;}
.ws2{word-spacing:-1.408399px;}
.ws16{word-spacing:-1.406822px;}
.ws2b{word-spacing:-1.217246px;}
.ws6b{word-spacing:-1.177863px;}
.ws6e{word-spacing:-1.126047px;}
.ws42{word-spacing:-1.018883px;}
.ws9{word-spacing:-1.018630px;}
.ws22{word-spacing:-0.810149px;}
.ws3d{word-spacing:-0.723092px;}
.ws18{word-spacing:-0.686635px;}
.ws3{word-spacing:-0.638075px;}
.ws17{word-spacing:-0.547596px;}
.ws29{word-spacing:-0.489607px;}
.ws21{word-spacing:-0.421132px;}
.ws76{word-spacing:-0.406531px;}
.ws51{word-spacing:-0.404107px;}
.ws7e{word-spacing:-0.299052px;}
.ws8{word-spacing:-0.271590px;}
.ws48{word-spacing:-0.175340px;}
.ws59{word-spacing:-0.166486px;}
.ws0{word-spacing:0.000000px;}
.ws56{word-spacing:0.021614px;}
.ws15{word-spacing:0.104944px;}
.ws2c{word-spacing:0.269640px;}
.ws61{word-spacing:0.294257px;}
.ws72{word-spacing:0.312984px;}
.ws40{word-spacing:1.299175px;}
.ws62{word-spacing:2.033514px;}
.ws4a{word-spacing:3.262872px;}
.ws55{word-spacing:4.204274px;}
.ws2d{word-spacing:4.737665px;}
.ws52{word-spacing:4.985058px;}
.ws54{word-spacing:4.986898px;}
.ws53{word-spacing:5.068505px;}
.ws31{word-spacing:5.129986px;}
.ws1f{word-spacing:5.314190px;}
.ws20{word-spacing:5.342382px;}
.ws1e{word-spacing:5.411155px;}
.ws36{word-spacing:5.411311px;}
.ws30{word-spacing:5.561568px;}
.ws7a{word-spacing:5.952061px;}
.ws5b{word-spacing:7.384746px;}
.ws5c{word-spacing:7.424273px;}
.ws5a{word-spacing:8.237275px;}
.ws3e{word-spacing:10.252296px;}
.ws3f{word-spacing:10.480486px;}
.ws1b{word-spacing:11.937740px;}
.wsb{word-spacing:11.940009px;}
.ws6c{word-spacing:13.993515px;}
.ws6d{word-spacing:13.993631px;}
.ws70{word-spacing:14.713030px;}
.ws6a{word-spacing:14.877521px;}
.ws71{word-spacing:15.183202px;}
.ws4b{word-spacing:16.159204px;}
.ws79{word-spacing:17.701014px;}
.ws68{word-spacing:17.757785px;}
.ws69{word-spacing:18.261225px;}
.ws67{word-spacing:18.263911px;}
.ws47{word-spacing:20.478848px;}
.ws49{word-spacing:22.219950px;}
.ws3c{word-spacing:23.342497px;}
.ws19{word-spacing:24.391119px;}
.ws1a{word-spacing:24.513408px;}
.ws3b{word-spacing:25.586312px;}
.ws4f{word-spacing:25.602804px;}
.ws50{word-spacing:25.920590px;}
.ws2f{word-spacing:26.337596px;}
.ws2e{word-spacing:26.345030px;}
.ws7c{word-spacing:27.165884px;}
.ws7b{word-spacing:27.658519px;}
.ws74{word-spacing:29.834910px;}
.ws75{word-spacing:29.835026px;}
.ws46{word-spacing:29.901962px;}
.ws41{word-spacing:32.396429px;}
.ws7d{word-spacing:33.539988px;}
.ws44{word-spacing:33.871986px;}
.ws5e{word-spacing:34.019424px;}
.ws5d{word-spacing:34.156908px;}
.ws5f{word-spacing:35.029282px;}
.ws33{word-spacing:35.313448px;}
.ws4e{word-spacing:36.943798px;}
.ws43{word-spacing:37.811282px;}
.ws4c{word-spacing:38.478650px;}
.ws34{word-spacing:45.025232px;}
.ws1d{word-spacing:45.357480px;}
.ws35{word-spacing:45.391576px;}
.ws66{word-spacing:47.113018px;}
.ws10{word-spacing:49.761269px;}
.wsf{word-spacing:50.041163px;}
.ws11{word-spacing:50.041232px;}
.ws12{word-spacing:50.505030px;}
.wsc{word-spacing:52.981400px;}
.ws39{word-spacing:59.399554px;}
.wsa{word-spacing:60.671670px;}
.ws37{word-spacing:81.057344px;}
.ws38{word-spacing:81.269741px;}
._9{margin-left:-833.036745px;}
._8{margin-left:-525.596745px;}
._7{margin-left:-192.956745px;}
._a{margin-left:-67.627346px;}
._e{margin-left:-15.520948px;}
._1a{margin-left:-13.504214px;}
._11{margin-left:-11.327981px;}
._3{margin-left:-10.309750px;}
._c{margin-left:-8.475882px;}
._b{margin-left:-6.602012px;}
._d{margin-left:-4.659371px;}
._4{margin-left:-2.706781px;}
._0{margin-left:-1.330627px;}
._2{width:1.450491px;}
._25{width:2.674343px;}
._21{width:5.144545px;}
._2b{width:23.614127px;}
._2a{width:25.482594px;}
._28{width:26.654604px;}
._23{width:29.510400px;}
._24{width:31.233801px;}
._5{width:32.272985px;}
._6{width:33.395828px;}
._1e{width:34.597425px;}
._18{width:36.672609px;}
._f{width:38.321438px;}
._19{width:39.811538px;}
._29{width:43.067314px;}
._16{width:44.285935px;}
._12{width:51.366947px;}
._22{width:53.824823px;}
._15{width:56.777567px;}
._20{width:58.309639px;}
._1c{width:60.002402px;}
._1d{width:64.695137px;}
._1f{width:66.177436px;}
._1b{width:67.658756px;}
._27{width:72.269401px;}
._26{width:74.354020px;}
._1{width:75.607780px;}
._17{width:77.583322px;}
._14{width:85.095948px;}
._2c{width:89.121006px;}
._13{width:92.196752px;}
._10{width:99.805131px;}
.fca{color:rgb(25,88,105);}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc9{color:rgb(255,0,0);}
.fc3{color:rgb(15,17,21);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(31,65,154);}
.fc6{color:rgb(123,123,123);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:55.440000px;}
.fs5{font-size:60.480000px;}
.fsc{font-size:63.360000px;}
.fs8{font-size:73.440000px;}
.fsa{font-size:84.240000px;}
.fsd{font-size:89.280000px;}
.fs6{font-size:95.040000px;}
.fs2{font-size:105.120000px;}
.fs10{font-size:115.920000px;}
.fse{font-size:126.000000px;}
.fs1{font-size:136.800000px;}
.fs4{font-size:147.600000px;}
.fsf{font-size:157.680000px;}
.fs9{font-size:168.480000px;}
.fs7{font-size:189.360000px;}
.fs3{font-size:210.240000px;}
.fsb{font-size:231.840000px;}
.fs0{font-size:315.360000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:15.480000px;}
.ydb{bottom:102.657750px;}
.yc1{bottom:102.659550px;}
.yf0{bottom:102.659850px;}
.ycc{bottom:102.660150px;}
.y4e{bottom:102.660300px;}
.ye5{bottom:102.660900px;}
.y49{bottom:103.560300px;}
.y36{bottom:117.780450px;}
.yd{bottom:118.860300px;}
.y118{bottom:119.400600px;}
.y71{bottom:122.460300px;}
.y4d{bottom:126.240300px;}
.yda{bottom:131.098050px;}
.yc0{bottom:131.099850px;}
.yef{bottom:131.100150px;}
.ycb{bottom:131.100450px;}
.ye4{bottom:131.101200px;}
.y4a{bottom:143.160300px;}
.y29{bottom:169.980000px;}
.y112{bottom:179.339550px;}
.y11a{bottom:185.460000px;}
.ya0{bottom:187.259700px;}
.y7e{bottom:188.880300px;}
.yac{bottom:189.960000px;}
.y94{bottom:189.960600px;}
.y104{bottom:190.319700px;}
.y58{bottom:193.200000px;}
.y48{bottom:193.560150px;}
.y88{bottom:194.819700px;}
.y28{bottom:198.419700px;}
.ybf{bottom:200.759550px;}
.y22{bottom:205.077900px;}
.y70{bottom:205.260750px;}
.y66{bottom:207.060450px;}
.y111{bottom:214.079850px;}
.y7d{bottom:224.160150px;}
.y1b{bottom:225.598800px;}
.y27{bottom:226.680000px;}
.y93{bottom:227.940450px;}
.y47{bottom:229.019850px;}
.y5d{bottom:230.460300px;}
.yab{bottom:231.900450px;}
.y21{bottom:233.337600px;}
.y87{bottom:234.600150px;}
.yd9{bottom:235.498050px;}
.y9f{bottom:237.300000px;}
.ybe{bottom:237.839400px;}
.y6f{bottom:248.820450px;}
.y5c{bottom:251.520000px;}
.y1a{bottom:254.039100px;}
.y26{bottom:255.119400px;}
.y65{bottom:256.020150px;}
.y110{bottom:256.559700px;}
.y7c{bottom:259.619850px;}
.y20{bottom:261.777900px;}
.y46{bottom:264.300300px;}
.yc{bottom:265.740150px;}
.y92{bottom:265.740450px;}
.yaa{bottom:265.920000px;}
.ybd{bottom:273.299100px;}
.y57{bottom:273.660000px;}
.y9e{bottom:274.379850px;}
.yd8{bottom:277.258350px;}
.y5{bottom:277.260000px;}
.y3d{bottom:281.400600px;}
.y19{bottom:282.479400px;}
.y103{bottom:282.660000px;}
.y25{bottom:283.559700px;}
.y15{bottom:285.900000px;}
.y86{bottom:287.339850px;}
.y1f{bottom:290.218200px;}
.y10f{bottom:291.299700px;}
.y6e{bottom:292.200300px;}
.y7b{bottom:294.900300px;}
.y91{bottom:303.540450px;}
.y64{bottom:304.980450px;}
.yf8{bottom:305.340150px;}
.ya9{bottom:308.039700px;}
.ybc{bottom:310.379550px;}
.ye3{bottom:311.641200px;}
.y45{bottom:312.719850px;}
.yca{bottom:313.980450px;}
.yb1{bottom:318.299700px;}
.yb{bottom:318.660300px;}
.y4{bottom:318.839850px;}
.yd7{bottom:319.018050px;}
.y102{bottom:323.160000px;}
.y9d{bottom:324.419550px;}
.y3c{bottom:326.760300px;}
.y85{bottom:327.119700px;}
.yee{bottom:327.480150px;}
.y10e{bottom:333.960000px;}
.y6d{bottom:335.760600px;}
.y5b{bottom:339.180000px;}
.y90{bottom:341.520300px;}
.y7a{bottom:343.319850px;}
.yf7{bottom:345.840150px;}
.ybb{bottom:346.019250px;}
.y56{bottom:347.460000px;}
.y44{bottom:348.180150px;}
.ya8{bottom:349.980000px;}
.y63{bottom:353.760300px;}
.ye2{bottom:359.700900px;}
.yd6{bottom:360.778350px;}
.y9c{bottom:361.319550px;}
.y117{bottom:361.320000px;}
.yc9{bottom:361.320150px;}
.y3{bottom:362.399550px;}
.y101{bottom:362.399700px;}
.y84{bottom:366.899550px;}
.y55{bottom:367.260000px;}
.yed{bottom:367.980150px;}
.y10d{bottom:368.699700px;}
.yb0{bottom:368.880150px;}
.ya{bottom:371.580450px;}
.y3b{bottom:372.300000px;}
.y79{bottom:378.780150px;}
.y6c{bottom:379.140450px;}
.yba{bottom:381.479550px;}
.y43{bottom:383.460000px;}
.yf6{bottom:384.540150px;}
.ya7{bottom:391.919700px;}
.y8f{bottom:392.460600px;}
.y14{bottom:398.760000px;}
.y13{bottom:399.120000px;}
.y12{bottom:399.480000px;}
.y11{bottom:399.660000px;}
.y10{bottom:399.840000px;}
.yf{bottom:400.200000px;}
.ye{bottom:400.560000px;}
.y100{bottom:401.640000px;}
.yd5{bottom:402.538650px;}
.y62{bottom:402.720000px;}
.y10c{bottom:403.440000px;}
.y83{bottom:406.680000px;}
.yec{bottom:406.680150px;}
.y116{bottom:406.860300px;}
.ye1{bottom:407.940600px;}
.yc8{bottom:408.660450px;}
.y9b{bottom:411.359850px;}
.y78{bottom:414.060000px;}
.y3a{bottom:417.660300px;}
.yb9{bottom:418.559400px;}
.yaf{bottom:419.280150px;}
.y6b{bottom:422.520300px;}
.yf5{bottom:423.420000px;}
.y9{bottom:424.500000px;}
.y54{bottom:425.580300px;}
.y119{bottom:428.640000px;}
.y8e{bottom:430.440450px;}
.y42{bottom:431.880150px;}
.ya6{bottom:433.860000px;}
.y5a{bottom:438.540000px;}
.yff{bottom:440.880300px;}
.yd4{bottom:444.298950px;}
.y10b{bottom:445.919700px;}
.yeb{bottom:447.180150px;}
.yc7{bottom:447.540300px;}
.y53{bottom:447.720000px;}
.y61{bottom:451.680300px;}
.y115{bottom:452.220000px;}
.yb8{bottom:454.199700px;}
.ye0{bottom:456.180300px;}
.y82{bottom:459.599700px;}
.y9a{bottom:461.399550px;}
.yf4{bottom:462.120000px;}
.y77{bottom:462.660150px;}
.y6a{bottom:466.080600px;}
.y8d{bottom:468.240450px;}
.yae{bottom:469.860000px;}
.ya5{bottom:475.799700px;}
.y39{bottom:476.340150px;}
.y8{bottom:477.420150px;}
.y41{bottom:480.480150px;}
.yfe{bottom:480.660150px;}
.y10a{bottom:480.660300px;}
.y2{bottom:483.719700px;}
.yd3{bottom:486.059250px;}
.yea{bottom:486.060000px;}
.yc6{bottom:488.040300px;}
.yb7{bottom:489.840000px;}
.y114{bottom:497.760300px;}
.y76{bottom:497.940450px;}
.y99{bottom:498.480000px;}
.y81{bottom:499.380150px;}
.y60{bottom:500.640000px;}
.yf3{bottom:502.620000px;}
.ydf{bottom:504.420000px;}
.y31{bottom:506.040900px;}
.y1e{bottom:508.378200px;}
.y69{bottom:509.460450px;}
.y24{bottom:511.799700px;}
.y18{bottom:513.059400px;}
.y2d{bottom:513.240900px;}
.y40{bottom:515.760000px;}
.y52{bottom:517.020000px;}
.ya4{bottom:517.919850px;}
.y8c{bottom:518.640450px;}
.yad{bottom:520.260000px;}
.y35{bottom:520.979400px;}
.yfd{bottom:521.160150px;}
.y109{bottom:523.320000px;}
.ye9{bottom:526.560000px;}
.yc5{bottom:526.740300px;}
.yb6{bottom:526.919850px;}
.yd2{bottom:527.819550px;}
.y7{bottom:530.340300px;}
.y75{bottom:533.220300px;}
.y30{bottom:534.300600px;}
.y38{bottom:534.840150px;}
.y1d{bottom:536.818500px;}
.y59{bottom:538.080000px;}
.y80{bottom:539.160000px;}
.y23{bottom:540.240000px;}
.yf2{bottom:541.320000px;}
.y17{bottom:541.499700px;}
.y2c{bottom:541.500600px;}
.y113{bottom:543.120000px;}
.yde{bottom:547.979700px;}
.y98{bottom:548.519700px;}
.y34{bottom:549.419700px;}
.y68{bottom:552.840300px;}
.y8b{bottom:553.920300px;}
.y108{bottom:558.060300px;}
.ya3{bottom:559.860150px;}
.yfc{bottom:560.760150px;}
.y2f{bottom:562.740300px;}
.y3f{bottom:564.360000px;}
.y1c{bottom:565.258800px;}
.ye8{bottom:565.260000px;}
.yc4{bottom:567.240300px;}
.y74{bottom:568.680000px;}
.y1{bottom:568.860000px;}
.yd1{bottom:569.579850px;}
.y16{bottom:569.940000px;}
.y2b{bottom:569.940300px;}
.y5f{bottom:575.700000px;}
.y33{bottom:577.860000px;}
.yf1{bottom:581.820000px;}
.y97{bottom:585.419700px;}
.y51{bottom:587.579700px;}
.ydd{bottom:588.479700px;}
.y8a{bottom:589.380000px;}
.y2e{bottom:591.180000px;}
.y107{bottom:592.799700px;}
.yb5{bottom:593.880150px;}
.y67{bottom:596.400000px;}
.y2a{bottom:598.380000px;}
.yfb{bottom:601.260150px;}
.ya2{bottom:601.799850px;}
.ye7{bottom:603.960000px;}
.y50{bottom:608.640000px;}
.yc3{bottom:610.800000px;}
.yd0{bottom:611.340150px;}
.y96{bottom:622.319700px;}
.y106{bottom:627.540000px;}
.yb4{bottom:629.339850px;}
.ydc{bottom:636.720000px;}
.yfa{bottom:640.140000px;}
.y6{bottom:640.680000px;}
.ye6{bottom:644.460000px;}
.ycf{bottom:648.420000px;}
.yc2{bottom:651.300000px;}
.y7f{bottom:657.780000px;}
.y37{bottom:659.220000px;}
.y4f{bottom:660.300000px;}
.y89{bottom:661.380000px;}
.ya1{bottom:662.820000px;}
.y3e{bottom:663.360000px;}
.y72{bottom:663.540000px;}
.yb3{bottom:664.979550px;}
.y73{bottom:669.840000px;}
.y32{bottom:670.020000px;}
.yf9{bottom:680.640000px;}
.yce{bottom:682.079700px;}
.y5e{bottom:682.440000px;}
.yb2{bottom:702.060000px;}
.y105{bottom:707.460000px;}
.y95{bottom:710.160000px;}
.ycd{bottom:723.840000px;}
.y4b{bottom:731.220000px;}
.h1d{height:39.793359px;}
.h6{height:43.410938px;}
.h11{height:45.478125px;}
.ha{height:52.713281px;}
.h13{height:54.864844px;}
.he{height:60.465234px;}
.h1f{height:65.850469px;}
.h15{height:66.698438px;}
.h8{height:68.217188px;}
.h7{height:69.006094px;}
.hf{height:70.020150px;}
.h14{height:71.001563px;}
.h3{height:75.452344px;}
.h1c{height:80.317617px;}
.h1a{height:83.204297px;}
.h1b{height:83.205497px;}
.h16{height:90.439453px;}
.h2{height:98.191406px;}
.h18{height:99.326953px;}
.h12{height:102.199219px;}
.h5{height:105.943359px;}
.hc{height:107.168555px;}
.h17{height:113.178516px;}
.hb{height:120.930469px;}
.h19{height:122.328984px;}
.h9{height:130.924688px;}
.h4{height:145.361250px;}
.h1e{height:150.904688px;}
.h10{height:160.295625px;}
.h1{height:226.357031px;}
.h0{height:892.500000px;}
.hd{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:1022.580000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x22{left:19.065750px;}
.x3b{left:40.665750px;}
.x45{left:61.725600px;}
.x3f{left:64.425600px;}
.x3a{left:69.465750px;}
.x7{left:80.806050px;}
.x1{left:88.906050px;}
.x47{left:94.125600px;}
.x1f{left:104.566260px;}
.x33{left:128.145750px;}
.x17{left:130.485900px;}
.x11{left:139.845750px;}
.x2{left:192.586500px;}
.x18{left:199.245600px;}
.x3e{left:209.507250px;}
.x10{left:212.926500px;}
.x6{left:238.666500px;}
.x3c{left:256.485750px;}
.x41{left:259.725600px;}
.x19{left:267.646500px;}
.x46{left:275.925600px;}
.x40{left:290.325600px;}
.x43{left:294.825750px;}
.xf{left:296.086500px;}
.x48{left:308.325600px;}
.x3{left:344.146500px;}
.x16{left:361.246350px;}
.xe{left:372.946500px;}
.x34{left:432.886500px;}
.x15{left:439.186650px;}
.x4{left:452.866500px;}
.xd{left:456.106500px;}
.x42{left:468.165600px;}
.x1b{left:486.706500px;}
.x37{left:505.606500px;}
.x21{left:507.046500px;}
.x4b{left:512.986500px;}
.xc{left:535.666500px;}
.x14{left:537.286650px;}
.x3d{left:574.725750px;}
.x36{left:578.146500px;}
.x44{left:584.445750px;}
.x35{left:590.926500px;}
.xb{left:616.666500px;}
.x13{left:621.166500px;}
.x49{left:622.605600px;}
.x32{left:636.106500px;}
.x2e{left:643.846500px;}
.x2d{left:648.346500px;}
.x2f{left:656.626500px;}
.x31{left:668.506200px;}
.x2c{left:675.166500px;}
.x30{left:687.946500px;}
.x4a{left:692.806500px;}
.x38{left:712.966500px;}
.x1e{left:716.926500px;}
.x20{left:743.206500px;}
.x39{left:745.006500px;}
.x1c{left:777.946500px;}
.x1d{left:836.806500px;}
.x4c{left:933.814500px;}
.x23{left:937.786500px;}
.xa{left:941.386500px;}
.x12{left:942.646500px;}
.x5{left:954.526500px;}
.x1a{left:1009.786500px;}
.x9{left:1023.466500px;}
.x28{left:1031.566500px;}
.x27{left:1034.626380px;}
.x26{left:1038.946500px;}
.x25{left:1048.306500px;}
.x2b{left:1063.786500px;}
.x29{left:1077.646650px;}
.x2a{left:1082.326500px;}
.x8{left:1109.326500px;}
.x24{left:1249.545000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.047786pt;}
.ls4{letter-spacing:0.047852pt;}
.ls2{letter-spacing:0.047917pt;}
.lsd{letter-spacing:22.673920pt;}
.ls5{letter-spacing:32.062933pt;}
.lsa{letter-spacing:34.400000pt;}
.lsb{letter-spacing:35.422933pt;}
.ls1{letter-spacing:38.558933pt;}
.ls7{letter-spacing:41.918933pt;}
.ls8{letter-spacing:41.921067pt;}
.ls9{letter-spacing:45.278933pt;}
.lsc{letter-spacing:48.414933pt;}
.ls6{letter-spacing:65.984000pt;}
.ws1{word-spacing:-42.234880pt;}
.ws7f{word-spacing:-41.141760pt;}
.ws25{word-spacing:-36.601600pt;}
.ws63{word-spacing:-33.845760pt;}
.ws3a{word-spacing:-29.651200pt;}
.ws78{word-spacing:-27.622139pt;}
.ws58{word-spacing:-27.481600pt;}
.ws27{word-spacing:-25.428480pt;}
.ws2a{word-spacing:-25.312000pt;}
.ws28{word-spacing:-23.887360pt;}
.ws6f{word-spacing:-23.287040pt;}
.ws64{word-spacing:-21.117440pt;}
.ws26{word-spacing:-19.649280pt;}
.ws4{word-spacing:-19.140397pt;}
.ws6{word-spacing:-19.140332pt;}
.ws5{word-spacing:-19.140266pt;}
.ws7{word-spacing:-19.092480pt;}
.ws77{word-spacing:-18.663841pt;}
.ws24{word-spacing:-12.728320pt;}
.ws65{word-spacing:-5.168640pt;}
.ws45{word-spacing:-2.485978pt;}
.wse{word-spacing:-2.290752pt;}
.ws14{word-spacing:-1.999925pt;}
.ws73{word-spacing:-1.862139pt;}
.ws1c{word-spacing:-1.846378pt;}
.ws13{word-spacing:-1.836571pt;}
.ws60{word-spacing:-1.721613pt;}
.ws57{word-spacing:-1.721419pt;}
.ws32{word-spacing:-1.651152pt;}
.ws4d{word-spacing:-1.636228pt;}
.ws23{word-spacing:-1.549078pt;}
.wsd{word-spacing:-1.547021pt;}
.ws2{word-spacing:-1.251910pt;}
.ws16{word-spacing:-1.250509pt;}
.ws2b{word-spacing:-1.081997pt;}
.ws6b{word-spacing:-1.046989pt;}
.ws6e{word-spacing:-1.000931pt;}
.ws42{word-spacing:-0.905674pt;}
.ws9{word-spacing:-0.905449pt;}
.ws22{word-spacing:-0.720133pt;}
.ws3d{word-spacing:-0.642749pt;}
.ws18{word-spacing:-0.610342pt;}
.ws3{word-spacing:-0.567178pt;}
.ws17{word-spacing:-0.486752pt;}
.ws29{word-spacing:-0.435206pt;}
.ws21{word-spacing:-0.374340pt;}
.ws76{word-spacing:-0.361361pt;}
.ws51{word-spacing:-0.359206pt;}
.ws7e{word-spacing:-0.265824pt;}
.ws8{word-spacing:-0.241413pt;}
.ws48{word-spacing:-0.155858pt;}
.ws59{word-spacing:-0.147987pt;}
.ws0{word-spacing:0.000000pt;}
.ws56{word-spacing:0.019213pt;}
.ws15{word-spacing:0.093283pt;}
.ws2c{word-spacing:0.239680pt;}
.ws61{word-spacing:0.261562pt;}
.ws72{word-spacing:0.278208pt;}
.ws40{word-spacing:1.154822pt;}
.ws62{word-spacing:1.807568pt;}
.ws4a{word-spacing:2.900331pt;}
.ws55{word-spacing:3.737133pt;}
.ws2d{word-spacing:4.211258pt;}
.ws52{word-spacing:4.431163pt;}
.ws54{word-spacing:4.432798pt;}
.ws53{word-spacing:4.505338pt;}
.ws31{word-spacing:4.559987pt;}
.ws1f{word-spacing:4.723725pt;}
.ws20{word-spacing:4.748784pt;}
.ws1e{word-spacing:4.809916pt;}
.ws36{word-spacing:4.810054pt;}
.ws30{word-spacing:4.943616pt;}
.ws7a{word-spacing:5.290721pt;}
.ws5b{word-spacing:6.564219pt;}
.ws5c{word-spacing:6.599354pt;}
.ws5a{word-spacing:7.322022pt;}
.ws3e{word-spacing:9.113152pt;}
.ws3f{word-spacing:9.315987pt;}
.ws1b{word-spacing:10.611325pt;}
.wsb{word-spacing:10.613341pt;}
.ws6c{word-spacing:12.438680pt;}
.ws6d{word-spacing:12.438783pt;}
.ws70{word-spacing:13.078249pt;}
.ws6a{word-spacing:13.224463pt;}
.ws71{word-spacing:13.496179pt;}
.ws4b{word-spacing:14.363737pt;}
.ws79{word-spacing:15.734235pt;}
.ws68{word-spacing:15.784698pt;}
.ws69{word-spacing:16.232200pt;}
.ws67{word-spacing:16.234588pt;}
.ws47{word-spacing:18.203420pt;}
.ws49{word-spacing:19.751067pt;}
.ws3c{word-spacing:20.748886pt;}
.ws19{word-spacing:21.680995pt;}
.ws1a{word-spacing:21.789696pt;}
.ws3b{word-spacing:22.743389pt;}
.ws4f{word-spacing:22.758048pt;}
.ws50{word-spacing:23.040525pt;}
.ws2f{word-spacing:23.411197pt;}
.ws2e{word-spacing:23.417804pt;}
.ws7c{word-spacing:24.147452pt;}
.ws7b{word-spacing:24.585350pt;}
.ws74{word-spacing:26.519920pt;}
.ws75{word-spacing:26.520023pt;}
.ws46{word-spacing:26.579522pt;}
.ws41{word-spacing:28.796826pt;}
.ws7d{word-spacing:29.813322pt;}
.ws44{word-spacing:30.108432pt;}
.ws5e{word-spacing:30.239488pt;}
.ws5d{word-spacing:30.361696pt;}
.ws5f{word-spacing:31.137139pt;}
.ws33{word-spacing:31.389731pt;}
.ws4e{word-spacing:32.838931pt;}
.ws43{word-spacing:33.610029pt;}
.ws4c{word-spacing:34.203245pt;}
.ws34{word-spacing:40.022429pt;}
.ws1d{word-spacing:40.317760pt;}
.ws35{word-spacing:40.348067pt;}
.ws66{word-spacing:41.878238pt;}
.ws10{word-spacing:44.232239pt;}
.wsf{word-spacing:44.481033pt;}
.ws11{word-spacing:44.481095pt;}
.ws12{word-spacing:44.893360pt;}
.wsc{word-spacing:47.094578pt;}
.ws39{word-spacing:52.799603pt;}
.wsa{word-spacing:53.930373pt;}
.ws37{word-spacing:72.050973pt;}
.ws38{word-spacing:72.239770pt;}
._9{margin-left:-740.477107pt;}
._8{margin-left:-467.197107pt;}
._7{margin-left:-171.517107pt;}
._a{margin-left:-60.113197pt;}
._e{margin-left:-13.796398pt;}
._1a{margin-left:-12.003746pt;}
._11{margin-left:-10.069316pt;}
._3{margin-left:-9.164222pt;}
._c{margin-left:-7.534117pt;}
._b{margin-left:-5.868455pt;}
._d{margin-left:-4.141663pt;}
._4{margin-left:-2.406027pt;}
._0{margin-left:-1.182779pt;}
._2{width:1.289325pt;}
._25{width:2.377194pt;}
._21{width:4.572929pt;}
._2b{width:20.990335pt;}
._2a{width:22.651195pt;}
._28{width:23.692981pt;}
._23{width:26.231466pt;}
._24{width:27.763379pt;}
._5{width:28.687098pt;}
._6{width:29.685181pt;}
._1e{width:30.753267pt;}
._18{width:32.597875pt;}
._f{width:34.063500pt;}
._19{width:35.388034pt;}
._29{width:38.282057pt;}
._16{width:39.365276pt;}
._12{width:45.659508pt;}
._22{width:47.844287pt;}
._15{width:50.468948pt;}
._20{width:51.830790pt;}
._1c{width:53.335468pt;}
._1d{width:57.506788pt;}
._1f{width:58.824388pt;}
._1b{width:60.141116pt;}
._27{width:64.239468pt;}
._26{width:66.092462pt;}
._1{width:67.206916pt;}
._17{width:68.962953pt;}
._14{width:75.640843pt;}
._2c{width:79.218672pt;}
._13{width:81.952669pt;}
._10{width:88.715672pt;}
.fs11{font-size:49.280000pt;}
.fs5{font-size:53.760000pt;}
.fsc{font-size:56.320000pt;}
.fs8{font-size:65.280000pt;}
.fsa{font-size:74.880000pt;}
.fsd{font-size:79.360000pt;}
.fs6{font-size:84.480000pt;}
.fs2{font-size:93.440000pt;}
.fs10{font-size:103.040000pt;}
.fse{font-size:112.000000pt;}
.fs1{font-size:121.600000pt;}
.fs4{font-size:131.200000pt;}
.fsf{font-size:140.160000pt;}
.fs9{font-size:149.760000pt;}
.fs7{font-size:168.320000pt;}
.fs3{font-size:186.880000pt;}
.fsb{font-size:206.080000pt;}
.fs0{font-size:280.320000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:13.760000pt;}
.ydb{bottom:91.251333pt;}
.yc1{bottom:91.252933pt;}
.yf0{bottom:91.253200pt;}
.ycc{bottom:91.253467pt;}
.y4e{bottom:91.253600pt;}
.ye5{bottom:91.254133pt;}
.y49{bottom:92.053600pt;}
.y36{bottom:104.693733pt;}
.yd{bottom:105.653600pt;}
.y118{bottom:106.133867pt;}
.y71{bottom:108.853600pt;}
.y4d{bottom:112.213600pt;}
.yda{bottom:116.531600pt;}
.yc0{bottom:116.533200pt;}
.yef{bottom:116.533467pt;}
.ycb{bottom:116.533733pt;}
.ye4{bottom:116.534400pt;}
.y4a{bottom:127.253600pt;}
.y29{bottom:151.093333pt;}
.y112{bottom:159.412933pt;}
.y11a{bottom:164.853333pt;}
.ya0{bottom:166.453067pt;}
.y7e{bottom:167.893600pt;}
.yac{bottom:168.853333pt;}
.y94{bottom:168.853867pt;}
.y104{bottom:169.173067pt;}
.y58{bottom:171.733333pt;}
.y48{bottom:172.053467pt;}
.y88{bottom:173.173067pt;}
.y28{bottom:176.373067pt;}
.ybf{bottom:178.452933pt;}
.y22{bottom:182.291467pt;}
.y70{bottom:182.454000pt;}
.y66{bottom:184.053733pt;}
.y111{bottom:190.293200pt;}
.y7d{bottom:199.253467pt;}
.y1b{bottom:200.532267pt;}
.y27{bottom:201.493333pt;}
.y93{bottom:202.613733pt;}
.y47{bottom:203.573200pt;}
.y5d{bottom:204.853600pt;}
.yab{bottom:206.133733pt;}
.y21{bottom:207.411200pt;}
.y87{bottom:208.533467pt;}
.yd9{bottom:209.331600pt;}
.y9f{bottom:210.933333pt;}
.ybe{bottom:211.412800pt;}
.y6f{bottom:221.173733pt;}
.y5c{bottom:223.573333pt;}
.y1a{bottom:225.812533pt;}
.y26{bottom:226.772800pt;}
.y65{bottom:227.573467pt;}
.y110{bottom:228.053067pt;}
.y7c{bottom:230.773200pt;}
.y20{bottom:232.691467pt;}
.y46{bottom:234.933600pt;}
.yc{bottom:236.213467pt;}
.y92{bottom:236.213733pt;}
.yaa{bottom:236.373333pt;}
.ybd{bottom:242.932533pt;}
.y57{bottom:243.253333pt;}
.y9e{bottom:243.893200pt;}
.yd8{bottom:246.451867pt;}
.y5{bottom:246.453333pt;}
.y3d{bottom:250.133867pt;}
.y19{bottom:251.092800pt;}
.y103{bottom:251.253333pt;}
.y25{bottom:252.053067pt;}
.y15{bottom:254.133333pt;}
.y86{bottom:255.413200pt;}
.y1f{bottom:257.971733pt;}
.y10f{bottom:258.933067pt;}
.y6e{bottom:259.733600pt;}
.y7b{bottom:262.133600pt;}
.y91{bottom:269.813733pt;}
.y64{bottom:271.093733pt;}
.yf8{bottom:271.413467pt;}
.ya9{bottom:273.813067pt;}
.ybc{bottom:275.892933pt;}
.ye3{bottom:277.014400pt;}
.y45{bottom:277.973200pt;}
.yca{bottom:279.093733pt;}
.yb1{bottom:282.933067pt;}
.yb{bottom:283.253600pt;}
.y4{bottom:283.413200pt;}
.yd7{bottom:283.571600pt;}
.y102{bottom:287.253333pt;}
.y9d{bottom:288.372933pt;}
.y3c{bottom:290.453600pt;}
.y85{bottom:290.773067pt;}
.yee{bottom:291.093467pt;}
.y10e{bottom:296.853333pt;}
.y6d{bottom:298.453867pt;}
.y5b{bottom:301.493333pt;}
.y90{bottom:303.573600pt;}
.y7a{bottom:305.173200pt;}
.yf7{bottom:307.413467pt;}
.ybb{bottom:307.572667pt;}
.y56{bottom:308.853333pt;}
.y44{bottom:309.493467pt;}
.ya8{bottom:311.093333pt;}
.y63{bottom:314.453600pt;}
.ye2{bottom:319.734133pt;}
.yd6{bottom:320.691867pt;}
.y9c{bottom:321.172933pt;}
.y117{bottom:321.173333pt;}
.yc9{bottom:321.173467pt;}
.y3{bottom:322.132933pt;}
.y101{bottom:322.133067pt;}
.y84{bottom:326.132933pt;}
.y55{bottom:326.453333pt;}
.yed{bottom:327.093467pt;}
.y10d{bottom:327.733067pt;}
.yb0{bottom:327.893467pt;}
.ya{bottom:330.293733pt;}
.y3b{bottom:330.933333pt;}
.y79{bottom:336.693467pt;}
.y6c{bottom:337.013733pt;}
.yba{bottom:339.092933pt;}
.y43{bottom:340.853333pt;}
.yf6{bottom:341.813467pt;}
.ya7{bottom:348.373067pt;}
.y8f{bottom:348.853867pt;}
.y14{bottom:354.453333pt;}
.y13{bottom:354.773333pt;}
.y12{bottom:355.093333pt;}
.y11{bottom:355.253333pt;}
.y10{bottom:355.413333pt;}
.yf{bottom:355.733333pt;}
.ye{bottom:356.053333pt;}
.y100{bottom:357.013333pt;}
.yd5{bottom:357.812133pt;}
.y62{bottom:357.973333pt;}
.y10c{bottom:358.613333pt;}
.y83{bottom:361.493333pt;}
.yec{bottom:361.493467pt;}
.y116{bottom:361.653600pt;}
.ye1{bottom:362.613867pt;}
.yc8{bottom:363.253733pt;}
.y9b{bottom:365.653200pt;}
.y78{bottom:368.053333pt;}
.y3a{bottom:371.253600pt;}
.yb9{bottom:372.052800pt;}
.yaf{bottom:372.693467pt;}
.y6b{bottom:375.573600pt;}
.yf5{bottom:376.373333pt;}
.y9{bottom:377.333333pt;}
.y54{bottom:378.293600pt;}
.y119{bottom:381.013333pt;}
.y8e{bottom:382.613733pt;}
.y42{bottom:383.893467pt;}
.ya6{bottom:385.653333pt;}
.y5a{bottom:389.813333pt;}
.yff{bottom:391.893600pt;}
.yd4{bottom:394.932400pt;}
.y10b{bottom:396.373067pt;}
.yeb{bottom:397.493467pt;}
.yc7{bottom:397.813600pt;}
.y53{bottom:397.973333pt;}
.y61{bottom:401.493600pt;}
.y115{bottom:401.973333pt;}
.yb8{bottom:403.733067pt;}
.ye0{bottom:405.493600pt;}
.y82{bottom:408.533067pt;}
.y9a{bottom:410.132933pt;}
.yf4{bottom:410.773333pt;}
.y77{bottom:411.253467pt;}
.y6a{bottom:414.293867pt;}
.y8d{bottom:416.213733pt;}
.yae{bottom:417.653333pt;}
.ya5{bottom:422.933067pt;}
.y39{bottom:423.413467pt;}
.y8{bottom:424.373467pt;}
.y41{bottom:427.093467pt;}
.yfe{bottom:427.253467pt;}
.y10a{bottom:427.253600pt;}
.y2{bottom:429.973067pt;}
.yd3{bottom:432.052667pt;}
.yea{bottom:432.053333pt;}
.yc6{bottom:433.813600pt;}
.yb7{bottom:435.413333pt;}
.y114{bottom:442.453600pt;}
.y76{bottom:442.613733pt;}
.y99{bottom:443.093333pt;}
.y81{bottom:443.893467pt;}
.y60{bottom:445.013333pt;}
.yf3{bottom:446.773333pt;}
.ydf{bottom:448.373333pt;}
.y31{bottom:449.814133pt;}
.y1e{bottom:451.891733pt;}
.y69{bottom:452.853733pt;}
.y24{bottom:454.933067pt;}
.y18{bottom:456.052800pt;}
.y2d{bottom:456.214133pt;}
.y40{bottom:458.453333pt;}
.y52{bottom:459.573333pt;}
.ya4{bottom:460.373200pt;}
.y8c{bottom:461.013733pt;}
.yad{bottom:462.453333pt;}
.y35{bottom:463.092800pt;}
.yfd{bottom:463.253467pt;}
.y109{bottom:465.173333pt;}
.ye9{bottom:468.053333pt;}
.yc5{bottom:468.213600pt;}
.yb6{bottom:468.373200pt;}
.yd2{bottom:469.172933pt;}
.y7{bottom:471.413600pt;}
.y75{bottom:473.973600pt;}
.y30{bottom:474.933867pt;}
.y38{bottom:475.413467pt;}
.y1d{bottom:477.172000pt;}
.y59{bottom:478.293333pt;}
.y80{bottom:479.253333pt;}
.y23{bottom:480.213333pt;}
.yf2{bottom:481.173333pt;}
.y17{bottom:481.333067pt;}
.y2c{bottom:481.333867pt;}
.y113{bottom:482.773333pt;}
.yde{bottom:487.093067pt;}
.y98{bottom:487.573067pt;}
.y34{bottom:488.373067pt;}
.y68{bottom:491.413600pt;}
.y8b{bottom:492.373600pt;}
.y108{bottom:496.053600pt;}
.ya3{bottom:497.653467pt;}
.yfc{bottom:498.453467pt;}
.y2f{bottom:500.213600pt;}
.y3f{bottom:501.653333pt;}
.y1c{bottom:502.452267pt;}
.ye8{bottom:502.453333pt;}
.yc4{bottom:504.213600pt;}
.y74{bottom:505.493333pt;}
.y1{bottom:505.653333pt;}
.yd1{bottom:506.293200pt;}
.y16{bottom:506.613333pt;}
.y2b{bottom:506.613600pt;}
.y5f{bottom:511.733333pt;}
.y33{bottom:513.653333pt;}
.yf1{bottom:517.173333pt;}
.y97{bottom:520.373067pt;}
.y51{bottom:522.293067pt;}
.ydd{bottom:523.093067pt;}
.y8a{bottom:523.893333pt;}
.y2e{bottom:525.493333pt;}
.y107{bottom:526.933067pt;}
.yb5{bottom:527.893467pt;}
.y67{bottom:530.133333pt;}
.y2a{bottom:531.893333pt;}
.yfb{bottom:534.453467pt;}
.ya2{bottom:534.933200pt;}
.ye7{bottom:536.853333pt;}
.y50{bottom:541.013333pt;}
.yc3{bottom:542.933333pt;}
.yd0{bottom:543.413467pt;}
.y96{bottom:553.173067pt;}
.y106{bottom:557.813333pt;}
.yb4{bottom:559.413200pt;}
.ydc{bottom:565.973333pt;}
.yfa{bottom:569.013333pt;}
.y6{bottom:569.493333pt;}
.ye6{bottom:572.853333pt;}
.ycf{bottom:576.373333pt;}
.yc2{bottom:578.933333pt;}
.y7f{bottom:584.693333pt;}
.y37{bottom:585.973333pt;}
.y4f{bottom:586.933333pt;}
.y89{bottom:587.893333pt;}
.ya1{bottom:589.173333pt;}
.y3e{bottom:589.653333pt;}
.y72{bottom:589.813333pt;}
.yb3{bottom:591.092933pt;}
.y73{bottom:595.413333pt;}
.y32{bottom:595.573333pt;}
.yf9{bottom:605.013333pt;}
.yce{bottom:606.293067pt;}
.y5e{bottom:606.613333pt;}
.yb2{bottom:624.053333pt;}
.y105{bottom:628.853333pt;}
.y95{bottom:631.253333pt;}
.ycd{bottom:643.413333pt;}
.y4b{bottom:649.973333pt;}
.h1d{height:35.371875pt;}
.h6{height:38.587500pt;}
.h11{height:40.425000pt;}
.ha{height:46.856250pt;}
.h13{height:48.768750pt;}
.he{height:53.746875pt;}
.h1f{height:58.533750pt;}
.h15{height:59.287500pt;}
.h8{height:60.637500pt;}
.h7{height:61.338750pt;}
.hf{height:62.240133pt;}
.h14{height:63.112500pt;}
.h3{height:67.068750pt;}
.h1c{height:71.393438pt;}
.h1a{height:73.959375pt;}
.h1b{height:73.960442pt;}
.h16{height:80.390625pt;}
.h2{height:87.281250pt;}
.h18{height:88.290625pt;}
.h12{height:90.843750pt;}
.h5{height:94.171875pt;}
.hc{height:95.260938pt;}
.h17{height:100.603125pt;}
.hb{height:107.493750pt;}
.h19{height:108.736875pt;}
.h9{height:116.377500pt;}
.h4{height:129.210000pt;}
.h1e{height:134.137500pt;}
.h10{height:142.485000pt;}
.h1{height:201.206250pt;}
.h0{height:793.333333pt;}
.hd{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:908.960000pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x22{left:16.947333pt;}
.x3b{left:36.147333pt;}
.x45{left:54.867200pt;}
.x3f{left:57.267200pt;}
.x3a{left:61.747333pt;}
.x7{left:71.827600pt;}
.x1{left:79.027600pt;}
.x47{left:83.667200pt;}
.x1f{left:92.947787pt;}
.x33{left:113.907333pt;}
.x17{left:115.987467pt;}
.x11{left:124.307333pt;}
.x2{left:171.188000pt;}
.x18{left:177.107200pt;}
.x3e{left:186.228667pt;}
.x10{left:189.268000pt;}
.x6{left:212.148000pt;}
.x3c{left:227.987333pt;}
.x41{left:230.867200pt;}
.x19{left:237.908000pt;}
.x46{left:245.267200pt;}
.x40{left:258.067200pt;}
.x43{left:262.067333pt;}
.xf{left:263.188000pt;}
.x48{left:274.067200pt;}
.x3{left:305.908000pt;}
.x16{left:321.107867pt;}
.xe{left:331.508000pt;}
.x34{left:384.788000pt;}
.x15{left:390.388133pt;}
.x4{left:402.548000pt;}
.xd{left:405.428000pt;}
.x42{left:416.147200pt;}
.x1b{left:432.628000pt;}
.x37{left:449.428000pt;}
.x21{left:450.708000pt;}
.x4b{left:455.988000pt;}
.xc{left:476.148000pt;}
.x14{left:477.588133pt;}
.x3d{left:510.867333pt;}
.x36{left:513.908000pt;}
.x44{left:519.507333pt;}
.x35{left:525.268000pt;}
.xb{left:548.148000pt;}
.x13{left:552.148000pt;}
.x49{left:553.427200pt;}
.x32{left:565.428000pt;}
.x2e{left:572.308000pt;}
.x2d{left:576.308000pt;}
.x2f{left:583.668000pt;}
.x31{left:594.227733pt;}
.x2c{left:600.148000pt;}
.x30{left:611.508000pt;}
.x4a{left:615.828000pt;}
.x38{left:633.748000pt;}
.x1e{left:637.268000pt;}
.x20{left:660.628000pt;}
.x39{left:662.228000pt;}
.x1c{left:691.508000pt;}
.x1d{left:743.828000pt;}
.x4c{left:830.057333pt;}
.x23{left:833.588000pt;}
.xa{left:836.788000pt;}
.x12{left:837.908000pt;}
.x5{left:848.468000pt;}
.x1a{left:897.588000pt;}
.x9{left:909.748000pt;}
.x28{left:916.948000pt;}
.x27{left:919.667893pt;}
.x26{left:923.508000pt;}
.x25{left:931.828000pt;}
.x2b{left:945.588000pt;}
.x29{left:957.908133pt;}
.x2a{left:962.068000pt;}
.x8{left:986.068000pt;}
.x24{left:1110.706667pt;}
}




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