
    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_a2b004a1e6079876888ed92b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_753acae4524c14b3b3d36652.woff')format("woff");}.ff2{font-family:ff2;line-height:1.049805;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_5a5c11e068488b19e8749c8f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_529c140cdd9e6eb92a3d42ed.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_bda09d0ee42136507d4eedc9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c63ca91697479d5ea95f8324.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:16.498320px;}
.ls5{letter-spacing:16.498500px;}
.ls0{letter-spacing:71.304000px;}
.ls2{letter-spacing:80.340000px;}
.ls3{letter-spacing:80.874000px;}
.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;}
}
.ws98{word-spacing:-47.652000px;}
.ws29{word-spacing:-43.320000px;}
.ws56{word-spacing:-40.260000px;}
.ws2a{word-spacing:-36.600000px;}
.ws88{word-spacing:-35.222580px;}
.ws14{word-spacing:-35.161379px;}
.ws65{word-spacing:-34.881024px;}
.ws67{word-spacing:-34.880041px;}
.ws70{word-spacing:-34.068473px;}
.ws68{word-spacing:-32.986583px;}
.ws4{word-spacing:-32.984731px;}
.ws64{word-spacing:-32.966853px;}
.ws74{word-spacing:-32.839124px;}
.ws27{word-spacing:-32.805590px;}
.ws17{word-spacing:-32.441651px;}
.ws71{word-spacing:-32.393858px;}
.ws25{word-spacing:-31.944104px;}
.ws4a{word-spacing:-31.906923px;}
.ws5e{word-spacing:-31.901650px;}
.ws6d{word-spacing:-31.737695px;}
.ws30{word-spacing:-31.579011px;}
.ws6e{word-spacing:-31.363011px;}
.ws21{word-spacing:-31.153663px;}
.ws26{word-spacing:-31.153493px;}
.ws3{word-spacing:-31.153304px;}
.ws8c{word-spacing:-31.152576px;}
.ws4e{word-spacing:-31.152283px;}
.wsd{word-spacing:-31.142731px;}
.wse{word-spacing:-31.098132px;}
.wsc{word-spacing:-31.097320px;}
.ws5c{word-spacing:-31.097149px;}
.ws38{word-spacing:-30.979993px;}
.ws57{word-spacing:-30.972869px;}
.ws55{word-spacing:-30.971953px;}
.ws84{word-spacing:-30.835786px;}
.ws7{word-spacing:-30.677934px;}
.ws62{word-spacing:-30.474350px;}
.ws83{word-spacing:-30.455641px;}
.ws8a{word-spacing:-30.439115px;}
.ws16{word-spacing:-30.294746px;}
.ws39{word-spacing:-29.919694px;}
.ws23{word-spacing:-29.785975px;}
.ws4d{word-spacing:-29.769544px;}
.ws1a{word-spacing:-29.642835px;}
.ws13{word-spacing:-29.216277px;}
.ws9{word-spacing:-29.141612px;}
.wsf{word-spacing:-28.938028px;}
.ws46{word-spacing:-28.840762px;}
.ws22{word-spacing:-28.791695px;}
.ws12{word-spacing:-28.560113px;}
.ws28{word-spacing:-28.321417px;}
.ws33{word-spacing:-28.321247px;}
.ws2b{word-spacing:-28.320926px;}
.ws3e{word-spacing:-28.320756px;}
.ws40{word-spacing:-28.311496px;}
.ws6c{word-spacing:-28.273701px;}
.ws35{word-spacing:-28.271339px;}
.ws3f{word-spacing:-28.270810px;}
.ws2c{word-spacing:-28.269997px;}
.ws34{word-spacing:-28.269827px;}
.ws45{word-spacing:-28.180516px;}
.ws3a{word-spacing:-28.112460px;}
.ws66{word-spacing:-27.544195px;}
.ws69{word-spacing:-27.337417px;}
.ws7f{word-spacing:-26.882627px;}
.ws58{word-spacing:-26.827691px;}
.ws59{word-spacing:-26.675981px;}
.ws81{word-spacing:-26.670813px;}
.ws20{word-spacing:-26.640775px;}
.ws31{word-spacing:-26.429981px;}
.ws15{word-spacing:-26.160132px;}
.ws5{word-spacing:-25.983760px;}
.ws76{word-spacing:-25.835282px;}
.ws73{word-spacing:-25.832220px;}
.ws24{word-spacing:-25.706296px;}
.ws5f{word-spacing:-25.423181px;}
.ws4c{word-spacing:-25.276545px;}
.ws50{word-spacing:-25.094078px;}
.ws48{word-spacing:-25.043225px;}
.ws49{word-spacing:-24.908183px;}
.ws52{word-spacing:-24.742186px;}
.ws1d{word-spacing:-24.106573px;}
.ws90{word-spacing:-23.761663px;}
.ws91{word-spacing:-23.761304px;}
.ws9a{word-spacing:-23.760576px;}
.ws4f{word-spacing:-23.760283px;}
.ws94{word-spacing:-23.750731px;}
.ws99{word-spacing:-23.706302px;}
.ws96{word-spacing:-23.706132px;}
.ws97{word-spacing:-23.705320px;}
.ws93{word-spacing:-23.705149px;}
.ws82{word-spacing:-23.672900px;}
.ws95{word-spacing:-23.588760px;}
.ws92{word-spacing:-23.568070px;}
.ws77{word-spacing:-23.350091px;}
.ws6{word-spacing:-23.092762px;}
.ws60{word-spacing:-22.401222px;}
.ws72{word-spacing:-22.119912px;}
.ws6a{word-spacing:-21.986060px;}
.ws3b{word-spacing:-21.601512px;}
.ws75{word-spacing:-21.439276px;}
.ws1{word-spacing:-20.593644px;}
.ws0{word-spacing:-20.592888px;}
.ws5d{word-spacing:-19.946135px;}
.ws61{word-spacing:-19.480120px;}
.wsb{word-spacing:-19.224832px;}
.ws8b{word-spacing:-18.280044px;}
.ws1f{word-spacing:-17.983257px;}
.ws2{word-spacing:-17.774570px;}
.ws7c{word-spacing:-17.773314px;}
.ws44{word-spacing:-17.213991px;}
.ws1e{word-spacing:-16.732252px;}
.ws43{word-spacing:-16.693049px;}
.ws78{word-spacing:-16.500000px;}
.ws19{word-spacing:-15.503168px;}
.ws18{word-spacing:-14.862822px;}
.ws6b{word-spacing:-14.125680px;}
.ws63{word-spacing:-13.986548px;}
.ws11{word-spacing:-11.553260px;}
.ws10{word-spacing:-11.476526px;}
.ws1b{word-spacing:-11.315631px;}
.ws79{word-spacing:-11.278176px;}
.ws7d{word-spacing:-11.171263px;}
.ws6f{word-spacing:-10.430202px;}
.ws4b{word-spacing:-10.278709px;}
.ws8e{word-spacing:-10.184126px;}
.ws5a{word-spacing:-9.865398px;}
.ws7e{word-spacing:-8.947824px;}
.wsa{word-spacing:-7.928371px;}
.ws47{word-spacing:-7.025254px;}
.ws51{word-spacing:-5.828240px;}
.ws5b{word-spacing:-3.295427px;}
.ws42{word-spacing:-2.918551px;}
.ws1c{word-spacing:0.000000px;}
.ws2f{word-spacing:0.006803px;}
.ws3c{word-spacing:0.008183px;}
.ws37{word-spacing:0.044305px;}
.ws32{word-spacing:0.048661px;}
.ws3d{word-spacing:0.050003px;}
.ws8f{word-spacing:0.204240px;}
.ws87{word-spacing:0.257940px;}
.ws8d{word-spacing:0.268140px;}
.ws89{word-spacing:0.303240px;}
.ws85{word-spacing:0.443400px;}
.ws86{word-spacing:0.497520px;}
.ws2d{word-spacing:0.509216px;}
.ws2e{word-spacing:0.598592px;}
.ws7a{word-spacing:0.816397px;}
.ws54{word-spacing:1.438205px;}
.ws41{word-spacing:3.102491px;}
.ws36{word-spacing:3.598356px;}
.ws80{word-spacing:4.436032px;}
.ws53{word-spacing:8.886189px;}
.ws7b{word-spacing:13.333361px;}
.ws8{word-spacing:15.818702px;}
._1{width:1.258176px;}
._0{width:16.465918px;}
._2{width:17.972883px;}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(47,86,150);}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:3.244590px;}
.y41{bottom:3.244620px;}
.y35{bottom:3.244635px;}
.y47{bottom:3.244650px;}
.y5d{bottom:3.244665px;}
.y40{bottom:20.493150px;}
.y38{bottom:20.493165px;}
.y46{bottom:20.493180px;}
.y5c{bottom:20.493195px;}
.y3f{bottom:37.741680px;}
.y6d{bottom:37.741695px;}
.y51{bottom:37.741710px;}
.y5b{bottom:37.741725px;}
.y3e{bottom:54.990210px;}
.y54{bottom:54.990240px;}
.y5a{bottom:54.990255px;}
.y3d{bottom:72.238740px;}
.y59{bottom:72.238785px;}
.y3c{bottom:89.487270px;}
.y53{bottom:99.961395px;}
.yc3{bottom:100.059900px;}
.ya2{bottom:100.059915px;}
.y7c{bottom:106.244355px;}
.y43{bottom:106.735800px;}
.y50{bottom:108.585660px;}
.yec{bottom:115.771740px;}
.y52{bottom:117.209940px;}
.yc2{bottom:124.725315px;}
.ya1{bottom:124.725330px;}
.y7b{bottom:130.909770px;}
.yeb{bottom:134.745135px;}
.yc1{bottom:149.390730px;}
.ya0{bottom:149.390745px;}
.yea{bottom:153.718530px;}
.y7a{bottom:155.575185px;}
.y23{bottom:165.786915px;}
.ye9{bottom:172.691925px;}
.yc0{bottom:174.056145px;}
.y9f{bottom:174.056160px;}
.y79{bottom:180.240600px;}
.y4e{bottom:180.880575px;}
.y4f{bottom:189.504840px;}
.y22{bottom:190.452330px;}
.ye8{bottom:191.665320px;}
.ybf{bottom:198.721515px;}
.y9e{bottom:198.721530px;}
.y78{bottom:204.906015px;}
.ye7{bottom:210.638715px;}
.y21{bottom:215.117745px;}
.ybe{bottom:223.386930px;}
.y9d{bottom:223.386945px;}
.y77{bottom:229.571385px;}
.ye6{bottom:229.612110px;}
.y20{bottom:239.783160px;}
.ybd{bottom:248.052345px;}
.y9c{bottom:248.052360px;}
.ye5{bottom:248.585505px;}
.y76{bottom:254.236800px;}
.y4d{bottom:255.833355px;}
.y1f{bottom:264.448575px;}
.ye4{bottom:267.558900px;}
.ybc{bottom:272.717760px;}
.y9b{bottom:272.717775px;}
.y75{bottom:278.902215px;}
.y4c{bottom:280.498770px;}
.ye3{bottom:286.532295px;}
.y1e{bottom:289.113945px;}
.ybb{bottom:297.383175px;}
.y9a{bottom:297.383190px;}
.y74{bottom:303.567630px;}
.y4b{bottom:305.164185px;}
.ye2{bottom:305.505645px;}
.y1d{bottom:313.779360px;}
.yba{bottom:322.048545px;}
.y99{bottom:322.048560px;}
.ye1{bottom:324.479040px;}
.y73{bottom:328.233045px;}
.y1c{bottom:338.444775px;}
.ye0{bottom:343.452435px;}
.yb9{bottom:346.713960px;}
.y98{bottom:346.713975px;}
.y4a{bottom:350.482605px;}
.y72{bottom:352.898415px;}
.ydf{bottom:362.425830px;}
.y1b{bottom:363.110190px;}
.y49{bottom:368.334840px;}
.y97{bottom:371.379390px;}
.y71{bottom:379.125240px;}
.yde{bottom:381.399225px;}
.y48{bottom:386.187075px;}
.y1a{bottom:387.775605px;}
.yb8{bottom:396.044790px;}
.y96{bottom:396.044805px;}
.ydd{bottom:400.372620px;}
.y42{bottom:402.615630px;}
.y3b{bottom:411.239895px;}
.y19{bottom:412.440975px;}
.ydc{bottom:419.346015px;}
.yb7{bottom:420.710160px;}
.y95{bottom:420.710175px;}
.y45{bottom:421.963395px;}
.y18{bottom:437.106390px;}
.ydb{bottom:438.319410px;}
.yb6{bottom:445.375575px;}
.y94{bottom:445.375590px;}
.y70{bottom:456.302250px;}
.yda{bottom:457.292805px;}
.y17{bottom:461.771805px;}
.yb5{bottom:470.040990px;}
.y93{bottom:470.041005px;}
.y6f{bottom:474.154485px;}
.yd9{bottom:476.266200px;}
.y44{bottom:485.033265px;}
.y16{bottom:486.437220px;}
.y6e{bottom:492.006720px;}
.yb4{bottom:494.706405px;}
.y92{bottom:494.706420px;}
.yd8{bottom:495.239595px;}
.y15{bottom:511.102635px;}
.y6c{bottom:511.135260px;}
.y39{bottom:514.206840px;}
.yd7{bottom:514.212990px;}
.y91{bottom:519.371835px;}
.y6b{bottom:519.759525px;}
.yd6{bottom:533.186385px;}
.y14{bottom:535.768005px;}
.y108{bottom:539.510265px;}
.yb3{bottom:544.037190px;}
.y37{bottom:550.431825px;}
.yd5{bottom:552.159780px;}
.y107{bottom:558.483660px;}
.y13{bottom:560.433420px;}
.y34{bottom:568.242855px;}
.yb2{bottom:568.702605px;}
.y90{bottom:568.702620px;}
.yd4{bottom:571.133175px;}
.y69{bottom:574.805850px;}
.y106{bottom:577.457055px;}
.y68{bottom:583.430115px;}
.y12{bottom:585.098835px;}
.yd3{bottom:590.106570px;}
.y6a{bottom:592.054380px;}
.yb1{bottom:593.368020px;}
.y8f{bottom:593.368035px;}
.y105{bottom:596.430450px;}
.y36{bottom:603.905340px;}
.yd2{bottom:609.079965px;}
.y11{bottom:609.764250px;}
.y104{bottom:615.403845px;}
.yb0{bottom:618.033435px;}
.y8e{bottom:618.033450px;}
.yd1{bottom:628.053360px;}
.y103{bottom:634.377240px;}
.y10{bottom:634.429665px;}
.yaf{bottom:642.698850px;}
.y8d{bottom:642.698865px;}
.yd0{bottom:647.026755px;}
.y102{bottom:653.350635px;}
.y66{bottom:655.724970px;}
.yf{bottom:659.095035px;}
.y33{bottom:661.609665px;}
.y67{bottom:664.349250px;}
.ycf{bottom:666.000150px;}
.y8c{bottom:667.364235px;}
.y101{bottom:672.324030px;}
.ye{bottom:683.760450px;}
.yce{bottom:684.973545px;}
.y32{bottom:686.275080px;}
.y100{bottom:691.297425px;}
.yae{bottom:692.029635px;}
.y8b{bottom:692.029650px;}
.ycd{bottom:703.946940px;}
.yd{bottom:708.425865px;}
.yff{bottom:710.270820px;}
.y31{bottom:710.940450px;}
.yad{bottom:716.695050px;}
.y8a{bottom:716.695065px;}
.ycc{bottom:722.920335px;}
.y64{bottom:723.148530px;}
.yfe{bottom:729.244215px;}
.y65{bottom:729.896310px;}
.yc{bottom:733.091280px;}
.y30{bottom:735.605865px;}
.yac{bottom:741.360465px;}
.y89{bottom:741.360480px;}
.ycb{bottom:741.893730px;}
.yfd{bottom:748.217610px;}
.yb{bottom:757.756650px;}
.y2f{bottom:760.271280px;}
.yca{bottom:760.867125px;}
.y88{bottom:766.025895px;}
.yfc{bottom:767.191005px;}
.yc9{bottom:779.840520px;}
.ya{bottom:782.422065px;}
.y2e{bottom:784.936695px;}
.yfb{bottom:786.164400px;}
.yab{bottom:790.691250px;}
.y87{bottom:790.691265px;}
.y63{bottom:798.101370px;}
.yc8{bottom:798.813915px;}
.yfa{bottom:805.137795px;}
.y9{bottom:807.087480px;}
.y2d{bottom:809.602110px;}
.yaa{bottom:815.356665px;}
.y86{bottom:816.918090px;}
.yc7{bottom:817.787310px;}
.y62{bottom:822.766740px;}
.yf9{bottom:824.111190px;}
.y8{bottom:831.752895px;}
.y2c{bottom:834.267480px;}
.yc6{bottom:836.760705px;}
.ya9{bottom:840.022080px;}
.yf8{bottom:843.084585px;}
.y61{bottom:847.432155px;}
.yc5{bottom:855.734100px;}
.y7{bottom:856.418310px;}
.y2b{bottom:858.932895px;}
.yf7{bottom:862.057980px;}
.y85{bottom:873.442095px;}
.yf6{bottom:881.031375px;}
.y6{bottom:881.083680px;}
.y2a{bottom:883.598310px;}
.ya8{bottom:889.352910px;}
.y60{bottom:892.750575px;}
.yc4{bottom:893.914305px;}
.y84{bottom:898.107510px;}
.yf5{bottom:900.004770px;}
.y5{bottom:907.310505px;}
.y29{bottom:908.263725px;}
.y5f{bottom:910.602810px;}
.ya7{bottom:914.018280px;}
.yf4{bottom:918.978165px;}
.y83{bottom:922.772880px;}
.y58{bottom:929.731350px;}
.y28{bottom:932.929140px;}
.yf3{bottom:937.951560px;}
.y5e{bottom:938.355615px;}
.ya6{bottom:938.683695px;}
.y82{bottom:947.438295px;}
.y57{bottom:955.604160px;}
.yf2{bottom:956.924955px;}
.y27{bottom:959.155920px;}
.ya5{bottom:963.349110px;}
.y4{bottom:963.834510px;}
.y81{bottom:972.103710px;}
.yf1{bottom:975.898350px;}
.ya4{bottom:988.014525px;}
.y3{bottom:988.499925px;}
.yf0{bottom:994.871745px;}
.y80{bottom:996.769125px;}
.yef{bottom:1013.845140px;}
.y26{bottom:1015.679925px;}
.y7f{bottom:1021.434540px;}
.y56{bottom:1027.899015px;}
.yee{bottom:1032.818535px;}
.y2{bottom:1033.249605px;}
.y55{bottom:1036.523280px;}
.ya3{bottom:1038.906720px;}
.y25{bottom:1040.345340px;}
.y7e{bottom:1046.099910px;}
.yed{bottom:1051.791930px;}
.y1{bottom:1062.049635px;}
.y24{bottom:1066.572120px;}
.y7d{bottom:1070.765325px;}
.h5{height:18.373515px;}
.h7{height:18.373560px;}
.hb{height:18.373575px;}
.he{height:35.622045px;}
.h8{height:35.622060px;}
.h12{height:35.622090px;}
.hc{height:35.622105px;}
.hd{height:36.597656px;}
.h11{height:40.664062px;}
.hf{height:41.660156px;}
.h18{height:45.826172px;}
.h6{height:50.039062px;}
.h14{height:52.870590px;}
.h10{height:52.870635px;}
.h3{height:55.042969px;}
.h4{height:56.394000px;}
.h2{height:69.408000px;}
.h17{height:70.119120px;}
.h16{height:70.119135px;}
.h13{height:70.119180px;}
.h15{height:87.367665px;}
.h9{height:104.616195px;}
.ha{height:121.864725px;}
.h0{height:1262.850030px;}
.h1{height:1263.000000px;}
.w2{width:115.650015px;}
.w8{width:124.277220px;}
.wf{width:126.807270px;}
.wd{width:126.975015px;}
.w4{width:128.850000px;}
.w9{width:130.736505px;}
.we{width:133.224120px;}
.wa{width:136.340190px;}
.w6{width:138.224985px;}
.w11{width:139.651005px;}
.wb{width:144.357210px;}
.wc{width:144.688875px;}
.w7{width:148.200030px;}
.w5{width:148.274985px;}
.w10{width:153.742590px;}
.w3{width:563.550000px;}
.w0{width:892.949985px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:3.675015px;}
.x14{left:5.774985px;}
.x17{left:8.625045px;}
.x6{left:10.800000px;}
.x12{left:12.870555px;}
.x20{left:15.590055px;}
.x1e{left:16.732770px;}
.x2d{left:18.507495px;}
.x21{left:19.852995px;}
.x8{left:22.153905px;}
.x9{left:24.431850px;}
.x2c{left:25.787550px;}
.x1f{left:26.938770px;}
.x25{left:27.975570px;}
.x24{left:29.132190px;}
.xc{left:30.822765px;}
.x15{left:32.774985px;}
.xf{left:34.549965px;}
.x18{left:35.625045px;}
.x13{left:37.800000px;}
.x26{left:39.235980px;}
.x1b{left:40.272525px;}
.xe{left:42.463725px;}
.x22{left:45.104880px;}
.xb{left:46.239900px;}
.x11{left:47.443860px;}
.x2e{left:48.578145px;}
.x2a{left:50.222550px;}
.x23{left:52.774335px;}
.x3{left:106.274985px;}
.x2f{left:127.575000px;}
.x4{left:133.274985px;}
.x5{left:159.449970px;}
.x7{left:221.924985px;}
.x19{left:230.552190px;}
.x27{left:233.249985px;}
.x2{left:254.808105px;}
.x1{left:301.919235px;}
.xa{left:350.774985px;}
.x1a{left:361.288695px;}
.x28{left:366.474105px;}
.x29{left:493.281375px;}
.x1c{left:497.628885px;}
.xd{left:499.049970px;}
.x10{left:637.274955px;}
.x1d{left:641.986095px;}
.x2b{left:647.023965px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:14.665173pt;}
.ls5{letter-spacing:14.665333pt;}
.ls0{letter-spacing:63.381333pt;}
.ls2{letter-spacing:71.413333pt;}
.ls3{letter-spacing:71.888000pt;}
.ws98{word-spacing:-42.357333pt;}
.ws29{word-spacing:-38.506667pt;}
.ws56{word-spacing:-35.786667pt;}
.ws2a{word-spacing:-32.533333pt;}
.ws88{word-spacing:-31.308960pt;}
.ws14{word-spacing:-31.254559pt;}
.ws65{word-spacing:-31.005354pt;}
.ws67{word-spacing:-31.004481pt;}
.ws70{word-spacing:-30.283087pt;}
.ws68{word-spacing:-29.321407pt;}
.ws4{word-spacing:-29.319761pt;}
.ws64{word-spacing:-29.303870pt;}
.ws74{word-spacing:-29.190333pt;}
.ws27{word-spacing:-29.160525pt;}
.ws17{word-spacing:-28.837023pt;}
.ws71{word-spacing:-28.794540pt;}
.ws25{word-spacing:-28.394759pt;}
.ws4a{word-spacing:-28.361709pt;}
.ws5e{word-spacing:-28.357023pt;}
.ws6d{word-spacing:-28.211284pt;}
.ws30{word-spacing:-28.070232pt;}
.ws6e{word-spacing:-27.878232pt;}
.ws21{word-spacing:-27.692145pt;}
.ws26{word-spacing:-27.691994pt;}
.ws3{word-spacing:-27.691826pt;}
.ws8c{word-spacing:-27.691179pt;}
.ws4e{word-spacing:-27.690918pt;}
.wsd{word-spacing:-27.682428pt;}
.wse{word-spacing:-27.642784pt;}
.wsc{word-spacing:-27.642062pt;}
.ws5c{word-spacing:-27.641911pt;}
.ws38{word-spacing:-27.537772pt;}
.ws57{word-spacing:-27.531439pt;}
.ws55{word-spacing:-27.530625pt;}
.ws84{word-spacing:-27.409588pt;}
.ws7{word-spacing:-27.269275pt;}
.ws62{word-spacing:-27.088311pt;}
.ws83{word-spacing:-27.071681pt;}
.ws8a{word-spacing:-27.056991pt;}
.ws16{word-spacing:-26.928664pt;}
.ws39{word-spacing:-26.595284pt;}
.ws23{word-spacing:-26.476422pt;}
.ws4d{word-spacing:-26.461816pt;}
.ws1a{word-spacing:-26.349186pt;}
.ws13{word-spacing:-25.970024pt;}
.ws9{word-spacing:-25.903655pt;}
.wsf{word-spacing:-25.722692pt;}
.ws46{word-spacing:-25.636233pt;}
.ws22{word-spacing:-25.592618pt;}
.ws12{word-spacing:-25.386767pt;}
.ws28{word-spacing:-25.174593pt;}
.ws33{word-spacing:-25.174442pt;}
.ws2b{word-spacing:-25.174156pt;}
.ws3e{word-spacing:-25.174005pt;}
.ws40{word-spacing:-25.165774pt;}
.ws6c{word-spacing:-25.132179pt;}
.ws35{word-spacing:-25.130079pt;}
.ws3f{word-spacing:-25.129609pt;}
.ws2c{word-spacing:-25.128886pt;}
.ws34{word-spacing:-25.128735pt;}
.ws45{word-spacing:-25.049348pt;}
.ws3a{word-spacing:-24.988853pt;}
.ws66{word-spacing:-24.483729pt;}
.ws69{word-spacing:-24.299926pt;}
.ws7f{word-spacing:-23.895668pt;}
.ws58{word-spacing:-23.846837pt;}
.ws59{word-spacing:-23.711983pt;}
.ws81{word-spacing:-23.707389pt;}
.ws20{word-spacing:-23.680689pt;}
.ws31{word-spacing:-23.493317pt;}
.ws15{word-spacing:-23.253451pt;}
.ws5{word-spacing:-23.096676pt;}
.ws76{word-spacing:-22.964695pt;}
.ws73{word-spacing:-22.961974pt;}
.ws24{word-spacing:-22.850041pt;}
.ws5f{word-spacing:-22.598383pt;}
.ws4c{word-spacing:-22.468040pt;}
.ws50{word-spacing:-22.305848pt;}
.ws48{word-spacing:-22.260645pt;}
.ws49{word-spacing:-22.140607pt;}
.ws52{word-spacing:-21.993054pt;}
.ws1d{word-spacing:-21.428065pt;}
.ws90{word-spacing:-21.121478pt;}
.ws91{word-spacing:-21.121159pt;}
.ws9a{word-spacing:-21.120512pt;}
.ws4f{word-spacing:-21.120252pt;}
.ws94{word-spacing:-21.111761pt;}
.ws99{word-spacing:-21.072269pt;}
.ws96{word-spacing:-21.072117pt;}
.ws97{word-spacing:-21.071395pt;}
.ws93{word-spacing:-21.071244pt;}
.ws82{word-spacing:-21.042578pt;}
.ws95{word-spacing:-20.967787pt;}
.ws92{word-spacing:-20.949395pt;}
.ws77{word-spacing:-20.755637pt;}
.ws6{word-spacing:-20.526900pt;}
.ws60{word-spacing:-19.912198pt;}
.ws72{word-spacing:-19.662144pt;}
.ws6a{word-spacing:-19.543164pt;}
.ws3b{word-spacing:-19.201344pt;}
.ws75{word-spacing:-19.057134pt;}
.ws1{word-spacing:-18.305462pt;}
.ws0{word-spacing:-18.304789pt;}
.ws5d{word-spacing:-17.729898pt;}
.ws61{word-spacing:-17.315662pt;}
.wsb{word-spacing:-17.088739pt;}
.ws8b{word-spacing:-16.248928pt;}
.ws1f{word-spacing:-15.985117pt;}
.ws2{word-spacing:-15.799618pt;}
.ws7c{word-spacing:-15.798501pt;}
.ws44{word-spacing:-15.301325pt;}
.ws1e{word-spacing:-14.873113pt;}
.ws43{word-spacing:-14.838266pt;}
.ws78{word-spacing:-14.666667pt;}
.ws19{word-spacing:-13.780594pt;}
.ws18{word-spacing:-13.211397pt;}
.ws6b{word-spacing:-12.556160pt;}
.ws63{word-spacing:-12.432487pt;}
.ws11{word-spacing:-10.269564pt;}
.ws10{word-spacing:-10.201357pt;}
.ws1b{word-spacing:-10.058339pt;}
.ws79{word-spacing:-10.025046pt;}
.ws7d{word-spacing:-9.930012pt;}
.ws6f{word-spacing:-9.271290pt;}
.ws4b{word-spacing:-9.136630pt;}
.ws8e{word-spacing:-9.052556pt;}
.ws5a{word-spacing:-8.769243pt;}
.ws7e{word-spacing:-7.953621pt;}
.wsa{word-spacing:-7.047441pt;}
.ws47{word-spacing:-6.244670pt;}
.ws51{word-spacing:-5.180657pt;}
.ws5b{word-spacing:-2.929268pt;}
.ws42{word-spacing:-2.594268pt;}
.ws1c{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.006047pt;}
.ws3c{word-spacing:0.007274pt;}
.ws37{word-spacing:0.039383pt;}
.ws32{word-spacing:0.043254pt;}
.ws3d{word-spacing:0.044447pt;}
.ws8f{word-spacing:0.181547pt;}
.ws87{word-spacing:0.229280pt;}
.ws8d{word-spacing:0.238347pt;}
.ws89{word-spacing:0.269547pt;}
.ws85{word-spacing:0.394133pt;}
.ws86{word-spacing:0.442240pt;}
.ws2d{word-spacing:0.452636pt;}
.ws2e{word-spacing:0.532082pt;}
.ws7a{word-spacing:0.725686pt;}
.ws54{word-spacing:1.278404pt;}
.ws41{word-spacing:2.757770pt;}
.ws36{word-spacing:3.198539pt;}
.ws80{word-spacing:3.943139pt;}
.ws53{word-spacing:7.898835pt;}
.ws7b{word-spacing:11.851876pt;}
.ws8{word-spacing:14.061069pt;}
._1{width:1.118378pt;}
._0{width:14.636371pt;}
._2{width:15.975896pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:2.884080pt;}
.y41{bottom:2.884107pt;}
.y35{bottom:2.884120pt;}
.y47{bottom:2.884133pt;}
.y5d{bottom:2.884147pt;}
.y40{bottom:18.216133pt;}
.y38{bottom:18.216147pt;}
.y46{bottom:18.216160pt;}
.y5c{bottom:18.216173pt;}
.y3f{bottom:33.548160pt;}
.y6d{bottom:33.548173pt;}
.y51{bottom:33.548187pt;}
.y5b{bottom:33.548200pt;}
.y3e{bottom:48.880187pt;}
.y54{bottom:48.880213pt;}
.y5a{bottom:48.880227pt;}
.y3d{bottom:64.212213pt;}
.y59{bottom:64.212253pt;}
.y3c{bottom:79.544240pt;}
.y53{bottom:88.854573pt;}
.yc3{bottom:88.942133pt;}
.ya2{bottom:88.942147pt;}
.y7c{bottom:94.439427pt;}
.y43{bottom:94.876267pt;}
.y50{bottom:96.520587pt;}
.yec{bottom:102.908213pt;}
.y52{bottom:104.186613pt;}
.yc2{bottom:110.866947pt;}
.ya1{bottom:110.866960pt;}
.y7b{bottom:116.364240pt;}
.yeb{bottom:119.773453pt;}
.yc1{bottom:132.791760pt;}
.ya0{bottom:132.791773pt;}
.yea{bottom:136.638693pt;}
.y7a{bottom:138.289053pt;}
.y23{bottom:147.366147pt;}
.ye9{bottom:153.503933pt;}
.yc0{bottom:154.716573pt;}
.y9f{bottom:154.716587pt;}
.y79{bottom:160.213867pt;}
.y4e{bottom:160.782733pt;}
.y4f{bottom:168.448747pt;}
.y22{bottom:169.290960pt;}
.ye8{bottom:170.369173pt;}
.ybf{bottom:176.641347pt;}
.y9e{bottom:176.641360pt;}
.y78{bottom:182.138680pt;}
.ye7{bottom:187.234413pt;}
.y21{bottom:191.215773pt;}
.ybe{bottom:198.566160pt;}
.y9d{bottom:198.566173pt;}
.y77{bottom:204.063453pt;}
.ye6{bottom:204.099653pt;}
.y20{bottom:213.140587pt;}
.ybd{bottom:220.490973pt;}
.y9c{bottom:220.490987pt;}
.ye5{bottom:220.964893pt;}
.y76{bottom:225.988267pt;}
.y4d{bottom:227.407427pt;}
.y1f{bottom:235.065400pt;}
.ye4{bottom:237.830133pt;}
.ybc{bottom:242.415787pt;}
.y9b{bottom:242.415800pt;}
.y75{bottom:247.913080pt;}
.y4c{bottom:249.332240pt;}
.ye3{bottom:254.695373pt;}
.y1e{bottom:256.990173pt;}
.ybb{bottom:264.340600pt;}
.y9a{bottom:264.340613pt;}
.y74{bottom:269.837893pt;}
.y4b{bottom:271.257053pt;}
.ye2{bottom:271.560573pt;}
.y1d{bottom:278.914987pt;}
.yba{bottom:286.265373pt;}
.y99{bottom:286.265387pt;}
.ye1{bottom:288.425813pt;}
.y73{bottom:291.762707pt;}
.y1c{bottom:300.839800pt;}
.ye0{bottom:305.291053pt;}
.yb9{bottom:308.190187pt;}
.y98{bottom:308.190200pt;}
.y4a{bottom:311.540093pt;}
.y72{bottom:313.687480pt;}
.ydf{bottom:322.156293pt;}
.y1b{bottom:322.764613pt;}
.y49{bottom:327.408747pt;}
.y97{bottom:330.115013pt;}
.y71{bottom:337.000213pt;}
.yde{bottom:339.021533pt;}
.y48{bottom:343.277400pt;}
.y1a{bottom:344.689427pt;}
.yb8{bottom:352.039813pt;}
.y96{bottom:352.039827pt;}
.ydd{bottom:355.886773pt;}
.y42{bottom:357.880560pt;}
.y3b{bottom:365.546573pt;}
.y19{bottom:366.614200pt;}
.ydc{bottom:372.752013pt;}
.yb7{bottom:373.964587pt;}
.y95{bottom:373.964600pt;}
.y45{bottom:375.078573pt;}
.y18{bottom:388.539013pt;}
.ydb{bottom:389.617253pt;}
.yb6{bottom:395.889400pt;}
.y94{bottom:395.889413pt;}
.y70{bottom:405.602000pt;}
.yda{bottom:406.482493pt;}
.y17{bottom:410.463827pt;}
.yb5{bottom:417.814213pt;}
.y93{bottom:417.814227pt;}
.y6f{bottom:421.470653pt;}
.yd9{bottom:423.347733pt;}
.y44{bottom:431.140680pt;}
.y16{bottom:432.388640pt;}
.y6e{bottom:437.339307pt;}
.yb4{bottom:439.739027pt;}
.y92{bottom:439.739040pt;}
.yd8{bottom:440.212973pt;}
.y15{bottom:454.313453pt;}
.y6c{bottom:454.342453pt;}
.y39{bottom:457.072747pt;}
.yd7{bottom:457.078213pt;}
.y91{bottom:461.663853pt;}
.y6b{bottom:462.008467pt;}
.yd6{bottom:473.943453pt;}
.y14{bottom:476.238227pt;}
.y108{bottom:479.564680pt;}
.yb3{bottom:483.588613pt;}
.y37{bottom:489.272733pt;}
.yd5{bottom:490.808693pt;}
.y107{bottom:496.429920pt;}
.y13{bottom:498.163040pt;}
.y34{bottom:505.104760pt;}
.yb2{bottom:505.513427pt;}
.y90{bottom:505.513440pt;}
.yd4{bottom:507.673933pt;}
.y69{bottom:510.938533pt;}
.y106{bottom:513.295160pt;}
.y68{bottom:518.604547pt;}
.y12{bottom:520.087853pt;}
.yd3{bottom:524.539173pt;}
.y6a{bottom:526.270560pt;}
.yb1{bottom:527.438240pt;}
.y8f{bottom:527.438253pt;}
.y105{bottom:530.160400pt;}
.y36{bottom:536.804747pt;}
.yd2{bottom:541.404413pt;}
.y11{bottom:542.012667pt;}
.y104{bottom:547.025640pt;}
.yb0{bottom:549.363053pt;}
.y8e{bottom:549.363067pt;}
.yd1{bottom:558.269653pt;}
.y103{bottom:563.890880pt;}
.y10{bottom:563.937480pt;}
.yaf{bottom:571.287867pt;}
.y8d{bottom:571.287880pt;}
.yd0{bottom:575.134893pt;}
.y102{bottom:580.756120pt;}
.y66{bottom:582.866640pt;}
.yf{bottom:585.862253pt;}
.y33{bottom:588.097480pt;}
.y67{bottom:590.532667pt;}
.ycf{bottom:592.000133pt;}
.y8c{bottom:593.212653pt;}
.y101{bottom:597.621360pt;}
.ye{bottom:607.787067pt;}
.yce{bottom:608.865373pt;}
.y32{bottom:610.022293pt;}
.y100{bottom:614.486600pt;}
.yae{bottom:615.137453pt;}
.y8b{bottom:615.137467pt;}
.ycd{bottom:625.730613pt;}
.yd{bottom:629.711880pt;}
.yff{bottom:631.351840pt;}
.y31{bottom:631.947067pt;}
.yad{bottom:637.062267pt;}
.y8a{bottom:637.062280pt;}
.ycc{bottom:642.595853pt;}
.y64{bottom:642.798693pt;}
.yfe{bottom:648.217080pt;}
.y65{bottom:648.796720pt;}
.yc{bottom:651.636693pt;}
.y30{bottom:653.871880pt;}
.yac{bottom:658.987080pt;}
.y89{bottom:658.987093pt;}
.ycb{bottom:659.461093pt;}
.yfd{bottom:665.082320pt;}
.yb{bottom:673.561467pt;}
.y2f{bottom:675.796693pt;}
.yca{bottom:676.326333pt;}
.y88{bottom:680.911907pt;}
.yfc{bottom:681.947560pt;}
.yc9{bottom:693.191573pt;}
.ya{bottom:695.486280pt;}
.y2e{bottom:697.721507pt;}
.yfb{bottom:698.812800pt;}
.yab{bottom:702.836667pt;}
.y87{bottom:702.836680pt;}
.y63{bottom:709.423440pt;}
.yc8{bottom:710.056813pt;}
.yfa{bottom:715.678040pt;}
.y9{bottom:717.411093pt;}
.y2d{bottom:719.646320pt;}
.yaa{bottom:724.761480pt;}
.y86{bottom:726.149413pt;}
.yc7{bottom:726.922053pt;}
.y62{bottom:731.348213pt;}
.yf9{bottom:732.543280pt;}
.y8{bottom:739.335907pt;}
.y2c{bottom:741.571093pt;}
.yc6{bottom:743.787293pt;}
.ya9{bottom:746.686293pt;}
.yf8{bottom:749.408520pt;}
.y61{bottom:753.273027pt;}
.yc5{bottom:760.652533pt;}
.y7{bottom:761.260720pt;}
.y2b{bottom:763.495907pt;}
.yf7{bottom:766.273760pt;}
.y85{bottom:776.392973pt;}
.yf6{bottom:783.139000pt;}
.y6{bottom:783.185493pt;}
.y2a{bottom:785.420720pt;}
.ya8{bottom:790.535920pt;}
.y60{bottom:793.556067pt;}
.yc4{bottom:794.590493pt;}
.y84{bottom:798.317787pt;}
.yf5{bottom:800.004240pt;}
.y5{bottom:806.498227pt;}
.y29{bottom:807.345533pt;}
.y5f{bottom:809.424720pt;}
.ya7{bottom:812.460693pt;}
.yf4{bottom:816.869480pt;}
.y83{bottom:820.242560pt;}
.y58{bottom:826.427867pt;}
.y28{bottom:829.270347pt;}
.yf3{bottom:833.734720pt;}
.y5e{bottom:834.093880pt;}
.ya6{bottom:834.385507pt;}
.y82{bottom:842.167373pt;}
.y57{bottom:849.425920pt;}
.yf2{bottom:850.599960pt;}
.y27{bottom:852.583040pt;}
.ya5{bottom:856.310320pt;}
.y4{bottom:856.741787pt;}
.y81{bottom:864.092187pt;}
.yf1{bottom:867.465200pt;}
.ya4{bottom:878.235133pt;}
.y3{bottom:878.666600pt;}
.yf0{bottom:884.330440pt;}
.y80{bottom:886.017000pt;}
.yef{bottom:901.195680pt;}
.y26{bottom:902.826600pt;}
.y7f{bottom:907.941813pt;}
.y56{bottom:913.688013pt;}
.yee{bottom:918.060920pt;}
.y2{bottom:918.444093pt;}
.y55{bottom:921.354027pt;}
.ya3{bottom:923.472640pt;}
.y25{bottom:924.751413pt;}
.y7e{bottom:929.866587pt;}
.yed{bottom:934.926160pt;}
.y1{bottom:944.044120pt;}
.y24{bottom:948.064107pt;}
.y7d{bottom:951.791400pt;}
.h5{height:16.332013pt;}
.h7{height:16.332053pt;}
.hb{height:16.332067pt;}
.he{height:31.664040pt;}
.h8{height:31.664053pt;}
.h12{height:31.664080pt;}
.hc{height:31.664093pt;}
.hd{height:32.531250pt;}
.h11{height:36.145833pt;}
.hf{height:37.031250pt;}
.h18{height:40.734375pt;}
.h6{height:44.479167pt;}
.h14{height:46.996080pt;}
.h10{height:46.996120pt;}
.h3{height:48.927083pt;}
.h4{height:50.128000pt;}
.h2{height:61.696000pt;}
.h17{height:62.328107pt;}
.h16{height:62.328120pt;}
.h13{height:62.328160pt;}
.h15{height:77.660147pt;}
.h9{height:92.992173pt;}
.ha{height:108.324200pt;}
.h0{height:1122.533360pt;}
.h1{height:1122.666667pt;}
.w2{width:102.800013pt;}
.w8{width:110.468640pt;}
.wf{width:112.717573pt;}
.wd{width:112.866680pt;}
.w4{width:114.533333pt;}
.w9{width:116.210227pt;}
.we{width:118.421440pt;}
.wa{width:121.191280pt;}
.w6{width:122.866653pt;}
.w11{width:124.134227pt;}
.wb{width:128.317520pt;}
.wc{width:128.612333pt;}
.w7{width:131.733360pt;}
.w5{width:131.799987pt;}
.w10{width:136.660080pt;}
.w3{width:500.933333pt;}
.w0{width:793.733320pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:3.266680pt;}
.x14{left:5.133320pt;}
.x17{left:7.666707pt;}
.x6{left:9.600000pt;}
.x12{left:11.440493pt;}
.x20{left:13.857827pt;}
.x1e{left:14.873573pt;}
.x2d{left:16.451107pt;}
.x21{left:17.647107pt;}
.x8{left:19.692360pt;}
.x9{left:21.717200pt;}
.x2c{left:22.922267pt;}
.x1f{left:23.945573pt;}
.x25{left:24.867173pt;}
.x24{left:25.895280pt;}
.xc{left:27.398013pt;}
.x15{left:29.133320pt;}
.xf{left:30.711080pt;}
.x18{left:31.666707pt;}
.x13{left:33.600000pt;}
.x26{left:34.876427pt;}
.x1b{left:35.797800pt;}
.xe{left:37.745533pt;}
.x22{left:40.093227pt;}
.xb{left:41.102133pt;}
.x11{left:42.172320pt;}
.x2e{left:43.180573pt;}
.x2a{left:44.642267pt;}
.x23{left:46.910520pt;}
.x3{left:94.466653pt;}
.x2f{left:113.400000pt;}
.x4{left:118.466653pt;}
.x5{left:141.733307pt;}
.x7{left:197.266653pt;}
.x19{left:204.935280pt;}
.x27{left:207.333320pt;}
.x2{left:226.496093pt;}
.x1{left:268.372653pt;}
.xa{left:311.799987pt;}
.x1a{left:321.145507pt;}
.x28{left:325.754760pt;}
.x29{left:438.472333pt;}
.x1c{left:442.336787pt;}
.xd{left:443.599973pt;}
.x10{left:566.466627pt;}
.x1d{left:570.654307pt;}
.x2b{left:575.132413pt;}
}




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