
    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_72e63aa69fb64be6a460c935.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_0dab21df33338c50e98e6192.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_26361c2c5e5807c5c8887829.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969238;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_65a6f9ff95bb722f3fe88cb2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120605;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_a48b789211d3eaa38066f0d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_efe5adf96c66f49ee368c733.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_164fc313dba16fa4c042d2db.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_2d1558b872e0b3d978449285.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8afd0cae132e62744e925bdc.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a6c116ad99edb58a8c63117b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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);}
.v2{vertical-align:-27.360000px;}
.v5{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:27.336000px;}
.ls25{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.504000px;}
.ls22{letter-spacing:-0.432000px;}
.ls14{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.342000px;}
.ls20{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.252000px;}
.ls4{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.150000px;}
.ls1f{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.269400px;}
.ls23{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.576000px;}
.ls9{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.792000px;}
.ls7{letter-spacing:1.224000px;}
.ls19{letter-spacing:5.760000px;}
.ls1b{letter-spacing:12.960000px;}
.ls1e{letter-spacing:21.600000px;}
.ls1c{letter-spacing:22.320000px;}
.ls18{letter-spacing:65.520000px;}
.ls12{letter-spacing:165.282000px;}
.ls13{letter-spacing:282.522000px;}
.ls11{letter-spacing:303.402000px;}
.lse{letter-spacing:1181.849760px;}
.lsd{letter-spacing:1232.225760px;}
.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;}
}
.wsc{word-spacing:-315.606000px;}
.ws10{word-spacing:-294.726000px;}
.wse{word-spacing:-177.486000px;}
.ws0{word-spacing:-54.000000px;}
.ws11{word-spacing:-19.070784px;}
.ws19{word-spacing:-18.792000px;}
.ws12{word-spacing:-18.720000px;}
.ws13{word-spacing:-18.576000px;}
.ws17{word-spacing:-18.288000px;}
.ws14{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws16{word-spacing:-17.568000px;}
.ws18{word-spacing:-17.496000px;}
.ws1a{word-spacing:-17.064000px;}
.ws15{word-spacing:-12.329400px;}
.ws8{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.700000px;}
.wsb{word-spacing:-0.648000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:68.274000px;}
.wsf{word-spacing:270.738000px;}
.wsd{word-spacing:296.658000px;}
._3d{margin-left:-303.402000px;}
._3f{margin-left:-282.582000px;}
._3e{margin-left:-165.102000px;}
._19{margin-left:-5.040000px;}
._4{margin-left:-3.888000px;}
._e{margin-left:-2.880000px;}
._0{margin-left:-1.080000px;}
._1{width:1.290000px;}
._8{width:2.322000px;}
._f{width:3.372000px;}
._6{width:4.620000px;}
._5{width:5.760000px;}
._7{width:7.266000px;}
._10{width:8.568000px;}
._d{width:10.008000px;}
._25{width:11.664000px;}
._b{width:12.672000px;}
._c{width:14.112000px;}
._1a{width:15.552000px;}
._13{width:16.704000px;}
._1f{width:19.944000px;}
._20{width:20.952000px;}
._23{width:22.392000px;}
._18{width:24.336000px;}
._22{width:25.848000px;}
._16{width:27.984000px;}
._4e{width:29.040000px;}
._12{width:30.240000px;}
._9{width:31.248000px;}
._a{width:32.400000px;}
._11{width:33.414000px;}
._33{width:34.626000px;}
._2b{width:35.808000px;}
._2a{width:36.840000px;}
._29{width:38.448000px;}
._24{width:39.672000px;}
._1d{width:40.680000px;}
._17{width:41.760000px;}
._21{width:43.032000px;}
._2f{width:44.280000px;}
._2e{width:45.528000px;}
._15{width:47.544000px;}
._14{width:48.936000px;}
._26{width:50.334000px;}
._27{width:51.480000px;}
._40{width:55.872000px;}
._47{width:56.976000px;}
._34{width:58.080000px;}
._1e{width:59.544000px;}
._4c{width:60.984000px;}
._28{width:62.784000px;}
._44{width:65.448000px;}
._32{width:67.536000px;}
._42{width:68.688000px;}
._2c{width:69.840000px;}
._43{width:71.502000px;}
._53{width:73.584000px;}
._1b{width:74.736000px;}
._1c{width:75.816000px;}
._4d{width:78.048000px;}
._4f{width:80.712000px;}
._41{width:81.864000px;}
._50{width:83.232000px;}
._49{width:84.936000px;}
._55{width:86.112000px;}
._54{width:87.120000px;}
._2d{width:89.112000px;}
._45{width:91.008000px;}
._39{width:92.742000px;}
._35{width:104.232000px;}
._4a{width:132.480000px;}
._4b{width:133.542480px;}
._46{width:146.736000px;}
._37{width:148.626000px;}
._52{width:152.712000px;}
._38{width:161.250000px;}
._30{width:177.048000px;}
._31{width:178.632000px;}
._51{width:182.160000px;}
._36{width:198.000000px;}
._48{width:267.048000px;}
._3{width:360.300000px;}
._2{width:850.392000px;}
._3a{width:1232.364000px;}
._3b{width:1395.516000px;}
._3c{width:2109.334800px;}
.fc7{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc3{color:rgb(0,111,192);}
.fc1{color:rgb(0,0,255);}
.fc9{color:rgb(48,48,48);}
.fc8{color:rgb(33,33,33);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(34,34,34);}
.fc4{color:rgb(32,32,32);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs7{font-size:84.384000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y95{bottom:7.020000px;}
.y99{bottom:7.200000px;}
.y93{bottom:7.230000px;}
.y96{bottom:7.380000px;}
.y9a{bottom:7.560000px;}
.ycc{bottom:12.495000px;}
.ye2{bottom:12.570000px;}
.ydd{bottom:13.245000px;}
.yf3{bottom:13.290000px;}
.yb8{bottom:17.715000px;}
.ya4{bottom:19.080000px;}
.ya5{bottom:19.260000px;}
.ya7{bottom:19.440000px;}
.ya8{bottom:19.620000px;}
.ye8{bottom:26.970000px;}
.yd8{bottom:30.780000px;}
.yec{bottom:30.855000px;}
.ycd{bottom:32.865000px;}
.yd4{bottom:35.670000px;}
.ye3{bottom:44.490000px;}
.yb6{bottom:50.250000px;}
.yed{bottom:53.100000px;}
.yce{bottom:53.250000px;}
.y3{bottom:58.536000px;}
.yd9{bottom:60.480000px;}
.yb5{bottom:66.750000px;}
.yf6{bottom:70.380000px;}
.ycf{bottom:73.620000px;}
.yee{bottom:75.345000px;}
.ye4{bottom:76.470000px;}
.y2{bottom:78.696000px;}
.yaf{bottom:83.595000px;}
.yda{bottom:90.180000px;}
.yd0{bottom:93.990000px;}
.ycb{bottom:97.455000px;}
.yef{bottom:97.590000px;}
.yb0{bottom:107.175000px;}
.ye5{bottom:108.435000px;}
.yf7{bottom:109.950000px;}
.yd7{bottom:112.755000px;}
.yc7{bottom:112.896000px;}
.y58{bottom:113.976000px;}
.yca{bottom:114.045000px;}
.yd1{bottom:114.375000px;}
.y31{bottom:116.316000px;}
.yf0{bottom:119.850000px;}
.ydb{bottom:119.880000px;}
.y76{bottom:125.496000px;}
.y91{bottom:127.476000px;}
.yeb{bottom:127.515000px;}
.yd6{bottom:129.315000px;}
.yb1{bottom:130.755000px;}
.y2b{bottom:131.076000px;}
.y135{bottom:132.156000px;}
.yd2{bottom:134.745000px;}
.ye1{bottom:135.540000px;}
.yc6{bottom:136.656000px;}
.y57{bottom:137.736000px;}
.y30{bottom:140.256000px;}
.ye6{bottom:140.400000px;}
.yf1{bottom:142.050000px;}
.yea{bottom:144.075000px;}
.y107{bottom:148.176000px;}
.y75{bottom:149.436000px;}
.ydc{bottom:149.550000px;}
.y90{bottom:151.050000px;}
.ye0{bottom:152.100000px;}
.y134{bottom:152.850000px;}
.yb2{bottom:154.335000px;}
.yd3{bottom:155.085000px;}
.y2a{bottom:155.190000px;}
.yc5{bottom:160.410000px;}
.y56{bottom:161.490000px;}
.y2f{bottom:164.010000px;}
.yf2{bottom:164.310000px;}
.y106{bottom:168.870000px;}
.ye7{bottom:172.335000px;}
.y74{bottom:173.190000px;}
.y133{bottom:173.550000px;}
.y8f{bottom:174.810000px;}
.yde{bottom:177.765000px;}
.yb3{bottom:177.915000px;}
.y29{bottom:178.950000px;}
.yd5{bottom:183.315000px;}
.yc4{bottom:184.170000px;}
.y55{bottom:185.430000px;}
.y2e{bottom:187.770000px;}
.y105{bottom:189.570000px;}
.yf4{bottom:192.525000px;}
.y132{bottom:194.250000px;}
.y73{bottom:196.950000px;}
.y8e{bottom:199.110000px;}
.ye9{bottom:200.550000px;}
.yb4{bottom:201.495000px;}
.y28{bottom:202.710000px;}
.yc3{bottom:208.110000px;}
.y54{bottom:208.830000px;}
.y104{bottom:210.270000px;}
.y2d{bottom:211.530000px;}
.y131{bottom:214.950000px;}
.y72{bottom:220.710000px;}
.y8d{bottom:222.870000px;}
.y27{bottom:226.650000px;}
.y103{bottom:230.970000px;}
.yc2{bottom:231.870000px;}
.y53{bottom:232.950000px;}
.y130{bottom:235.650000px;}
.yb7{bottom:244.290000px;}
.y71{bottom:244.650000px;}
.y8c{bottom:246.630000px;}
.y26{bottom:250.410000px;}
.y102{bottom:251.670000px;}
.yc1{bottom:255.270000px;}
.yc8{bottom:255.630000px;}
.y12f{bottom:256.350000px;}
.y52{bottom:256.710000px;}
.y70{bottom:268.410000px;}
.y8b{bottom:270.390000px;}
.y101{bottom:272.370000px;}
.y25{bottom:274.170000px;}
.y12e{bottom:277.050000px;}
.yc0{bottom:279.030000px;}
.y51{bottom:280.695000px;}
.yad{bottom:282.135000px;}
.yae{bottom:283.140000px;}
.y6f{bottom:292.215000px;}
.y100{bottom:293.115000px;}
.y8a{bottom:294.375000px;}
.y12d{bottom:297.795000px;}
.y24{bottom:297.975000px;}
.ybf{bottom:303.375000px;}
.y50{bottom:304.455000px;}
.yff{bottom:313.815000px;}
.y6e{bottom:315.975000px;}
.y89{bottom:318.135000px;}
.y12c{bottom:318.495000px;}
.y23{bottom:321.915000px;}
.y4f{bottom:328.215000px;}
.ybe{bottom:339.015000px;}
.y12b{bottom:339.195000px;}
.y6d{bottom:339.915000px;}
.y88{bottom:341.895000px;}
.y22{bottom:345.675000px;}
.yfe{bottom:349.275000px;}
.y4e{bottom:351.975000px;}
.y12a{bottom:359.895000px;}
.yf5{bottom:362.700000px;}
.ybd{bottom:362.775000px;}
.y87{bottom:365.655000px;}
.y21{bottom:369.435000px;}
.yfc{bottom:373.215000px;}
.y4d{bottom:375.915000px;}
.y6c{bottom:378.255000px;}
.y129{bottom:380.595000px;}
.y86{bottom:389.595000px;}
.y20{bottom:393.195000px;}
.yfb{bottom:396.975000px;}
.y128{bottom:401.295000px;}
.y85{bottom:413.355000px;}
.y4c{bottom:414.255000px;}
.y6b{bottom:414.615000px;}
.y1f{bottom:416.775000px;}
.y2c{bottom:417.135000px;}
.yfa{bottom:420.915000px;}
.y127{bottom:421.995000px;}
.y84{bottom:437.115000px;}
.y6a{bottom:438.195000px;}
.y1e{bottom:440.535000px;}
.y126{bottom:442.695000px;}
.yfd{bottom:444.315000px;}
.yf9{bottom:444.675000px;}
.y4b{bottom:453.135000px;}
.y83{bottom:460.875000px;}
.y69{bottom:462.135000px;}
.y125{bottom:463.395000px;}
.yf8{bottom:468.435000px;}
.y1d{bottom:476.535000px;}
.y124{bottom:484.095000px;}
.y82{bottom:484.635000px;}
.y68{bottom:485.895000px;}
.y4a{bottom:492.195000px;}
.y1c{bottom:497.415000px;}
.y81{bottom:504.255000px;}
.y123{bottom:504.795000px;}
.y67{bottom:509.655000px;}
.y49{bottom:516.135000px;}
.y1b{bottom:518.115000px;}
.y122{bottom:525.495000px;}
.y66{bottom:533.415000px;}
.y1a{bottom:538.815000px;}
.y48{bottom:539.925000px;}
.y121{bottom:546.225000px;}
.y65{bottom:557.205000px;}
.y19{bottom:559.545000px;}
.y47{bottom:563.685000px;}
.yac{bottom:566.025000px;}
.y120{bottom:566.925000px;}
.ybc{bottom:578.805000px;}
.y18{bottom:580.245000px;}
.y46{bottom:587.445000px;}
.y11f{bottom:587.625000px;}
.yab{bottom:589.965000px;}
.y64{bottom:595.725000px;}
.y17{bottom:600.945000px;}
.ybb{bottom:602.565000px;}
.ydf{bottom:602.640000px;}
.yaa{bottom:607.785000px;}
.y11e{bottom:608.325000px;}
.y45{bottom:611.205000px;}
.y16{bottom:621.645000px;}
.y11d{bottom:629.025000px;}
.y63{bottom:632.085000px;}
.y44{bottom:635.145000px;}
.y15{bottom:642.345000px;}
.ya9{bottom:643.605000px;}
.y11c{bottom:649.725000px;}
.y62{bottom:655.665000px;}
.y43{bottom:658.905000px;}
.y14{bottom:663.045000px;}
.y11b{bottom:670.425000px;}
.y61{bottom:679.425000px;}
.y42{bottom:682.665000px;}
.y13{bottom:683.745000px;}
.y11a{bottom:691.125000px;}
.y60{bottom:703.365000px;}
.y12{bottom:704.445000px;}
.y41{bottom:706.425000px;}
.y119{bottom:711.825000px;}
.ya6{bottom:715.245000px;}
.y80{bottom:723.525000px;}
.y11{bottom:725.145000px;}
.y5f{bottom:727.125000px;}
.y40{bottom:730.365000px;}
.y118{bottom:732.525000px;}
.y10{bottom:745.845000px;}
.y5e{bottom:750.885000px;}
.ya3{bottom:752.505000px;}
.y117{bottom:753.225000px;}
.y3f{bottom:754.125000px;}
.y7f{bottom:762.405000px;}
.yf{bottom:766.545000px;}
.y116{bottom:773.925000px;}
.y5d{bottom:774.645000px;}
.y3e{bottom:777.885000px;}
.ye{bottom:787.245000px;}
.y115{bottom:794.625000px;}
.ya2{bottom:796.785000px;}
.y7e{bottom:798.810000px;}
.y3d{bottom:801.690000px;}
.yd{bottom:810.510000px;}
.y5c{bottom:813.210000px;}
.y114{bottom:815.370000px;}
.ya1{bottom:820.770000px;}
.y7d{bottom:822.390000px;}
.y3c{bottom:825.630000px;}
.yc{bottom:834.630000px;}
.y113{bottom:836.070000px;}
.yba{bottom:841.470000px;}
.ya0{bottom:844.530000px;}
.y7c{bottom:846.150000px;}
.y5b{bottom:849.210000px;}
.y3b{bottom:849.390000px;}
.y112{bottom:856.770000px;}
.yb{bottom:858.570000px;}
.yb9{bottom:865.410000px;}
.yc9{bottom:865.440000px;}
.y9f{bottom:868.650000px;}
.y7b{bottom:869.910000px;}
.y5a{bottom:872.790000px;}
.y3a{bottom:873.150000px;}
.y111{bottom:877.470000px;}
.ya{bottom:889.170000px;}
.y9e{bottom:892.410000px;}
.y7a{bottom:893.850000px;}
.y59{bottom:896.550000px;}
.y39{bottom:896.910000px;}
.y110{bottom:898.170000px;}
.y9{bottom:910.050000px;}
.y9d{bottom:916.350000px;}
.y79{bottom:917.610000px;}
.y10f{bottom:918.870000px;}
.y38{bottom:920.850000px;}
.y8{bottom:923.550000px;}
.y10e{bottom:939.570000px;}
.y9c{bottom:940.110000px;}
.y37{bottom:944.610000px;}
.y78{bottom:955.950000px;}
.y9b{bottom:957.930000px;}
.y10d{bottom:960.270000px;}
.y7{bottom:963.510000px;}
.y36{bottom:968.370000px;}
.y10c{bottom:980.970000px;}
.y98{bottom:981.690000px;}
.y6{bottom:991.230000px;}
.y35{bottom:992.130000px;}
.y77{bottom:992.310000px;}
.y10b{bottom:1001.670000px;}
.y97{bottom:1005.630000px;}
.y34{bottom:1016.070000px;}
.y10a{bottom:1022.370000px;}
.y94{bottom:1029.390000px;}
.y5{bottom:1038.750000px;}
.y33{bottom:1039.830000px;}
.y109{bottom:1043.070000px;}
.y92{bottom:1054.590000px;}
.y4{bottom:1059.120000px;}
.y32{bottom:1063.620000px;}
.y108{bottom:1063.800000px;}
.y1{bottom:1121.400000px;}
.hc{height:23.745000px;}
.hd{height:23.925000px;}
.hb{height:23.970000px;}
.he{height:35.820000px;}
.h7{height:47.344922px;}
.h9{height:52.066406px;}
.h10{height:53.709961px;}
.h1{height:55.291992px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.ha{height:74.680922px;}
.h17{height:74.704922px;}
.h11{height:83.787539px;}
.h16{height:83.930766px;}
.h5{height:84.898125px;}
.h3{height:90.703125px;}
.h13{height:209.160000px;}
.h12{height:214.560000px;}
.h15{height:223.920000px;}
.h14{height:231.840000px;}
.hf{height:275.580000px;}
.h0{height:1188.000000px;}
.w1{width:179.451000px;}
.w3{width:182.190000px;}
.w2{width:206.655000px;}
.w4{width:233.481000px;}
.w5{width:233.490000px;}
.w6{width:235.095000px;}
.wb{width:295.560000px;}
.w8{width:307.980000px;}
.w9{width:308.160000px;}
.wa{width:349.020000px;}
.wc{width:527.580000px;}
.w7{width:607.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x10{left:8.091000px;}
.x22{left:9.828000px;}
.x24{left:13.968000px;}
.x28{left:16.815000px;}
.x23{left:20.805000px;}
.x30{left:23.655000px;}
.x29{left:32.760000px;}
.x19{left:36.036000px;}
.x31{left:39.600000px;}
.x18{left:42.915000px;}
.x17{left:49.755000px;}
.x1d{left:72.465000px;}
.x32{left:95.475000px;}
.x1a{left:103.320000px;}
.x25{left:105.045000px;}
.x3{left:108.036000px;}
.x2f{left:110.670000px;}
.x26{left:120.030000px;}
.x2d{left:122.970000px;}
.x2a{left:127.800000px;}
.x20{left:130.035000px;}
.x1f{left:132.660000px;}
.x1{left:135.036000px;}
.x6{left:141.876000px;}
.xa{left:142.956000px;}
.x27{left:145.230000px;}
.x21{left:150.555000px;}
.x7{left:155.730000px;}
.x2b{left:157.320000px;}
.x13{left:162.030000px;}
.x8{left:166.530000px;}
.x4{left:174.990000px;}
.x2c{left:184.680000px;}
.x33{left:187.020000px;}
.x9{left:192.810000px;}
.x1e{left:228.750000px;}
.x5{left:237.990000px;}
.xb{left:249.330000px;}
.x11{left:287.505000px;}
.x34{left:317.550000px;}
.xf{left:324.075000px;}
.x35{left:336.090000px;}
.x14{left:341.535000px;}
.x1b{left:396.690000px;}
.x2{left:446.475000px;}
.x1c{left:460.230000px;}
.xc{left:486.075000px;}
.x12{left:494.175000px;}
.x2e{left:507.060000px;}
.xe{left:511.485000px;}
.xd{left:540.105000px;}
.x15{left:575.040000px;}
.x16{left:715.650000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:24.298667pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls22{letter-spacing:-0.384000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.304000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.133333pt;}
.ls1f{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.239467pt;}
.ls23{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.512000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.704000pt;}
.ls7{letter-spacing:1.088000pt;}
.ls19{letter-spacing:5.120000pt;}
.ls1b{letter-spacing:11.520000pt;}
.ls1e{letter-spacing:19.200000pt;}
.ls1c{letter-spacing:19.840000pt;}
.ls18{letter-spacing:58.240000pt;}
.ls12{letter-spacing:146.917333pt;}
.ls13{letter-spacing:251.130667pt;}
.ls11{letter-spacing:269.690667pt;}
.lse{letter-spacing:1050.533120pt;}
.lsd{letter-spacing:1095.311787pt;}
.wsc{word-spacing:-280.538667pt;}
.ws10{word-spacing:-261.978667pt;}
.wse{word-spacing:-157.765333pt;}
.ws0{word-spacing:-48.000000pt;}
.ws11{word-spacing:-16.951808pt;}
.ws19{word-spacing:-16.704000pt;}
.ws12{word-spacing:-16.640000pt;}
.ws13{word-spacing:-16.512000pt;}
.ws17{word-spacing:-16.256000pt;}
.ws14{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws16{word-spacing:-15.616000pt;}
.ws18{word-spacing:-15.552000pt;}
.ws1a{word-spacing:-15.168000pt;}
.ws15{word-spacing:-10.959467pt;}
.ws8{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsa{word-spacing:-10.400000pt;}
.wsb{word-spacing:-0.576000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:60.688000pt;}
.wsf{word-spacing:240.656000pt;}
.wsd{word-spacing:263.696000pt;}
._3d{margin-left:-269.690667pt;}
._3f{margin-left:-251.184000pt;}
._3e{margin-left:-146.757333pt;}
._19{margin-left:-4.480000pt;}
._4{margin-left:-3.456000pt;}
._e{margin-left:-2.560000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.146667pt;}
._8{width:2.064000pt;}
._f{width:2.997333pt;}
._6{width:4.106667pt;}
._5{width:5.120000pt;}
._7{width:6.458667pt;}
._10{width:7.616000pt;}
._d{width:8.896000pt;}
._25{width:10.368000pt;}
._b{width:11.264000pt;}
._c{width:12.544000pt;}
._1a{width:13.824000pt;}
._13{width:14.848000pt;}
._1f{width:17.728000pt;}
._20{width:18.624000pt;}
._23{width:19.904000pt;}
._18{width:21.632000pt;}
._22{width:22.976000pt;}
._16{width:24.874667pt;}
._4e{width:25.813333pt;}
._12{width:26.880000pt;}
._9{width:27.776000pt;}
._a{width:28.800000pt;}
._11{width:29.701333pt;}
._33{width:30.778667pt;}
._2b{width:31.829333pt;}
._2a{width:32.746667pt;}
._29{width:34.176000pt;}
._24{width:35.264000pt;}
._1d{width:36.160000pt;}
._17{width:37.120000pt;}
._21{width:38.250667pt;}
._2f{width:39.360000pt;}
._2e{width:40.469333pt;}
._15{width:42.261333pt;}
._14{width:43.498667pt;}
._26{width:44.741333pt;}
._27{width:45.760000pt;}
._40{width:49.664000pt;}
._47{width:50.645333pt;}
._34{width:51.626667pt;}
._1e{width:52.928000pt;}
._4c{width:54.208000pt;}
._28{width:55.808000pt;}
._44{width:58.176000pt;}
._32{width:60.032000pt;}
._42{width:61.056000pt;}
._2c{width:62.080000pt;}
._43{width:63.557333pt;}
._53{width:65.408000pt;}
._1b{width:66.432000pt;}
._1c{width:67.392000pt;}
._4d{width:69.376000pt;}
._4f{width:71.744000pt;}
._41{width:72.768000pt;}
._50{width:73.984000pt;}
._49{width:75.498667pt;}
._55{width:76.544000pt;}
._54{width:77.440000pt;}
._2d{width:79.210667pt;}
._45{width:80.896000pt;}
._39{width:82.437333pt;}
._35{width:92.650667pt;}
._4a{width:117.760000pt;}
._4b{width:118.704427pt;}
._46{width:130.432000pt;}
._37{width:132.112000pt;}
._52{width:135.744000pt;}
._38{width:143.333333pt;}
._30{width:157.376000pt;}
._31{width:158.784000pt;}
._51{width:161.920000pt;}
._36{width:176.000000pt;}
._48{width:237.376000pt;}
._3{width:320.266667pt;}
._2{width:755.904000pt;}
._3a{width:1095.434667pt;}
._3b{width:1240.458667pt;}
._3c{width:1874.964267pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs7{font-size:75.008000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:6.240000pt;}
.y99{bottom:6.400000pt;}
.y93{bottom:6.426667pt;}
.y96{bottom:6.560000pt;}
.y9a{bottom:6.720000pt;}
.ycc{bottom:11.106667pt;}
.ye2{bottom:11.173333pt;}
.ydd{bottom:11.773333pt;}
.yf3{bottom:11.813333pt;}
.yb8{bottom:15.746667pt;}
.ya4{bottom:16.960000pt;}
.ya5{bottom:17.120000pt;}
.ya7{bottom:17.280000pt;}
.ya8{bottom:17.440000pt;}
.ye8{bottom:23.973333pt;}
.yd8{bottom:27.360000pt;}
.yec{bottom:27.426667pt;}
.ycd{bottom:29.213333pt;}
.yd4{bottom:31.706667pt;}
.ye3{bottom:39.546667pt;}
.yb6{bottom:44.666667pt;}
.yed{bottom:47.200000pt;}
.yce{bottom:47.333333pt;}
.y3{bottom:52.032000pt;}
.yd9{bottom:53.760000pt;}
.yb5{bottom:59.333333pt;}
.yf6{bottom:62.560000pt;}
.ycf{bottom:65.440000pt;}
.yee{bottom:66.973333pt;}
.ye4{bottom:67.973333pt;}
.y2{bottom:69.952000pt;}
.yaf{bottom:74.306667pt;}
.yda{bottom:80.160000pt;}
.yd0{bottom:83.546667pt;}
.ycb{bottom:86.626667pt;}
.yef{bottom:86.746667pt;}
.yb0{bottom:95.266667pt;}
.ye5{bottom:96.386667pt;}
.yf7{bottom:97.733333pt;}
.yd7{bottom:100.226667pt;}
.yc7{bottom:100.352000pt;}
.y58{bottom:101.312000pt;}
.yca{bottom:101.373333pt;}
.yd1{bottom:101.666667pt;}
.y31{bottom:103.392000pt;}
.yf0{bottom:106.533333pt;}
.ydb{bottom:106.560000pt;}
.y76{bottom:111.552000pt;}
.y91{bottom:113.312000pt;}
.yeb{bottom:113.346667pt;}
.yd6{bottom:114.946667pt;}
.yb1{bottom:116.226667pt;}
.y2b{bottom:116.512000pt;}
.y135{bottom:117.472000pt;}
.yd2{bottom:119.773333pt;}
.ye1{bottom:120.480000pt;}
.yc6{bottom:121.472000pt;}
.y57{bottom:122.432000pt;}
.y30{bottom:124.672000pt;}
.ye6{bottom:124.800000pt;}
.yf1{bottom:126.266667pt;}
.yea{bottom:128.066667pt;}
.y107{bottom:131.712000pt;}
.y75{bottom:132.832000pt;}
.ydc{bottom:132.933333pt;}
.y90{bottom:134.266667pt;}
.ye0{bottom:135.200000pt;}
.y134{bottom:135.866667pt;}
.yb2{bottom:137.186667pt;}
.yd3{bottom:137.853333pt;}
.y2a{bottom:137.946667pt;}
.yc5{bottom:142.586667pt;}
.y56{bottom:143.546667pt;}
.y2f{bottom:145.786667pt;}
.yf2{bottom:146.053333pt;}
.y106{bottom:150.106667pt;}
.ye7{bottom:153.186667pt;}
.y74{bottom:153.946667pt;}
.y133{bottom:154.266667pt;}
.y8f{bottom:155.386667pt;}
.yde{bottom:158.013333pt;}
.yb3{bottom:158.146667pt;}
.y29{bottom:159.066667pt;}
.yd5{bottom:162.946667pt;}
.yc4{bottom:163.706667pt;}
.y55{bottom:164.826667pt;}
.y2e{bottom:166.906667pt;}
.y105{bottom:168.506667pt;}
.yf4{bottom:171.133333pt;}
.y132{bottom:172.666667pt;}
.y73{bottom:175.066667pt;}
.y8e{bottom:176.986667pt;}
.ye9{bottom:178.266667pt;}
.yb4{bottom:179.106667pt;}
.y28{bottom:180.186667pt;}
.yc3{bottom:184.986667pt;}
.y54{bottom:185.626667pt;}
.y104{bottom:186.906667pt;}
.y2d{bottom:188.026667pt;}
.y131{bottom:191.066667pt;}
.y72{bottom:196.186667pt;}
.y8d{bottom:198.106667pt;}
.y27{bottom:201.466667pt;}
.y103{bottom:205.306667pt;}
.yc2{bottom:206.106667pt;}
.y53{bottom:207.066667pt;}
.y130{bottom:209.466667pt;}
.yb7{bottom:217.146667pt;}
.y71{bottom:217.466667pt;}
.y8c{bottom:219.226667pt;}
.y26{bottom:222.586667pt;}
.y102{bottom:223.706667pt;}
.yc1{bottom:226.906667pt;}
.yc8{bottom:227.226667pt;}
.y12f{bottom:227.866667pt;}
.y52{bottom:228.186667pt;}
.y70{bottom:238.586667pt;}
.y8b{bottom:240.346667pt;}
.y101{bottom:242.106667pt;}
.y25{bottom:243.706667pt;}
.y12e{bottom:246.266667pt;}
.yc0{bottom:248.026667pt;}
.y51{bottom:249.506667pt;}
.yad{bottom:250.786667pt;}
.yae{bottom:251.680000pt;}
.y6f{bottom:259.746667pt;}
.y100{bottom:260.546667pt;}
.y8a{bottom:261.666667pt;}
.y12d{bottom:264.706667pt;}
.y24{bottom:264.866667pt;}
.ybf{bottom:269.666667pt;}
.y50{bottom:270.626667pt;}
.yff{bottom:278.946667pt;}
.y6e{bottom:280.866667pt;}
.y89{bottom:282.786667pt;}
.y12c{bottom:283.106667pt;}
.y23{bottom:286.146667pt;}
.y4f{bottom:291.746667pt;}
.ybe{bottom:301.346667pt;}
.y12b{bottom:301.506667pt;}
.y6d{bottom:302.146667pt;}
.y88{bottom:303.906667pt;}
.y22{bottom:307.266667pt;}
.yfe{bottom:310.466667pt;}
.y4e{bottom:312.866667pt;}
.y12a{bottom:319.906667pt;}
.yf5{bottom:322.400000pt;}
.ybd{bottom:322.466667pt;}
.y87{bottom:325.026667pt;}
.y21{bottom:328.386667pt;}
.yfc{bottom:331.746667pt;}
.y4d{bottom:334.146667pt;}
.y6c{bottom:336.226667pt;}
.y129{bottom:338.306667pt;}
.y86{bottom:346.306667pt;}
.y20{bottom:349.506667pt;}
.yfb{bottom:352.866667pt;}
.y128{bottom:356.706667pt;}
.y85{bottom:367.426667pt;}
.y4c{bottom:368.226667pt;}
.y6b{bottom:368.546667pt;}
.y1f{bottom:370.466667pt;}
.y2c{bottom:370.786667pt;}
.yfa{bottom:374.146667pt;}
.y127{bottom:375.106667pt;}
.y84{bottom:388.546667pt;}
.y6a{bottom:389.506667pt;}
.y1e{bottom:391.586667pt;}
.y126{bottom:393.506667pt;}
.yfd{bottom:394.946667pt;}
.yf9{bottom:395.266667pt;}
.y4b{bottom:402.786667pt;}
.y83{bottom:409.666667pt;}
.y69{bottom:410.786667pt;}
.y125{bottom:411.906667pt;}
.yf8{bottom:416.386667pt;}
.y1d{bottom:423.586667pt;}
.y124{bottom:430.306667pt;}
.y82{bottom:430.786667pt;}
.y68{bottom:431.906667pt;}
.y4a{bottom:437.506667pt;}
.y1c{bottom:442.146667pt;}
.y81{bottom:448.226667pt;}
.y123{bottom:448.706667pt;}
.y67{bottom:453.026667pt;}
.y49{bottom:458.786667pt;}
.y1b{bottom:460.546667pt;}
.y122{bottom:467.106667pt;}
.y66{bottom:474.146667pt;}
.y1a{bottom:478.946667pt;}
.y48{bottom:479.933333pt;}
.y121{bottom:485.533333pt;}
.y65{bottom:495.293333pt;}
.y19{bottom:497.373333pt;}
.y47{bottom:501.053333pt;}
.yac{bottom:503.133333pt;}
.y120{bottom:503.933333pt;}
.ybc{bottom:514.493333pt;}
.y18{bottom:515.773333pt;}
.y46{bottom:522.173333pt;}
.y11f{bottom:522.333333pt;}
.yab{bottom:524.413333pt;}
.y64{bottom:529.533333pt;}
.y17{bottom:534.173333pt;}
.ybb{bottom:535.613333pt;}
.ydf{bottom:535.680000pt;}
.yaa{bottom:540.253333pt;}
.y11e{bottom:540.733333pt;}
.y45{bottom:543.293333pt;}
.y16{bottom:552.573333pt;}
.y11d{bottom:559.133333pt;}
.y63{bottom:561.853333pt;}
.y44{bottom:564.573333pt;}
.y15{bottom:570.973333pt;}
.ya9{bottom:572.093333pt;}
.y11c{bottom:577.533333pt;}
.y62{bottom:582.813333pt;}
.y43{bottom:585.693333pt;}
.y14{bottom:589.373333pt;}
.y11b{bottom:595.933333pt;}
.y61{bottom:603.933333pt;}
.y42{bottom:606.813333pt;}
.y13{bottom:607.773333pt;}
.y11a{bottom:614.333333pt;}
.y60{bottom:625.213333pt;}
.y12{bottom:626.173333pt;}
.y41{bottom:627.933333pt;}
.y119{bottom:632.733333pt;}
.ya6{bottom:635.773333pt;}
.y80{bottom:643.133333pt;}
.y11{bottom:644.573333pt;}
.y5f{bottom:646.333333pt;}
.y40{bottom:649.213333pt;}
.y118{bottom:651.133333pt;}
.y10{bottom:662.973333pt;}
.y5e{bottom:667.453333pt;}
.ya3{bottom:668.893333pt;}
.y117{bottom:669.533333pt;}
.y3f{bottom:670.333333pt;}
.y7f{bottom:677.693333pt;}
.yf{bottom:681.373333pt;}
.y116{bottom:687.933333pt;}
.y5d{bottom:688.573333pt;}
.y3e{bottom:691.453333pt;}
.ye{bottom:699.773333pt;}
.y115{bottom:706.333333pt;}
.ya2{bottom:708.253333pt;}
.y7e{bottom:710.053333pt;}
.y3d{bottom:712.613333pt;}
.yd{bottom:720.453333pt;}
.y5c{bottom:722.853333pt;}
.y114{bottom:724.773333pt;}
.ya1{bottom:729.573333pt;}
.y7d{bottom:731.013333pt;}
.y3c{bottom:733.893333pt;}
.yc{bottom:741.893333pt;}
.y113{bottom:743.173333pt;}
.yba{bottom:747.973333pt;}
.ya0{bottom:750.693333pt;}
.y7c{bottom:752.133333pt;}
.y5b{bottom:754.853333pt;}
.y3b{bottom:755.013333pt;}
.y112{bottom:761.573333pt;}
.yb{bottom:763.173333pt;}
.yb9{bottom:769.253333pt;}
.yc9{bottom:769.280000pt;}
.y9f{bottom:772.133333pt;}
.y7b{bottom:773.253333pt;}
.y5a{bottom:775.813333pt;}
.y3a{bottom:776.133333pt;}
.y111{bottom:779.973333pt;}
.ya{bottom:790.373333pt;}
.y9e{bottom:793.253333pt;}
.y7a{bottom:794.533333pt;}
.y59{bottom:796.933333pt;}
.y39{bottom:797.253333pt;}
.y110{bottom:798.373333pt;}
.y9{bottom:808.933333pt;}
.y9d{bottom:814.533333pt;}
.y79{bottom:815.653333pt;}
.y10f{bottom:816.773333pt;}
.y38{bottom:818.533333pt;}
.y8{bottom:820.933333pt;}
.y10e{bottom:835.173333pt;}
.y9c{bottom:835.653333pt;}
.y37{bottom:839.653333pt;}
.y78{bottom:849.733333pt;}
.y9b{bottom:851.493333pt;}
.y10d{bottom:853.573333pt;}
.y7{bottom:856.453333pt;}
.y36{bottom:860.773333pt;}
.y10c{bottom:871.973333pt;}
.y98{bottom:872.613333pt;}
.y6{bottom:881.093333pt;}
.y35{bottom:881.893333pt;}
.y77{bottom:882.053333pt;}
.y10b{bottom:890.373333pt;}
.y97{bottom:893.893333pt;}
.y34{bottom:903.173333pt;}
.y10a{bottom:908.773333pt;}
.y94{bottom:915.013333pt;}
.y5{bottom:923.333333pt;}
.y33{bottom:924.293333pt;}
.y109{bottom:927.173333pt;}
.y92{bottom:937.413333pt;}
.y4{bottom:941.440000pt;}
.y32{bottom:945.440000pt;}
.y108{bottom:945.600000pt;}
.y1{bottom:996.800000pt;}
.hc{height:21.106667pt;}
.hd{height:21.266667pt;}
.hb{height:21.306667pt;}
.he{height:31.840000pt;}
.h7{height:42.084375pt;}
.h9{height:46.281250pt;}
.h10{height:47.742188pt;}
.h1{height:49.148438pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.ha{height:66.383042pt;}
.h17{height:66.404375pt;}
.h11{height:74.477812pt;}
.h16{height:74.605125pt;}
.h5{height:75.465000pt;}
.h3{height:80.625000pt;}
.h13{height:185.920000pt;}
.h12{height:190.720000pt;}
.h15{height:199.040000pt;}
.h14{height:206.080000pt;}
.hf{height:244.960000pt;}
.h0{height:1056.000000pt;}
.w1{width:159.512000pt;}
.w3{width:161.946667pt;}
.w2{width:183.693333pt;}
.w4{width:207.538667pt;}
.w5{width:207.546667pt;}
.w6{width:208.973333pt;}
.wb{width:262.720000pt;}
.w8{width:273.760000pt;}
.w9{width:273.920000pt;}
.wa{width:310.240000pt;}
.wc{width:468.960000pt;}
.w7{width:540.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.192000pt;}
.x22{left:8.736000pt;}
.x24{left:12.416000pt;}
.x28{left:14.946667pt;}
.x23{left:18.493333pt;}
.x30{left:21.026667pt;}
.x29{left:29.120000pt;}
.x19{left:32.032000pt;}
.x31{left:35.200000pt;}
.x18{left:38.146667pt;}
.x17{left:44.226667pt;}
.x1d{left:64.413333pt;}
.x32{left:84.866667pt;}
.x1a{left:91.840000pt;}
.x25{left:93.373333pt;}
.x3{left:96.032000pt;}
.x2f{left:98.373333pt;}
.x26{left:106.693333pt;}
.x2d{left:109.306667pt;}
.x2a{left:113.600000pt;}
.x20{left:115.586667pt;}
.x1f{left:117.920000pt;}
.x1{left:120.032000pt;}
.x6{left:126.112000pt;}
.xa{left:127.072000pt;}
.x27{left:129.093333pt;}
.x21{left:133.826667pt;}
.x7{left:138.426667pt;}
.x2b{left:139.840000pt;}
.x13{left:144.026667pt;}
.x8{left:148.026667pt;}
.x4{left:155.546667pt;}
.x2c{left:164.160000pt;}
.x33{left:166.240000pt;}
.x9{left:171.386667pt;}
.x1e{left:203.333333pt;}
.x5{left:211.546667pt;}
.xb{left:221.626667pt;}
.x11{left:255.560000pt;}
.x34{left:282.266667pt;}
.xf{left:288.066667pt;}
.x35{left:298.746667pt;}
.x14{left:303.586667pt;}
.x1b{left:352.613333pt;}
.x2{left:396.866667pt;}
.x1c{left:409.093333pt;}
.xc{left:432.066667pt;}
.x12{left:439.266667pt;}
.x2e{left:450.720000pt;}
.xe{left:454.653333pt;}
.xd{left:480.093333pt;}
.x15{left:511.146667pt;}
.x16{left:636.133333pt;}
}




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