
    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_244c847b7ade6176947f2d48.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943359;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_fb0f2830dfc90d84b07ccc07.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b6d46e324605fa7aaa471272.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.954000;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_87f25a1c76e93642b89aaad6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.083496;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_88f4c82a45c3553324b2df02.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.115234;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_b91189d47f5c010da778ee11.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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;}
.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;}
}
.ws7f{word-spacing:-106.560551px;}
.wse{word-spacing:-105.839491px;}
.ws27{word-spacing:-88.619641px;}
.ws1{word-spacing:-88.560597px;}
.ws3c{word-spacing:-88.338697px;}
.ws3b{word-spacing:-88.232136px;}
.ws87{word-spacing:-88.125575px;}
.ws3d{word-spacing:-87.529259px;}
.ws88{word-spacing:-87.518824px;}
.ws17{word-spacing:-87.427950px;}
.wsb4{word-spacing:-87.317580px;}
.ws12{word-spacing:-87.273091px;}
.ws64{word-spacing:-87.242735px;}
.wsa{word-spacing:-87.166530px;}
.ws7b{word-spacing:-87.059970px;}
.ws7a{word-spacing:-86.983876px;}
.ws6d{word-spacing:-86.812346px;}
.ws14{word-spacing:-86.682543px;}
.ws84{word-spacing:-86.674312px;}
.ws8a{word-spacing:-86.661080px;}
.ws9{word-spacing:-86.576704px;}
.ws81{word-spacing:-86.575404px;}
.ws73{word-spacing:-86.510995px;}
.ws25{word-spacing:-86.470864px;}
.ws8e{word-spacing:-86.365025px;}
.ws4a{word-spacing:-86.259185px;}
.ws6c{word-spacing:-86.207486px;}
.ws49{word-spacing:-86.100925px;}
.ws7e{word-spacing:-86.016434px;}
.ws86{word-spacing:-85.997925px;}
.ws2e{word-spacing:-85.994364px;}
.ws6b{word-spacing:-85.987607px;}
.ws83{word-spacing:-85.967325px;}
.ws5e{word-spacing:-85.964410px;}
.ws76{word-spacing:-85.950803px;}
.ws3{word-spacing:-85.835827px;}
.wsa8{word-spacing:-85.765924px;}
.ws1a{word-spacing:-85.624148px;}
.ws19{word-spacing:-85.518309px;}
.ws3a{word-spacing:-85.412469px;}
.wsaf{word-spacing:-85.200790px;}
.wsb2{word-spacing:-85.075929px;}
.ws66{word-spacing:-84.755930px;}
.ws28{word-spacing:-84.565753px;}
.ws5c{word-spacing:-84.459914px;}
.ws5{word-spacing:-84.354074px;}
.wsac{word-spacing:-84.142395px;}
.ws23{word-spacing:-84.076274px;}
.ws65{word-spacing:-83.969714px;}
.wsf{word-spacing:-83.507358px;}
.ws55{word-spacing:-83.401519px;}
.ws37{word-spacing:-83.295679px;}
.ws95{word-spacing:-82.595231px;}
.ws7c{word-spacing:-82.448963px;}
.ws51{word-spacing:-82.343124px;}
.ws8b{word-spacing:-82.237284px;}
.wsb9{word-spacing:-82.164979px;}
.ws7d{word-spacing:-82.025605px;}
.ws6e{word-spacing:-81.945063px;}
.wsb7{word-spacing:-81.390568px;}
.ws4c{word-spacing:-81.284729px;}
.wsad{word-spacing:-80.574021px;}
.ws33{word-spacing:-80.332174px;}
.wsbb{word-spacing:-80.226334px;}
.ws47{word-spacing:-80.120495px;}
.wsa1{word-spacing:-79.813852px;}
.ws26{word-spacing:-79.273779px;}
.ws91{word-spacing:-79.167939px;}
.ws32{word-spacing:-79.062100px;}
.wsb8{word-spacing:-78.748247px;}
.ws48{word-spacing:-78.215384px;}
.ws4e{word-spacing:-78.109544px;}
.ws74{word-spacing:-78.003705px;}
.wsb0{word-spacing:-77.792026px;}
.ws96{word-spacing:-77.647376px;}
.ws21{word-spacing:-77.156989px;}
.ws5d{word-spacing:-76.945310px;}
.ws59{word-spacing:-76.403915px;}
.ws24{word-spacing:-76.098594px;}
.ws43{word-spacing:-75.992754px;}
.ws31{word-spacing:-75.886915px;}
.wsae{word-spacing:-75.338309px;}
.wsb{word-spacing:-75.040199px;}
.wsa2{word-spacing:-74.828520px;}
.ws60{word-spacing:-74.272704px;}
.ws13{word-spacing:-73.981804px;}
.ws9b{word-spacing:-73.770125px;}
.ws42{word-spacing:-73.207098px;}
.ws61{word-spacing:-72.923409px;}
.ws62{word-spacing:-72.817570px;}
.ws8{word-spacing:-72.711730px;}
.ws9c{word-spacing:-71.759175px;}
.wsb3{word-spacing:-71.653335px;}
.ws36{word-spacing:-71.182448px;}
.ws52{word-spacing:-71.075887px;}
.ws79{word-spacing:-70.806619px;}
.ws40{word-spacing:-70.700780px;}
.ws53{word-spacing:-70.594940px;}
.ws1d{word-spacing:-70.560644px;}
.wsb1{word-spacing:-70.489101px;}
.ws8d{word-spacing:-70.010282px;}
.ws18{word-spacing:-69.748224px;}
.ws38{word-spacing:-69.536545px;}
.ws56{word-spacing:-68.689830px;}
.ws2a{word-spacing:-68.583990px;}
.wsba{word-spacing:-68.478151px;}
.ws29{word-spacing:-67.525595px;}
.ws63{word-spacing:-66.573040px;}
.wsab{word-spacing:-66.467200px;}
.ws2f{word-spacing:-66.361361px;}
.wsc{word-spacing:-65.514645px;}
.wsa4{word-spacing:-65.408805px;}
.ws30{word-spacing:-64.456250px;}
.ws41{word-spacing:-64.244571px;}
.wsa9{word-spacing:-63.723209px;}
.ws0{word-spacing:-63.590009px;}
.ws4f{word-spacing:-63.397855px;}
.wsa3{word-spacing:-63.292016px;}
.ws5f{word-spacing:-63.186176px;}
.ws6f{word-spacing:-62.974497px;}
.ws1b{word-spacing:-62.657604px;}
.ws5a{word-spacing:-62.127781px;}
.wsd{word-spacing:-61.175226px;}
.ws15{word-spacing:-60.222670px;}
.ws39{word-spacing:-60.116831px;}
.ws6a{word-spacing:-60.010991px;}
.wsb5{word-spacing:-59.058436px;}
.ws78{word-spacing:-58.952596px;}
.wsa0{word-spacing:-58.105880px;}
.ws4{word-spacing:-58.000041px;}
.ws5b{word-spacing:-57.894201px;}
.ws70{word-spacing:-57.223016px;}
.ws72{word-spacing:-56.941646px;}
.wsb6{word-spacing:-56.624128px;}
.ws1f{word-spacing:-55.989091px;}
.ws85{word-spacing:-54.026199px;}
.ws2d{word-spacing:-53.660622px;}
.ws2{word-spacing:-53.280000px;}
.ws75{word-spacing:-52.602227px;}
.ws90{word-spacing:-52.001549px;}
.ws54{word-spacing:-51.755511px;}
.ws89{word-spacing:-51.649672px;}
.ws58{word-spacing:-50.485437px;}
.ws94{word-spacing:-49.763777px;}
.ws22{word-spacing:-49.638721px;}
.wsa5{word-spacing:-49.427042px;}
.ws71{word-spacing:-48.591098px;}
.ws9a{word-spacing:-48.580326px;}
.ws69{word-spacing:-48.368647px;}
.ws1c{word-spacing:-47.910677px;}
.ws97{word-spacing:-47.632566px;}
.ws57{word-spacing:-46.357697px;}
.ws77{word-spacing:-44.346747px;}
.ws82{word-spacing:-44.135068px;}
.ws2c{word-spacing:-43.288352px;}
.ws10{word-spacing:-43.182512px;}
.ws99{word-spacing:-43.076673px;}
.ws4b{word-spacing:-42.229957px;}
.ws67{word-spacing:-41.065722px;}
.ws2b{word-spacing:-40.959883px;}
.ws93{word-spacing:-40.113167px;}
.ws11{word-spacing:-38.948933px;}
.ws98{word-spacing:-38.097984px;}
.ws4d{word-spacing:-38.042117px;}
.ws35{word-spacing:-37.996377px;}
.ws45{word-spacing:-37.890538px;}
.ws16{word-spacing:-36.832143px;}
.ws34{word-spacing:-36.726303px;}
.ws44{word-spacing:-34.821192px;}
.ws92{word-spacing:-34.715353px;}
.ws3f{word-spacing:-31.434329px;}
.ws68{word-spacing:-29.304151px;}
.ws8c{word-spacing:-28.470823px;}
.wsaa{word-spacing:-28.464267px;}
.ws3e{word-spacing:-28.259144px;}
.ws46{word-spacing:-27.200749px;}
.ws9e{word-spacing:-24.131404px;}
.ws6{word-spacing:-23.813885px;}
.ws9d{word-spacing:-18.861217px;}
.ws80{word-spacing:-17.781034px;}
.wsa7{word-spacing:-16.828479px;}
.wsa6{word-spacing:-16.553379px;}
.ws8f{word-spacing:-16.280393px;}
.ws50{word-spacing:-11.324826px;}
.ws20{word-spacing:-9.313875px;}
.ws9f{word-spacing:-7.937962px;}
.ws7{word-spacing:-0.846716px;}
.ws1e{word-spacing:0.000000px;}
._3{margin-left:-9.210302px;}
._0{margin-left:-7.865952px;}
._7{margin-left:-6.816006px;}
._5{margin-left:-5.472616px;}
._3f{margin-left:-4.376143px;}
._17{margin-left:-2.994771px;}
._1{margin-left:-1.407591px;}
._4{width:1.328409px;}
._6{width:3.229898px;}
._2e{width:4.585306px;}
._16{width:18.188475px;}
._1e{width:19.237777px;}
._2{width:20.451474px;}
._8{width:21.668300px;}
._b{width:22.670776px;}
._a{width:23.803055px;}
._2f{width:25.634004px;}
._24{width:27.248254px;}
._1d{width:28.555001px;}
._18{width:30.365103px;}
._11{width:32.201048px;}
._31{width:33.426575px;}
._10{width:34.487848px;}
._f{width:36.292115px;}
._20{width:38.492666px;}
._1f{width:39.547713px;}
._12{width:41.525754px;}
._2b{width:42.748324px;}
._35{width:43.817549px;}
._13{width:45.677094px;}
._9{width:46.724175px;}
._19{width:47.907802px;}
._34{width:49.802930px;}
._1b{width:51.405501px;}
._23{width:53.206565px;}
._37{width:54.528240px;}
._32{width:55.700196px;}
._33{width:57.611169px;}
._36{width:59.047605px;}
._22{width:61.330892px;}
._21{width:62.627682px;}
._14{width:63.688595px;}
._15{width:64.693772px;}
._2d{width:66.312101px;}
._3c{width:67.901823px;}
._25{width:68.984312px;}
._3d{width:69.999615px;}
._1a{width:71.023562px;}
._2c{width:72.281278px;}
._2a{width:75.981924px;}
._28{width:78.617080px;}
._29{width:80.164340px;}
._d{width:83.202576px;}
._c{width:85.158562px;}
._40{width:87.986039px;}
._39{width:89.069785px;}
._38{width:90.198372px;}
._3b{width:91.899769px;}
._30{width:93.387105px;}
._1c{width:97.901469px;}
._3e{width:99.007428px;}
._e{width:102.753505px;}
._3a{width:104.545598px;}
._41{width:170.979937px;}
._26{width:185.116958px;}
._27{width:332.046000px;}
.fc3{color:rgb(5,99,193);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(242,241,237);}
.fc4{color:transparent;}
.fc0{color:rgb(109,57,20);}
.fs3{font-size:53.280000px;}
.fs7{font-size:59.759492px;}
.fs6{font-size:70.560644px;}
.fs0{font-size:82.799491px;}
.fs1{font-size:88.560597px;}
.fs4{font-size:105.839491px;}
.fs5{font-size:106.560551px;}
.fs2{font-size:141.839398px;}
.y0{bottom:0.000000px;}
.yfe{bottom:3.237094px;}
.yea{bottom:3.238920px;}
.yf5{bottom:3.241636px;}
.yf1{bottom:3.241680px;}
.y102{bottom:3.246222px;}
.ye2{bottom:3.413989px;}
.ydf{bottom:3.421291px;}
.y5{bottom:45.182316px;}
.y64{bottom:86.050362px;}
.y81{bottom:89.643698px;}
.y44{bottom:93.245156px;}
.y123{bottom:99.010596px;}
.y21{bottom:101.153136px;}
.ydd{bottom:101.529985px;}
.yad{bottom:102.612054px;}
.y9a{bottom:110.880718px;}
.yd5{bottom:114.482176px;}
.yc3{bottom:115.749953px;}
.y63{bottom:117.905891px;}
.y80{bottom:121.499227px;}
.y20{bottom:122.395814px;}
.y43{bottom:125.108729px;}
.y122{bottom:130.866126px;}
.ydc{bottom:133.385514px;}
.y99{bottom:142.744370px;}
.yac{bottom:146.332442px;}
.y62{bottom:149.942081px;}
.y1f{bottom:151.206862px;}
.y7f{bottom:153.356650px;}
.y42{bottom:156.950093px;}
.yc2{bottom:159.291495px;}
.y121{bottom:162.714241px;}
.ydb{bottom:165.234518px;}
.y98{bottom:174.592030px;}
.yab{bottom:178.193571px;}
.y1e{bottom:183.055329px;}
.y41{bottom:188.827911px;}
.y61{bottom:193.503238px;}
.y7e{bottom:197.104696px;}
.yc1{bottom:203.047800px;}
.y118{bottom:207.911073px;}
.y1d{bottom:214.925965px;}
.y97{bottom:218.349760px;}
.y40{bottom:220.683441px;}
.yaa{bottom:221.943096px;}
.y60{bottom:225.366890px;}
.y117{bottom:228.250037px;}
.y7d{bottom:228.968269px;}
.y113{bottom:237.965949px;}
.yda{bottom:240.660727px;}
.yc0{bottom:246.603910px;}
.y1c{bottom:246.781495px;}
.y116{bottom:247.690856px;}
.y3f{bottom:252.547014px;}
.yd4{bottom:253.798625px;}
.y5f{bottom:257.222420px;}
.y112{bottom:258.313996px;}
.y7c{bottom:260.831843px;}
.y96{bottom:261.897747px;}
.ya9{bottom:265.507249px;}
.y115{bottom:268.029820px;}
.yd9{bottom:272.524379px;}
.y1b{bottom:278.645147px;}
.y3e{bottom:284.410587px;}
.yd3{bottom:285.662199px;}
.y114{bottom:288.368873px;}
.ybf{bottom:290.168063px;}
.y7b{bottom:292.687372px;}
.y95{bottom:293.761399px;}
.y5e{bottom:300.786573px;}
.yd8{bottom:304.379909px;}
.y111{bottom:308.530006px;}
.ya8{bottom:309.055236px;}
.y1a{bottom:310.508720px;}
.y3d{bottom:316.266117px;}
.y94{bottom:325.624972px;}
.y110{bottom:328.868970px;}
.yd2{bottom:329.226352px;}
.y5d{bottom:332.650146px;}
.ybe{bottom:333.901757px;}
.y7a{bottom:336.243482px;}
.ya7{bottom:340.918888px;}
.y19{bottom:342.364250px;}
.y3c{bottom:348.129769px;}
.y10f{bottom:348.309790px;}
.yd1{bottom:361.090004px;}
.y5c{bottom:364.513719px;}
.y79{bottom:368.099012px;}
.y10e{bottom:368.648754px;}
.y93{bottom:369.366789px;}
.ya6{bottom:372.782461px;}
.y18{bottom:374.227902px;}
.ybd{bottom:377.651618px;}
.y106{bottom:378.369208px;}
.y3b{bottom:379.985299px;}
.y10d{bottom:388.983176px;}
.y105{bottom:398.708172px;}
.y78{bottom:399.962585px;}
.y92{bottom:401.230362px;}
.ya5{bottom:404.637991px;}
.y10c{bottom:405.186901px;}
.y17{bottom:406.083432px;}
.y5b{bottom:408.247493px;}
.ybc{bottom:409.507147px;}
.y3a{bottom:411.848872px;}
.y104{bottom:419.047135px;}
.y10b{bottom:428.762959px;}
.y77{bottom:431.822857px;}
.y91{bottom:433.082995px;}
.yd0{bottom:436.668340px;}
.y16{bottom:437.947005px;}
.y5a{bottom:440.091006px;}
.ybb{bottom:441.351145px;}
.ya4{bottom:448.375432px;}
.y10a{bottom:449.111095px;}
.y39{bottom:455.572003px;}
.y76{bottom:463.683344px;}
.ycf{bottom:468.360327px;}
.y109{bottom:468.551915px;}
.y15{bottom:469.789607px;}
.y59{bottom:471.965018px;}
.y90{bottom:476.822898px;}
.ya3{bottom:480.246614px;}
.yba{bottom:484.923597px;}
.y108{bottom:485.649243px;}
.y38{bottom:487.442986px;}
.y107{bottom:488.886337px;}
.y75{bottom:495.543763px;}
.yce{bottom:500.220746px;}
.y14{bottom:501.667764px;}
.y58{bottom:503.825359px;}
.yd7{bottom:507.430050px;}
.y103{bottom:509.225301px;}
.ya2{bottom:512.107033px;}
.y37{bottom:519.303326px;}
.y8f{bottom:520.388629px;}
.y101{bottom:526.144799px;}
.y120{bottom:527.404103px;}
.yb9{bottom:528.657370px;}
.ycd{bottom:532.081086px;}
.y13{bottom:533.528104px;}
.y57{bottom:535.685777px;}
.y74{bottom:539.277458px;}
.ya1{bottom:543.967373px;}
.y100{bottom:549.725443px;}
.y36{bottom:551.163744px;}
.y8e{bottom:552.248969px;}
.y11f{bottom:559.264522px;}
.ycc{bottom:563.941505px;}
.y12{bottom:565.388523px;}
.yf8{bottom:569.166218px;}
.y73{bottom:571.137876px;}
.yb8{bottom:572.403997px;}
.y56{bottom:579.419472px;}
.y35{bottom:583.024085px;}
.y8d{bottom:584.109387px;}
.yff{bottom:586.268132px;}
.ya0{bottom:587.520249px;}
.yf7{bottom:589.505226px;}
.y11e{bottom:591.124862px;}
.y72{bottom:602.998216px;}
.yb7{bottom:604.264377px;}
.yfd{bottom:606.607096px;}
.ycb{bottom:607.688132px;}
.y11{bottom:609.122218px;}
.yf3{bottom:609.844190px;}
.y55{bottom:611.279852px;}
.y8c{bottom:615.788870px;}
.y11d{bottom:622.985242px;}
.y34{bottom:626.408997px;}
.yf6{bottom:629.285010px;}
.y9f{bottom:631.266876px;}
.y71{bottom:634.858596px;}
.yca{bottom:639.548512px;}
.y10{bottom:640.982597px;}
.y54{bottom:643.140231px;}
.yf4{bottom:646.382338px;}
.yb6{bottom:647.649250px;}
.yfc{bottom:649.623973px;}
.y11c{bottom:654.845621px;}
.y33{bottom:658.269376px;}
.y8b{bottom:659.522604px;}
.y9e{bottom:663.127256px;}
.y70{bottom:666.718975px;}
.yfb{bottom:669.247165px;}
.yc9{bottom:671.408891px;}
.yf{bottom:672.842977px;}
.y53{bottom:675.000610px;}
.yb5{bottom:679.496696px;}
.yfa{bottom:689.403757px;}
.y32{bottom:690.116823px;}
.y9d{bottom:694.987635px;}
.y6f{bottom:698.579355px;}
.y8a{bottom:703.255051px;}
.ye{bottom:704.703356px;}
.y52{bottom:706.858220px;}
.yf9{bottom:709.747306px;}
.yc8{bottom:714.962143px;}
.y31{bottom:722.155499px;}
.yb4{bottom:723.235175px;}
.yf2{bottom:730.086270px;}
.y6e{bottom:730.441512px;}
.yd{bottom:736.555232px;}
.y9c{bottom:738.721330px;}
.y89{bottom:746.822107px;}
.yf0{bottom:747.001227px;}
.yed{bottom:750.242907px;}
.y51{bottom:750.426720px;}
.y30{bottom:754.018479px;}
.yc7{bottom:758.708355px;}
.y6d{bottom:762.300075px;}
.yb3{bottom:766.977097px;}
.yec{bottom:769.866054px;}
.yc{bottom:780.116572px;}
.y50{bottom:782.287100px;}
.y2f{bottom:785.878819px;}
.yeb{bottom:790.200476px;}
.y88{bottom:790.568735px;}
.y6c{bottom:794.160454px;}
.yd6{bottom:806.046741px;}
.ye9{bottom:807.126386px;}
.ye8{bottom:810.365305px;}
.yb2{bottom:810.542866px;}
.yb{bottom:811.976952px;}
.y4f{bottom:814.147479px;}
.y2e{bottom:817.558341px;}
.yc6{bottom:822.416182px;}
.y11b{bottom:826.020834px;}
.ye3{bottom:829.981194px;}
.y87{bottom:834.302468px;}
.y6b{bottom:837.907120px;}
.yb1{bottom:842.403207px;}
.ya{bottom:843.837332px;}
.y4e{bottom:846.007858px;}
.y2d{bottom:849.418720px;}
.ye7{bottom:850.144198px;}
.y11a{bottom:857.881213px;}
.yc5{bottom:866.162848px;}
.y6a{bottom:869.767500px;}
.ye6{bottom:870.482271px;}
.yb0{bottom:874.263586px;}
.y9{bottom:875.697711px;}
.y4d{bottom:877.868238px;}
.y2c{bottom:881.279100px;}
.y119{bottom:889.741592px;}
.ye5{bottom:890.105418px;}
.y69{bottom:901.627879px;}
.yef{bottom:907.022200px;}
.y8{bottom:907.558090px;}
.y4c{bottom:909.715685px;}
.ye4{bottom:910.261120px;}
.y2b{bottom:913.139440px;}
.yaf{bottom:917.997320px;}
.y9b{bottom:921.601972px;}
.yee{bottom:930.606495px;}
.y68{bottom:933.307362px;}
.y7{bottom:939.418450px;}
.y86{bottom:941.576065px;}
.y2a{bottom:944.999839px;}
.ye1{bottom:948.245461px;}
.y4b{bottom:953.462332px;}
.yae{bottom:961.743967px;}
.y67{bottom:965.167741px;}
.ye0{bottom:969.663159px;}
.y6{bottom:971.278830px;}
.y85{bottom:973.436444px;}
.y29{bottom:976.860199px;}
.yde{bottom:983.523393px;}
.y4a{bottom:985.317916px;}
.y66{bottom:997.194117px;}
.y84{bottom:1005.298021px;}
.y28{bottom:1008.901209px;}
.y49{bottom:1017.174221px;}
.y65{bottom:1029.056445px;}
.y27{bottom:1040.761835px;}
.y83{bottom:1049.043470px;}
.y2{bottom:1054.256726px;}
.y48{bottom:1060.916805px;}
.y26{bottom:1072.622215px;}
.y1{bottom:1080.361357px;}
.y82{bottom:1080.903830px;}
.y47{bottom:1092.777184px;}
.y25{bottom:1104.301707px;}
.yc4{bottom:1112.764210px;}
.y46{bottom:1124.637564px;}
.y24{bottom:1136.162077px;}
.y45{bottom:1156.497944px;}
.y4{bottom:1161.365854px;}
.y23{bottom:1168.022456px;}
.y22{bottom:1199.882831px;}
.y3{bottom:1204.028485px;}
.hb{height:16.194598px;}
.h9{height:16.201900px;}
.hf{height:16.559297px;}
.hd{height:16.559341px;}
.he{height:16.563883px;}
.h5{height:40.013280px;}
.hc{height:53.573451px;}
.ha{height:54.069501px;}
.h2{height:56.075632px;}
.h3{height:59.977318px;}
.h8{height:63.704409px;}
.h6{height:95.555283px;}
.h7{height:96.206278px;}
.h4{height:125.979426px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w7{width:65.331829px;}
.wb{width:66.957678px;}
.wa{width:72.182649px;}
.w5{width:83.883610px;}
.w4{width:107.642941px;}
.w6{width:166.856209px;}
.w9{width:174.776613px;}
.w2{width:198.179460px;}
.w8{width:234.716662px;}
.w3{width:282.779789px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:74.159998px;}
.x5{left:76.136735px;}
.x9{left:95.400241px;}
.x6{left:97.376988px;}
.xb{left:100.446851px;}
.x8{left:107.454473px;}
.x7{left:109.444133px;}
.xc{left:140.219239px;}
.xd{left:170.458992px;}
.x12{left:178.738663px;}
.xf{left:180.175751px;}
.x19{left:186.296138px;}
.x18{left:193.678533px;}
.x1c{left:198.179471px;}
.x16{left:199.798931px;}
.x1{left:206.099181px;}
.x1a{left:207.181326px;}
.x2{left:288.890441px;}
.x13{left:305.275309px;}
.x10{left:347.213452px;}
.xe{left:397.438568px;}
.x14{left:414.720093px;}
.x3{left:452.874919px;}
.x15{left:486.539824px;}
.x11{left:515.878839px;}
.x17{left:649.073837px;}
.x1b{left:654.298808px;}
.x4{left:837.361833px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws7f{word-spacing:-94.720489pt;}
.wse{word-spacing:-94.079547pt;}
.ws27{word-spacing:-78.773014pt;}
.ws1{word-spacing:-78.720531pt;}
.ws3c{word-spacing:-78.523286pt;}
.ws3b{word-spacing:-78.428565pt;}
.ws87{word-spacing:-78.333845pt;}
.ws3d{word-spacing:-77.803786pt;}
.ws88{word-spacing:-77.794510pt;}
.ws17{word-spacing:-77.713733pt;}
.wsb4{word-spacing:-77.615627pt;}
.ws12{word-spacing:-77.576081pt;}
.ws64{word-spacing:-77.549098pt;}
.wsa{word-spacing:-77.481360pt;}
.ws7b{word-spacing:-77.386640pt;}
.ws7a{word-spacing:-77.319001pt;}
.ws6d{word-spacing:-77.166530pt;}
.ws14{word-spacing:-77.051149pt;}
.ws84{word-spacing:-77.043833pt;}
.ws8a{word-spacing:-77.032071pt;}
.ws9{word-spacing:-76.957070pt;}
.ws81{word-spacing:-76.955915pt;}
.ws73{word-spacing:-76.898662pt;}
.ws25{word-spacing:-76.862990pt;}
.ws8e{word-spacing:-76.768911pt;}
.ws4a{word-spacing:-76.674831pt;}
.ws6c{word-spacing:-76.628876pt;}
.ws49{word-spacing:-76.534156pt;}
.ws7e{word-spacing:-76.459052pt;}
.ws86{word-spacing:-76.442600pt;}
.ws2e{word-spacing:-76.439435pt;}
.ws6b{word-spacing:-76.433428pt;}
.ws83{word-spacing:-76.415400pt;}
.ws5e{word-spacing:-76.412809pt;}
.ws76{word-spacing:-76.400714pt;}
.ws3{word-spacing:-76.298513pt;}
.wsa8{word-spacing:-76.236377pt;}
.ws1a{word-spacing:-76.110354pt;}
.ws19{word-spacing:-76.016274pt;}
.ws3a{word-spacing:-75.922195pt;}
.wsaf{word-spacing:-75.734036pt;}
.wsb2{word-spacing:-75.623048pt;}
.ws66{word-spacing:-75.338604pt;}
.ws28{word-spacing:-75.169558pt;}
.ws5c{word-spacing:-75.075479pt;}
.ws5{word-spacing:-74.981399pt;}
.wsac{word-spacing:-74.793240pt;}
.ws23{word-spacing:-74.734466pt;}
.ws65{word-spacing:-74.639746pt;}
.wsf{word-spacing:-74.228763pt;}
.ws55{word-spacing:-74.134683pt;}
.ws37{word-spacing:-74.040604pt;}
.ws95{word-spacing:-73.417983pt;}
.ws7c{word-spacing:-73.287967pt;}
.ws51{word-spacing:-73.193888pt;}
.ws8b{word-spacing:-73.099808pt;}
.wsb9{word-spacing:-73.035537pt;}
.ws7d{word-spacing:-72.911649pt;}
.ws6e{word-spacing:-72.840056pt;}
.wsb7{word-spacing:-72.347172pt;}
.ws4c{word-spacing:-72.253092pt;}
.wsad{word-spacing:-71.621352pt;}
.ws33{word-spacing:-71.406376pt;}
.wsbb{word-spacing:-71.312297pt;}
.ws47{word-spacing:-71.218217pt;}
.wsa1{word-spacing:-70.945647pt;}
.ws26{word-spacing:-70.465581pt;}
.ws91{word-spacing:-70.371501pt;}
.ws32{word-spacing:-70.277422pt;}
.wsb8{word-spacing:-69.998442pt;}
.ws48{word-spacing:-69.524786pt;}
.ws4e{word-spacing:-69.430706pt;}
.ws74{word-spacing:-69.336626pt;}
.wsb0{word-spacing:-69.148467pt;}
.ws96{word-spacing:-69.019890pt;}
.ws21{word-spacing:-68.583990pt;}
.ws5d{word-spacing:-68.395831pt;}
.ws59{word-spacing:-67.914591pt;}
.ws24{word-spacing:-67.643195pt;}
.ws43{word-spacing:-67.549115pt;}
.ws31{word-spacing:-67.455036pt;}
.wsae{word-spacing:-66.967386pt;}
.wsb{word-spacing:-66.702399pt;}
.wsa2{word-spacing:-66.514240pt;}
.ws60{word-spacing:-66.020181pt;}
.ws13{word-spacing:-65.761604pt;}
.ws9b{word-spacing:-65.573445pt;}
.ws42{word-spacing:-65.072976pt;}
.ws61{word-spacing:-64.820808pt;}
.ws62{word-spacing:-64.726729pt;}
.ws8{word-spacing:-64.632649pt;}
.ws9c{word-spacing:-63.785933pt;}
.wsb3{word-spacing:-63.691854pt;}
.ws36{word-spacing:-63.273287pt;}
.ws52{word-spacing:-63.178566pt;}
.ws79{word-spacing:-62.939217pt;}
.ws40{word-spacing:-62.845138pt;}
.ws53{word-spacing:-62.751058pt;}
.ws1d{word-spacing:-62.720572pt;}
.wsb1{word-spacing:-62.656979pt;}
.ws8d{word-spacing:-62.231362pt;}
.ws18{word-spacing:-61.998422pt;}
.ws38{word-spacing:-61.810263pt;}
.ws56{word-spacing:-61.057626pt;}
.ws2a{word-spacing:-60.963547pt;}
.wsba{word-spacing:-60.869467pt;}
.ws29{word-spacing:-60.022751pt;}
.ws63{word-spacing:-59.176035pt;}
.wsab{word-spacing:-59.081956pt;}
.ws2f{word-spacing:-58.987876pt;}
.wsc{word-spacing:-58.235240pt;}
.wsa4{word-spacing:-58.141160pt;}
.ws30{word-spacing:-57.294444pt;}
.ws41{word-spacing:-57.106285pt;}
.wsa9{word-spacing:-56.642853pt;}
.ws0{word-spacing:-56.524453pt;}
.ws4f{word-spacing:-56.353649pt;}
.wsa3{word-spacing:-56.259569pt;}
.ws5f{word-spacing:-56.165490pt;}
.ws6f{word-spacing:-55.977331pt;}
.ws1b{word-spacing:-55.695648pt;}
.ws5a{word-spacing:-55.224694pt;}
.wsd{word-spacing:-54.377978pt;}
.ws15{word-spacing:-53.531262pt;}
.ws39{word-spacing:-53.437183pt;}
.ws6a{word-spacing:-53.343103pt;}
.wsb5{word-spacing:-52.496387pt;}
.ws78{word-spacing:-52.402308pt;}
.wsa0{word-spacing:-51.649672pt;}
.ws4{word-spacing:-51.555592pt;}
.ws5b{word-spacing:-51.461512pt;}
.ws70{word-spacing:-50.864903pt;}
.ws72{word-spacing:-50.614797pt;}
.wsb6{word-spacing:-50.332558pt;}
.ws1f{word-spacing:-49.768081pt;}
.ws85{word-spacing:-48.023288pt;}
.ws2d{word-spacing:-47.698331pt;}
.ws2{word-spacing:-47.360000pt;}
.ws75{word-spacing:-46.757535pt;}
.ws90{word-spacing:-46.223599pt;}
.ws54{word-spacing:-46.004899pt;}
.ws89{word-spacing:-45.910819pt;}
.ws58{word-spacing:-44.875944pt;}
.ws94{word-spacing:-44.234469pt;}
.ws22{word-spacing:-44.123308pt;}
.wsa5{word-spacing:-43.935149pt;}
.ws71{word-spacing:-43.192087pt;}
.ws9a{word-spacing:-43.182512pt;}
.ws69{word-spacing:-42.994353pt;}
.ws1c{word-spacing:-42.587268pt;}
.ws97{word-spacing:-42.340059pt;}
.ws57{word-spacing:-41.206842pt;}
.ws77{word-spacing:-39.419330pt;}
.ws82{word-spacing:-39.231171pt;}
.ws2c{word-spacing:-38.478535pt;}
.ws10{word-spacing:-38.384455pt;}
.ws99{word-spacing:-38.290376pt;}
.ws4b{word-spacing:-37.537739pt;}
.ws67{word-spacing:-36.502864pt;}
.ws2b{word-spacing:-36.408785pt;}
.ws93{word-spacing:-35.656148pt;}
.ws11{word-spacing:-34.621273pt;}
.ws98{word-spacing:-33.864874pt;}
.ws4d{word-spacing:-33.815215pt;}
.ws35{word-spacing:-33.774558pt;}
.ws45{word-spacing:-33.680478pt;}
.ws16{word-spacing:-32.739683pt;}
.ws34{word-spacing:-32.645603pt;}
.ws44{word-spacing:-30.952171pt;}
.ws92{word-spacing:-30.858092pt;}
.ws3f{word-spacing:-27.941626pt;}
.ws68{word-spacing:-26.048135pt;}
.ws8c{word-spacing:-25.307398pt;}
.wsaa{word-spacing:-25.301570pt;}
.ws3e{word-spacing:-25.119239pt;}
.ws46{word-spacing:-24.178444pt;}
.ws9e{word-spacing:-21.450137pt;}
.ws6{word-spacing:-21.167898pt;}
.ws9d{word-spacing:-16.765527pt;}
.ws80{word-spacing:-15.805364pt;}
.wsa7{word-spacing:-14.958648pt;}
.wsa6{word-spacing:-14.714115pt;}
.ws8f{word-spacing:-14.471461pt;}
.ws50{word-spacing:-10.066512pt;}
.ws20{word-spacing:-8.279000pt;}
.ws9f{word-spacing:-7.055966pt;}
.ws7{word-spacing:-0.752636pt;}
.ws1e{word-spacing:0.000000pt;}
._3{margin-left:-8.186935pt;}
._0{margin-left:-6.991957pt;}
._7{margin-left:-6.058672pt;}
._5{margin-left:-4.864547pt;}
._3f{margin-left:-3.889905pt;}
._17{margin-left:-2.662019pt;}
._1{margin-left:-1.251192pt;}
._4{width:1.180808pt;}
._6{width:2.871021pt;}
._2e{width:4.075828pt;}
._16{width:16.167533pt;}
._1e{width:17.100247pt;}
._2{width:18.179088pt;}
._8{width:19.260711pt;}
._b{width:20.151801pt;}
._a{width:21.158271pt;}
._2f{width:22.785781pt;}
._24{width:24.220670pt;}
._1d{width:25.382223pt;}
._18{width:26.991203pt;}
._11{width:28.623154pt;}
._31{width:29.712511pt;}
._10{width:30.655865pt;}
._f{width:32.259658pt;}
._20{width:34.215703pt;}
._1f{width:35.153522pt;}
._12{width:36.911782pt;}
._2b{width:37.998510pt;}
._35{width:38.948933pt;}
._13{width:40.601862pt;}
._9{width:41.532600pt;}
._19{width:42.584713pt;}
._34{width:44.269271pt;}
._1b{width:45.693778pt;}
._23{width:47.294724pt;}
._37{width:48.469547pt;}
._32{width:49.511286pt;}
._33{width:51.209928pt;}
._36{width:52.486760pt;}
._22{width:54.516348pt;}
._21{width:55.669050pt;}
._14{width:56.612084pt;}
._15{width:57.505575pt;}
._2d{width:58.944089pt;}
._3c{width:60.357176pt;}
._25{width:61.319389pt;}
._3d{width:62.221880pt;}
._1a{width:63.132055pt;}
._2c{width:64.250025pt;}
._2a{width:67.539488pt;}
._28{width:69.881849pt;}
._29{width:71.257191pt;}
._d{width:73.957846pt;}
._c{width:75.696500pt;}
._40{width:78.209812pt;}
._39{width:79.173143pt;}
._38{width:80.176331pt;}
._3b{width:81.688684pt;}
._30{width:83.010760pt;}
._1c{width:87.023528pt;}
._3e{width:88.006603pt;}
._e{width:91.336449pt;}
._3a{width:92.929420pt;}
._41{width:151.982166pt;}
._26{width:164.548407pt;}
._27{width:295.152000pt;}
.fs3{font-size:47.360000pt;}
.fs7{font-size:53.119548pt;}
.fs6{font-size:62.720572pt;}
.fs0{font-size:73.599548pt;}
.fs1{font-size:78.720531pt;}
.fs4{font-size:94.079547pt;}
.fs5{font-size:94.720489pt;}
.fs2{font-size:126.079465pt;}
.y0{bottom:0.000000pt;}
.yfe{bottom:2.877417pt;}
.yea{bottom:2.879040pt;}
.yf5{bottom:2.881454pt;}
.yf1{bottom:2.881493pt;}
.y102{bottom:2.885530pt;}
.ye2{bottom:3.034657pt;}
.ydf{bottom:3.041148pt;}
.y5{bottom:40.162059pt;}
.y64{bottom:76.489210pt;}
.y81{bottom:79.683287pt;}
.y44{bottom:82.884583pt;}
.y123{bottom:88.009419pt;}
.y21{bottom:89.913899pt;}
.ydd{bottom:90.248875pt;}
.yad{bottom:91.210715pt;}
.y9a{bottom:98.560638pt;}
.yd5{bottom:101.761934pt;}
.yc3{bottom:102.888847pt;}
.y63{bottom:104.805237pt;}
.y80{bottom:107.999313pt;}
.y20{bottom:108.796279pt;}
.y43{bottom:111.207759pt;}
.y122{bottom:116.325445pt;}
.ydc{bottom:118.564902pt;}
.y99{bottom:126.883884pt;}
.yac{bottom:130.073282pt;}
.y62{bottom:133.281850pt;}
.y1f{bottom:134.406100pt;}
.y7f{bottom:136.317022pt;}
.y42{bottom:139.511193pt;}
.yc2{bottom:141.592440pt;}
.y121{bottom:144.634881pt;}
.ydb{bottom:146.875127pt;}
.y98{bottom:155.192915pt;}
.yab{bottom:158.394285pt;}
.y1e{bottom:162.715848pt;}
.y41{bottom:167.847032pt;}
.y61{bottom:172.002878pt;}
.y7e{bottom:175.204175pt;}
.yc1{bottom:180.486934pt;}
.y118{bottom:184.809843pt;}
.y1d{bottom:191.045302pt;}
.y97{bottom:194.088675pt;}
.y40{bottom:196.163059pt;}
.yaa{bottom:197.282752pt;}
.y60{bottom:200.326125pt;}
.y117{bottom:202.888921pt;}
.y7d{bottom:203.527351pt;}
.y113{bottom:211.525288pt;}
.yda{bottom:213.920646pt;}
.yc0{bottom:219.203476pt;}
.y1c{bottom:219.361329pt;}
.y116{bottom:220.169650pt;}
.y3f{bottom:224.486235pt;}
.yd4{bottom:225.598778pt;}
.y5f{bottom:228.642151pt;}
.y112{bottom:229.612441pt;}
.y7c{bottom:231.850527pt;}
.y96{bottom:232.797997pt;}
.ya9{bottom:236.006443pt;}
.y115{bottom:238.248729pt;}
.yd9{bottom:242.243893pt;}
.y1b{bottom:247.684575pt;}
.y3e{bottom:252.809411pt;}
.yd3{bottom:253.921954pt;}
.y114{bottom:256.327887pt;}
.ybf{bottom:257.927167pt;}
.y7b{bottom:260.166553pt;}
.y95{bottom:261.121244pt;}
.y5e{bottom:267.365843pt;}
.yd8{bottom:270.559919pt;}
.y111{bottom:274.248895pt;}
.ya8{bottom:274.715765pt;}
.y1a{bottom:276.007751pt;}
.y3d{bottom:281.125437pt;}
.y94{bottom:289.444420pt;}
.y110{bottom:292.327974pt;}
.yd2{bottom:292.645646pt;}
.y5d{bottom:295.689019pt;}
.ybe{bottom:296.801562pt;}
.y7a{bottom:298.883095pt;}
.ya7{bottom:303.039012pt;}
.y19{bottom:304.323778pt;}
.y3c{bottom:309.448684pt;}
.y10f{bottom:309.608702pt;}
.yd1{bottom:320.968892pt;}
.y5c{bottom:324.012195pt;}
.y79{bottom:327.199122pt;}
.y10e{bottom:327.687781pt;}
.y93{bottom:328.326035pt;}
.ya6{bottom:331.362188pt;}
.y18{bottom:332.647024pt;}
.ybd{bottom:335.690327pt;}
.y106{bottom:336.328185pt;}
.y3b{bottom:337.764710pt;}
.y10d{bottom:345.762823pt;}
.y105{bottom:354.407264pt;}
.y78{bottom:355.522298pt;}
.y92{bottom:356.649211pt;}
.ya5{bottom:359.678214pt;}
.y10c{bottom:360.166135pt;}
.y17{bottom:360.963051pt;}
.y5b{bottom:362.886660pt;}
.ybc{bottom:364.006353pt;}
.y3a{bottom:366.087886pt;}
.y104{bottom:372.486343pt;}
.y10b{bottom:381.122631pt;}
.y77{bottom:383.842539pt;}
.y91{bottom:384.962662pt;}
.yd0{bottom:388.149635pt;}
.y16{bottom:389.286227pt;}
.y5a{bottom:391.192006pt;}
.ybb{bottom:392.312129pt;}
.ya4{bottom:398.555939pt;}
.y10a{bottom:399.209862pt;}
.y39{bottom:404.952892pt;}
.y76{bottom:412.162973pt;}
.ycf{bottom:416.320291pt;}
.y109{bottom:416.490591pt;}
.y15{bottom:417.590761pt;}
.y59{bottom:419.524461pt;}
.y90{bottom:423.842576pt;}
.ya3{bottom:426.885879pt;}
.yba{bottom:431.043197pt;}
.y108{bottom:431.688216pt;}
.y38{bottom:433.282654pt;}
.y107{bottom:434.565633pt;}
.y75{bottom:440.483345pt;}
.yce{bottom:444.640663pt;}
.y14{bottom:445.926901pt;}
.y58{bottom:447.844763pt;}
.yd7{bottom:451.048933pt;}
.y103{bottom:452.644712pt;}
.ya2{bottom:455.206252pt;}
.y37{bottom:461.602956pt;}
.y8f{bottom:462.567670pt;}
.y101{bottom:467.684266pt;}
.y120{bottom:468.803647pt;}
.yb9{bottom:469.917663pt;}
.ycd{bottom:472.960965pt;}
.y13{bottom:474.247204pt;}
.y57{bottom:476.165136pt;}
.y74{bottom:479.357740pt;}
.ya1{bottom:483.526554pt;}
.y100{bottom:488.644838pt;}
.y36{bottom:489.923328pt;}
.y8e{bottom:490.887972pt;}
.y11f{bottom:497.124020pt;}
.ycc{bottom:501.281338pt;}
.y12{bottom:502.567576pt;}
.yf8{bottom:505.925527pt;}
.y73{bottom:507.678112pt;}
.yb8{bottom:508.803553pt;}
.y56{bottom:515.039531pt;}
.y35{bottom:518.243631pt;}
.y8d{bottom:519.208344pt;}
.yff{bottom:521.127228pt;}
.ya0{bottom:522.240222pt;}
.yf7{bottom:524.004645pt;}
.y11e{bottom:525.444322pt;}
.y72{bottom:535.998415pt;}
.yb7{bottom:537.123891pt;}
.yfd{bottom:539.206307pt;}
.ycb{bottom:540.167228pt;}
.y11{bottom:541.441971pt;}
.yf3{bottom:542.083724pt;}
.y55{bottom:543.359868pt;}
.y8c{bottom:547.367884pt;}
.y11d{bottom:553.764659pt;}
.y34{bottom:556.807997pt;}
.yf6{bottom:559.364453pt;}
.y9f{bottom:561.126112pt;}
.y71{bottom:564.318752pt;}
.yca{bottom:568.487566pt;}
.y10{bottom:569.762308pt;}
.y54{bottom:571.680205pt;}
.yf4{bottom:574.562078pt;}
.yb6{bottom:575.688222pt;}
.yfc{bottom:577.443532pt;}
.y11c{bottom:582.084996pt;}
.y33{bottom:585.128334pt;}
.y8b{bottom:586.242315pt;}
.y9e{bottom:589.446450pt;}
.y70{bottom:592.639089pt;}
.yfb{bottom:594.886368pt;}
.yc9{bottom:596.807903pt;}
.yf{bottom:598.082646pt;}
.y53{bottom:600.000543pt;}
.yb5{bottom:603.997064pt;}
.yfa{bottom:612.803339pt;}
.y32{bottom:613.437176pt;}
.y9d{bottom:617.766787pt;}
.y6f{bottom:620.959427pt;}
.y8a{bottom:625.115601pt;}
.ye{bottom:626.402983pt;}
.y52{bottom:628.318417pt;}
.yf9{bottom:630.886495pt;}
.yc8{bottom:635.521905pt;}
.y31{bottom:641.915999pt;}
.yb4{bottom:642.875711pt;}
.yf2{bottom:648.965574pt;}
.y6e{bottom:649.281344pt;}
.yd{bottom:654.715762pt;}
.y9c{bottom:656.641182pt;}
.y89{bottom:663.841873pt;}
.yf0{bottom:664.001091pt;}
.yed{bottom:666.882584pt;}
.y51{bottom:667.045973pt;}
.y30{bottom:670.238648pt;}
.yc7{bottom:674.407427pt;}
.y6d{bottom:677.600066pt;}
.yb3{bottom:681.757420pt;}
.yec{bottom:684.325381pt;}
.yc{bottom:693.436953pt;}
.y50{bottom:695.366311pt;}
.y2f{bottom:698.558950pt;}
.yeb{bottom:702.400423pt;}
.y88{bottom:702.727764pt;}
.y6c{bottom:705.920404pt;}
.yd6{bottom:716.485992pt;}
.ye9{bottom:717.445676pt;}
.ye8{bottom:720.324716pt;}
.yb2{bottom:720.482548pt;}
.yb{bottom:721.757291pt;}
.y4f{bottom:723.686648pt;}
.y2e{bottom:726.718525pt;}
.yc6{bottom:731.036606pt;}
.y11b{bottom:734.240741pt;}
.ye3{bottom:737.761062pt;}
.y87{bottom:741.602194pt;}
.y6b{bottom:744.806329pt;}
.yb1{bottom:748.802850pt;}
.ya{bottom:750.077628pt;}
.y4e{bottom:752.006985pt;}
.y2d{bottom:755.038863pt;}
.ye7{bottom:755.683732pt;}
.y11a{bottom:762.561078pt;}
.yc5{bottom:769.922532pt;}
.y6a{bottom:773.126667pt;}
.ye6{bottom:773.762019pt;}
.yb0{bottom:777.123188pt;}
.y9{bottom:778.397965pt;}
.y4d{bottom:780.327323pt;}
.y2c{bottom:783.359200pt;}
.y119{bottom:790.881416pt;}
.ye5{bottom:791.204816pt;}
.y69{bottom:801.447004pt;}
.yef{bottom:806.241956pt;}
.y8{bottom:806.718303pt;}
.y4c{bottom:808.636164pt;}
.ye4{bottom:809.120995pt;}
.y2b{bottom:811.679502pt;}
.yaf{bottom:815.997618pt;}
.y9b{bottom:819.201753pt;}
.yee{bottom:827.205773pt;}
.y68{bottom:829.606544pt;}
.y7{bottom:835.038622pt;}
.y86{bottom:836.956502pt;}
.y2a{bottom:839.999857pt;}
.ye1{bottom:842.884854pt;}
.y4b{bottom:847.522073pt;}
.yae{bottom:854.883526pt;}
.y67{bottom:857.926881pt;}
.ye0{bottom:861.922808pt;}
.y6{bottom:863.358960pt;}
.y85{bottom:865.276839pt;}
.y29{bottom:868.320177pt;}
.yde{bottom:874.243016pt;}
.y4a{bottom:875.838148pt;}
.y66{bottom:886.394771pt;}
.y84{bottom:893.598241pt;}
.y28{bottom:896.801075pt;}
.y49{bottom:904.154864pt;}
.y65{bottom:914.716840pt;}
.y27{bottom:925.121631pt;}
.y83{bottom:932.483085pt;}
.y2{bottom:937.117090pt;}
.y48{bottom:943.037160pt;}
.y26{bottom:953.441969pt;}
.y1{bottom:960.321206pt;}
.y82{bottom:960.803404pt;}
.y47{bottom:971.357497pt;}
.y25{bottom:981.601517pt;}
.yc4{bottom:989.123742pt;}
.y46{bottom:999.677835pt;}
.y24{bottom:1009.921846pt;}
.y45{bottom:1027.998172pt;}
.y4{bottom:1032.325204pt;}
.y23{bottom:1038.242183pt;}
.y22{bottom:1066.562516pt;}
.y3{bottom:1070.247543pt;}
.hb{height:14.395198pt;}
.h9{height:14.401689pt;}
.hf{height:14.719375pt;}
.hd{height:14.719414pt;}
.he{height:14.723451pt;}
.h5{height:35.567360pt;}
.hc{height:47.620845pt;}
.ha{height:48.061779pt;}
.h2{height:49.845006pt;}
.h3{height:53.313172pt;}
.h8{height:56.626142pt;}
.h6{height:84.938029pt;}
.h7{height:85.516692pt;}
.h4{height:111.981712pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w7{width:58.072737pt;}
.wb{width:59.517936pt;}
.wa{width:64.162354pt;}
.w5{width:74.563209pt;}
.w4{width:95.682614pt;}
.w6{width:148.316630pt;}
.w9{width:155.356989pt;}
.w2{width:176.159520pt;}
.w8{width:208.637033pt;}
.w3{width:251.359813pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:65.919999pt;}
.x5{left:67.677098pt;}
.x9{left:84.800215pt;}
.x6{left:86.557323pt;}
.xb{left:89.286090pt;}
.x8{left:95.515087pt;}
.x7{left:97.283674pt;}
.xc{left:124.639324pt;}
.xd{left:151.519104pt;}
.x12{left:158.878811pt;}
.xf{left:160.156223pt;}
.x19{left:165.596567pt;}
.x18{left:172.158696pt;}
.x1c{left:176.159530pt;}
.x16{left:177.599050pt;}
.x1{left:183.199272pt;}
.x1a{left:184.161179pt;}
.x2{left:256.791503pt;}
.x13{left:271.355830pt;}
.x10{left:308.634180pt;}
.xe{left:353.278727pt;}
.x14{left:368.640083pt;}
.x3{left:402.555484pt;}
.x15{left:432.479844pt;}
.x11{left:458.558968pt;}
.x17{left:576.954522pt;}
.x1b{left:581.598940pt;}
.x4{left:744.321629pt;}
}




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