
    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_de249a0170a72ed42484fa27.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_670f30c1ee53338b75922ed6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_a15285b5c720bb4df732e358.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3d71aa62b5e589af55f18bc2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_25b58310c195edc98484223e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.ls5{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.900000px;}
.ls8{letter-spacing:21.546720px;}
.ls6{letter-spacing:64.026720px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws3{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.ws2{word-spacing:-13.500000px;}
.ws4{word-spacing:0.000000px;}
._51{margin-left:-8.197440px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._6{width:2.925600px;}
._2{width:4.245600px;}
._d{width:5.789040px;}
._7{width:6.984240px;}
._8{width:8.030880px;}
._15{width:9.046800px;}
._11{width:10.055040px;}
._c{width:11.167440px;}
._f{width:12.609360px;}
._14{width:13.677360px;}
._e{width:16.119840px;}
._13{width:17.653920px;}
._16{width:19.420800px;}
._b{width:20.796480px;}
._12{width:22.529040px;}
._10{width:23.844240px;}
._18{width:26.466000px;}
._17{width:27.489600px;}
._1d{width:29.035680px;}
._56{width:30.545040px;}
._2d{width:31.605360px;}
._45{width:32.987520px;}
._3a{width:34.780320px;}
._1c{width:36.214560px;}
._a{width:37.342320px;}
._9{width:38.903760px;}
._29{width:42.250320px;}
._2e{width:44.035440px;}
._36{width:46.194480px;}
._54{width:48.935760px;}
._21{width:50.370000px;}
._25{width:51.445680px;}
._33{width:52.716000px;}
._34{width:55.576800px;}
._30{width:57.003360px;}
._2b{width:58.505040px;}
._41{width:59.879520px;}
._4d{width:61.134480px;}
._19{width:66.094560px;}
._53{width:67.334160px;}
._32{width:68.417520px;}
._4c{width:70.098480px;}
._42{width:72.727920px;}
._49{width:75.118320px;}
._1e{width:76.194000px;}
._38{width:79.062480px;}
._4f{width:81.923280px;}
._39{width:84.600240px;}
._5{width:85.656000px;}
._23{width:87.301680px;}
._37{width:89.281440px;}
._28{width:90.887280px;}
._26{width:92.926800px;}
._4a{width:100.448880px;}
._44{width:103.616160px;}
._40{width:104.759280px;}
._27{width:107.082240px;}
._2a{width:108.396960px;}
._24{width:115.329120px;}
._1b{width:119.221200px;}
._1a{width:121.424640px;}
._20{width:123.165360px;}
._2c{width:126.990000px;}
._3e{width:135.714960px;}
._1f{width:142.766640px;}
._35{width:144.013920px;}
._3f{width:145.635120px;}
._4e{width:147.069360px;}
._3c{width:149.878080px;}
._55{width:154.045920px;}
._43{width:155.854080px;}
._48{width:159.021360px;}
._47{width:162.427680px;}
._4b{width:167.865840px;}
._31{width:174.977280px;}
._46{width:179.100720px;}
._3d{width:181.072800px;}
._3b{width:189.439200px;}
._52{width:202.108320px;}
._2f{width:211.072320px;}
._22{width:223.136160px;}
._50{width:255.055680px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc5{color:transparent;}
.fc4{color:rgb(128,0,128);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.yc2{bottom:-27.000000px;}
.yda{bottom:-13.140000px;}
.yc6{bottom:-12.780000px;}
.ye6{bottom:-10.980000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:2.340000px;}
.yd9{bottom:2.700000px;}
.y7f{bottom:3.240000px;}
.yed{bottom:4.140000px;}
.yaf{bottom:4.320000px;}
.y16e{bottom:4.680000px;}
.y91{bottom:4.860000px;}
.y93{bottom:5.400000px;}
.yb3{bottom:5.580000px;}
.yd1{bottom:9.360000px;}
.yb1{bottom:9.540000px;}
.y99{bottom:10.260000px;}
.ye2{bottom:10.800000px;}
.y110{bottom:11.880000px;}
.y95{bottom:12.240000px;}
.yde{bottom:12.420000px;}
.yc5{bottom:15.300000px;}
.y79{bottom:16.920000px;}
.yc9{bottom:17.100000px;}
.yac{bottom:17.640000px;}
.ye0{bottom:18.180000px;}
.y76{bottom:19.800000px;}
.y167{bottom:20.340000px;}
.y136{bottom:20.514000px;}
.y7e{bottom:20.520000px;}
.y175{bottom:20.565000px;}
.yd8{bottom:21.060000px;}
.y16d{bottom:21.960000px;}
.yd0{bottom:26.640000px;}
.y16b{bottom:28.980000px;}
.y10f{bottom:29.160000px;}
.yc0{bottom:31.500000px;}
.y7c{bottom:33.840000px;}
.y78{bottom:34.200000px;}
.yc8{bottom:34.380000px;}
.yb{bottom:36.720000px;}
.y166{bottom:37.614000px;}
.y11e{bottom:37.620000px;}
.y135{bottom:37.794000px;}
.y10e{bottom:37.800000px;}
.y174{bottom:37.845000px;}
.yd7{bottom:38.340000px;}
.ydd{bottom:40.500000px;}
.ycf{bottom:43.920000px;}
.yc4{bottom:44.460000px;}
.y169{bottom:46.254000px;}
.y118{bottom:46.260000px;}
.y195{bottom:46.434000px;}
.y125{bottom:46.440000px;}
.y147{bottom:46.470000px;}
.y178{bottom:46.485000px;}
.ye4{bottom:50.220000px;}
.y7b{bottom:51.120000px;}
.y163{bottom:54.894000px;}
.y11a{bottom:54.900000px;}
.y134{bottom:55.074000px;}
.y126{bottom:55.080000px;}
.y149{bottom:55.110000px;}
.y173{bottom:55.125000px;}
.ya{bottom:55.260000px;}
.yd6{bottom:56.550000px;}
.ydc{bottom:57.780000px;}
.ybf{bottom:60.840000px;}
.y168{bottom:63.534000px;}
.y117{bottom:63.540000px;}
.y13c{bottom:63.714000px;}
.y124{bottom:63.720000px;}
.y146{bottom:63.750000px;}
.y177{bottom:63.765000px;}
.y9{bottom:70.776000px;}
.y165{bottom:72.174000px;}
.y112{bottom:72.180000px;}
.y172{bottom:72.225000px;}
.y133{bottom:72.354000px;}
.y120{bottom:72.360000px;}
.y144{bottom:72.390000px;}
.yce{bottom:73.080000px;}
.yd5{bottom:73.830000px;}
.y16a{bottom:80.814000px;}
.y116{bottom:80.820000px;}
.y170{bottom:80.865000px;}
.y13a{bottom:80.994000px;}
.y13e{bottom:81.000000px;}
.y145{bottom:81.030000px;}
.y132{bottom:89.454000px;}
.y119{bottom:89.460000px;}
.y148{bottom:89.490000px;}
.y171{bottom:89.505000px;}
.y159{bottom:89.640000px;}
.ybe{bottom:90.000000px;}
.ycd{bottom:90.360000px;}
.yd4{bottom:92.190000px;}
.y138{bottom:98.094000px;}
.y123{bottom:98.100000px;}
.y115{bottom:98.130000px;}
.y176{bottom:98.145000px;}
.y161{bottom:98.280000px;}
.y164{bottom:106.554000px;}
.y12b{bottom:106.734000px;}
.y129{bottom:106.740000px;}
.y11d{bottom:106.770000px;}
.y158{bottom:106.785000px;}
.ycc{bottom:107.640000px;}
.ybc{bottom:111.456000px;}
.y183{bottom:112.716000px;}
.y162{bottom:114.336000px;}
.y137{bottom:115.374000px;}
.y122{bottom:115.380000px;}
.y114{bottom:115.410000px;}
.y160{bottom:115.425000px;}
.yaa{bottom:117.036000px;}
.y10c{bottom:120.456000px;}
.yd3{bottom:122.430000px;}
.y10b{bottom:123.516000px;}
.y3f{bottom:123.876000px;}
.y131{bottom:124.014000px;}
.y128{bottom:124.020000px;}
.y11c{bottom:124.050000px;}
.y157{bottom:124.065000px;}
.ybb{bottom:128.736000px;}
.y12a{bottom:131.436000px;}
.y139{bottom:132.654000px;}
.y121{bottom:132.660000px;}
.y113{bottom:132.690000px;}
.y15f{bottom:132.705000px;}
.ya9{bottom:134.316000px;}
.ycb{bottom:136.800000px;}
.y74{bottom:137.736000px;}
.y10a{bottom:140.796000px;}
.y11b{bottom:141.150000px;}
.y3e{bottom:141.156000px;}
.y130{bottom:141.294000px;}
.y127{bottom:141.300000px;}
.y14a{bottom:141.330000px;}
.y156{bottom:141.345000px;}
.yba{bottom:145.836000px;}
.y13b{bottom:149.934000px;}
.y140{bottom:149.940000px;}
.y15b{bottom:149.985000px;}
.ya8{bottom:151.590000px;}
.y73{bottom:155.010000px;}
.y109{bottom:158.070000px;}
.y182{bottom:158.400000px;}
.y3d{bottom:158.430000px;}
.y142{bottom:158.445000px;}
.y12f{bottom:158.574000px;}
.y13f{bottom:158.580000px;}
.y14c{bottom:158.625000px;}
.yb9{bottom:163.110000px;}
.y17e{bottom:167.070000px;}
.y188{bottom:167.214000px;}
.y15a{bottom:167.265000px;}
.ya7{bottom:168.690000px;}
.y72{bottom:172.290000px;}
.y108{bottom:175.350000px;}
.y184{bottom:175.674000px;}
.y3c{bottom:175.710000px;}
.y12e{bottom:175.854000px;}
.y155{bottom:175.905000px;}
.yb8{bottom:180.390000px;}
.y187{bottom:184.314000px;}
.y17d{bottom:184.350000px;}
.y15e{bottom:184.545000px;}
.ya6{bottom:185.970000px;}
.y71{bottom:189.570000px;}
.y107{bottom:192.630000px;}
.y12d{bottom:192.954000px;}
.y3b{bottom:192.990000px;}
.y154{bottom:193.185000px;}
.yb7{bottom:197.670000px;}
.y186{bottom:201.594000px;}
.y17c{bottom:201.630000px;}
.y15d{bottom:201.645000px;}
.ya5{bottom:203.250000px;}
.y70{bottom:206.670000px;}
.y106{bottom:209.730000px;}
.y3a{bottom:210.090000px;}
.y18f{bottom:210.234000px;}
.y181{bottom:210.270000px;}
.y12c{bottom:210.279000px;}
.y153{bottom:210.285000px;}
.yb6{bottom:214.950000px;}
.y185{bottom:218.874000px;}
.y17b{bottom:218.910000px;}
.y15c{bottom:218.925000px;}
.ya4{bottom:220.530000px;}
.y6f{bottom:223.950000px;}
.y105{bottom:227.010000px;}
.y39{bottom:227.370000px;}
.y180{bottom:227.550000px;}
.y18e{bottom:227.559000px;}
.y152{bottom:227.565000px;}
.yb5{bottom:232.230000px;}
.y14b{bottom:235.650000px;}
.y194{bottom:236.199000px;}
.ya3{bottom:237.810000px;}
.y6e{bottom:241.230000px;}
.y104{bottom:244.290000px;}
.y38{bottom:244.650000px;}
.y17f{bottom:244.830000px;}
.y18d{bottom:244.839000px;}
.y151{bottom:244.845000px;}
.yb4{bottom:249.330000px;}
.y193{bottom:253.479000px;}
.ya2{bottom:255.090000px;}
.y6d{bottom:258.510000px;}
.y103{bottom:261.570000px;}
.y37{bottom:261.930000px;}
.y18c{bottom:262.119000px;}
.y150{bottom:262.125000px;}
.yb2{bottom:264.090000px;}
.y192{bottom:270.579000px;}
.ya1{bottom:272.190000px;}
.y6c{bottom:275.790000px;}
.y102{bottom:278.850000px;}
.y36{bottom:279.210000px;}
.y18b{bottom:279.219000px;}
.y14f{bottom:279.405000px;}
.yb0{bottom:283.710000px;}
.y191{bottom:287.859000px;}
.ya0{bottom:289.470000px;}
.y6b{bottom:292.890000px;}
.y101{bottom:295.950000px;}
.y35{bottom:296.490000px;}
.y18a{bottom:296.499000px;}
.y14e{bottom:296.685000px;}
.y190{bottom:305.139000px;}
.y9f{bottom:306.750000px;}
.yae{bottom:307.290000px;}
.y6a{bottom:310.170000px;}
.y100{bottom:313.230000px;}
.y34{bottom:313.590000px;}
.y189{bottom:313.779000px;}
.y14d{bottom:313.785000px;}
.y9e{bottom:324.030000px;}
.yad{bottom:325.650000px;}
.y69{bottom:327.450000px;}
.yff{bottom:330.510000px;}
.y33{bottom:330.870000px;}
.y9d{bottom:341.355000px;}
.yab{bottom:343.695000px;}
.y68{bottom:344.775000px;}
.yfe{bottom:347.835000px;}
.y32{bottom:348.195000px;}
.y11f{bottom:356.475000px;}
.y9c{bottom:358.455000px;}
.y67{bottom:362.055000px;}
.yfd{bottom:365.115000px;}
.y31{bottom:365.475000px;}
.y9b{bottom:375.735000px;}
.y66{bottom:379.335000px;}
.yfc{bottom:382.395000px;}
.y30{bottom:382.755000px;}
.y9a{bottom:393.015000px;}
.y65{bottom:396.435000px;}
.yfb{bottom:399.495000px;}
.y2f{bottom:399.855000px;}
.y98{bottom:407.775000px;}
.y64{bottom:413.715000px;}
.yfa{bottom:416.775000px;}
.y2e{bottom:417.135000px;}
.y63{bottom:430.995000px;}
.y97{bottom:432.795000px;}
.yf9{bottom:434.055000px;}
.y2d{bottom:434.415000px;}
.y17a{bottom:441.255000px;}
.y62{bottom:448.275000px;}
.yf8{bottom:451.335000px;}
.y2c{bottom:451.695000px;}
.y61{bottom:465.555000px;}
.y96{bottom:468.075000px;}
.yf7{bottom:468.615000px;}
.y2b{bottom:468.975000px;}
.y60{bottom:482.835000px;}
.yf6{bottom:485.895000px;}
.y2a{bottom:490.215000px;}
.y94{bottom:495.075000px;}
.y5f{bottom:499.935000px;}
.yf5{bottom:502.995000px;}
.ye5{bottom:504.975000px;}
.y29{bottom:508.755000px;}
.y111{bottom:512.535000px;}
.y5e{bottom:517.215000px;}
.yf4{bottom:520.275000px;}
.ye3{bottom:521.535000px;}
.y92{bottom:522.075000px;}
.y28{bottom:527.295000px;}
.y5d{bottom:534.495000px;}
.yf3{bottom:537.555000px;}
.y90{bottom:542.235000px;}
.y27{bottom:546.015000px;}
.yd2{bottom:549.075000px;}
.y5c{bottom:551.775000px;}
.yf2{bottom:554.835000px;}
.y143{bottom:564.195000px;}
.y26{bottom:564.555000px;}
.y5b{bottom:569.055000px;}
.yf1{bottom:569.595000px;}
.y8f{bottom:578.415000px;}
.y25{bottom:583.275000px;}
.y5a{bottom:586.155000px;}
.yf0{bottom:586.875000px;}
.y8e{bottom:596.955000px;}
.y24{bottom:601.815000px;}
.y59{bottom:603.435000px;}
.yef{bottom:607.065000px;}
.ydb{bottom:609.405000px;}
.y8d{bottom:615.705000px;}
.y23{bottom:620.385000px;}
.y58{bottom:620.745000px;}
.yee{bottom:624.345000px;}
.y57{bottom:638.025000px;}
.y22{bottom:639.105000px;}
.yec{bottom:641.445000px;}
.y8c{bottom:646.305000px;}
.y56{bottom:655.305000px;}
.y21{bottom:657.645000px;}
.yeb{bottom:660.345000px;}
.y8b{bottom:664.845000px;}
.y10d{bottom:668.445000px;}
.y55{bottom:672.585000px;}
.y20{bottom:676.365000px;}
.yea{bottom:677.625000px;}
.y8a{bottom:683.565000px;}
.y54{bottom:689.685000px;}
.y1f{bottom:694.905000px;}
.y89{bottom:702.105000px;}
.y53{bottom:706.965000px;}
.y1e{bottom:713.625000px;}
.y179{bottom:717.945000px;}
.y141{bottom:720.285000px;}
.y88{bottom:720.825000px;}
.y52{bottom:724.245000px;}
.ye1{bottom:727.125000px;}
.yca{bottom:727.305000px;}
.y1d{bottom:732.165000px;}
.ye9{bottom:733.785000px;}
.y87{bottom:739.365000px;}
.y51{bottom:741.525000px;}
.y1c{bottom:750.705000px;}
.ye8{bottom:753.945000px;}
.y86{bottom:757.905000px;}
.y50{bottom:758.805000px;}
.yc7{bottom:763.305000px;}
.y1b{bottom:769.425000px;}
.ye7{bottom:771.945000px;}
.y4f{bottom:776.085000px;}
.y85{bottom:776.625000px;}
.y1a{bottom:787.965000px;}
.y4e{bottom:793.185000px;}
.y84{bottom:795.165000px;}
.y19{bottom:806.685000px;}
.y4d{bottom:810.465000px;}
.y83{bottom:813.885000px;}
.y18{bottom:825.225000px;}
.y4c{bottom:827.745000px;}
.y82{bottom:832.425000px;}
.y17{bottom:843.765000px;}
.y4b{bottom:845.025000px;}
.y81{bottom:849.705000px;}
.y16f{bottom:856.725000px;}
.y16{bottom:862.305000px;}
.y80{bottom:866.985000px;}
.y4a{bottom:879.630000px;}
.y15{bottom:879.990000px;}
.y7d{bottom:882.150000px;}
.y13d{bottom:893.490000px;}
.y49{bottom:896.730000px;}
.y14{bottom:898.890000px;}
.ydf{bottom:906.810000px;}
.ybd{bottom:911.490000px;}
.y48{bottom:914.010000px;}
.y7a{bottom:916.710000px;}
.y13{bottom:917.970000px;}
.y47{bottom:931.290000px;}
.y12{bottom:936.870000px;}
.y46{bottom:948.570000px;}
.yc3{bottom:949.290000px;}
.y11{bottom:955.950000px;}
.y45{bottom:965.850000px;}
.y10{bottom:974.850000px;}
.y77{bottom:981.870000px;}
.y44{bottom:982.950000px;}
.yf{bottom:993.750000px;}
.y43{bottom:1000.230000px;}
.ye{bottom:1012.830000px;}
.y42{bottom:1017.510000px;}
.y16c{bottom:1030.110000px;}
.y75{bottom:1031.190000px;}
.yd{bottom:1031.730000px;}
.y41{bottom:1034.790000px;}
.yc{bottom:1050.810000px;}
.y40{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.h27{height:17.100000px;}
.h24{height:17.280000px;}
.h13{height:17.316000px;}
.h14{height:18.360000px;}
.h26{height:18.720000px;}
.he{height:18.900000px;}
.hf{height:19.440000px;}
.h16{height:19.620000px;}
.h25{height:20.160000px;}
.h28{height:20.196000px;}
.h15{height:23.580000px;}
.h11{height:24.300000px;}
.h10{height:26.280000px;}
.h12{height:31.500000px;}
.h9{height:33.660000px;}
.hc{height:34.560000px;}
.h32{height:36.000000px;}
.h6{height:39.049805px;}
.h1d{height:39.313477px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.hd{height:43.302656px;}
.h1c{height:43.506914px;}
.h8{height:46.736719px;}
.h3{height:47.901094px;}
.ha{height:48.240000px;}
.h4{height:50.800781px;}
.h29{height:51.840000px;}
.h19{height:53.709961px;}
.h23{height:55.291982px;}
.h21{height:55.291992px;}
.h18{height:58.500000px;}
.hb{height:65.160000px;}
.h7{height:65.884219px;}
.h1e{height:71.640000px;}
.h17{height:104.040000px;}
.h31{height:120.600000px;}
.h1f{height:123.120000px;}
.h20{height:131.040000px;}
.h1b{height:136.476000px;}
.h33{height:138.060000px;}
.h1a{height:150.870000px;}
.h2a{height:155.190000px;}
.h2b{height:155.340000px;}
.h2f{height:155.370000px;}
.h22{height:157.170000px;}
.h2e{height:172.470000px;}
.h2d{height:172.620000px;}
.h2c{height:224.310000px;}
.h34{height:275.970000px;}
.h30{height:327.810000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:15.840000px;}
.w14{width:31.176000px;}
.w6{width:64.980000px;}
.w17{width:95.040000px;}
.w16{width:95.256000px;}
.w18{width:95.436000px;}
.w19{width:104.076000px;}
.w15{width:105.840000px;}
.w1a{width:128.880000px;}
.w11{width:139.500000px;}
.w12{width:139.896000px;}
.w5{width:168.870000px;}
.w3{width:169.020000px;}
.w4{width:169.230000px;}
.w9{width:180.570000px;}
.wf{width:219.810000px;}
.wb{width:219.990000px;}
.wa{width:233.850000px;}
.w8{width:244.650000px;}
.wc{width:269.670000px;}
.wd{width:313.230000px;}
.w10{width:377.175000px;}
.w7{width:592.845000px;}
.w13{width:656.565000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.560000px;}
.x46{left:8.640000px;}
.x37{left:10.800000px;}
.x20{left:14.940000px;}
.x27{left:16.740000px;}
.x44{left:18.180000px;}
.x42{left:20.700000px;}
.x4a{left:21.780000px;}
.x23{left:24.474000px;}
.x45{left:26.100000px;}
.x41{left:27.900000px;}
.x1d{left:29.340000px;}
.x13{left:30.960000px;}
.x38{left:32.040000px;}
.x17{left:35.310000px;}
.x19{left:37.440000px;}
.x1a{left:40.725000px;}
.x15{left:41.985000px;}
.x1c{left:49.545000px;}
.x3f{left:68.040000px;}
.x2c{left:69.120000px;}
.x3c{left:71.634000px;}
.x2e{left:75.414000px;}
.x2f{left:79.020000px;}
.x31{left:80.274000px;}
.x32{left:82.800000px;}
.x25{left:92.385000px;}
.x24{left:93.825000px;}
.x12{left:100.476000px;}
.x33{left:106.374000px;}
.x1{left:108.035987px;}
.x34{left:109.440000px;}
.x30{left:113.220000px;}
.x2{left:123.155987px;}
.x3b{left:128.376000px;}
.x1f{left:129.636000px;}
.x4d{left:135.035987px;}
.x7{left:137.555987px;}
.x4b{left:139.535987px;}
.x4{left:157.169987px;}
.x4e{left:162.029987px;}
.x8{left:170.309987px;}
.x26{left:173.565000px;}
.x36{left:175.530000px;}
.xc{left:178.769987px;}
.x21{left:195.330000px;}
.x40{left:205.770000px;}
.x35{left:229.169987px;}
.x22{left:259.245000px;}
.x14{left:269.490000px;}
.x28{left:273.315000px;}
.xf{left:283.574987px;}
.x2a{left:295.454987px;}
.x43{left:301.575000px;}
.xb{left:303.194987px;}
.x29{left:308.234987px;}
.x1e{left:310.034987px;}
.xe{left:312.374987px;}
.x2b{left:344.595000px;}
.x3d{left:346.394987px;}
.x4c{left:362.414987px;}
.xa{left:364.934987px;}
.xd{left:384.914987px;}
.x10{left:386.534987px;}
.x6{left:396.434987px;}
.x11{left:398.954987px;}
.x5{left:412.274987px;}
.x16{left:438.735000px;}
.x9{left:446.474987px;}
.x39{left:472.245000px;}
.x3a{left:477.645000px;}
.x47{left:492.765000px;}
.x3{left:518.504987px;}
.x2d{left:525.345000px;}
.x48{left:598.965000px;}
.x18{left:607.605000px;}
.x3e{left:616.605000px;}
.x49{left:703.410000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.800000pt;}
.ls8{letter-spacing:19.152640pt;}
.ls6{letter-spacing:56.912640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.ws2{word-spacing:-12.000000pt;}
.ws4{word-spacing:0.000000pt;}
._51{margin-left:-7.286613pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._6{width:2.600533pt;}
._2{width:3.773867pt;}
._d{width:5.145813pt;}
._7{width:6.208213pt;}
._8{width:7.138560pt;}
._15{width:8.041600pt;}
._11{width:8.937813pt;}
._c{width:9.926613pt;}
._f{width:11.208320pt;}
._14{width:12.157653pt;}
._e{width:14.328747pt;}
._13{width:15.692373pt;}
._16{width:17.262933pt;}
._b{width:18.485760pt;}
._12{width:20.025813pt;}
._10{width:21.194880pt;}
._18{width:23.525333pt;}
._17{width:24.435200pt;}
._1d{width:25.809493pt;}
._56{width:27.151147pt;}
._2d{width:28.093653pt;}
._45{width:29.322240pt;}
._3a{width:30.915840pt;}
._1c{width:32.190720pt;}
._a{width:33.193173pt;}
._9{width:34.581120pt;}
._29{width:37.555840pt;}
._2e{width:39.142613pt;}
._36{width:41.061760pt;}
._54{width:43.498453pt;}
._21{width:44.773333pt;}
._25{width:45.729493pt;}
._33{width:46.858667pt;}
._34{width:49.401600pt;}
._30{width:50.669653pt;}
._2b{width:52.004480pt;}
._41{width:53.226240pt;}
._4d{width:54.341760pt;}
._19{width:58.750720pt;}
._53{width:59.852587pt;}
._32{width:60.815573pt;}
._4c{width:62.309760pt;}
._42{width:64.647040pt;}
._49{width:66.771840pt;}
._1e{width:67.728000pt;}
._38{width:70.277760pt;}
._4f{width:72.820693pt;}
._39{width:75.200213pt;}
._5{width:76.138667pt;}
._23{width:77.601493pt;}
._37{width:79.361280pt;}
._28{width:80.788693pt;}
._26{width:82.601600pt;}
._4a{width:89.287893pt;}
._44{width:92.103253pt;}
._40{width:93.119360pt;}
._27{width:95.184213pt;}
._2a{width:96.352853pt;}
._24{width:102.514773pt;}
._1b{width:105.974400pt;}
._1a{width:107.933013pt;}
._20{width:109.480320pt;}
._2c{width:112.880000pt;}
._3e{width:120.635520pt;}
._1f{width:126.903680pt;}
._35{width:128.012373pt;}
._3f{width:129.453440pt;}
._4e{width:130.728320pt;}
._3c{width:133.224960pt;}
._55{width:136.929707pt;}
._43{width:138.536960pt;}
._48{width:141.352320pt;}
._47{width:144.380160pt;}
._4b{width:149.214080pt;}
._31{width:155.535360pt;}
._46{width:159.200640pt;}
._3d{width:160.953600pt;}
._3b{width:168.390400pt;}
._52{width:179.651840pt;}
._2f{width:187.619840pt;}
._22{width:198.343253pt;}
._50{width:226.716160pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.yc2{bottom:-24.000000pt;}
.yda{bottom:-11.680000pt;}
.yc6{bottom:-11.360000pt;}
.ye6{bottom:-9.760000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:2.080000pt;}
.yd9{bottom:2.400000pt;}
.y7f{bottom:2.880000pt;}
.yed{bottom:3.680000pt;}
.yaf{bottom:3.840000pt;}
.y16e{bottom:4.160000pt;}
.y91{bottom:4.320000pt;}
.y93{bottom:4.800000pt;}
.yb3{bottom:4.960000pt;}
.yd1{bottom:8.320000pt;}
.yb1{bottom:8.480000pt;}
.y99{bottom:9.120000pt;}
.ye2{bottom:9.600000pt;}
.y110{bottom:10.560000pt;}
.y95{bottom:10.880000pt;}
.yde{bottom:11.040000pt;}
.yc5{bottom:13.600000pt;}
.y79{bottom:15.040000pt;}
.yc9{bottom:15.200000pt;}
.yac{bottom:15.680000pt;}
.ye0{bottom:16.160000pt;}
.y76{bottom:17.600000pt;}
.y167{bottom:18.080000pt;}
.y136{bottom:18.234667pt;}
.y7e{bottom:18.240000pt;}
.y175{bottom:18.280000pt;}
.yd8{bottom:18.720000pt;}
.y16d{bottom:19.520000pt;}
.yd0{bottom:23.680000pt;}
.y16b{bottom:25.760000pt;}
.y10f{bottom:25.920000pt;}
.yc0{bottom:28.000000pt;}
.y7c{bottom:30.080000pt;}
.y78{bottom:30.400000pt;}
.yc8{bottom:30.560000pt;}
.yb{bottom:32.640000pt;}
.y166{bottom:33.434667pt;}
.y11e{bottom:33.440000pt;}
.y135{bottom:33.594667pt;}
.y10e{bottom:33.600000pt;}
.y174{bottom:33.640000pt;}
.yd7{bottom:34.080000pt;}
.ydd{bottom:36.000000pt;}
.ycf{bottom:39.040000pt;}
.yc4{bottom:39.520000pt;}
.y169{bottom:41.114667pt;}
.y118{bottom:41.120000pt;}
.y195{bottom:41.274667pt;}
.y125{bottom:41.280000pt;}
.y147{bottom:41.306667pt;}
.y178{bottom:41.320000pt;}
.ye4{bottom:44.640000pt;}
.y7b{bottom:45.440000pt;}
.y163{bottom:48.794667pt;}
.y11a{bottom:48.800000pt;}
.y134{bottom:48.954667pt;}
.y126{bottom:48.960000pt;}
.y149{bottom:48.986667pt;}
.y173{bottom:49.000000pt;}
.ya{bottom:49.120000pt;}
.yd6{bottom:50.266667pt;}
.ydc{bottom:51.360000pt;}
.ybf{bottom:54.080000pt;}
.y168{bottom:56.474667pt;}
.y117{bottom:56.480000pt;}
.y13c{bottom:56.634667pt;}
.y124{bottom:56.640000pt;}
.y146{bottom:56.666667pt;}
.y177{bottom:56.680000pt;}
.y9{bottom:62.912000pt;}
.y165{bottom:64.154667pt;}
.y112{bottom:64.160000pt;}
.y172{bottom:64.200000pt;}
.y133{bottom:64.314667pt;}
.y120{bottom:64.320000pt;}
.y144{bottom:64.346667pt;}
.yce{bottom:64.960000pt;}
.yd5{bottom:65.626667pt;}
.y16a{bottom:71.834667pt;}
.y116{bottom:71.840000pt;}
.y170{bottom:71.880000pt;}
.y13a{bottom:71.994667pt;}
.y13e{bottom:72.000000pt;}
.y145{bottom:72.026667pt;}
.y132{bottom:79.514667pt;}
.y119{bottom:79.520000pt;}
.y148{bottom:79.546667pt;}
.y171{bottom:79.560000pt;}
.y159{bottom:79.680000pt;}
.ybe{bottom:80.000000pt;}
.ycd{bottom:80.320000pt;}
.yd4{bottom:81.946667pt;}
.y138{bottom:87.194667pt;}
.y123{bottom:87.200000pt;}
.y115{bottom:87.226667pt;}
.y176{bottom:87.240000pt;}
.y161{bottom:87.360000pt;}
.y164{bottom:94.714667pt;}
.y12b{bottom:94.874667pt;}
.y129{bottom:94.880000pt;}
.y11d{bottom:94.906667pt;}
.y158{bottom:94.920000pt;}
.ycc{bottom:95.680000pt;}
.ybc{bottom:99.072000pt;}
.y183{bottom:100.192000pt;}
.y162{bottom:101.632000pt;}
.y137{bottom:102.554667pt;}
.y122{bottom:102.560000pt;}
.y114{bottom:102.586667pt;}
.y160{bottom:102.600000pt;}
.yaa{bottom:104.032000pt;}
.y10c{bottom:107.072000pt;}
.yd3{bottom:108.826667pt;}
.y10b{bottom:109.792000pt;}
.y3f{bottom:110.112000pt;}
.y131{bottom:110.234667pt;}
.y128{bottom:110.240000pt;}
.y11c{bottom:110.266667pt;}
.y157{bottom:110.280000pt;}
.ybb{bottom:114.432000pt;}
.y12a{bottom:116.832000pt;}
.y139{bottom:117.914667pt;}
.y121{bottom:117.920000pt;}
.y113{bottom:117.946667pt;}
.y15f{bottom:117.960000pt;}
.ya9{bottom:119.392000pt;}
.ycb{bottom:121.600000pt;}
.y74{bottom:122.432000pt;}
.y10a{bottom:125.152000pt;}
.y11b{bottom:125.466667pt;}
.y3e{bottom:125.472000pt;}
.y130{bottom:125.594667pt;}
.y127{bottom:125.600000pt;}
.y14a{bottom:125.626667pt;}
.y156{bottom:125.640000pt;}
.yba{bottom:129.632000pt;}
.y13b{bottom:133.274667pt;}
.y140{bottom:133.280000pt;}
.y15b{bottom:133.320000pt;}
.ya8{bottom:134.746667pt;}
.y73{bottom:137.786667pt;}
.y109{bottom:140.506667pt;}
.y182{bottom:140.800000pt;}
.y3d{bottom:140.826667pt;}
.y142{bottom:140.840000pt;}
.y12f{bottom:140.954667pt;}
.y13f{bottom:140.960000pt;}
.y14c{bottom:141.000000pt;}
.yb9{bottom:144.986667pt;}
.y17e{bottom:148.506667pt;}
.y188{bottom:148.634667pt;}
.y15a{bottom:148.680000pt;}
.ya7{bottom:149.946667pt;}
.y72{bottom:153.146667pt;}
.y108{bottom:155.866667pt;}
.y184{bottom:156.154667pt;}
.y3c{bottom:156.186667pt;}
.y12e{bottom:156.314667pt;}
.y155{bottom:156.360000pt;}
.yb8{bottom:160.346667pt;}
.y187{bottom:163.834667pt;}
.y17d{bottom:163.866667pt;}
.y15e{bottom:164.040000pt;}
.ya6{bottom:165.306667pt;}
.y71{bottom:168.506667pt;}
.y107{bottom:171.226667pt;}
.y12d{bottom:171.514667pt;}
.y3b{bottom:171.546667pt;}
.y154{bottom:171.720000pt;}
.yb7{bottom:175.706667pt;}
.y186{bottom:179.194667pt;}
.y17c{bottom:179.226667pt;}
.y15d{bottom:179.240000pt;}
.ya5{bottom:180.666667pt;}
.y70{bottom:183.706667pt;}
.y106{bottom:186.426667pt;}
.y3a{bottom:186.746667pt;}
.y18f{bottom:186.874667pt;}
.y181{bottom:186.906667pt;}
.y12c{bottom:186.914667pt;}
.y153{bottom:186.920000pt;}
.yb6{bottom:191.066667pt;}
.y185{bottom:194.554667pt;}
.y17b{bottom:194.586667pt;}
.y15c{bottom:194.600000pt;}
.ya4{bottom:196.026667pt;}
.y6f{bottom:199.066667pt;}
.y105{bottom:201.786667pt;}
.y39{bottom:202.106667pt;}
.y180{bottom:202.266667pt;}
.y18e{bottom:202.274667pt;}
.y152{bottom:202.280000pt;}
.yb5{bottom:206.426667pt;}
.y14b{bottom:209.466667pt;}
.y194{bottom:209.954667pt;}
.ya3{bottom:211.386667pt;}
.y6e{bottom:214.426667pt;}
.y104{bottom:217.146667pt;}
.y38{bottom:217.466667pt;}
.y17f{bottom:217.626667pt;}
.y18d{bottom:217.634667pt;}
.y151{bottom:217.640000pt;}
.yb4{bottom:221.626667pt;}
.y193{bottom:225.314667pt;}
.ya2{bottom:226.746667pt;}
.y6d{bottom:229.786667pt;}
.y103{bottom:232.506667pt;}
.y37{bottom:232.826667pt;}
.y18c{bottom:232.994667pt;}
.y150{bottom:233.000000pt;}
.yb2{bottom:234.746667pt;}
.y192{bottom:240.514667pt;}
.ya1{bottom:241.946667pt;}
.y6c{bottom:245.146667pt;}
.y102{bottom:247.866667pt;}
.y36{bottom:248.186667pt;}
.y18b{bottom:248.194667pt;}
.y14f{bottom:248.360000pt;}
.yb0{bottom:252.186667pt;}
.y191{bottom:255.874667pt;}
.ya0{bottom:257.306667pt;}
.y6b{bottom:260.346667pt;}
.y101{bottom:263.066667pt;}
.y35{bottom:263.546667pt;}
.y18a{bottom:263.554667pt;}
.y14e{bottom:263.720000pt;}
.y190{bottom:271.234667pt;}
.y9f{bottom:272.666667pt;}
.yae{bottom:273.146667pt;}
.y6a{bottom:275.706667pt;}
.y100{bottom:278.426667pt;}
.y34{bottom:278.746667pt;}
.y189{bottom:278.914667pt;}
.y14d{bottom:278.920000pt;}
.y9e{bottom:288.026667pt;}
.yad{bottom:289.466667pt;}
.y69{bottom:291.066667pt;}
.yff{bottom:293.786667pt;}
.y33{bottom:294.106667pt;}
.y9d{bottom:303.426667pt;}
.yab{bottom:305.506667pt;}
.y68{bottom:306.466667pt;}
.yfe{bottom:309.186667pt;}
.y32{bottom:309.506667pt;}
.y11f{bottom:316.866667pt;}
.y9c{bottom:318.626667pt;}
.y67{bottom:321.826667pt;}
.yfd{bottom:324.546667pt;}
.y31{bottom:324.866667pt;}
.y9b{bottom:333.986667pt;}
.y66{bottom:337.186667pt;}
.yfc{bottom:339.906667pt;}
.y30{bottom:340.226667pt;}
.y9a{bottom:349.346667pt;}
.y65{bottom:352.386667pt;}
.yfb{bottom:355.106667pt;}
.y2f{bottom:355.426667pt;}
.y98{bottom:362.466667pt;}
.y64{bottom:367.746667pt;}
.yfa{bottom:370.466667pt;}
.y2e{bottom:370.786667pt;}
.y63{bottom:383.106667pt;}
.y97{bottom:384.706667pt;}
.yf9{bottom:385.826667pt;}
.y2d{bottom:386.146667pt;}
.y17a{bottom:392.226667pt;}
.y62{bottom:398.466667pt;}
.yf8{bottom:401.186667pt;}
.y2c{bottom:401.506667pt;}
.y61{bottom:413.826667pt;}
.y96{bottom:416.066667pt;}
.yf7{bottom:416.546667pt;}
.y2b{bottom:416.866667pt;}
.y60{bottom:429.186667pt;}
.yf6{bottom:431.906667pt;}
.y2a{bottom:435.746667pt;}
.y94{bottom:440.066667pt;}
.y5f{bottom:444.386667pt;}
.yf5{bottom:447.106667pt;}
.ye5{bottom:448.866667pt;}
.y29{bottom:452.226667pt;}
.y111{bottom:455.586667pt;}
.y5e{bottom:459.746667pt;}
.yf4{bottom:462.466667pt;}
.ye3{bottom:463.586667pt;}
.y92{bottom:464.066667pt;}
.y28{bottom:468.706667pt;}
.y5d{bottom:475.106667pt;}
.yf3{bottom:477.826667pt;}
.y90{bottom:481.986667pt;}
.y27{bottom:485.346667pt;}
.yd2{bottom:488.066667pt;}
.y5c{bottom:490.466667pt;}
.yf2{bottom:493.186667pt;}
.y143{bottom:501.506667pt;}
.y26{bottom:501.826667pt;}
.y5b{bottom:505.826667pt;}
.yf1{bottom:506.306667pt;}
.y8f{bottom:514.146667pt;}
.y25{bottom:518.466667pt;}
.y5a{bottom:521.026667pt;}
.yf0{bottom:521.666667pt;}
.y8e{bottom:530.626667pt;}
.y24{bottom:534.946667pt;}
.y59{bottom:536.386667pt;}
.yef{bottom:539.613333pt;}
.ydb{bottom:541.693333pt;}
.y8d{bottom:547.293333pt;}
.y23{bottom:551.453333pt;}
.y58{bottom:551.773333pt;}
.yee{bottom:554.973333pt;}
.y57{bottom:567.133333pt;}
.y22{bottom:568.093333pt;}
.yec{bottom:570.173333pt;}
.y8c{bottom:574.493333pt;}
.y56{bottom:582.493333pt;}
.y21{bottom:584.573333pt;}
.yeb{bottom:586.973333pt;}
.y8b{bottom:590.973333pt;}
.y10d{bottom:594.173333pt;}
.y55{bottom:597.853333pt;}
.y20{bottom:601.213333pt;}
.yea{bottom:602.333333pt;}
.y8a{bottom:607.613333pt;}
.y54{bottom:613.053333pt;}
.y1f{bottom:617.693333pt;}
.y89{bottom:624.093333pt;}
.y53{bottom:628.413333pt;}
.y1e{bottom:634.333333pt;}
.y179{bottom:638.173333pt;}
.y141{bottom:640.253333pt;}
.y88{bottom:640.733333pt;}
.y52{bottom:643.773333pt;}
.ye1{bottom:646.333333pt;}
.yca{bottom:646.493333pt;}
.y1d{bottom:650.813333pt;}
.ye9{bottom:652.253333pt;}
.y87{bottom:657.213333pt;}
.y51{bottom:659.133333pt;}
.y1c{bottom:667.293333pt;}
.ye8{bottom:670.173333pt;}
.y86{bottom:673.693333pt;}
.y50{bottom:674.493333pt;}
.yc7{bottom:678.493333pt;}
.y1b{bottom:683.933333pt;}
.ye7{bottom:686.173333pt;}
.y4f{bottom:689.853333pt;}
.y85{bottom:690.333333pt;}
.y1a{bottom:700.413333pt;}
.y4e{bottom:705.053333pt;}
.y84{bottom:706.813333pt;}
.y19{bottom:717.053333pt;}
.y4d{bottom:720.413333pt;}
.y83{bottom:723.453333pt;}
.y18{bottom:733.533333pt;}
.y4c{bottom:735.773333pt;}
.y82{bottom:739.933333pt;}
.y17{bottom:750.013333pt;}
.y4b{bottom:751.133333pt;}
.y81{bottom:755.293333pt;}
.y16f{bottom:761.533333pt;}
.y16{bottom:766.493333pt;}
.y80{bottom:770.653333pt;}
.y4a{bottom:781.893333pt;}
.y15{bottom:782.213333pt;}
.y7d{bottom:784.133333pt;}
.y13d{bottom:794.213333pt;}
.y49{bottom:797.093333pt;}
.y14{bottom:799.013333pt;}
.ydf{bottom:806.053333pt;}
.ybd{bottom:810.213333pt;}
.y48{bottom:812.453333pt;}
.y7a{bottom:814.853333pt;}
.y13{bottom:815.973333pt;}
.y47{bottom:827.813333pt;}
.y12{bottom:832.773333pt;}
.y46{bottom:843.173333pt;}
.yc3{bottom:843.813333pt;}
.y11{bottom:849.733333pt;}
.y45{bottom:858.533333pt;}
.y10{bottom:866.533333pt;}
.y77{bottom:872.773333pt;}
.y44{bottom:873.733333pt;}
.yf{bottom:883.333333pt;}
.y43{bottom:889.093333pt;}
.ye{bottom:900.293333pt;}
.y42{bottom:904.453333pt;}
.y16c{bottom:915.653333pt;}
.y75{bottom:916.613333pt;}
.yd{bottom:917.093333pt;}
.y41{bottom:919.813333pt;}
.yc{bottom:934.053333pt;}
.y40{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.h27{height:15.200000pt;}
.h24{height:15.360000pt;}
.h13{height:15.392000pt;}
.h14{height:16.320000pt;}
.h26{height:16.640000pt;}
.he{height:16.800000pt;}
.hf{height:17.280000pt;}
.h16{height:17.440000pt;}
.h25{height:17.920000pt;}
.h28{height:17.952000pt;}
.h15{height:20.960000pt;}
.h11{height:21.600000pt;}
.h10{height:23.360000pt;}
.h12{height:28.000000pt;}
.h9{height:29.920000pt;}
.hc{height:30.720000pt;}
.h32{height:32.000000pt;}
.h6{height:34.710938pt;}
.h1d{height:34.945312pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.hd{height:38.491250pt;}
.h1c{height:38.672812pt;}
.h8{height:41.543750pt;}
.h3{height:42.578750pt;}
.ha{height:42.880000pt;}
.h4{height:45.156250pt;}
.h29{height:46.080000pt;}
.h19{height:47.742188pt;}
.h23{height:49.148429pt;}
.h21{height:49.148438pt;}
.h18{height:52.000000pt;}
.hb{height:57.920000pt;}
.h7{height:58.563750pt;}
.h1e{height:63.680000pt;}
.h17{height:92.480000pt;}
.h31{height:107.200000pt;}
.h1f{height:109.440000pt;}
.h20{height:116.480000pt;}
.h1b{height:121.312000pt;}
.h33{height:122.720000pt;}
.h1a{height:134.106667pt;}
.h2a{height:137.946667pt;}
.h2b{height:138.080000pt;}
.h2f{height:138.106667pt;}
.h22{height:139.706667pt;}
.h2e{height:153.306667pt;}
.h2d{height:153.440000pt;}
.h2c{height:199.386667pt;}
.h34{height:245.306667pt;}
.h30{height:291.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:14.080000pt;}
.w14{width:27.712000pt;}
.w6{width:57.760000pt;}
.w17{width:84.480000pt;}
.w16{width:84.672000pt;}
.w18{width:84.832000pt;}
.w19{width:92.512000pt;}
.w15{width:94.080000pt;}
.w1a{width:114.560000pt;}
.w11{width:124.000000pt;}
.w12{width:124.352000pt;}
.w5{width:150.106667pt;}
.w3{width:150.240000pt;}
.w4{width:150.426667pt;}
.w9{width:160.506667pt;}
.wf{width:195.386667pt;}
.wb{width:195.546667pt;}
.wa{width:207.866667pt;}
.w8{width:217.466667pt;}
.wc{width:239.706667pt;}
.wd{width:278.426667pt;}
.w10{width:335.266667pt;}
.w7{width:526.973333pt;}
.w13{width:583.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.720000pt;}
.x46{left:7.680000pt;}
.x37{left:9.600000pt;}
.x20{left:13.280000pt;}
.x27{left:14.880000pt;}
.x44{left:16.160000pt;}
.x42{left:18.400000pt;}
.x4a{left:19.360000pt;}
.x23{left:21.754667pt;}
.x45{left:23.200000pt;}
.x41{left:24.800000pt;}
.x1d{left:26.080000pt;}
.x13{left:27.520000pt;}
.x38{left:28.480000pt;}
.x17{left:31.386667pt;}
.x19{left:33.280000pt;}
.x1a{left:36.200000pt;}
.x15{left:37.320000pt;}
.x1c{left:44.040000pt;}
.x3f{left:60.480000pt;}
.x2c{left:61.440000pt;}
.x3c{left:63.674667pt;}
.x2e{left:67.034667pt;}
.x2f{left:70.240000pt;}
.x31{left:71.354667pt;}
.x32{left:73.600000pt;}
.x25{left:82.120000pt;}
.x24{left:83.400000pt;}
.x12{left:89.312000pt;}
.x33{left:94.554667pt;}
.x1{left:96.031988pt;}
.x34{left:97.280000pt;}
.x30{left:100.640000pt;}
.x2{left:109.471988pt;}
.x3b{left:114.112000pt;}
.x1f{left:115.232000pt;}
.x4d{left:120.031988pt;}
.x7{left:122.271988pt;}
.x4b{left:124.031988pt;}
.x4{left:139.706655pt;}
.x4e{left:144.026655pt;}
.x8{left:151.386655pt;}
.x26{left:154.280000pt;}
.x36{left:156.026667pt;}
.xc{left:158.906655pt;}
.x21{left:173.626667pt;}
.x40{left:182.906667pt;}
.x35{left:203.706655pt;}
.x22{left:230.440000pt;}
.x14{left:239.546667pt;}
.x28{left:242.946667pt;}
.xf{left:252.066655pt;}
.x2a{left:262.626655pt;}
.x43{left:268.066667pt;}
.xb{left:269.506655pt;}
.x29{left:273.986655pt;}
.x1e{left:275.586655pt;}
.xe{left:277.666655pt;}
.x2b{left:306.306667pt;}
.x3d{left:307.906655pt;}
.x4c{left:322.146655pt;}
.xa{left:324.386655pt;}
.xd{left:342.146655pt;}
.x10{left:343.586655pt;}
.x6{left:352.386655pt;}
.x11{left:354.626655pt;}
.x5{left:366.466655pt;}
.x16{left:389.986667pt;}
.x9{left:396.866655pt;}
.x39{left:419.773333pt;}
.x3a{left:424.573333pt;}
.x47{left:438.013333pt;}
.x3{left:460.893322pt;}
.x2d{left:466.973333pt;}
.x48{left:532.413333pt;}
.x18{left:540.093333pt;}
.x3e{left:548.093333pt;}
.x49{left:625.253333pt;}
}




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