
    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_abb26cb69cbc2b6b7bbaa2a2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_188f2c1d0daf1cd9f9a09583.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_39f443defd6eeebd37e4ff78.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.966797;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_074aed0db178d6224a8285e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_b0f6fa2110555dc9f4782829.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_db90f67abf56fcd3007cb10a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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:ff7;src:url('chunks/assets/font_5415cbf1a6ea568bb62c0f98.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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:ff8;src:url('chunks/assets/font_a4c882c5206126ef6c6f570d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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:ff9;src:url('chunks/assets/font_d6d9f87d70c6a0faec79b882.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909668;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:ffa;src:url('chunks/assets/font_a35a577736dc4adce31ef7ec.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.766602;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:ffb;src:url('chunks/assets/font_71a1e88c896ad93087fd1a21.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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:ffc;src:url('chunks/assets/font_4001d1e31116bfac7874a834.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172852;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:ffd;src:url('chunks/assets/font_6c85ad136bdb43b3d55d5fa7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.075684;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;}
.v1{vertical-align:52.680000px;}
.v2{vertical-align:61.800000px;}
.ls9{letter-spacing:-1.614000px;}
.lsa{letter-spacing:-1.464000px;}
.ls25{letter-spacing:-0.930000px;}
.ls2e{letter-spacing:-0.230400px;}
.ls3{letter-spacing:-0.119400px;}
.ls4{letter-spacing:-0.027000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.009000px;}
.ls1a{letter-spacing:0.141600px;}
.ls6{letter-spacing:0.567900px;}
.ls8{letter-spacing:0.666000px;}
.ls1{letter-spacing:0.690000px;}
.ls14{letter-spacing:0.744000px;}
.ls7{letter-spacing:1.325100px;}
.lsb{letter-spacing:1.524000px;}
.ls23{letter-spacing:1.716000px;}
.ls24{letter-spacing:1.938000px;}
.ls22{letter-spacing:2.850000px;}
.ls28{letter-spacing:2.868000px;}
.ls2a{letter-spacing:32.418600px;}
.ls2d{letter-spacing:32.598600px;}
.ls2b{letter-spacing:32.613300px;}
.ls20{letter-spacing:83.122500px;}
.ls5{letter-spacing:106.187100px;}
.lsd{letter-spacing:109.597500px;}
.lse{letter-spacing:109.650000px;}
.ls19{letter-spacing:109.747500px;}
.ls1b{letter-spacing:109.897500px;}
.ls12{letter-spacing:109.950000px;}
.ls29{letter-spacing:112.982100px;}
.ls2c{letter-spacing:113.028000px;}
.ls1e{letter-spacing:113.072100px;}
.ls1d{letter-spacing:113.118000px;}
.ls18{letter-spacing:118.897500px;}
.ls17{letter-spacing:118.950000px;}
.ls15{letter-spacing:122.042100px;}
.ls26{letter-spacing:122.072100px;}
.ls16{letter-spacing:122.088000px;}
.ls21{letter-spacing:134.414100px;}
.lsc{letter-spacing:136.747500px;}
.ls13{letter-spacing:140.042100px;}
.ls27{letter-spacing:194.042100px;}
.lsf{letter-spacing:194.072100px;}
.ls11{letter-spacing:194.102100px;}
.ls10{letter-spacing:194.118000px;}
.ls1f{letter-spacing:194.222100px;}
.ls1c{letter-spacing:194.268000px;}
.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:-67.650000px;}
.ws0{word-spacing:-48.883800px;}
.ws15{word-spacing:-43.798800px;}
.ws2{word-spacing:-43.764900px;}
.ws30{word-spacing:-40.564800px;}
.ws2d{word-spacing:-37.696800px;}
.ws2c{word-spacing:-33.818700px;}
.ws1a{word-spacing:-33.355800px;}
.ws36{word-spacing:-32.611800px;}
.ws1b{word-spacing:-32.577900px;}
.wse{word-spacing:-27.637800px;}
.ws34{word-spacing:-27.526800px;}
.wsf{word-spacing:-26.978700px;}
.ws5{word-spacing:-26.312700px;}
.ws7{word-spacing:-26.271000px;}
.ws14{word-spacing:-24.725400px;}
.ws17{word-spacing:-24.441900px;}
.ws33{word-spacing:-24.211500px;}
.ws4{word-spacing:-23.810700px;}
.ws8{word-spacing:-23.769000px;}
.ws9{word-spacing:-22.559700px;}
.wsa{word-spacing:-22.440300px;}
.ws3{word-spacing:-20.057700px;}
.ws6{word-spacing:-20.016000px;}
.ws11{word-spacing:-18.806700px;}
.ws16{word-spacing:-17.555700px;}
.wsc{word-spacing:-17.342700px;}
.wsb{word-spacing:-17.192700px;}
.ws22{word-spacing:-6.799050px;}
.ws10{word-spacing:-6.583800px;}
.ws1e{word-spacing:-6.553500px;}
.ws2a{word-spacing:-6.220800px;}
.ws18{word-spacing:-1.897800px;}
.ws24{word-spacing:-1.703850px;}
.ws37{word-spacing:-1.698000px;}
.ws31{word-spacing:-1.241400px;}
.ws25{word-spacing:-1.197750px;}
.ws23{word-spacing:-1.017750px;}
.ws27{word-spacing:-0.930000px;}
.ws1d{word-spacing:-0.835950px;}
.ws2b{word-spacing:-0.679650px;}
.ws29{word-spacing:-0.578250px;}
.ws35{word-spacing:-0.438600px;}
.ws2e{word-spacing:-0.430800px;}
.ws13{word-spacing:-0.085650px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.337350px;}
.ws21{word-spacing:0.766650px;}
.ws1f{word-spacing:1.305900px;}
.ws2f{word-spacing:1.477950px;}
.ws32{word-spacing:1.504800px;}
.ws20{word-spacing:1.725150px;}
.ws19{word-spacing:1.790550px;}
.ws12{word-spacing:2.210400px;}
.ws28{word-spacing:3.021600px;}
.ws26{word-spacing:31.469850px;}
._b{margin-left:-6.044250px;}
._5{margin-left:-4.554000px;}
._1{margin-left:-2.811900px;}
._3{margin-left:-1.081500px;}
._0{width:1.081500px;}
._4{width:2.607300px;}
._2{width:3.677100px;}
._9{width:4.832100px;}
._6{width:23.781300px;}
._11{width:24.962850px;}
._13{width:26.567850px;}
._8{width:30.814200px;}
._e{width:34.890900px;}
._c{width:39.109200px;}
._d{width:41.946600px;}
._10{width:43.041150px;}
._14{width:46.037700px;}
._7{width:51.152400px;}
._12{width:58.911750px;}
._a{width:326.830050px;}
._f{width:2266.323750px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(31,35,40);}
.fc2{color:rgb(250,251,250);}
.fc4{color:rgb(64,64,64);}
.fc3{color:rgb(0,184,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs12{font-size:63.150000px;}
.fs10{font-size:67.650000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fsd{font-size:81.000000px;}
.fsc{font-size:81.150000px;}
.fsb{font-size:85.500000px;}
.fs6{font-size:85.650000px;}
.fs17{font-size:90.000000px;}
.fs16{font-size:90.150000px;}
.fs9{font-size:94.500000px;}
.fs7{font-size:94.650000px;}
.fs11{font-size:108.150000px;}
.fs1{font-size:112.650000px;}
.fse{font-size:121.650000px;}
.fsf{font-size:121.800000px;}
.fsa{font-size:144.150000px;}
.fs3{font-size:144.300000px;}
.fs15{font-size:148.650000px;}
.fs14{font-size:166.650000px;}
.fs13{font-size:166.800000px;}
.fs2{font-size:193.650000px;}
.fs4{font-size:193.800000px;}
.fs0{font-size:216.300000px;}
.fs18{font-size:414.600000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:7.500000px;}
.y53{bottom:9.862500px;}
.yb{bottom:21.675000px;}
.y3e{bottom:22.912500px;}
.y6{bottom:29.100000px;}
.y6e{bottom:44.325000px;}
.ybe{bottom:44.812500px;}
.yc2{bottom:58.687500px;}
.y3d{bottom:58.950000px;}
.y17{bottom:62.437500px;}
.y65{bottom:65.850000px;}
.y11{bottom:66.937500px;}
.y5{bottom:71.925000px;}
.ya{bottom:75.750000px;}
.y6d{bottom:76.987500px;}
.y43{bottom:77.737500px;}
.yd3{bottom:91.387500px;}
.y9a{bottom:92.287500px;}
.y8e{bottom:95.512500px;}
.y29{bottom:97.162500px;}
.ye3{bottom:98.137500px;}
.y84{bottom:98.962500px;}
.y76{bottom:99.525000px;}
.y23{bottom:101.700000px;}
.ybd{bottom:104.325000px;}
.yca{bottom:106.012500px;}
.ya8{bottom:106.275000px;}
.yda{bottom:107.137500px;}
.y52{bottom:109.875000px;}
.yb1{bottom:120.000000px;}
.yd2{bottom:122.925000px;}
.yd4{bottom:126.750000px;}
.y9{bottom:129.825000px;}
.y12{bottom:130.012500px;}
.ye2{bottom:130.800000px;}
.y3c{bottom:131.062500px;}
.y75{bottom:132.187500px;}
.ya7{bottom:135.562500px;}
.y63{bottom:138.000000px;}
.y51{bottom:139.162500px;}
.y8d{bottom:141.712500px;}
.y83{bottom:145.162500px;}
.ya0{bottom:145.537500px;}
.ye5{bottom:149.587500px;}
.yc9{bottom:153.345000px;}
.yd1{bottom:155.595000px;}
.yc1{bottom:164.580000px;}
.y24{bottom:164.775000px;}
.y74{bottom:164.850000px;}
.y3b{bottom:167.100000px;}
.y50{bottom:167.325000px;}
.ybc{bottom:169.680000px;}
.y9f{bottom:172.575000px;}
.ya6{bottom:176.130000px;}
.y8c{bottom:181.155000px;}
.y8{bottom:183.900000px;}
.y99{bottom:190.575000px;}
.y82{bottom:191.355000px;}
.y62{bottom:192.075000px;}
.y4f{bottom:196.650000px;}
.yc8{bottom:199.530000px;}
.y9e{bottom:199.605000px;}
.yb0{bottom:199.995000px;}
.yb6{bottom:202.905000px;}
.y19{bottom:204.855000px;}
.yd9{bottom:215.295000px;}
.y6c{bottom:218.925000px;}
.ye1{bottom:224.280000px;}
.y4e{bottom:225.945000px;}
.y8b{bottom:227.325000px;}
.y18{bottom:230.775000px;}
.ybb{bottom:235.005000px;}
.y81{bottom:237.525000px;}
.y2b{bottom:239.595000px;}
.yc7{bottom:245.700000px;}
.y61{bottom:246.150000px;}
.yaf{bottom:248.400000px;}
.y4d{bottom:254.100000px;}
.y2a{bottom:265.500000px;}
.y4{bottom:269.625000px;}
.yc0{bottom:270.480000px;}
.ye0{bottom:271.620000px;}
.yae{bottom:273.195000px;}
.ye{bottom:278.445000px;}
.y42{bottom:287.850000px;}
.y36{bottom:288.945000px;}
.yc6{bottom:291.900000px;}
.y5b{bottom:292.005000px;}
.ya5{bottom:297.795000px;}
.yd0{bottom:298.650000px;}
.y7c{bottom:299.775000px;}
.y60{bottom:300.225000px;}
.yba{bottom:301.470000px;}
.y4c{bottom:311.550000px;}
.y41{bottom:317.130000px;}
.ydf{bottom:317.820000px;}
.y35{bottom:318.225000px;}
.ye4{bottom:318.570000px;}
.y5a{bottom:321.300000px;}
.yad{bottom:321.645000px;}
.yd8{bottom:322.320000px;}
.y8a{bottom:327.600000px;}
.y3{bottom:328.200000px;}
.y67{bottom:329.220000px;}
.y80{bottom:331.050000px;}
.yd{bottom:335.880000px;}
.y38{bottom:336.255000px;}
.yc5{bottom:338.100000px;}
.y32{bottom:338.205000px;}
.y4b{bottom:340.845000px;}
.y39{bottom:341.025000px;}
.y92{bottom:343.350000px;}
.y40{bottom:346.425000px;}
.y34{bottom:347.505000px;}
.y59{bottom:350.595000px;}
.y5f{bottom:354.300000px;}
.y7b{bottom:359.475000px;}
.y37{bottom:359.880000px;}
.yd7{bottom:361.725000px;}
.y31{bottom:361.875000px;}
.y6b{bottom:361.995000px;}
.yde{bottom:364.020000px;}
.yb9{bottom:366.825000px;}
.yac{bottom:370.080000px;}
.y4a{bottom:370.125000px;}
.y98{bottom:373.200000px;}
.y1b{bottom:373.380000px;}
.y89{bottom:373.800000px;}
.y1d{bottom:374.475000px;}
.y3f{bottom:375.720000px;}
.y10{bottom:376.245000px;}
.ybf{bottom:376.380000px;}
.y33{bottom:376.800000px;}
.y58{bottom:378.750000px;}
.y91{bottom:381.675000px;}
.yb5{bottom:384.255000px;}
.y2{bottom:386.775000px;}
.y14{bottom:386.820000px;}
.y15{bottom:391.650000px;}
.yc{bottom:394.470000px;}
.y1a{bottom:394.800000px;}
.y1c{bottom:395.895000px;}
.yf{bottom:397.650000px;}
.y49{bottom:398.280000px;}
.y2d{bottom:408.150000px;}
.y5e{bottom:408.375000px;}
.y2f{bottom:409.245000px;}
.ydd{bottom:410.175000px;}
.y22{bottom:411.000000px;}
.yb8{bottom:416.400000px;}
.y97{bottom:417.150000px;}
.ya4{bottom:417.225000px;}
.yab{bottom:418.530000px;}
.y7a{bottom:420.345000px;}
.y88{bottom:421.095000px;}
.y26{bottom:421.575000px;}
.y7f{bottom:423.405000px;}
.y27{bottom:426.405000px;}
.y48{bottom:427.575000px;}
.yb4{bottom:429.345000px;}
.y2c{bottom:429.525000px;}
.y2e{bottom:430.620000px;}
.yc4{bottom:431.595000px;}
.y21{bottom:432.375000px;}
.y90{bottom:435.750000px;}
.y57{bottom:436.200000px;}
.ycf{bottom:439.470000px;}
.y1{bottom:445.350000px;}
.y96{bottom:454.320000px;}
.y47{bottom:455.745000px;}
.y6a{bottom:456.630000px;}
.y1e{bottom:457.125000px;}
.y5d{bottom:462.450000px;}
.y56{bottom:465.495000px;}
.ya3{bottom:465.630000px;}
.y16{bottom:465.720000px;}
.y13{bottom:466.050000px;}
.yd6{bottom:469.875000px;}
.y87{bottom:475.155000px;}
.yce{bottom:476.655000px;}
.y9d{bottom:480.195000px;}
.y79{bottom:481.155000px;}
.yb3{bottom:482.295000px;}
.y46{bottom:485.025000px;}
.y69{bottom:489.300000px;}
.y8f{bottom:489.825000px;}
.y95{bottom:490.350000px;}
.y30{bottom:491.880000px;}
.y55{bottom:494.775000px;}
.y73{bottom:497.175000px;}
.y28{bottom:500.475000px;}
.y25{bottom:500.775000px;}
.ydc{bottom:504.825000px;}
.yaa{bottom:505.275000px;}
.ycd{bottom:512.700000px;}
.y45{bottom:514.320000px;}
.y5c{bottom:516.525000px;}
.y7e{bottom:516.945000px;}
.ya2{bottom:518.595000px;}
.y54{bottom:522.945000px;}
.y9c{bottom:527.505000px;}
.y94{bottom:527.550000px;}
.y86{bottom:528.120000px;}
.y72{bottom:528.720000px;}
.yb2{bottom:535.245000px;}
.y78{bottom:540.870000px;}
.y68{bottom:542.250000px;}
.y44{bottom:542.475000px;}
.y20{bottom:542.505000px;}
.yb7{bottom:548.220000px;}
.ycc{bottom:550.995000px;}
.y66{bottom:554.325000px;}
.y71{bottom:561.405000px;}
.y7d{bottom:564.225000px;}
.y3a{bottom:575.775000px;}
.yd5{bottom:578.025000px;}
.ya1{bottom:578.280000px;}
.y70{bottom:582.570000px;}
.y85{bottom:584.445000px;}
.y93{bottom:585.450000px;}
.y9b{bottom:588.195000px;}
.ya9{bottom:588.870000px;}
.yc3{bottom:593.820000px;}
.y64{bottom:594.675000px;}
.ydb{bottom:596.070000px;}
.ycb{bottom:598.320000px;}
.y1f{bottom:607.875000px;}
.y77{bottom:714.375000px;}
.y7{bottom:715.620000px;}
.h1b{height:46.591626px;}
.h14{height:49.911694px;}
.ha{height:52.628906px;}
.h7{height:52.738550px;}
.hf{height:59.207520px;}
.he{height:59.317163px;}
.hd{height:62.496826px;}
.h8{height:62.606470px;}
.h11{height:64.404785px;}
.h29{height:67.675781px;}
.hb{height:71.059570px;}
.h9{height:71.172363px;}
.h17{height:77.034814px;}
.h25{height:81.323730px;}
.h1c{height:81.693384px;}
.h2b{height:88.920923px;}
.h28{height:89.665796px;}
.h22{height:91.409985px;}
.h2a{height:91.475098px;}
.h15{height:94.141626px;}
.h12{height:102.820386px;}
.h13{height:102.947168px;}
.h1a{height:107.569116px;}
.h16{height:108.506836px;}
.h19{height:110.737573px;}
.h26{height:111.777832px;}
.h10{height:111.887520px;}
.h2{height:115.345239px;}
.h2c{height:120.996606px;}
.h2d{height:121.145801px;}
.h2e{height:124.560571px;}
.h27{height:125.497778px;}
.h21{height:140.855054px;}
.h20{height:143.375757px;}
.h5{height:143.524951px;}
.h6{height:145.728516px;}
.hc{height:147.598901px;}
.h4{height:147.752490px;}
.h1e{height:165.754907px;}
.h1d{height:165.904102px;}
.h1f{height:170.637231px;}
.h24{height:170.790820px;}
.h3{height:198.283228px;}
.h18{height:198.436816px;}
.h23{height:209.398901px;}
.h1{height:215.138232px;}
.h2f{height:412.373145px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3f{left:21.037479px;}
.x4d{left:24.562479px;}
.x34{left:25.574979px;}
.x51{left:34.574979px;}
.x4a{left:37.349979px;}
.x37{left:38.587479px;}
.x41{left:42.599979px;}
.x10{left:48.487479px;}
.x39{left:50.999979px;}
.x7{left:53.174979px;}
.x40{left:54.749979px;}
.xf{left:57.487479px;}
.x35{left:59.362479px;}
.x45{left:66.712479px;}
.x44{left:68.212479px;}
.x38{left:72.374979px;}
.x52{left:75.412479px;}
.x42{left:78.637479px;}
.x20{left:80.587479px;}
.x4e{left:83.024979px;}
.x49{left:84.712479px;}
.x4b{left:87.149979px;}
.x50{left:98.887479px;}
.x54{left:108.749979px;}
.x3a{left:113.062479px;}
.x47{left:118.499979px;}
.x46{left:120.749979px;}
.x15{left:126.599979px;}
.x43{left:132.674979px;}
.x48{left:154.529979px;}
.x55{left:162.179979px;}
.x3{left:181.829979px;}
.xd{left:196.244979px;}
.x53{left:197.774979px;}
.xc{left:209.849979px;}
.xb{left:224.549979px;}
.x2{left:227.069979px;}
.x12{left:232.724979px;}
.x11{left:258.329979px;}
.x5{left:298.799979px;}
.x21{left:409.799979px;}
.x2a{left:424.094979px;}
.xe{left:438.749979px;}
.x9{left:481.919979px;}
.x57{left:486.029979px;}
.x19{left:487.049979px;}
.x4{left:493.499979px;}
.x8{left:495.974979px;}
.x16{left:507.599979px;}
.x2b{left:512.024979px;}
.xa{left:513.074979px;}
.x17{left:524.399979px;}
.x58{left:530.624979px;}
.x2d{left:533.729979px;}
.x6{left:550.919979px;}
.x1b{left:576.419979px;}
.x1{left:582.824979px;}
.x1a{left:603.899979px;}
.x2c{left:622.754979px;}
.x2e{left:624.824979px;}
.x29{left:628.154979px;}
.x28{left:634.904979px;}
.x4f{left:717.299979px;}
.x3d{left:803.399979px;}
.x33{left:811.379979px;}
.x18{left:836.744979px;}
.x13{left:845.774979px;}
.x3e{left:853.529979px;}
.x23{left:877.919979px;}
.x22{left:894.104979px;}
.x36{left:942.119979px;}
.x3c{left:953.669979px;}
.x56{left:972.944979px;}
.x27{left:1044.044979px;}
.x32{left:1045.124979px;}
.x26{left:1050.344979px;}
.x31{left:1051.424979px;}
.x24{left:1054.244979px;}
.x2f{left:1055.324979px;}
.x25{left:1079.924979px;}
.x30{left:1081.004979px;}
.x1c{left:1166.099979px;}
.x14{left:1172.294979px;}
.x1d{left:1191.149979px;}
.x3b{left:1251.149979px;}
.x4c{left:1300.499979px;}
.x1f{left:1325.069979px;}
.x1e{left:1334.624979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:46.826667pt;}
.v2{vertical-align:54.933333pt;}
.ls9{letter-spacing:-1.434667pt;}
.lsa{letter-spacing:-1.301333pt;}
.ls25{letter-spacing:-0.826667pt;}
.ls2e{letter-spacing:-0.204800pt;}
.ls3{letter-spacing:-0.106133pt;}
.ls4{letter-spacing:-0.024000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.008000pt;}
.ls1a{letter-spacing:0.125867pt;}
.ls6{letter-spacing:0.504800pt;}
.ls8{letter-spacing:0.592000pt;}
.ls1{letter-spacing:0.613333pt;}
.ls14{letter-spacing:0.661333pt;}
.ls7{letter-spacing:1.177867pt;}
.lsb{letter-spacing:1.354667pt;}
.ls23{letter-spacing:1.525333pt;}
.ls24{letter-spacing:1.722667pt;}
.ls22{letter-spacing:2.533333pt;}
.ls28{letter-spacing:2.549333pt;}
.ls2a{letter-spacing:28.816533pt;}
.ls2d{letter-spacing:28.976533pt;}
.ls2b{letter-spacing:28.989600pt;}
.ls20{letter-spacing:73.886667pt;}
.ls5{letter-spacing:94.388533pt;}
.lsd{letter-spacing:97.420000pt;}
.lse{letter-spacing:97.466667pt;}
.ls19{letter-spacing:97.553333pt;}
.ls1b{letter-spacing:97.686667pt;}
.ls12{letter-spacing:97.733333pt;}
.ls29{letter-spacing:100.428533pt;}
.ls2c{letter-spacing:100.469333pt;}
.ls1e{letter-spacing:100.508533pt;}
.ls1d{letter-spacing:100.549333pt;}
.ls18{letter-spacing:105.686667pt;}
.ls17{letter-spacing:105.733333pt;}
.ls15{letter-spacing:108.481867pt;}
.ls26{letter-spacing:108.508533pt;}
.ls16{letter-spacing:108.522667pt;}
.ls21{letter-spacing:119.479200pt;}
.lsc{letter-spacing:121.553333pt;}
.ls13{letter-spacing:124.481867pt;}
.ls27{letter-spacing:172.481867pt;}
.lsf{letter-spacing:172.508533pt;}
.ls11{letter-spacing:172.535200pt;}
.ls10{letter-spacing:172.549333pt;}
.ls1f{letter-spacing:172.641867pt;}
.ls1c{letter-spacing:172.682667pt;}
.wsd{word-spacing:-60.133333pt;}
.ws0{word-spacing:-43.452267pt;}
.ws15{word-spacing:-38.932267pt;}
.ws2{word-spacing:-38.902133pt;}
.ws30{word-spacing:-36.057600pt;}
.ws2d{word-spacing:-33.508267pt;}
.ws2c{word-spacing:-30.061067pt;}
.ws1a{word-spacing:-29.649600pt;}
.ws36{word-spacing:-28.988267pt;}
.ws1b{word-spacing:-28.958133pt;}
.wse{word-spacing:-24.566933pt;}
.ws34{word-spacing:-24.468267pt;}
.wsf{word-spacing:-23.981067pt;}
.ws5{word-spacing:-23.389067pt;}
.ws7{word-spacing:-23.352000pt;}
.ws14{word-spacing:-21.978133pt;}
.ws17{word-spacing:-21.726133pt;}
.ws33{word-spacing:-21.521333pt;}
.ws4{word-spacing:-21.165067pt;}
.ws8{word-spacing:-21.128000pt;}
.ws9{word-spacing:-20.053067pt;}
.wsa{word-spacing:-19.946933pt;}
.ws3{word-spacing:-17.829067pt;}
.ws6{word-spacing:-17.792000pt;}
.ws11{word-spacing:-16.717067pt;}
.ws16{word-spacing:-15.605067pt;}
.wsc{word-spacing:-15.415733pt;}
.wsb{word-spacing:-15.282400pt;}
.ws22{word-spacing:-6.043600pt;}
.ws10{word-spacing:-5.852267pt;}
.ws1e{word-spacing:-5.825333pt;}
.ws2a{word-spacing:-5.529600pt;}
.ws18{word-spacing:-1.686933pt;}
.ws24{word-spacing:-1.514533pt;}
.ws37{word-spacing:-1.509333pt;}
.ws31{word-spacing:-1.103467pt;}
.ws25{word-spacing:-1.064667pt;}
.ws23{word-spacing:-0.904667pt;}
.ws27{word-spacing:-0.826667pt;}
.ws1d{word-spacing:-0.743067pt;}
.ws2b{word-spacing:-0.604133pt;}
.ws29{word-spacing:-0.514000pt;}
.ws35{word-spacing:-0.389867pt;}
.ws2e{word-spacing:-0.382933pt;}
.ws13{word-spacing:-0.076133pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.299867pt;}
.ws21{word-spacing:0.681467pt;}
.ws1f{word-spacing:1.160800pt;}
.ws2f{word-spacing:1.313733pt;}
.ws32{word-spacing:1.337600pt;}
.ws20{word-spacing:1.533467pt;}
.ws19{word-spacing:1.591600pt;}
.ws12{word-spacing:1.964800pt;}
.ws28{word-spacing:2.685867pt;}
.ws26{word-spacing:27.973200pt;}
._b{margin-left:-5.372667pt;}
._5{margin-left:-4.048000pt;}
._1{margin-left:-2.499467pt;}
._3{margin-left:-0.961333pt;}
._0{width:0.961333pt;}
._4{width:2.317600pt;}
._2{width:3.268533pt;}
._9{width:4.295200pt;}
._6{width:21.138933pt;}
._11{width:22.189200pt;}
._13{width:23.615867pt;}
._8{width:27.390400pt;}
._e{width:31.014133pt;}
._c{width:34.763733pt;}
._d{width:37.285867pt;}
._10{width:38.258800pt;}
._14{width:40.922400pt;}
._7{width:45.468800pt;}
._12{width:52.366000pt;}
._a{width:290.515600pt;}
._f{width:2014.510000pt;}
.fs12{font-size:56.133333pt;}
.fs10{font-size:60.133333pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fsd{font-size:72.000000pt;}
.fsc{font-size:72.133333pt;}
.fsb{font-size:76.000000pt;}
.fs6{font-size:76.133333pt;}
.fs17{font-size:80.000000pt;}
.fs16{font-size:80.133333pt;}
.fs9{font-size:84.000000pt;}
.fs7{font-size:84.133333pt;}
.fs11{font-size:96.133333pt;}
.fs1{font-size:100.133333pt;}
.fse{font-size:108.133333pt;}
.fsf{font-size:108.266667pt;}
.fsa{font-size:128.133333pt;}
.fs3{font-size:128.266667pt;}
.fs15{font-size:132.133333pt;}
.fs14{font-size:148.133333pt;}
.fs13{font-size:148.266667pt;}
.fs2{font-size:172.133333pt;}
.fs4{font-size:172.266667pt;}
.fs0{font-size:192.266667pt;}
.fs18{font-size:368.533333pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:6.666667pt;}
.y53{bottom:8.766667pt;}
.yb{bottom:19.266667pt;}
.y3e{bottom:20.366667pt;}
.y6{bottom:25.866667pt;}
.y6e{bottom:39.400000pt;}
.ybe{bottom:39.833333pt;}
.yc2{bottom:52.166667pt;}
.y3d{bottom:52.400000pt;}
.y17{bottom:55.500000pt;}
.y65{bottom:58.533333pt;}
.y11{bottom:59.500000pt;}
.y5{bottom:63.933333pt;}
.ya{bottom:67.333333pt;}
.y6d{bottom:68.433333pt;}
.y43{bottom:69.100000pt;}
.yd3{bottom:81.233333pt;}
.y9a{bottom:82.033333pt;}
.y8e{bottom:84.900000pt;}
.y29{bottom:86.366667pt;}
.ye3{bottom:87.233333pt;}
.y84{bottom:87.966667pt;}
.y76{bottom:88.466667pt;}
.y23{bottom:90.400000pt;}
.ybd{bottom:92.733333pt;}
.yca{bottom:94.233333pt;}
.ya8{bottom:94.466667pt;}
.yda{bottom:95.233333pt;}
.y52{bottom:97.666667pt;}
.yb1{bottom:106.666667pt;}
.yd2{bottom:109.266667pt;}
.yd4{bottom:112.666667pt;}
.y9{bottom:115.400000pt;}
.y12{bottom:115.566667pt;}
.ye2{bottom:116.266667pt;}
.y3c{bottom:116.500000pt;}
.y75{bottom:117.500000pt;}
.ya7{bottom:120.500000pt;}
.y63{bottom:122.666667pt;}
.y51{bottom:123.700000pt;}
.y8d{bottom:125.966667pt;}
.y83{bottom:129.033333pt;}
.ya0{bottom:129.366667pt;}
.ye5{bottom:132.966667pt;}
.yc9{bottom:136.306667pt;}
.yd1{bottom:138.306667pt;}
.yc1{bottom:146.293333pt;}
.y24{bottom:146.466667pt;}
.y74{bottom:146.533333pt;}
.y3b{bottom:148.533333pt;}
.y50{bottom:148.733333pt;}
.ybc{bottom:150.826667pt;}
.y9f{bottom:153.400000pt;}
.ya6{bottom:156.560000pt;}
.y8c{bottom:161.026667pt;}
.y8{bottom:163.466667pt;}
.y99{bottom:169.400000pt;}
.y82{bottom:170.093333pt;}
.y62{bottom:170.733333pt;}
.y4f{bottom:174.800000pt;}
.yc8{bottom:177.360000pt;}
.y9e{bottom:177.426667pt;}
.yb0{bottom:177.773333pt;}
.yb6{bottom:180.360000pt;}
.y19{bottom:182.093333pt;}
.yd9{bottom:191.373333pt;}
.y6c{bottom:194.600000pt;}
.ye1{bottom:199.360000pt;}
.y4e{bottom:200.840000pt;}
.y8b{bottom:202.066667pt;}
.y18{bottom:205.133333pt;}
.ybb{bottom:208.893333pt;}
.y81{bottom:211.133333pt;}
.y2b{bottom:212.973333pt;}
.yc7{bottom:218.400000pt;}
.y61{bottom:218.800000pt;}
.yaf{bottom:220.800000pt;}
.y4d{bottom:225.866667pt;}
.y2a{bottom:236.000000pt;}
.y4{bottom:239.666667pt;}
.yc0{bottom:240.426667pt;}
.ye0{bottom:241.440000pt;}
.yae{bottom:242.840000pt;}
.ye{bottom:247.506667pt;}
.y42{bottom:255.866667pt;}
.y36{bottom:256.840000pt;}
.yc6{bottom:259.466667pt;}
.y5b{bottom:259.560000pt;}
.ya5{bottom:264.706667pt;}
.yd0{bottom:265.466667pt;}
.y7c{bottom:266.466667pt;}
.y60{bottom:266.866667pt;}
.yba{bottom:267.973333pt;}
.y4c{bottom:276.933333pt;}
.y41{bottom:281.893333pt;}
.ydf{bottom:282.506667pt;}
.y35{bottom:282.866667pt;}
.ye4{bottom:283.173333pt;}
.y5a{bottom:285.600000pt;}
.yad{bottom:285.906667pt;}
.yd8{bottom:286.506667pt;}
.y8a{bottom:291.200000pt;}
.y3{bottom:291.733333pt;}
.y67{bottom:292.640000pt;}
.y80{bottom:294.266667pt;}
.yd{bottom:298.560000pt;}
.y38{bottom:298.893333pt;}
.yc5{bottom:300.533333pt;}
.y32{bottom:300.626667pt;}
.y4b{bottom:302.973333pt;}
.y39{bottom:303.133333pt;}
.y92{bottom:305.200000pt;}
.y40{bottom:307.933333pt;}
.y34{bottom:308.893333pt;}
.y59{bottom:311.640000pt;}
.y5f{bottom:314.933333pt;}
.y7b{bottom:319.533333pt;}
.y37{bottom:319.893333pt;}
.yd7{bottom:321.533333pt;}
.y31{bottom:321.666667pt;}
.y6b{bottom:321.773333pt;}
.yde{bottom:323.573333pt;}
.yb9{bottom:326.066667pt;}
.yac{bottom:328.960000pt;}
.y4a{bottom:329.000000pt;}
.y98{bottom:331.733333pt;}
.y1b{bottom:331.893333pt;}
.y89{bottom:332.266667pt;}
.y1d{bottom:332.866667pt;}
.y3f{bottom:333.973333pt;}
.y10{bottom:334.440000pt;}
.ybf{bottom:334.560000pt;}
.y33{bottom:334.933333pt;}
.y58{bottom:336.666667pt;}
.y91{bottom:339.266667pt;}
.yb5{bottom:341.560000pt;}
.y2{bottom:343.800000pt;}
.y14{bottom:343.840000pt;}
.y15{bottom:348.133333pt;}
.yc{bottom:350.640000pt;}
.y1a{bottom:350.933333pt;}
.y1c{bottom:351.906667pt;}
.yf{bottom:353.466667pt;}
.y49{bottom:354.026667pt;}
.y2d{bottom:362.800000pt;}
.y5e{bottom:363.000000pt;}
.y2f{bottom:363.773333pt;}
.ydd{bottom:364.600000pt;}
.y22{bottom:365.333333pt;}
.yb8{bottom:370.133333pt;}
.y97{bottom:370.800000pt;}
.ya4{bottom:370.866667pt;}
.yab{bottom:372.026667pt;}
.y7a{bottom:373.640000pt;}
.y88{bottom:374.306667pt;}
.y26{bottom:374.733333pt;}
.y7f{bottom:376.360000pt;}
.y27{bottom:379.026667pt;}
.y48{bottom:380.066667pt;}
.yb4{bottom:381.640000pt;}
.y2c{bottom:381.800000pt;}
.y2e{bottom:382.773333pt;}
.yc4{bottom:383.640000pt;}
.y21{bottom:384.333333pt;}
.y90{bottom:387.333333pt;}
.y57{bottom:387.733333pt;}
.ycf{bottom:390.640000pt;}
.y1{bottom:395.866667pt;}
.y96{bottom:403.840000pt;}
.y47{bottom:405.106667pt;}
.y6a{bottom:405.893333pt;}
.y1e{bottom:406.333333pt;}
.y5d{bottom:411.066667pt;}
.y56{bottom:413.773333pt;}
.ya3{bottom:413.893333pt;}
.y16{bottom:413.973333pt;}
.y13{bottom:414.266667pt;}
.yd6{bottom:417.666667pt;}
.y87{bottom:422.360000pt;}
.yce{bottom:423.693333pt;}
.y9d{bottom:426.840000pt;}
.y79{bottom:427.693333pt;}
.yb3{bottom:428.706667pt;}
.y46{bottom:431.133333pt;}
.y69{bottom:434.933333pt;}
.y8f{bottom:435.400000pt;}
.y95{bottom:435.866667pt;}
.y30{bottom:437.226667pt;}
.y55{bottom:439.800000pt;}
.y73{bottom:441.933333pt;}
.y28{bottom:444.866667pt;}
.y25{bottom:445.133333pt;}
.ydc{bottom:448.733333pt;}
.yaa{bottom:449.133333pt;}
.ycd{bottom:455.733333pt;}
.y45{bottom:457.173333pt;}
.y5c{bottom:459.133333pt;}
.y7e{bottom:459.506667pt;}
.ya2{bottom:460.973333pt;}
.y54{bottom:464.840000pt;}
.y9c{bottom:468.893333pt;}
.y94{bottom:468.933333pt;}
.y86{bottom:469.440000pt;}
.y72{bottom:469.973333pt;}
.yb2{bottom:475.773333pt;}
.y78{bottom:480.773333pt;}
.y68{bottom:482.000000pt;}
.y44{bottom:482.200000pt;}
.y20{bottom:482.226667pt;}
.yb7{bottom:487.306667pt;}
.ycc{bottom:489.773333pt;}
.y66{bottom:492.733333pt;}
.y71{bottom:499.026667pt;}
.y7d{bottom:501.533333pt;}
.y3a{bottom:511.800000pt;}
.yd5{bottom:513.800000pt;}
.ya1{bottom:514.026667pt;}
.y70{bottom:517.840000pt;}
.y85{bottom:519.506667pt;}
.y93{bottom:520.400000pt;}
.y9b{bottom:522.840000pt;}
.ya9{bottom:523.440000pt;}
.yc3{bottom:527.840000pt;}
.y64{bottom:528.600000pt;}
.ydb{bottom:529.840000pt;}
.ycb{bottom:531.840000pt;}
.y1f{bottom:540.333333pt;}
.y77{bottom:635.000000pt;}
.y7{bottom:636.106667pt;}
.h1b{height:41.414779pt;}
.h14{height:44.365951pt;}
.ha{height:46.781250pt;}
.h7{height:46.878711pt;}
.hf{height:52.628906pt;}
.he{height:52.726367pt;}
.hd{height:55.552734pt;}
.h8{height:55.650195pt;}
.h11{height:57.248698pt;}
.h29{height:60.156250pt;}
.hb{height:63.164062pt;}
.h9{height:63.264323pt;}
.h17{height:68.475391pt;}
.h25{height:72.287760pt;}
.h1c{height:72.616341pt;}
.h2b{height:79.040820pt;}
.h28{height:79.702930pt;}
.h22{height:81.253320pt;}
.h2a{height:81.311198pt;}
.h15{height:83.681445pt;}
.h12{height:91.395898pt;}
.h13{height:91.508594pt;}
.h1a{height:95.616992pt;}
.h16{height:96.450521pt;}
.h19{height:98.433398pt;}
.h26{height:99.358073pt;}
.h10{height:99.455573pt;}
.h2{height:102.529102pt;}
.h2c{height:107.552539pt;}
.h2d{height:107.685156pt;}
.h2e{height:110.720508pt;}
.h27{height:111.553581pt;}
.h21{height:125.204492pt;}
.h20{height:127.445117pt;}
.h5{height:127.577734pt;}
.h6{height:129.536458pt;}
.hc{height:131.199023pt;}
.h4{height:131.335547pt;}
.h1e{height:147.337695pt;}
.h1d{height:147.470313pt;}
.h1f{height:151.677539pt;}
.h24{height:151.814063pt;}
.h3{height:176.251758pt;}
.h18{height:176.388281pt;}
.h23{height:186.132357pt;}
.h1{height:191.233984pt;}
.h2f{height:366.553906pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:18.699981pt;}
.x4d{left:21.833314pt;}
.x34{left:22.733314pt;}
.x51{left:30.733314pt;}
.x4a{left:33.199981pt;}
.x37{left:34.299981pt;}
.x41{left:37.866648pt;}
.x10{left:43.099981pt;}
.x39{left:45.333314pt;}
.x7{left:47.266648pt;}
.x40{left:48.666648pt;}
.xf{left:51.099981pt;}
.x35{left:52.766648pt;}
.x45{left:59.299981pt;}
.x44{left:60.633314pt;}
.x38{left:64.333314pt;}
.x52{left:67.033314pt;}
.x42{left:69.899981pt;}
.x20{left:71.633314pt;}
.x4e{left:73.799981pt;}
.x49{left:75.299981pt;}
.x4b{left:77.466648pt;}
.x50{left:87.899981pt;}
.x54{left:96.666648pt;}
.x3a{left:100.499981pt;}
.x47{left:105.333314pt;}
.x46{left:107.333314pt;}
.x15{left:112.533314pt;}
.x43{left:117.933314pt;}
.x48{left:137.359981pt;}
.x55{left:144.159981pt;}
.x3{left:161.626648pt;}
.xd{left:174.439981pt;}
.x53{left:175.799981pt;}
.xc{left:186.533314pt;}
.xb{left:199.599981pt;}
.x2{left:201.839981pt;}
.x12{left:206.866648pt;}
.x11{left:229.626648pt;}
.x5{left:265.599981pt;}
.x21{left:364.266648pt;}
.x2a{left:376.973314pt;}
.xe{left:389.999981pt;}
.x9{left:428.373314pt;}
.x57{left:432.026648pt;}
.x19{left:432.933314pt;}
.x4{left:438.666648pt;}
.x8{left:440.866648pt;}
.x16{left:451.199981pt;}
.x2b{left:455.133314pt;}
.xa{left:456.066648pt;}
.x17{left:466.133314pt;}
.x58{left:471.666648pt;}
.x2d{left:474.426648pt;}
.x6{left:489.706648pt;}
.x1b{left:512.373314pt;}
.x1{left:518.066648pt;}
.x1a{left:536.799981pt;}
.x2c{left:553.559981pt;}
.x2e{left:555.399981pt;}
.x29{left:558.359981pt;}
.x28{left:564.359981pt;}
.x4f{left:637.599981pt;}
.x3d{left:714.133314pt;}
.x33{left:721.226648pt;}
.x18{left:743.773314pt;}
.x13{left:751.799981pt;}
.x3e{left:758.693314pt;}
.x23{left:780.373314pt;}
.x22{left:794.759981pt;}
.x36{left:837.439981pt;}
.x3c{left:847.706648pt;}
.x56{left:864.839981pt;}
.x27{left:928.039981pt;}
.x32{left:928.999981pt;}
.x26{left:933.639981pt;}
.x31{left:934.599981pt;}
.x24{left:937.106648pt;}
.x2f{left:938.066648pt;}
.x25{left:959.933314pt;}
.x30{left:960.893314pt;}
.x1c{left:1036.533314pt;}
.x14{left:1042.039981pt;}
.x1d{left:1058.799981pt;}
.x3b{left:1112.133314pt;}
.x4c{left:1155.999981pt;}
.x1f{left:1177.839981pt;}
.x1e{left:1186.333314pt;}
}




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