
    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_d99289989c070f46428c664e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_af3a099d3c315d0ed9135c11.woff')format("woff");}.ff2{font-family:ff2;line-height:1.070312;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_5a9ef5cbf9d06c19220324cb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_c26b4aacb26e390e988b7a18.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727300px;}
.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;}
}
.wsd{word-spacing:-42.349126px;}
.wsf{word-spacing:-38.029123px;}
.ws2e{word-spacing:-36.392758px;}
.ws73{word-spacing:-24.283657px;}
.ws11{word-spacing:-24.015539px;}
.ws55{word-spacing:-23.929462px;}
.ws41{word-spacing:-23.367292px;}
.ws88{word-spacing:-23.301838px;}
.ws91{word-spacing:-23.170928px;}
.wsa0{word-spacing:-23.105474px;}
.ws39{word-spacing:-22.974565px;}
.ws93{word-spacing:-22.778201px;}
.ws31{word-spacing:-22.516382px;}
.ws60{word-spacing:-22.385473px;}
.wsa6{word-spacing:-22.254564px;}
.ws76{word-spacing:-22.189109px;}
.ws99{word-spacing:-22.058200px;}
.ws5c{word-spacing:-21.861836px;}
.ws80{word-spacing:-21.796382px;}
.ws3b{word-spacing:-21.600018px;}
.ws8c{word-spacing:-21.534563px;}
.ws19{word-spacing:-21.469109px;}
.ws78{word-spacing:-21.338200px;}
.ws89{word-spacing:-21.272745px;}
.ws3e{word-spacing:-21.141836px;}
.ws50{word-spacing:-21.076381px;}
.ws81{word-spacing:-21.010927px;}
.ws26{word-spacing:-20.880017px;}
.ws6e{word-spacing:-20.749108px;}
.ws8f{word-spacing:-20.552744px;}
.ws9b{word-spacing:-20.487290px;}
.ws7b{word-spacing:-20.421835px;}
.ws90{word-spacing:-20.290926px;}
.ws97{word-spacing:-20.225471px;}
.ws74{word-spacing:-20.160017px;}
.ws48{word-spacing:-20.029108px;}
.ws5d{word-spacing:-20.013005px;}
.ws0{word-spacing:-19.941274px;}
.ws17{word-spacing:-19.898198px;}
.ws52{word-spacing:-19.832744px;}
.ws22{word-spacing:-19.767289px;}
.ws4c{word-spacing:-19.701835px;}
.ws7c{word-spacing:-19.636380px;}
.ws5{word-spacing:-19.570925px;}
.ws6d{word-spacing:-19.505471px;}
.ws42{word-spacing:-19.374562px;}
.ws96{word-spacing:-19.309107px;}
.ws3a{word-spacing:-19.243652px;}
.ws1c{word-spacing:-19.112743px;}
.wsa3{word-spacing:-19.047289px;}
.ws24{word-spacing:-18.916379px;}
.ws62{word-spacing:-18.850925px;}
.ws86{word-spacing:-18.720016px;}
.ws5b{word-spacing:-18.523652px;}
.ws64{word-spacing:-18.458197px;}
.ws9{word-spacing:-18.327288px;}
.ws1{word-spacing:-18.261833px;}
.ws8{word-spacing:-18.200988px;}
.ws2{word-spacing:-18.196379px;}
.ws3f{word-spacing:-17.934560px;}
.ws98{word-spacing:-17.869106px;}
.ws57{word-spacing:-17.672742px;}
.ws53{word-spacing:-17.541833px;}
.ws92{word-spacing:-17.476378px;}
.ws63{word-spacing:-17.280014px;}
.ws1f{word-spacing:-17.214560px;}
.ws5a{word-spacing:-17.149105px;}
.ws2b{word-spacing:-17.083651px;}
.ws59{word-spacing:-17.018196px;}
.ws21{word-spacing:-16.952741px;}
.ws2d{word-spacing:-16.887287px;}
.ws2f{word-spacing:-16.821832px;}
.ws1e{word-spacing:-16.756378px;}
.wsc{word-spacing:-16.617617px;}
.ws7e{word-spacing:-16.560014px;}
.ws7f{word-spacing:-16.494559px;}
.ws75{word-spacing:-16.429105px;}
.ws36{word-spacing:-16.363650px;}
.ws15{word-spacing:-16.232741px;}
.ws94{word-spacing:-15.970922px;}
.ws95{word-spacing:-15.941630px;}
.wsa{word-spacing:-15.924326px;}
.ws28{word-spacing:-15.840013px;}
.ws3d{word-spacing:-15.709104px;}
.ws1a{word-spacing:-15.578195px;}
.ws85{word-spacing:-15.512740px;}
.ws58{word-spacing:-15.447286px;}
.ws8d{word-spacing:-15.381831px;}
.ws29{word-spacing:-15.316376px;}
.wsaa{word-spacing:-15.185467px;}
.wsb{word-spacing:-14.955955px;}
.ws5e{word-spacing:-14.858194px;}
.ws13{word-spacing:-14.792740px;}
.ws54{word-spacing:-14.727285px;}
.ws6a{word-spacing:-14.596376px;}
.ws9a{word-spacing:-14.530921px;}
.ws23{word-spacing:-14.465467px;}
.ws45{word-spacing:-14.334557px;}
.ws2a{word-spacing:-14.269103px;}
.ws27{word-spacing:-14.007284px;}
.ws18{word-spacing:-13.941830px;}
.ws9f{word-spacing:-13.876375px;}
.ws9e{word-spacing:-13.847749px;}
.ws2c{word-spacing:-13.810921px;}
.ws51{word-spacing:-13.680011px;}
.wsa7{word-spacing:-13.614557px;}
.ws4f{word-spacing:-13.549102px;}
.ws6b{word-spacing:-13.483648px;}
.ws79{word-spacing:-13.287284px;}
.ws7a{word-spacing:-13.221829px;}
.ws1b{word-spacing:-13.156375px;}
.ws16{word-spacing:-13.025465px;}
.ws5f{word-spacing:-12.894556px;}
.ws20{word-spacing:-12.763647px;}
.ws8a{word-spacing:-12.698192px;}
.ws49{word-spacing:-12.632738px;}
.ws61{word-spacing:-12.501829px;}
.ws68{word-spacing:-12.436374px;}
.wsa4{word-spacing:-12.370919px;}
.ws4e{word-spacing:-12.305465px;}
.ws47{word-spacing:-12.240010px;}
.ws6f{word-spacing:-12.174556px;}
.ws70{word-spacing:-12.043646px;}
.wsa1{word-spacing:-11.982208px;}
.wsa2{word-spacing:-11.978192px;}
.ws83{word-spacing:-11.847283px;}
.ws71{word-spacing:-11.781828px;}
.ws1d{word-spacing:-11.716373px;}
.ws7d{word-spacing:-11.520010px;}
.ws65{word-spacing:-11.389100px;}
.ws72{word-spacing:-11.258191px;}
.ws6c{word-spacing:-11.192737px;}
.ws14{word-spacing:-10.930918px;}
.ws66{word-spacing:-10.669100px;}
.ws67{word-spacing:-10.637630px;}
.ws40{word-spacing:-10.603645px;}
.ws56{word-spacing:-10.472736px;}
.ws12{word-spacing:-10.210918px;}
.ws8e{word-spacing:-10.145463px;}
.ws44{word-spacing:-10.014554px;}
.ws82{word-spacing:-9.883645px;}
.ws87{word-spacing:-9.818190px;}
.wsa9{word-spacing:-9.621826px;}
.ws69{word-spacing:-9.490917px;}
.ws7{word-spacing:-9.425462px;}
.ws77{word-spacing:-9.229099px;}
.ws4a{word-spacing:-9.098189px;}
.wsa5{word-spacing:-8.901826px;}
.ws9c{word-spacing:-8.116370px;}
.ws9d{word-spacing:-8.050916px;}
.ws43{word-spacing:-7.985461px;}
.ws3c{word-spacing:-7.527279px;}
.ws84{word-spacing:-7.330915px;}
.ws25{word-spacing:-7.200006px;}
.ws33{word-spacing:-6.349096px;}
.ws30{word-spacing:-5.956369px;}
.ws35{word-spacing:-5.498186px;}
.wsa8{word-spacing:-4.820323px;}
.wse{word-spacing:-3.665458px;}
.ws4b{word-spacing:-2.880002px;}
.ws32{word-spacing:-1.309092px;}
.ws4d{word-spacing:-0.654546px;}
.ws6{word-spacing:0.000000px;}
.ws34{word-spacing:4.778186px;}
.ws38{word-spacing:6.807278px;}
.ws37{word-spacing:7.003642px;}
.ws46{word-spacing:11.258191px;}
.ws10{word-spacing:25.330930px;}
.ws8b{word-spacing:29.041321px;}
.ws3{word-spacing:464.700306px;}
.ws4{word-spacing:530.089451px;}
._f{margin-left:-32.727300px;}
._10{margin-left:-14.530921px;}
._16{margin-left:-12.803029px;}
._33{margin-left:-8.978624px;}
._2c{margin-left:-7.200006px;}
._1c{margin-left:-4.843640px;}
._28{margin-left:-3.600003px;}
._7{margin-left:-1.178183px;}
._17{width:1.849741px;}
._8{width:3.137176px;}
._30{width:5.163056px;}
._2f{width:6.320297px;}
._13{width:18.196379px;}
._36{width:20.165786px;}
._26{width:25.330930px;}
._35{width:27.299930px;}
._29{width:28.930933px;}
._1d{width:30.684625px;}
._1a{width:31.705923px;}
._22{width:33.400780px;}
._18{width:35.159563px;}
._21{width:43.570541px;}
._14{width:47.525174px;}
._12{width:59.498231px;}
._a{width:61.723688px;}
._19{width:63.818235px;}
._32{width:65.513071px;}
._1e{width:68.048366px;}
._11{width:71.775359px;}
._1b{width:73.065251px;}
._34{width:74.120700px;}
._15{width:104.366615px;}
._2{width:122.765476px;}
._4{width:148.292770px;}
._3{width:180.823706px;}
._1{width:184.685527px;}
._6{width:188.350985px;}
._0{width:304.729264px;}
._5{width:380.983873px;}
._2b{width:750.374966px;}
._2e{width:877.464085px;}
._31{width:881.898085px;}
._24{width:902.648909px;}
._9{width:910.710085px;}
._2d{width:1165.029857px;}
._27{width:1422.685706px;}
._e{width:1550.069600px;}
._2a{width:1560.991276px;}
._1f{width:1735.624148px;}
._20{width:1739.224151px;}
._23{width:1862.736982px;}
._c{width:1910.266264px;}
._b{width:1971.924497px;}
._d{width:2026.513633px;}
._25{width:2124.751745px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,125,255);}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y1f{bottom:50.590500px;}
.y112{bottom:119.560500px;}
.y135{bottom:125.661000px;}
.y14c{bottom:125.667000px;}
.yf4{bottom:130.861500px;}
.ye3{bottom:131.319000px;}
.yc2{bottom:137.583000px;}
.y111{bottom:141.916500px;}
.y134{bottom:148.017000px;}
.y14b{bottom:148.023000px;}
.yab{bottom:150.418500px;}
.y77{bottom:151.971000px;}
.yf3{bottom:153.217500px;}
.ye2{bottom:153.675000px;}
.y54{bottom:160.855500px;}
.y110{bottom:164.272500px;}
.y17c{bottom:167.187000px;}
.y133{bottom:170.373000px;}
.yaa{bottom:172.774500px;}
.yc1{bottom:173.031000px;}
.y76{bottom:174.327000px;}
.yf2{bottom:175.575000px;}
.ye1{bottom:176.031000px;}
.y53{bottom:183.211500px;}
.y10f{bottom:186.628500px;}
.y94{bottom:187.950000px;}
.y17b{bottom:189.544500px;}
.y132{bottom:192.730500px;}
.ya9{bottom:195.130500px;}
.yc0{bottom:195.387000px;}
.y14a{bottom:196.198500px;}
.y75{bottom:196.683000px;}
.yf1{bottom:197.931000px;}
.ye0{bottom:198.388500px;}
.y93{bottom:210.306000px;}
.ya8{bottom:217.486500px;}
.ybf{bottom:217.743000px;}
.yf0{bottom:220.287000px;}
.y10e{bottom:222.076500px;}
.y74{bottom:228.295500px;}
.yd{bottom:232.471500px;}
.y92{bottom:232.662000px;}
.ydf{bottom:233.835000px;}
.y52{bottom:238.176000px;}
.y131{bottom:239.355000px;}
.ya7{bottom:239.842500px;}
.ybe{bottom:240.099000px;}
.yef{bottom:242.643000px;}
.y10d{bottom:244.432500px;}
.y73{bottom:250.651500px;}
.yc{bottom:254.827500px;}
.y91{bottom:255.018000px;}
.yde{bottom:256.191000px;}
.y130{bottom:261.711000px;}
.ya6{bottom:262.200000px;}
.ybd{bottom:262.456500px;}
.y17a{bottom:272.605500px;}
.y72{bottom:273.009000px;}
.ydd{bottom:278.547000px;}
.y10c{bottom:279.879000px;}
.y12f{bottom:284.068500px;}
.ya5{bottom:284.556000px;}
.ybc{bottom:284.812500px;}
.yee{bottom:290.818500px;}
.y90{bottom:295.260000px;}
.y71{bottom:295.365000px;}
.ydc{bottom:300.904500px;}
.y12e{bottom:306.424500px;}
.ya4{bottom:306.912000px;}
.ybb{bottom:307.168500px;}
.y51{bottom:310.554000px;}
.y165{bottom:310.684500px;}
.y10b{bottom:315.327000px;}
.y179{bottom:315.799500px;}
.y8f{bottom:317.616000px;}
.y149{bottom:322.680000px;}
.y70{bottom:326.977500px;}
.ya3{bottom:329.268000px;}
.yba{bottom:329.524500px;}
.y50{bottom:332.911500px;}
.ydb{bottom:336.351000px;}
.y178{bottom:338.155500px;}
.y8e{bottom:339.972000px;}
.y148{bottom:345.036000px;}
.y6f{bottom:349.333500px;}
.y10a{bottom:350.773500px;}
.yb9{bottom:351.880500px;}
.y12d{bottom:353.049000px;}
.yed{bottom:353.844000px;}
.y4f{bottom:355.267500px;}
.yda{bottom:358.707000px;}
.ya2{bottom:364.716000px;}
.y164{bottom:365.647500px;}
.y6e{bottom:371.689500px;}
.yb8{bottom:374.238000px;}
.y12c{bottom:375.406500px;}
.yec{bottom:376.200000px;}
.y4e{bottom:377.623500px;}
.y8d{bottom:380.214000px;}
.yd9{bottom:381.064500px;}
.y147{bottom:385.875000px;}
.y109{bottom:386.221500px;}
.y177{bottom:393.120000px;}
.y6d{bottom:394.045500px;}
.yb7{bottom:396.594000px;}
.y12b{bottom:397.762500px;}
.y4d{bottom:399.979500px;}
.ya1{bottom:400.162500px;}
.y8c{bottom:402.570000px;}
.yd8{bottom:403.420500px;}
.yeb{bottom:411.646500px;}
.y6c{bottom:416.403000px;}
.yb6{bottom:418.950000px;}
.y12a{bottom:420.118500px;}
.y108{bottom:421.668000px;}
.y4c{bottom:422.335500px;}
.ya0{bottom:422.518500px;}
.y8b{bottom:424.926000px;}
.yd7{bottom:425.776500px;}
.y146{bottom:426.714000px;}
.yea{bottom:434.004000px;}
.y163{bottom:438.027000px;}
.yb5{bottom:441.306000px;}
.y4b{bottom:444.693000px;}
.y6b{bottom:448.015500px;}
.y129{bottom:455.565000px;}
.ye9{bottom:456.360000px;}
.y107{bottom:457.116000px;}
.y9f{bottom:457.966500px;}
.y162{bottom:460.383000px;}
.yb4{bottom:463.662000px;}
.y176{bottom:465.499500px;}
.y8a{bottom:465.765000px;}
.y4a{bottom:467.049000px;}
.y145{bottom:467.553000px;}
.y6a{bottom:470.371500px;}
.yd6{bottom:473.952000px;}
.y33{bottom:475.468500px;}
.y128{bottom:477.922500px;}
.yb3{bottom:486.019500px;}
.y49{bottom:489.405000px;}
.ye8{bottom:491.806500px;}
.y106{bottom:492.562500px;}
.y9e{bottom:493.413000px;}
.y127{bottom:500.278500px;}
.y69{bottom:500.857500px;}
.y175{bottom:500.946000px;}
.yb{bottom:503.104500px;}
.y48{bottom:511.761000px;}
.ye7{bottom:514.162500px;}
.y32{bottom:514.188000px;}
.y161{bottom:515.347500px;}
.y126{bottom:522.634500px;}
.y68{bottom:523.213500px;}
.y105{bottom:528.010500px;}
.y9d{bottom:528.861000px;}
.ya{bottom:529.932000px;}
.y89{bottom:533.244000px;}
.y47{bottom:534.117000px;}
.yb2{bottom:534.193500px;}
.y144{bottom:535.437000px;}
.y174{bottom:536.394000px;}
.ye6{bottom:536.520000px;}
.yd5{bottom:536.976000px;}
.y67{bottom:545.569500px;}
.y104{bottom:550.366500px;}
.y31{bottom:552.907500px;}
.y88{bottom:555.600000px;}
.y46{bottom:556.474500px;}
.y9{bottom:556.759500px;}
.ye5{bottom:558.876000px;}
.y9c{bottom:564.307500px;}
.y125{bottom:569.260500px;}
.y173{bottom:571.840500px;}
.yd4{bottom:572.424000px;}
.y103{bottom:572.722500px;}
.y30{bottom:575.263500px;}
.y45{bottom:578.830500px;}
.y8{bottom:583.587000px;}
.y143{bottom:583.612500px;}
.y66{bottom:585.811500px;}
.y160{bottom:587.727000px;}
.y102{bottom:595.078500px;}
.yb1{bottom:597.219000px;}
.y9b{bottom:599.755500px;}
.y44{bottom:601.186500px;}
.y124{bottom:604.707000px;}
.y172{bottom:607.288500px;}
.yd3{bottom:607.870500px;}
.y65{bottom:608.167500px;}
.y15f{bottom:610.083000px;}
.y7{bottom:610.414500px;}
.ye4{bottom:611.908500px;}
.y87{bottom:612.423000px;}
.y2f{bottom:613.984500px;}
.yb0{bottom:619.575000px;}
.y1e{bottom:619.908000px;}
.y43{bottom:623.542500px;}
.y171{bottom:629.644500px;}
.y64{bottom:630.523500px;}
.y101{bottom:630.526500px;}
.y15e{bottom:632.439000px;}
.y86{bottom:634.779000px;}
.y9a{bottom:635.202000px;}
.y6{bottom:637.242000px;}
.y142{bottom:639.234000px;}
.y123{bottom:640.155000px;}
.yaf{bottom:641.932500px;}
.y1d{bottom:642.264000px;}
.yd2{bottom:643.318500px;}
.y42{bottom:645.898500px;}
.y2e{bottom:652.704000px;}
.y100{bottom:652.882500px;}
.y15d{bottom:654.795000px;}
.y85{bottom:657.136500px;}
.y122{bottom:662.511000px;}
.y5{bottom:664.069500px;}
.yae{bottom:664.288500px;}
.y170{bottom:665.091000px;}
.y41{bottom:668.256000px;}
.y99{bottom:670.650000px;}
.y63{bottom:671.362500px;}
.yff{bottom:675.238500px;}
.y15c{bottom:677.151000px;}
.yd1{bottom:678.765000px;}
.y84{bottom:679.492500px;}
.y4{bottom:690.897000px;}
.y2d{bottom:691.423500px;}
.y98{bottom:693.006000px;}
.yfe{bottom:697.596000px;}
.y16f{bottom:700.539000px;}
.y83{bottom:701.848500px;}
.y121{bottom:709.135500px;}
.y141{bottom:711.613500px;}
.yad{bottom:712.464000px;}
.y15b{bottom:712.599000px;}
.y2c{bottom:713.779500px;}
.yd0{bottom:714.213000px;}
.y3{bottom:717.724500px;}
.y1c{bottom:720.231000px;}
.y40{bottom:723.219000px;}
.y120{bottom:731.491500px;}
.y82{bottom:733.461000px;}
.y140{bottom:733.969500px;}
.y15a{bottom:734.955000px;}
.y16e{bottom:735.985500px;}
.y2b{bottom:736.137000px;}
.yfd{bottom:737.526000px;}
.y97{bottom:741.181500px;}
.y1b{bottom:742.587000px;}
.y62{bottom:744.238500px;}
.ycf{bottom:749.659500px;}
.y11f{bottom:753.849000px;}
.y81{bottom:755.817000px;}
.y13f{bottom:756.325500px;}
.y159{bottom:757.311000px;}
.yac{bottom:765.496500px;}
.y61{bottom:766.596000px;}
.y16d{bottom:771.433500px;}
.yce{bottom:772.017000px;}
.yfc{bottom:772.972500px;}
.y2a{bottom:774.856500px;}
.y11e{bottom:776.205000px;}
.y1a{bottom:778.035000px;}
.y80{bottom:778.173000px;}
.y13e{bottom:778.681500px;}
.y158{bottom:779.667000px;}
.y60{bottom:788.952000px;}
.ycd{bottom:794.373000px;}
.y3f{bottom:795.598500px;}
.y11d{bottom:798.561000px;}
.y19{bottom:800.391000px;}
.y7f{bottom:800.530500px;}
.y13d{bottom:801.037500px;}
.y157{bottom:802.024500px;}
.y96{bottom:804.864000px;}
.y16c{bottom:806.880000px;}
.yfb{bottom:808.420500px;}
.y29{bottom:813.576000px;}
.ycc{bottom:816.729000px;}
.y3e{bottom:817.954500px;}
.y5f{bottom:820.564500px;}
.y11c{bottom:820.917000px;}
.y18{bottom:822.747000px;}
.y7e{bottom:822.886500px;}
.y95{bottom:827.220000px;}
.y28{bottom:835.932000px;}
.y13c{bottom:836.485500px;}
.y156{bottom:837.471000px;}
.y3d{bottom:840.310500px;}
.y16b{bottom:842.328000px;}
.y5e{bottom:842.920500px;}
.y11b{bottom:843.273000px;}
.yfa{bottom:843.867000px;}
.ycb{bottom:852.177000px;}
.y17{bottom:858.195000px;}
.y27{bottom:858.289500px;}
.y13b{bottom:858.841500px;}
.y155{bottom:859.827000px;}
.y3c{bottom:862.666500px;}
.y7d{bottom:863.127000px;}
.y5d{bottom:865.276500px;}
.yca{bottom:874.533000px;}
.yf9{bottom:879.315000px;}
.y16{bottom:880.551000px;}
.y26{bottom:880.645500px;}
.y13a{bottom:881.197500px;}
.y154{bottom:882.183000px;}
.y3b{bottom:885.024000px;}
.y7c{bottom:885.483000px;}
.y5c{bottom:887.632500px;}
.y11a{bottom:889.899000px;}
.y16a{bottom:897.291000px;}
.y25{bottom:903.001500px;}
.y153{bottom:904.540500px;}
.y3a{bottom:907.380000px;}
.yc9{bottom:909.979500px;}
.y119{bottom:912.255000px;}
.yf8{bottom:914.761500px;}
.y15{bottom:915.999000px;}
.y139{bottom:916.645500px;}
.y5b{bottom:918.118500px;}
.y24{bottom:925.357500px;}
.y7b{bottom:926.322000px;}
.y152{bottom:926.896500px;}
.y39{bottom:929.736000px;}
.yc8{bottom:932.335500px;}
.y118{bottom:934.611000px;}
.y14{bottom:938.355000px;}
.y138{bottom:939.001500px;}
.y5a{bottom:940.474500px;}
.y23{bottom:947.713500px;}
.y151{bottom:949.252500px;}
.yf7{bottom:950.209500px;}
.y38{bottom:952.092000px;}
.y117{bottom:956.968500px;}
.y137{bottom:961.357500px;}
.y59{bottom:962.832000px;}
.yc7{bottom:967.783500px;}
.y169{bottom:969.670500px;}
.y150{bottom:971.608500px;}
.y13{bottom:973.801500px;}
.y37{bottom:974.448000px;}
.y116{bottom:979.324500px;}
.y136{bottom:983.713500px;}
.y2{bottom:985.056000px;}
.y58{bottom:985.188000px;}
.yf6{bottom:985.656000px;}
.y22{bottom:986.434500px;}
.y168{bottom:992.026500px;}
.y14f{bottom:993.964500px;}
.y12{bottom:996.157500px;}
.y36{bottom:996.805500px;}
.y7a{bottom:999.199500px;}
.y115{bottom:1001.680500px;}
.yc6{bottom:1003.230000px;}
.y14e{bottom:1016.322000px;}
.y35{bottom:1019.161500px;}
.y79{bottom:1021.555500px;}
.y21{bottom:1025.154000px;}
.y57{bottom:1025.428500px;}
.yc5{bottom:1025.587500px;}
.y167{bottom:1040.202000px;}
.y34{bottom:1041.517500px;}
.y78{bottom:1043.911500px;}
.yf5{bottom:1047.943500px;}
.y1{bottom:1048.092000px;}
.y114{bottom:1048.306500px;}
.y14d{bottom:1051.768500px;}
.yc4{bottom:1061.034000px;}
.y166{bottom:1063.216500px;}
.y20{bottom:1063.873500px;}
.y56{bottom:1066.267500px;}
.y113{bottom:1070.662500px;}
.y11{bottom:1074.124500px;}
.yc3{bottom:1083.390000px;}
.y10{bottom:1096.482000px;}
.y55{bottom:1107.106500px;}
.yf{bottom:1118.838000px;}
.ye{bottom:1172.469000px;}
.h7{height:43.518271px;}
.hb{height:45.425492px;}
.h6{height:46.259269px;}
.h5{height:47.652739px;}
.ha{height:52.222275px;}
.h4{height:56.282007px;}
.h9{height:56.288007px;}
.h3{height:61.679025px;}
.h8{height:62.666555px;}
.h2{height:108.274119px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299000px;}
.x2{left:115.266000px;}
.xa{left:126.187500px;}
.x9{left:129.823500px;}
.x4{left:130.845000px;}
.x6{left:133.459500px;}
.xe{left:138.580500px;}
.x11{left:140.194500px;}
.xd{left:147.208500px;}
.x7{left:156.174000px;}
.x5{left:168.481500px;}
.x13{left:175.420500px;}
.x10{left:183.435000px;}
.xf{left:260.911500px;}
.x12{left:263.197500px;}
.x1{left:361.417500px;}
.xc{left:662.529000px;}
.xb{left:671.574000px;}
.x8{left:675.205500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090933pt;}
.wsd{word-spacing:-37.643668pt;}
.wsf{word-spacing:-33.803665pt;}
.ws2e{word-spacing:-32.349118pt;}
.ws73{word-spacing:-21.585473pt;}
.ws11{word-spacing:-21.347146pt;}
.ws55{word-spacing:-21.270633pt;}
.ws41{word-spacing:-20.770926pt;}
.ws88{word-spacing:-20.712745pt;}
.ws91{word-spacing:-20.596381pt;}
.wsa0{word-spacing:-20.538199pt;}
.ws39{word-spacing:-20.421835pt;}
.ws93{word-spacing:-20.247290pt;}
.ws31{word-spacing:-20.014562pt;}
.ws60{word-spacing:-19.898198pt;}
.wsa6{word-spacing:-19.781835pt;}
.ws76{word-spacing:-19.723653pt;}
.ws99{word-spacing:-19.607289pt;}
.ws5c{word-spacing:-19.432743pt;}
.ws80{word-spacing:-19.374562pt;}
.ws3b{word-spacing:-19.200016pt;}
.ws8c{word-spacing:-19.141834pt;}
.ws19{word-spacing:-19.083652pt;}
.ws78{word-spacing:-18.967289pt;}
.ws89{word-spacing:-18.909107pt;}
.ws3e{word-spacing:-18.792743pt;}
.ws50{word-spacing:-18.734561pt;}
.ws81{word-spacing:-18.676379pt;}
.ws26{word-spacing:-18.560015pt;}
.ws6e{word-spacing:-18.443652pt;}
.ws8f{word-spacing:-18.269106pt;}
.ws9b{word-spacing:-18.210924pt;}
.ws7b{word-spacing:-18.152742pt;}
.ws90{word-spacing:-18.036379pt;}
.ws97{word-spacing:-17.978197pt;}
.ws74{word-spacing:-17.920015pt;}
.ws48{word-spacing:-17.803651pt;}
.ws5d{word-spacing:-17.789338pt;}
.ws0{word-spacing:-17.725577pt;}
.ws17{word-spacing:-17.687287pt;}
.ws52{word-spacing:-17.629106pt;}
.ws22{word-spacing:-17.570924pt;}
.ws4c{word-spacing:-17.512742pt;}
.ws7c{word-spacing:-17.454560pt;}
.ws5{word-spacing:-17.396378pt;}
.ws6d{word-spacing:-17.338196pt;}
.ws42{word-spacing:-17.221833pt;}
.ws96{word-spacing:-17.163651pt;}
.ws3a{word-spacing:-17.105469pt;}
.ws1c{word-spacing:-16.989105pt;}
.wsa3{word-spacing:-16.930923pt;}
.ws24{word-spacing:-16.814559pt;}
.ws62{word-spacing:-16.756378pt;}
.ws86{word-spacing:-16.640014pt;}
.ws5b{word-spacing:-16.465468pt;}
.ws64{word-spacing:-16.407286pt;}
.ws9{word-spacing:-16.290923pt;}
.ws1{word-spacing:-16.232741pt;}
.ws8{word-spacing:-16.178656pt;}
.ws2{word-spacing:-16.174559pt;}
.ws3f{word-spacing:-15.941831pt;}
.ws98{word-spacing:-15.883650pt;}
.ws57{word-spacing:-15.709104pt;}
.ws53{word-spacing:-15.592740pt;}
.ws92{word-spacing:-15.534558pt;}
.ws63{word-spacing:-15.360013pt;}
.ws1f{word-spacing:-15.301831pt;}
.ws5a{word-spacing:-15.243649pt;}
.ws2b{word-spacing:-15.185467pt;}
.ws59{word-spacing:-15.127285pt;}
.ws21{word-spacing:-15.069103pt;}
.ws2d{word-spacing:-15.010922pt;}
.ws2f{word-spacing:-14.952740pt;}
.ws1e{word-spacing:-14.894558pt;}
.wsc{word-spacing:-14.771215pt;}
.ws7e{word-spacing:-14.720012pt;}
.ws7f{word-spacing:-14.661830pt;}
.ws75{word-spacing:-14.603649pt;}
.ws36{word-spacing:-14.545467pt;}
.ws15{word-spacing:-14.429103pt;}
.ws94{word-spacing:-14.196375pt;}
.ws95{word-spacing:-14.170338pt;}
.wsa{word-spacing:-14.154957pt;}
.ws28{word-spacing:-14.080012pt;}
.ws3d{word-spacing:-13.963648pt;}
.ws1a{word-spacing:-13.847284pt;}
.ws85{word-spacing:-13.789102pt;}
.ws58{word-spacing:-13.730921pt;}
.ws8d{word-spacing:-13.672739pt;}
.ws29{word-spacing:-13.614557pt;}
.wsaa{word-spacing:-13.498193pt;}
.wsb{word-spacing:-13.294182pt;}
.ws5e{word-spacing:-13.207284pt;}
.ws13{word-spacing:-13.149102pt;}
.ws54{word-spacing:-13.090920pt;}
.ws6a{word-spacing:-12.974556pt;}
.ws9a{word-spacing:-12.916374pt;}
.ws23{word-spacing:-12.858193pt;}
.ws45{word-spacing:-12.741829pt;}
.ws2a{word-spacing:-12.683647pt;}
.ws27{word-spacing:-12.450919pt;}
.ws18{word-spacing:-12.392738pt;}
.ws9f{word-spacing:-12.334556pt;}
.ws9e{word-spacing:-12.309110pt;}
.ws2c{word-spacing:-12.276374pt;}
.ws51{word-spacing:-12.160010pt;}
.wsa7{word-spacing:-12.101828pt;}
.ws4f{word-spacing:-12.043646pt;}
.ws6b{word-spacing:-11.985465pt;}
.ws79{word-spacing:-11.810919pt;}
.ws7a{word-spacing:-11.752737pt;}
.ws1b{word-spacing:-11.694555pt;}
.ws16{word-spacing:-11.578191pt;}
.ws5f{word-spacing:-11.461828pt;}
.ws20{word-spacing:-11.345464pt;}
.ws8a{word-spacing:-11.287282pt;}
.ws49{word-spacing:-11.229100pt;}
.ws61{word-spacing:-11.112737pt;}
.ws68{word-spacing:-11.054555pt;}
.wsa4{word-spacing:-10.996373pt;}
.ws4e{word-spacing:-10.938191pt;}
.ws47{word-spacing:-10.880009pt;}
.ws6f{word-spacing:-10.821827pt;}
.ws70{word-spacing:-10.705463pt;}
.wsa1{word-spacing:-10.650852pt;}
.wsa2{word-spacing:-10.647282pt;}
.ws83{word-spacing:-10.530918pt;}
.ws71{word-spacing:-10.472736pt;}
.ws1d{word-spacing:-10.414554pt;}
.ws7d{word-spacing:-10.240009pt;}
.ws65{word-spacing:-10.123645pt;}
.ws72{word-spacing:-10.007281pt;}
.ws6c{word-spacing:-9.949099pt;}
.ws14{word-spacing:-9.716372pt;}
.ws66{word-spacing:-9.483644pt;}
.ws67{word-spacing:-9.455671pt;}
.ws40{word-spacing:-9.425462pt;}
.ws56{word-spacing:-9.309099pt;}
.ws12{word-spacing:-9.076371pt;}
.ws8e{word-spacing:-9.018189pt;}
.ws44{word-spacing:-8.901826pt;}
.ws82{word-spacing:-8.785462pt;}
.ws87{word-spacing:-8.727280pt;}
.wsa9{word-spacing:-8.552734pt;}
.ws69{word-spacing:-8.436371pt;}
.ws7{word-spacing:-8.378189pt;}
.ws77{word-spacing:-8.203643pt;}
.ws4a{word-spacing:-8.087279pt;}
.wsa5{word-spacing:-7.912734pt;}
.ws9c{word-spacing:-7.214551pt;}
.ws9d{word-spacing:-7.156370pt;}
.ws43{word-spacing:-7.098188pt;}
.ws3c{word-spacing:-6.690915pt;}
.ws84{word-spacing:-6.516369pt;}
.ws25{word-spacing:-6.400005pt;}
.ws33{word-spacing:-5.643641pt;}
.ws30{word-spacing:-5.294550pt;}
.ws35{word-spacing:-4.887277pt;}
.wsa8{word-spacing:-4.284732pt;}
.wse{word-spacing:-3.258185pt;}
.ws4b{word-spacing:-2.560002pt;}
.ws32{word-spacing:-1.163637pt;}
.ws4d{word-spacing:-0.581819pt;}
.ws6{word-spacing:0.000000pt;}
.ws34{word-spacing:4.247276pt;}
.ws38{word-spacing:6.050914pt;}
.ws37{word-spacing:6.225460pt;}
.ws46{word-spacing:10.007281pt;}
.ws10{word-spacing:22.516382pt;}
.ws8b{word-spacing:25.814508pt;}
.ws3{word-spacing:413.066939pt;}
.ws4{word-spacing:471.190623pt;}
._f{margin-left:-29.090933pt;}
._10{margin-left:-12.916374pt;}
._16{margin-left:-11.380470pt;}
._33{margin-left:-7.980999pt;}
._2c{margin-left:-6.400005pt;}
._1c{margin-left:-4.305458pt;}
._28{margin-left:-3.200003pt;}
._7{margin-left:-1.047274pt;}
._17{width:1.644214pt;}
._8{width:2.788601pt;}
._30{width:4.589383pt;}
._2f{width:5.618042pt;}
._13{width:16.174559pt;}
._36{width:17.925143pt;}
._26{width:22.516382pt;}
._35{width:24.266605pt;}
._29{width:25.716385pt;}
._1d{width:27.275222pt;}
._1a{width:28.183043pt;}
._22{width:29.689582pt;}
._18{width:31.252945pt;}
._21{width:38.729370pt;}
._14{width:42.244599pt;}
._12{width:52.887317pt;}
._a{width:54.865500pt;}
._19{width:56.727320pt;}
._32{width:58.233841pt;}
._1e{width:60.487437pt;}
._11{width:63.800319pt;}
._1b{width:64.946890pt;}
._34{width:65.885067pt;}
._15{width:92.770324pt;}
._2{width:109.124867pt;}
._4{width:131.815795pt;}
._3{width:160.732183pt;}
._1{width:164.164913pt;}
._6{width:167.423098pt;}
._0{width:270.870457pt;}
._5{width:338.652331pt;}
._2b{width:666.999970pt;}
._2e{width:779.968076pt;}
._31{width:783.909409pt;}
._24{width:802.354586pt;}
._9{width:809.520076pt;}
._2d{width:1035.582095pt;}
._27{width:1264.609516pt;}
._e{width:1377.839644pt;}
._2a{width:1387.547801pt;}
._1f{width:1542.777021pt;}
._20{width:1545.977023pt;}
._23{width:1655.766206pt;}
._c{width:1698.014457pt;}
._b{width:1752.821775pt;}
._d{width:1801.345452pt;}
._25{width:1888.668218pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:44.969333pt;}
.y112{bottom:106.276000pt;}
.y135{bottom:111.698667pt;}
.y14c{bottom:111.704000pt;}
.yf4{bottom:116.321333pt;}
.ye3{bottom:116.728000pt;}
.yc2{bottom:122.296000pt;}
.y111{bottom:126.148000pt;}
.y134{bottom:131.570667pt;}
.y14b{bottom:131.576000pt;}
.yab{bottom:133.705333pt;}
.y77{bottom:135.085333pt;}
.yf3{bottom:136.193333pt;}
.ye2{bottom:136.600000pt;}
.y54{bottom:142.982667pt;}
.y110{bottom:146.020000pt;}
.y17c{bottom:148.610667pt;}
.y133{bottom:151.442667pt;}
.yaa{bottom:153.577333pt;}
.yc1{bottom:153.805333pt;}
.y76{bottom:154.957333pt;}
.yf2{bottom:156.066667pt;}
.ye1{bottom:156.472000pt;}
.y53{bottom:162.854667pt;}
.y10f{bottom:165.892000pt;}
.y94{bottom:167.066667pt;}
.y17b{bottom:168.484000pt;}
.y132{bottom:171.316000pt;}
.ya9{bottom:173.449333pt;}
.yc0{bottom:173.677333pt;}
.y14a{bottom:174.398667pt;}
.y75{bottom:174.829333pt;}
.yf1{bottom:175.938667pt;}
.ye0{bottom:176.345333pt;}
.y93{bottom:186.938667pt;}
.ya8{bottom:193.321333pt;}
.ybf{bottom:193.549333pt;}
.yf0{bottom:195.810667pt;}
.y10e{bottom:197.401333pt;}
.y74{bottom:202.929333pt;}
.yd{bottom:206.641333pt;}
.y92{bottom:206.810667pt;}
.ydf{bottom:207.853333pt;}
.y52{bottom:211.712000pt;}
.y131{bottom:212.760000pt;}
.ya7{bottom:213.193333pt;}
.ybe{bottom:213.421333pt;}
.yef{bottom:215.682667pt;}
.y10d{bottom:217.273333pt;}
.y73{bottom:222.801333pt;}
.yc{bottom:226.513333pt;}
.y91{bottom:226.682667pt;}
.yde{bottom:227.725333pt;}
.y130{bottom:232.632000pt;}
.ya6{bottom:233.066667pt;}
.ybd{bottom:233.294667pt;}
.y17a{bottom:242.316000pt;}
.y72{bottom:242.674667pt;}
.ydd{bottom:247.597333pt;}
.y10c{bottom:248.781333pt;}
.y12f{bottom:252.505333pt;}
.ya5{bottom:252.938667pt;}
.ybc{bottom:253.166667pt;}
.yee{bottom:258.505333pt;}
.y90{bottom:262.453333pt;}
.y71{bottom:262.546667pt;}
.ydc{bottom:267.470667pt;}
.y12e{bottom:272.377333pt;}
.ya4{bottom:272.810667pt;}
.ybb{bottom:273.038667pt;}
.y51{bottom:276.048000pt;}
.y165{bottom:276.164000pt;}
.y10b{bottom:280.290667pt;}
.y179{bottom:280.710667pt;}
.y8f{bottom:282.325333pt;}
.y149{bottom:286.826667pt;}
.y70{bottom:290.646667pt;}
.ya3{bottom:292.682667pt;}
.yba{bottom:292.910667pt;}
.y50{bottom:295.921333pt;}
.ydb{bottom:298.978667pt;}
.y178{bottom:300.582667pt;}
.y8e{bottom:302.197333pt;}
.y148{bottom:306.698667pt;}
.y6f{bottom:310.518667pt;}
.y10a{bottom:311.798667pt;}
.yb9{bottom:312.782667pt;}
.y12d{bottom:313.821333pt;}
.yed{bottom:314.528000pt;}
.y4f{bottom:315.793333pt;}
.yda{bottom:318.850667pt;}
.ya2{bottom:324.192000pt;}
.y164{bottom:325.020000pt;}
.y6e{bottom:330.390667pt;}
.yb8{bottom:332.656000pt;}
.y12c{bottom:333.694667pt;}
.yec{bottom:334.400000pt;}
.y4e{bottom:335.665333pt;}
.y8d{bottom:337.968000pt;}
.yd9{bottom:338.724000pt;}
.y147{bottom:343.000000pt;}
.y109{bottom:343.308000pt;}
.y177{bottom:349.440000pt;}
.y6d{bottom:350.262667pt;}
.yb7{bottom:352.528000pt;}
.y12b{bottom:353.566667pt;}
.y4d{bottom:355.537333pt;}
.ya1{bottom:355.700000pt;}
.y8c{bottom:357.840000pt;}
.yd8{bottom:358.596000pt;}
.yeb{bottom:365.908000pt;}
.y6c{bottom:370.136000pt;}
.yb6{bottom:372.400000pt;}
.y12a{bottom:373.438667pt;}
.y108{bottom:374.816000pt;}
.y4c{bottom:375.409333pt;}
.ya0{bottom:375.572000pt;}
.y8b{bottom:377.712000pt;}
.yd7{bottom:378.468000pt;}
.y146{bottom:379.301333pt;}
.yea{bottom:385.781333pt;}
.y163{bottom:389.357333pt;}
.yb5{bottom:392.272000pt;}
.y4b{bottom:395.282667pt;}
.y6b{bottom:398.236000pt;}
.y129{bottom:404.946667pt;}
.ye9{bottom:405.653333pt;}
.y107{bottom:406.325333pt;}
.y9f{bottom:407.081333pt;}
.y162{bottom:409.229333pt;}
.yb4{bottom:412.144000pt;}
.y176{bottom:413.777333pt;}
.y8a{bottom:414.013333pt;}
.y4a{bottom:415.154667pt;}
.y145{bottom:415.602667pt;}
.y6a{bottom:418.108000pt;}
.yd6{bottom:421.290667pt;}
.y33{bottom:422.638667pt;}
.y128{bottom:424.820000pt;}
.yb3{bottom:432.017333pt;}
.y49{bottom:435.026667pt;}
.ye8{bottom:437.161333pt;}
.y106{bottom:437.833333pt;}
.y9e{bottom:438.589333pt;}
.y127{bottom:444.692000pt;}
.y69{bottom:445.206667pt;}
.y175{bottom:445.285333pt;}
.yb{bottom:447.204000pt;}
.y48{bottom:454.898667pt;}
.ye7{bottom:457.033333pt;}
.y32{bottom:457.056000pt;}
.y161{bottom:458.086667pt;}
.y126{bottom:464.564000pt;}
.y68{bottom:465.078667pt;}
.y105{bottom:469.342667pt;}
.y9d{bottom:470.098667pt;}
.ya{bottom:471.050667pt;}
.y89{bottom:473.994667pt;}
.y47{bottom:474.770667pt;}
.yb2{bottom:474.838667pt;}
.y144{bottom:475.944000pt;}
.y174{bottom:476.794667pt;}
.ye6{bottom:476.906667pt;}
.yd5{bottom:477.312000pt;}
.y67{bottom:484.950667pt;}
.y104{bottom:489.214667pt;}
.y31{bottom:491.473333pt;}
.y88{bottom:493.866667pt;}
.y46{bottom:494.644000pt;}
.y9{bottom:494.897333pt;}
.ye5{bottom:496.778667pt;}
.y9c{bottom:501.606667pt;}
.y125{bottom:506.009333pt;}
.y173{bottom:508.302667pt;}
.yd4{bottom:508.821333pt;}
.y103{bottom:509.086667pt;}
.y30{bottom:511.345333pt;}
.y45{bottom:514.516000pt;}
.y8{bottom:518.744000pt;}
.y143{bottom:518.766667pt;}
.y66{bottom:520.721333pt;}
.y160{bottom:522.424000pt;}
.y102{bottom:528.958667pt;}
.yb1{bottom:530.861333pt;}
.y9b{bottom:533.116000pt;}
.y44{bottom:534.388000pt;}
.y124{bottom:537.517333pt;}
.y172{bottom:539.812000pt;}
.yd3{bottom:540.329333pt;}
.y65{bottom:540.593333pt;}
.y15f{bottom:542.296000pt;}
.y7{bottom:542.590667pt;}
.ye4{bottom:543.918667pt;}
.y87{bottom:544.376000pt;}
.y2f{bottom:545.764000pt;}
.yb0{bottom:550.733333pt;}
.y1e{bottom:551.029333pt;}
.y43{bottom:554.260000pt;}
.y171{bottom:559.684000pt;}
.y64{bottom:560.465333pt;}
.y101{bottom:560.468000pt;}
.y15e{bottom:562.168000pt;}
.y86{bottom:564.248000pt;}
.y9a{bottom:564.624000pt;}
.y6{bottom:566.437333pt;}
.y142{bottom:568.208000pt;}
.y123{bottom:569.026667pt;}
.yaf{bottom:570.606667pt;}
.y1d{bottom:570.901333pt;}
.yd2{bottom:571.838667pt;}
.y42{bottom:574.132000pt;}
.y2e{bottom:580.181333pt;}
.y100{bottom:580.340000pt;}
.y15d{bottom:582.040000pt;}
.y85{bottom:584.121333pt;}
.y122{bottom:588.898667pt;}
.y5{bottom:590.284000pt;}
.yae{bottom:590.478667pt;}
.y170{bottom:591.192000pt;}
.y41{bottom:594.005333pt;}
.y99{bottom:596.133333pt;}
.y63{bottom:596.766667pt;}
.yff{bottom:600.212000pt;}
.y15c{bottom:601.912000pt;}
.yd1{bottom:603.346667pt;}
.y84{bottom:603.993333pt;}
.y4{bottom:614.130667pt;}
.y2d{bottom:614.598667pt;}
.y98{bottom:616.005333pt;}
.yfe{bottom:620.085333pt;}
.y16f{bottom:622.701333pt;}
.y83{bottom:623.865333pt;}
.y121{bottom:630.342667pt;}
.y141{bottom:632.545333pt;}
.yad{bottom:633.301333pt;}
.y15b{bottom:633.421333pt;}
.y2c{bottom:634.470667pt;}
.yd0{bottom:634.856000pt;}
.y3{bottom:637.977333pt;}
.y1c{bottom:640.205333pt;}
.y40{bottom:642.861333pt;}
.y120{bottom:650.214667pt;}
.y82{bottom:651.965333pt;}
.y140{bottom:652.417333pt;}
.y15a{bottom:653.293333pt;}
.y16e{bottom:654.209333pt;}
.y2b{bottom:654.344000pt;}
.yfd{bottom:655.578667pt;}
.y97{bottom:658.828000pt;}
.y1b{bottom:660.077333pt;}
.y62{bottom:661.545333pt;}
.ycf{bottom:666.364000pt;}
.y11f{bottom:670.088000pt;}
.y81{bottom:671.837333pt;}
.y13f{bottom:672.289333pt;}
.y159{bottom:673.165333pt;}
.yac{bottom:680.441333pt;}
.y61{bottom:681.418667pt;}
.y16d{bottom:685.718667pt;}
.yce{bottom:686.237333pt;}
.yfc{bottom:687.086667pt;}
.y2a{bottom:688.761333pt;}
.y11e{bottom:689.960000pt;}
.y1a{bottom:691.586667pt;}
.y80{bottom:691.709333pt;}
.y13e{bottom:692.161333pt;}
.y158{bottom:693.037333pt;}
.y60{bottom:701.290667pt;}
.ycd{bottom:706.109333pt;}
.y3f{bottom:707.198667pt;}
.y11d{bottom:709.832000pt;}
.y19{bottom:711.458667pt;}
.y7f{bottom:711.582667pt;}
.y13d{bottom:712.033333pt;}
.y157{bottom:712.910667pt;}
.y96{bottom:715.434667pt;}
.y16c{bottom:717.226667pt;}
.yfb{bottom:718.596000pt;}
.y29{bottom:723.178667pt;}
.ycc{bottom:725.981333pt;}
.y3e{bottom:727.070667pt;}
.y5f{bottom:729.390667pt;}
.y11c{bottom:729.704000pt;}
.y18{bottom:731.330667pt;}
.y7e{bottom:731.454667pt;}
.y95{bottom:735.306667pt;}
.y28{bottom:743.050667pt;}
.y13c{bottom:743.542667pt;}
.y156{bottom:744.418667pt;}
.y3d{bottom:746.942667pt;}
.y16b{bottom:748.736000pt;}
.y5e{bottom:749.262667pt;}
.y11b{bottom:749.576000pt;}
.yfa{bottom:750.104000pt;}
.ycb{bottom:757.490667pt;}
.y17{bottom:762.840000pt;}
.y27{bottom:762.924000pt;}
.y13b{bottom:763.414667pt;}
.y155{bottom:764.290667pt;}
.y3c{bottom:766.814667pt;}
.y7d{bottom:767.224000pt;}
.y5d{bottom:769.134667pt;}
.yca{bottom:777.362667pt;}
.yf9{bottom:781.613333pt;}
.y16{bottom:782.712000pt;}
.y26{bottom:782.796000pt;}
.y13a{bottom:783.286667pt;}
.y154{bottom:784.162667pt;}
.y3b{bottom:786.688000pt;}
.y7c{bottom:787.096000pt;}
.y5c{bottom:789.006667pt;}
.y11a{bottom:791.021333pt;}
.y16a{bottom:797.592000pt;}
.y25{bottom:802.668000pt;}
.y153{bottom:804.036000pt;}
.y3a{bottom:806.560000pt;}
.yc9{bottom:808.870667pt;}
.y119{bottom:810.893333pt;}
.yf8{bottom:813.121333pt;}
.y15{bottom:814.221333pt;}
.y139{bottom:814.796000pt;}
.y5b{bottom:816.105333pt;}
.y24{bottom:822.540000pt;}
.y7b{bottom:823.397333pt;}
.y152{bottom:823.908000pt;}
.y39{bottom:826.432000pt;}
.yc8{bottom:828.742667pt;}
.y118{bottom:830.765333pt;}
.y14{bottom:834.093333pt;}
.y138{bottom:834.668000pt;}
.y5a{bottom:835.977333pt;}
.y23{bottom:842.412000pt;}
.y151{bottom:843.780000pt;}
.yf7{bottom:844.630667pt;}
.y38{bottom:846.304000pt;}
.y117{bottom:850.638667pt;}
.y137{bottom:854.540000pt;}
.y59{bottom:855.850667pt;}
.yc7{bottom:860.252000pt;}
.y169{bottom:861.929333pt;}
.y150{bottom:863.652000pt;}
.y13{bottom:865.601333pt;}
.y37{bottom:866.176000pt;}
.y116{bottom:870.510667pt;}
.y136{bottom:874.412000pt;}
.y2{bottom:875.605333pt;}
.y58{bottom:875.722667pt;}
.yf6{bottom:876.138667pt;}
.y22{bottom:876.830667pt;}
.y168{bottom:881.801333pt;}
.y14f{bottom:883.524000pt;}
.y12{bottom:885.473333pt;}
.y36{bottom:886.049333pt;}
.y7a{bottom:888.177333pt;}
.y115{bottom:890.382667pt;}
.yc6{bottom:891.760000pt;}
.y14e{bottom:903.397333pt;}
.y35{bottom:905.921333pt;}
.y79{bottom:908.049333pt;}
.y21{bottom:911.248000pt;}
.y57{bottom:911.492000pt;}
.yc5{bottom:911.633333pt;}
.y167{bottom:924.624000pt;}
.y34{bottom:925.793333pt;}
.y78{bottom:927.921333pt;}
.yf5{bottom:931.505333pt;}
.y1{bottom:931.637333pt;}
.y114{bottom:931.828000pt;}
.y14d{bottom:934.905333pt;}
.yc4{bottom:943.141333pt;}
.y166{bottom:945.081333pt;}
.y20{bottom:945.665333pt;}
.y56{bottom:947.793333pt;}
.y113{bottom:951.700000pt;}
.y11{bottom:954.777333pt;}
.yc3{bottom:963.013333pt;}
.y10{bottom:974.650667pt;}
.y55{bottom:984.094667pt;}
.yf{bottom:994.522667pt;}
.ye{bottom:1042.194667pt;}
.h7{height:38.682908pt;}
.hb{height:40.378215pt;}
.h6{height:41.119350pt;}
.h5{height:42.357990pt;}
.ha{height:46.419800pt;}
.h4{height:50.028451pt;}
.h9{height:50.033784pt;}
.h3{height:54.825800pt;}
.h8{height:55.703605pt;}
.h2{height:96.243662pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488000pt;}
.x2{left:102.458667pt;}
.xa{left:112.166667pt;}
.x9{left:115.398667pt;}
.x4{left:116.306667pt;}
.x6{left:118.630667pt;}
.xe{left:123.182667pt;}
.x11{left:124.617333pt;}
.xd{left:130.852000pt;}
.x7{left:138.821333pt;}
.x5{left:149.761333pt;}
.x13{left:155.929333pt;}
.x10{left:163.053333pt;}
.xf{left:231.921333pt;}
.x12{left:233.953333pt;}
.x1{left:321.260000pt;}
.xc{left:588.914667pt;}
.xb{left:596.954667pt;}
.x8{left:600.182667pt;}
}




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