
    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_12c702f815453de83de65336.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_b5bee9881af20a15763af716.woff')format("woff");}.ff2{font-family:ff2;line-height:0.853516;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_c484eed7297fb814908b1194.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_3f0c67eb05adc0af9682eb84.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_900303254d9609194f274022.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ccda1d694fa75f4a018368d6.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f39b4fff6c2cb825310c2304.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2eaedfb855d9280b8a3997fb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_73936a70cb6f0650c4981858.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_17472cafde272061f2e1cf8b.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f739adc80743539fe1a68be4.woff')format("woff");}.ffb{font-family:ffb;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e14d9905d4f59cdcebf4b236.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a6fb078bd91ee836596de816.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls25{letter-spacing:-2.520000px;}
.ls5{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.774000px;}
.ls16{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.463800px;}
.lsa{letter-spacing:-0.413400px;}
.ls15{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.119520px;}
.ls1f{letter-spacing:0.135600px;}
.ls8{letter-spacing:0.150000px;}
.ls19{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.206400px;}
.ls0{letter-spacing:0.233280px;}
.ls4{letter-spacing:0.238800px;}
.ls6{letter-spacing:0.256200px;}
.ls1c{letter-spacing:0.257760px;}
.ls9{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.511800px;}
.ls22{letter-spacing:16.506720px;}
.ls27{letter-spacing:18.900000px;}
.ls11{letter-spacing:26.586720px;}
.lsd{letter-spacing:26.730720px;}
.ls12{letter-spacing:29.466720px;}
.lse{letter-spacing:29.610720px;}
.ls28{letter-spacing:31.140000px;}
.ls10{letter-spacing:43.146720px;}
.lsc{letter-spacing:43.290720px;}
.ls29{letter-spacing:45.720000px;}
.ls30{letter-spacing:46.026720px;}
.ls20{letter-spacing:49.860000px;}
.ls23{letter-spacing:51.300000px;}
.lsf{letter-spacing:59.706720px;}
.lsb{letter-spacing:59.850720px;}
.ls24{letter-spacing:80.100000px;}
.ls21{letter-spacing:84.420000px;}
.ls1d{letter-spacing:118.980000px;}
.ls2a{letter-spacing:131.220000px;}
.ls2e{letter-spacing:134.586720px;}
.ls2f{letter-spacing:137.466720px;}
.ls2b{letter-spacing:144.180000px;}
.ls2d{letter-spacing:151.146720px;}
.ls2c{letter-spacing:167.706720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-18.057360px;}
.ws0{word-spacing:-17.818560px;}
.ws2{word-spacing:-16.846560px;}
.ws10{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.226440px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.147200px;}
.wse{word-spacing:-12.420000px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-1434.260160px;}
._4{margin-left:-1019.145600px;}
._13{margin-left:-1016.571360px;}
._10{margin-left:-1014.946560px;}
._27{margin-left:-970.035840px;}
._15{margin-left:-909.420480px;}
._12{margin-left:-701.913600px;}
._11{margin-left:-686.452800px;}
._6{margin-left:-625.481280px;}
._7{margin-left:-610.974720px;}
._f{margin-left:-582.660480px;}
._8{margin-left:-525.469920px;}
._26{margin-left:-522.750240px;}
._3{margin-left:-467.576640px;}
._1{margin-left:-419.958720px;}
._16{margin-left:-403.666560px;}
._c{margin-left:-244.079640px;}
._24{margin-left:-235.264320px;}
._9{margin-left:-172.199760px;}
._d{margin-left:-160.384320px;}
._a{margin-left:-120.242880px;}
._b{margin-left:-115.050240px;}
._25{margin-left:-104.941440px;}
._23{margin-left:-83.232000px;}
._e{margin-left:-45.210240px;}
._34{margin-left:-8.620560px;}
._18{margin-left:-7.163520px;}
._14{margin-left:-6.160320px;}
._19{margin-left:-4.636800px;}
._28{margin-left:-3.629520px;}
._17{margin-left:-2.585520px;}
._0{margin-left:-1.192320px;}
._2{width:1.592640px;}
._1a{width:2.976000px;}
._1b{width:4.035600px;}
._21{width:5.128560px;}
._22{width:6.812640px;}
._1f{width:8.506800px;}
._20{width:9.561600px;}
._1c{width:10.777680px;}
._1d{width:11.889360px;}
._1e{width:13.864320px;}
._2f{width:16.236720px;}
._31{width:17.629200px;}
._30{width:20.481840px;}
._32{width:21.976560px;}
._33{width:23.441040px;}
._2e{width:31.374000px;}
._2d{width:32.449680px;}
._2b{width:201.620880px;}
._2c{width:226.100880px;}
._2a{width:227.540880px;}
._29{width:228.980880px;}
.fc4{color:transparent;}
.fc2{color:rgb(91,155,213);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:2.520000px;}
.yca{bottom:5.580000px;}
.yab{bottom:5.760000px;}
.yb4{bottom:5.940000px;}
.yb{bottom:6.120000px;}
.ya4{bottom:6.660000px;}
.ye5{bottom:6.690000px;}
.yd6{bottom:6.840000px;}
.yf1{bottom:6.885000px;}
.ya{bottom:7.920000px;}
.y118{bottom:10.260000px;}
.y11e{bottom:10.290000px;}
.y120{bottom:10.440000px;}
.y11a{bottom:10.470000px;}
.yaf{bottom:10.800000px;}
.yac{bottom:10.980000px;}
.y13c{bottom:11.700000px;}
.y139{bottom:11.880000px;}
.yae{bottom:15.840000px;}
.yb3{bottom:16.020000px;}
.yaa{bottom:16.200000px;}
.y136{bottom:16.590000px;}
.y116{bottom:18.180000px;}
.ya8{bottom:19.080000px;}
.yc6{bottom:25.560000px;}
.yc9{bottom:25.590000px;}
.y6{bottom:25.920000px;}
.y141{bottom:30.240000px;}
.y13b{bottom:31.500000px;}
.y13e{bottom:31.680000px;}
.y138{bottom:31.860000px;}
.y9{bottom:32.220000px;}
.ya6{bottom:32.400000px;}
.yc8{bottom:45.390000px;}
.yc5{bottom:45.540000px;}
.ycb{bottom:45.570000px;}
.y5{bottom:45.720000px;}
.y140{bottom:50.040000px;}
.y8{bottom:59.070000px;}
.yd{bottom:60.300000px;}
.yc4{bottom:65.520000px;}
.y4{bottom:65.550000px;}
.y3{bottom:85.350000px;}
.yc3{bottom:85.365000px;}
.y3c{bottom:87.480000px;}
.yce{bottom:88.560000px;}
.y98{bottom:89.640000px;}
.y11c{bottom:90.180000px;}
.y72{bottom:91.440000px;}
.y7{bottom:93.270000px;}
.y152{bottom:93.420000px;}
.yfd{bottom:97.560000px;}
.y16e{bottom:98.640000px;}
.y2{bottom:105.150000px;}
.y3b{bottom:107.280000px;}
.ycd{bottom:108.360000px;}
.y97{bottom:109.440000px;}
.y71{bottom:111.240000px;}
.y151{bottom:113.220000px;}
.y11b{bottom:116.460000px;}
.yfc{bottom:117.540000px;}
.y16d{bottom:118.440000px;}
.y3a{bottom:127.080000px;}
.ycc{bottom:128.340000px;}
.y96{bottom:129.240000px;}
.y70{bottom:131.220000px;}
.y150{bottom:133.020000px;}
.y16c{bottom:138.240000px;}
.y119{bottom:142.560000px;}
.yc7{bottom:143.100000px;}
.y39{bottom:147.060000px;}
.y95{bottom:149.220000px;}
.y6f{bottom:151.020000px;}
.y14f{bottom:152.850000px;}
.yfb{bottom:155.370000px;}
.y16b{bottom:158.250000px;}
.y38{bottom:166.890000px;}
.y117{bottom:168.870000px;}
.y94{bottom:169.050000px;}
.yfa{bottom:170.130000px;}
.y6e{bottom:170.850000px;}
.y16a{bottom:178.050000px;}
.y14e{bottom:181.650000px;}
.y37{bottom:186.690000px;}
.y93{bottom:188.850000px;}
.y6d{bottom:190.650000px;}
.yf9{bottom:192.630000px;}
.y115{bottom:195.150000px;}
.y169{bottom:197.850000px;}
.y14d{bottom:201.450000px;}
.y36{bottom:206.490000px;}
.y92{bottom:208.650000px;}
.y6c{bottom:210.450000px;}
.yf8{bottom:215.310000px;}
.y168{bottom:217.650000px;}
.y14c{bottom:221.430000px;}
.y35{bottom:226.290000px;}
.y91{bottom:228.450000px;}
.y6b{bottom:230.430000px;}
.y114{bottom:235.110000px;}
.y167{bottom:237.450000px;}
.yf7{bottom:237.810000px;}
.y14b{bottom:241.230000px;}
.y34{bottom:246.270000px;}
.y90{bottom:248.430000px;}
.y6a{bottom:250.230000px;}
.y113{bottom:254.910000px;}
.y166{bottom:257.430000px;}
.yf6{bottom:260.490000px;}
.y14a{bottom:261.030000px;}
.y33{bottom:266.070000px;}
.y8f{bottom:268.230000px;}
.y69{bottom:270.030000px;}
.y112{bottom:274.710000px;}
.y165{bottom:277.230000px;}
.y149{bottom:280.830000px;}
.yf5{bottom:283.170000px;}
.y32{bottom:285.870000px;}
.y8e{bottom:288.030000px;}
.y68{bottom:289.830000px;}
.y111{bottom:294.510000px;}
.y164{bottom:297.030000px;}
.y148{bottom:300.630000px;}
.y31{bottom:305.670000px;}
.y8d{bottom:307.830000px;}
.y67{bottom:309.630000px;}
.y110{bottom:314.310000px;}
.y163{bottom:316.830000px;}
.y147{bottom:320.610000px;}
.y30{bottom:325.470000px;}
.y8c{bottom:327.630000px;}
.yf4{bottom:328.350000px;}
.yc2{bottom:329.610000px;}
.y10f{bottom:334.290000px;}
.y162{bottom:336.630000px;}
.y66{bottom:338.610000px;}
.y146{bottom:340.410000px;}
.y2f{bottom:345.450000px;}
.y8b{bottom:347.610000px;}
.yf3{bottom:350.850000px;}
.y10e{bottom:354.090000px;}
.y161{bottom:356.610000px;}
.y65{bottom:358.410000px;}
.y145{bottom:360.210000px;}
.y2e{bottom:365.250000px;}
.y8a{bottom:367.410000px;}
.yf2{bottom:373.350000px;}
.y10d{bottom:373.890000px;}
.y160{bottom:376.410000px;}
.y64{bottom:378.210000px;}
.y144{bottom:380.010000px;}
.y2d{bottom:385.050000px;}
.y89{bottom:387.210000px;}
.y10c{bottom:393.690000px;}
.yf0{bottom:396.030000px;}
.y15f{bottom:396.210000px;}
.y63{bottom:398.010000px;}
.y143{bottom:399.810000px;}
.y2c{bottom:404.895000px;}
.y88{bottom:407.055000px;}
.y10b{bottom:413.535000px;}
.y15e{bottom:416.055000px;}
.y62{bottom:417.855000px;}
.yef{bottom:418.935000px;}
.y142{bottom:419.835000px;}
.y2b{bottom:424.695000px;}
.y87{bottom:426.855000px;}
.yc1{bottom:432.975000px;}
.y10a{bottom:433.515000px;}
.y13f{bottom:434.595000px;}
.y15d{bottom:435.855000px;}
.y61{bottom:437.835000px;}
.yee{bottom:441.435000px;}
.y2a{bottom:444.675000px;}
.y86{bottom:446.835000px;}
.y109{bottom:453.315000px;}
.y15c{bottom:455.835000px;}
.y60{bottom:457.635000px;}
.yc0{bottom:463.215000px;}
.yed{bottom:463.935000px;}
.y29{bottom:464.475000px;}
.y85{bottom:466.635000px;}
.y108{bottom:473.115000px;}
.y15b{bottom:475.635000px;}
.y7e{bottom:477.435000px;}
.ybf{bottom:483.015000px;}
.y28{bottom:484.275000px;}
.y5f{bottom:486.435000px;}
.yec{bottom:486.615000px;}
.y107{bottom:492.915000px;}
.y15a{bottom:495.435000px;}
.y7d{bottom:497.235000px;}
.y13d{bottom:500.655000px;}
.ybe{bottom:502.815000px;}
.y27{bottom:504.075000px;}
.y5e{bottom:506.235000px;}
.yeb{bottom:509.115000px;}
.y106{bottom:512.715000px;}
.y159{bottom:515.235000px;}
.y7c{bottom:517.035000px;}
.ybd{bottom:522.795000px;}
.y26{bottom:523.875000px;}
.y5d{bottom:526.035000px;}
.y105{bottom:527.655000px;}
.yea{bottom:531.795000px;}
.y158{bottom:535.035000px;}
.y7b{bottom:537.015000px;}
.ybc{bottom:542.595000px;}
.y25{bottom:543.855000px;}
.y5c{bottom:546.015000px;}
.y13a{bottom:548.175000px;}
.y104{bottom:552.495000px;}
.ye9{bottom:554.475000px;}
.y157{bottom:555.015000px;}
.y7a{bottom:556.815000px;}
.ybb{bottom:562.395000px;}
.y24{bottom:563.655000px;}
.y5b{bottom:565.815000px;}
.y156{bottom:574.815000px;}
.y79{bottom:576.615000px;}
.ye8{bottom:576.975000px;}
.y103{bottom:577.695000px;}
.yba{bottom:582.195000px;}
.y23{bottom:585.615000px;}
.y155{bottom:594.615000px;}
.y137{bottom:595.515000px;}
.y78{bottom:596.415000px;}
.ye7{bottom:599.655000px;}
.yb9{bottom:601.995000px;}
.y102{bottom:602.715000px;}
.y5a{bottom:605.415000px;}
.y22{bottom:605.595000px;}
.y154{bottom:614.415000px;}
.yb8{bottom:621.975000px;}
.ye6{bottom:622.155000px;}
.y59{bottom:625.215000px;}
.y21{bottom:625.395000px;}
.y101{bottom:627.555000px;}
.y153{bottom:634.215000px;}
.yb7{bottom:641.775000px;}
.y135{bottom:643.215000px;}
.ye4{bottom:644.835000px;}
.y20{bottom:645.195000px;}
.y100{bottom:652.605000px;}
.y58{bottom:654.225000px;}
.yb6{bottom:661.605000px;}
.y1f{bottom:665.025000px;}
.ye3{bottom:667.365000px;}
.y57{bottom:674.025000px;}
.yb5{bottom:676.365000px;}
.yff{bottom:677.625000px;}
.y134{bottom:681.585000px;}
.y1e{bottom:684.825000px;}
.y56{bottom:693.825000px;}
.ye2{bottom:695.805000px;}
.yb2{bottom:699.585000px;}
.y133{bottom:701.385000px;}
.yfe{bottom:702.645000px;}
.y77{bottom:704.625000px;}
.y1d{bottom:704.805000px;}
.y55{bottom:713.625000px;}
.ye1{bottom:715.785000px;}
.y132{bottom:721.185000px;}
.y76{bottom:724.425000px;}
.y1c{bottom:724.605000px;}
.yb1{bottom:732.165000px;}
.y54{bottom:733.425000px;}
.ye0{bottom:735.585000px;}
.y131{bottom:741.165000px;}
.y1b{bottom:744.405000px;}
.y53{bottom:753.405000px;}
.ydf{bottom:755.385000px;}
.y130{bottom:760.965000px;}
.y1a{bottom:764.205000px;}
.yb0{bottom:764.565000px;}
.y52{bottom:773.205000px;}
.yde{bottom:775.185000px;}
.y12f{bottom:780.765000px;}
.y19{bottom:784.005000px;}
.y51{bottom:793.005000px;}
.ydd{bottom:794.985000px;}
.yad{bottom:796.965000px;}
.y12e{bottom:800.565000px;}
.y75{bottom:803.805000px;}
.y18{bottom:803.985000px;}
.y50{bottom:812.805000px;}
.ydc{bottom:814.965000px;}
.y12d{bottom:820.365000px;}
.y74{bottom:823.605000px;}
.y17{bottom:823.785000px;}
.ya9{bottom:829.545000px;}
.y4f{bottom:832.605000px;}
.ydb{bottom:834.765000px;}
.y12c{bottom:840.345000px;}
.y16{bottom:843.585000px;}
.y4e{bottom:852.585000px;}
.yda{bottom:854.565000px;}
.y12b{bottom:860.145000px;}
.ya5{bottom:862.305000px;}
.y15{bottom:863.385000px;}
.y4d{bottom:872.385000px;}
.yd9{bottom:874.365000px;}
.y12a{bottom:879.945000px;}
.y14{bottom:883.185000px;}
.y4c{bottom:892.185000px;}
.yd8{bottom:894.165000px;}
.y129{bottom:899.790000px;}
.y73{bottom:903.030000px;}
.yd7{bottom:909.150000px;}
.ya3{bottom:911.490000px;}
.y4b{bottom:912.030000px;}
.y13{bottom:914.370000px;}
.y128{bottom:919.590000px;}
.y84{bottom:922.830000px;}
.y4a{bottom:931.830000px;}
.yd5{bottom:933.630000px;}
.y127{bottom:939.570000px;}
.ya2{bottom:940.470000px;}
.y83{bottom:942.810000px;}
.y12{bottom:943.170000px;}
.y49{bottom:951.810000px;}
.y126{bottom:954.330000px;}
.yd4{bottom:958.290000px;}
.ya1{bottom:960.270000px;}
.y82{bottom:962.610000px;}
.y11{bottom:963.690000px;}
.y48{bottom:971.610000px;}
.ya0{bottom:977.730000px;}
.y125{bottom:980.430000px;}
.y81{bottom:982.410000px;}
.yd3{bottom:982.770000px;}
.y10{bottom:985.470000px;}
.y47{bottom:991.410000px;}
.y9f{bottom:995.190000px;}
.y80{bottom:1002.210000px;}
.y124{bottom:1006.710000px;}
.yd2{bottom:1007.250000px;}
.yf{bottom:1010.310000px;}
.y46{bottom:1011.210000px;}
.y9e{bottom:1012.650000px;}
.y7f{bottom:1022.010000px;}
.y45{bottom:1031.010000px;}
.yd1{bottom:1031.910000px;}
.y9d{bottom:1032.450000px;}
.y123{bottom:1032.990000px;}
.ye{bottom:1041.990000px;}
.y44{bottom:1050.990000px;}
.y9c{bottom:1052.430000px;}
.yd0{bottom:1056.390000px;}
.y122{bottom:1059.270000px;}
.yc{bottom:1068.270000px;}
.y43{bottom:1070.790000px;}
.y9b{bottom:1072.230000px;}
.ycf{bottom:1081.050000px;}
.y121{bottom:1085.550000px;}
.y1{bottom:1087.350000px;}
.y42{bottom:1090.590000px;}
.y9a{bottom:1101.030000px;}
.y41{bottom:1110.390000px;}
.y11f{bottom:1111.650000px;}
.y99{bottom:1130.010000px;}
.y40{bottom:1130.190000px;}
.y11d{bottom:1137.930000px;}
.y3f{bottom:1150.200000px;}
.y3e{bottom:1178.460000px;}
.y3d{bottom:1196.280000px;}
.h18{height:19.800000px;}
.h11{height:20.700000px;}
.h1a{height:20.736000px;}
.h19{height:20.880000px;}
.h1b{height:20.916000px;}
.h1d{height:24.300000px;}
.h1f{height:24.336000px;}
.h20{height:24.480000px;}
.h1e{height:24.516000px;}
.h14{height:29.880000px;}
.h15{height:30.060000px;}
.h13{height:30.240000px;}
.h21{height:30.636000px;}
.h1c{height:32.220000px;}
.hd{height:38.100586px;}
.hc{height:42.164648px;}
.h23{height:45.540000px;}
.h24{height:45.720000px;}
.h22{height:45.900000px;}
.h12{height:46.476000px;}
.ha{height:46.736719px;}
.he{height:48.410156px;}
.h3{height:52.590937px;}
.hb{height:53.573906px;}
.h10{height:55.735313px;}
.h5{height:55.987031px;}
.h25{height:64.080000px;}
.h6{height:64.546875px;}
.h8{height:67.565039px;}
.h7{height:67.824844px;}
.hf{height:71.613281px;}
.h17{height:79.560000px;}
.h9{height:85.847344px;}
.h4{height:90.319219px;}
.h16{height:99.396000px;}
.h2{height:121.536000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:46.080000px;}
.w24{width:67.140000px;}
.w23{width:67.176000px;}
.w22{width:73.800000px;}
.w9{width:81.216000px;}
.w1d{width:93.780000px;}
.w1f{width:95.256000px;}
.w17{width:97.596000px;}
.w1c{width:100.476000px;}
.w1e{width:107.316000px;}
.w25{width:108.036000px;}
.w18{width:111.240000px;}
.w21{width:114.876000px;}
.w2{width:116.676000px;}
.wd{width:117.396000px;}
.wc{width:117.540000px;}
.w12{width:128.196000px;}
.w11{width:140.796000px;}
.w13{width:141.840000px;}
.wa{width:151.920000px;}
.wf{width:160.200000px;}
.w4{width:167.610000px;}
.w16{width:198.750000px;}
.w7{width:228.450000px;}
.w20{width:228.810000px;}
.w8{width:233.130000px;}
.w6{width:237.810000px;}
.w10{width:240.690000px;}
.we{width:256.755000px;}
.w1a{width:261.930000px;}
.w15{width:282.810000px;}
.w14{width:287.670000px;}
.w1b{width:289.290000px;}
.w19{width:438.195000px;}
.w3{width:500.145000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.440000px;}
.x1d{left:6.660000px;}
.x18{left:8.100000px;}
.x2a{left:12.240000px;}
.x4{left:13.500000px;}
.xb{left:14.940000px;}
.xc{left:18.720000px;}
.x23{left:19.800000px;}
.x22{left:26.460000px;}
.x6{left:36.720000px;}
.xe{left:38.160000px;}
.x3{left:47.016000px;}
.x10{left:52.919987px;}
.x1{left:54.000000px;}
.x35{left:57.779987px;}
.x12{left:67.499987px;}
.x9{left:75.960000px;}
.x14{left:80.999987px;}
.x13{left:94.535987px;}
.x17{left:96.156000px;}
.x2{left:97.230000px;}
.x27{left:100.296000px;}
.x2c{left:102.816000px;}
.x15{left:108.035987px;}
.x8{left:128.745000px;}
.x34{left:135.035987px;}
.x1e{left:142.956000px;}
.xd{left:148.170000px;}
.x16{left:162.029987px;}
.x5{left:170.670000px;}
.x7{left:201.645000px;}
.x1f{left:261.210000px;}
.x19{left:334.695000px;}
.x20{left:379.335000px;}
.x24{left:384.735000px;}
.x2d{left:392.835000px;}
.x2e{left:494.025000px;}
.x31{left:508.065000px;}
.x25{left:526.245000px;}
.x2b{left:535.065000px;}
.x1a{left:563.865000px;}
.x28{left:583.305000px;}
.x2f{left:588.525000px;}
.x21{left:636.810000px;}
.x1b{left:645.090000px;}
.x32{left:650.490000px;}
.x26{left:655.170000px;}
.xa{left:670.830000px;}
.x29{left:681.630000px;}
.x30{left:696.570000px;}
.x33{left:718.350000px;}
.xf{left:813.959987px;}
.x11{left:834.479987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls25{letter-spacing:-2.240000pt;}
.ls5{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.412267pt;}
.lsa{letter-spacing:-0.367467pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.106240pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls8{letter-spacing:0.133333pt;}
.ls19{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.183467pt;}
.ls0{letter-spacing:0.207360pt;}
.ls4{letter-spacing:0.212267pt;}
.ls6{letter-spacing:0.227733pt;}
.ls1c{letter-spacing:0.229120pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.454933pt;}
.ls22{letter-spacing:14.672640pt;}
.ls27{letter-spacing:16.800000pt;}
.ls11{letter-spacing:23.632640pt;}
.lsd{letter-spacing:23.760640pt;}
.ls12{letter-spacing:26.192640pt;}
.lse{letter-spacing:26.320640pt;}
.ls28{letter-spacing:27.680000pt;}
.ls10{letter-spacing:38.352640pt;}
.lsc{letter-spacing:38.480640pt;}
.ls29{letter-spacing:40.640000pt;}
.ls30{letter-spacing:40.912640pt;}
.ls20{letter-spacing:44.320000pt;}
.ls23{letter-spacing:45.600000pt;}
.lsf{letter-spacing:53.072640pt;}
.lsb{letter-spacing:53.200640pt;}
.ls24{letter-spacing:71.200000pt;}
.ls21{letter-spacing:75.040000pt;}
.ls1d{letter-spacing:105.760000pt;}
.ls2a{letter-spacing:116.640000pt;}
.ls2e{letter-spacing:119.632640pt;}
.ls2f{letter-spacing:122.192640pt;}
.ls2b{letter-spacing:128.160000pt;}
.ls2d{letter-spacing:134.352640pt;}
.ls2c{letter-spacing:149.072640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-16.050987pt;}
.ws0{word-spacing:-15.838720pt;}
.ws2{word-spacing:-14.974720pt;}
.ws10{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.185067pt;}
.wsf{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.894613pt;}
.wsc{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.040000pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-1274.897920pt;}
._4{margin-left:-905.907200pt;}
._13{margin-left:-903.618987pt;}
._10{margin-left:-902.174720pt;}
._27{margin-left:-862.254080pt;}
._15{margin-left:-808.373760pt;}
._12{margin-left:-623.923200pt;}
._11{margin-left:-610.180267pt;}
._6{margin-left:-555.983360pt;}
._7{margin-left:-543.088640pt;}
._f{margin-left:-517.920427pt;}
._8{margin-left:-467.084373pt;}
._26{margin-left:-464.666880pt;}
._3{margin-left:-415.623680pt;}
._1{margin-left:-373.296640pt;}
._16{margin-left:-358.814720pt;}
._c{margin-left:-216.959680pt;}
._24{margin-left:-209.123840pt;}
._9{margin-left:-153.066453pt;}
._d{margin-left:-142.563840pt;}
._a{margin-left:-106.882560pt;}
._b{margin-left:-102.266880pt;}
._25{margin-left:-93.281280pt;}
._23{margin-left:-73.984000pt;}
._e{margin-left:-40.186880pt;}
._34{margin-left:-7.662720pt;}
._18{margin-left:-6.367573pt;}
._14{margin-left:-5.475840pt;}
._19{margin-left:-4.121600pt;}
._28{margin-left:-3.226240pt;}
._17{margin-left:-2.298240pt;}
._0{margin-left:-1.059840pt;}
._2{width:1.415680pt;}
._1a{width:2.645333pt;}
._1b{width:3.587200pt;}
._21{width:4.558720pt;}
._22{width:6.055680pt;}
._1f{width:7.561600pt;}
._20{width:8.499200pt;}
._1c{width:9.580160pt;}
._1d{width:10.568320pt;}
._1e{width:12.323840pt;}
._2f{width:14.432640pt;}
._31{width:15.670400pt;}
._30{width:18.206080pt;}
._32{width:19.534720pt;}
._33{width:20.836480pt;}
._2e{width:27.888000pt;}
._2d{width:28.844160pt;}
._2b{width:179.218560pt;}
._2c{width:200.978560pt;}
._2a{width:202.258560pt;}
._29{width:203.538560pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.240000pt;}
.yca{bottom:4.960000pt;}
.yab{bottom:5.120000pt;}
.yb4{bottom:5.280000pt;}
.yb{bottom:5.440000pt;}
.ya4{bottom:5.920000pt;}
.ye5{bottom:5.946667pt;}
.yd6{bottom:6.080000pt;}
.yf1{bottom:6.120000pt;}
.ya{bottom:7.040000pt;}
.y118{bottom:9.120000pt;}
.y11e{bottom:9.146667pt;}
.y120{bottom:9.280000pt;}
.y11a{bottom:9.306667pt;}
.yaf{bottom:9.600000pt;}
.yac{bottom:9.760000pt;}
.y13c{bottom:10.400000pt;}
.y139{bottom:10.560000pt;}
.yae{bottom:14.080000pt;}
.yb3{bottom:14.240000pt;}
.yaa{bottom:14.400000pt;}
.y136{bottom:14.746667pt;}
.y116{bottom:16.160000pt;}
.ya8{bottom:16.960000pt;}
.yc6{bottom:22.720000pt;}
.yc9{bottom:22.746667pt;}
.y6{bottom:23.040000pt;}
.y141{bottom:26.880000pt;}
.y13b{bottom:28.000000pt;}
.y13e{bottom:28.160000pt;}
.y138{bottom:28.320000pt;}
.y9{bottom:28.640000pt;}
.ya6{bottom:28.800000pt;}
.yc8{bottom:40.346667pt;}
.yc5{bottom:40.480000pt;}
.ycb{bottom:40.506667pt;}
.y5{bottom:40.640000pt;}
.y140{bottom:44.480000pt;}
.y8{bottom:52.506667pt;}
.yd{bottom:53.600000pt;}
.yc4{bottom:58.240000pt;}
.y4{bottom:58.266667pt;}
.y3{bottom:75.866667pt;}
.yc3{bottom:75.880000pt;}
.y3c{bottom:77.760000pt;}
.yce{bottom:78.720000pt;}
.y98{bottom:79.680000pt;}
.y11c{bottom:80.160000pt;}
.y72{bottom:81.280000pt;}
.y7{bottom:82.906667pt;}
.y152{bottom:83.040000pt;}
.yfd{bottom:86.720000pt;}
.y16e{bottom:87.680000pt;}
.y2{bottom:93.466667pt;}
.y3b{bottom:95.360000pt;}
.ycd{bottom:96.320000pt;}
.y97{bottom:97.280000pt;}
.y71{bottom:98.880000pt;}
.y151{bottom:100.640000pt;}
.y11b{bottom:103.520000pt;}
.yfc{bottom:104.480000pt;}
.y16d{bottom:105.280000pt;}
.y3a{bottom:112.960000pt;}
.ycc{bottom:114.080000pt;}
.y96{bottom:114.880000pt;}
.y70{bottom:116.640000pt;}
.y150{bottom:118.240000pt;}
.y16c{bottom:122.880000pt;}
.y119{bottom:126.720000pt;}
.yc7{bottom:127.200000pt;}
.y39{bottom:130.720000pt;}
.y95{bottom:132.640000pt;}
.y6f{bottom:134.240000pt;}
.y14f{bottom:135.866667pt;}
.yfb{bottom:138.106667pt;}
.y16b{bottom:140.666667pt;}
.y38{bottom:148.346667pt;}
.y117{bottom:150.106667pt;}
.y94{bottom:150.266667pt;}
.yfa{bottom:151.226667pt;}
.y6e{bottom:151.866667pt;}
.y16a{bottom:158.266667pt;}
.y14e{bottom:161.466667pt;}
.y37{bottom:165.946667pt;}
.y93{bottom:167.866667pt;}
.y6d{bottom:169.466667pt;}
.yf9{bottom:171.226667pt;}
.y115{bottom:173.466667pt;}
.y169{bottom:175.866667pt;}
.y14d{bottom:179.066667pt;}
.y36{bottom:183.546667pt;}
.y92{bottom:185.466667pt;}
.y6c{bottom:187.066667pt;}
.yf8{bottom:191.386667pt;}
.y168{bottom:193.466667pt;}
.y14c{bottom:196.826667pt;}
.y35{bottom:201.146667pt;}
.y91{bottom:203.066667pt;}
.y6b{bottom:204.826667pt;}
.y114{bottom:208.986667pt;}
.y167{bottom:211.066667pt;}
.yf7{bottom:211.386667pt;}
.y14b{bottom:214.426667pt;}
.y34{bottom:218.906667pt;}
.y90{bottom:220.826667pt;}
.y6a{bottom:222.426667pt;}
.y113{bottom:226.586667pt;}
.y166{bottom:228.826667pt;}
.yf6{bottom:231.546667pt;}
.y14a{bottom:232.026667pt;}
.y33{bottom:236.506667pt;}
.y8f{bottom:238.426667pt;}
.y69{bottom:240.026667pt;}
.y112{bottom:244.186667pt;}
.y165{bottom:246.426667pt;}
.y149{bottom:249.626667pt;}
.yf5{bottom:251.706667pt;}
.y32{bottom:254.106667pt;}
.y8e{bottom:256.026667pt;}
.y68{bottom:257.626667pt;}
.y111{bottom:261.786667pt;}
.y164{bottom:264.026667pt;}
.y148{bottom:267.226667pt;}
.y31{bottom:271.706667pt;}
.y8d{bottom:273.626667pt;}
.y67{bottom:275.226667pt;}
.y110{bottom:279.386667pt;}
.y163{bottom:281.626667pt;}
.y147{bottom:284.986667pt;}
.y30{bottom:289.306667pt;}
.y8c{bottom:291.226667pt;}
.yf4{bottom:291.866667pt;}
.yc2{bottom:292.986667pt;}
.y10f{bottom:297.146667pt;}
.y162{bottom:299.226667pt;}
.y66{bottom:300.986667pt;}
.y146{bottom:302.586667pt;}
.y2f{bottom:307.066667pt;}
.y8b{bottom:308.986667pt;}
.yf3{bottom:311.866667pt;}
.y10e{bottom:314.746667pt;}
.y161{bottom:316.986667pt;}
.y65{bottom:318.586667pt;}
.y145{bottom:320.186667pt;}
.y2e{bottom:324.666667pt;}
.y8a{bottom:326.586667pt;}
.yf2{bottom:331.866667pt;}
.y10d{bottom:332.346667pt;}
.y160{bottom:334.586667pt;}
.y64{bottom:336.186667pt;}
.y144{bottom:337.786667pt;}
.y2d{bottom:342.266667pt;}
.y89{bottom:344.186667pt;}
.y10c{bottom:349.946667pt;}
.yf0{bottom:352.026667pt;}
.y15f{bottom:352.186667pt;}
.y63{bottom:353.786667pt;}
.y143{bottom:355.386667pt;}
.y2c{bottom:359.906667pt;}
.y88{bottom:361.826667pt;}
.y10b{bottom:367.586667pt;}
.y15e{bottom:369.826667pt;}
.y62{bottom:371.426667pt;}
.yef{bottom:372.386667pt;}
.y142{bottom:373.186667pt;}
.y2b{bottom:377.506667pt;}
.y87{bottom:379.426667pt;}
.yc1{bottom:384.866667pt;}
.y10a{bottom:385.346667pt;}
.y13f{bottom:386.306667pt;}
.y15d{bottom:387.426667pt;}
.y61{bottom:389.186667pt;}
.yee{bottom:392.386667pt;}
.y2a{bottom:395.266667pt;}
.y86{bottom:397.186667pt;}
.y109{bottom:402.946667pt;}
.y15c{bottom:405.186667pt;}
.y60{bottom:406.786667pt;}
.yc0{bottom:411.746667pt;}
.yed{bottom:412.386667pt;}
.y29{bottom:412.866667pt;}
.y85{bottom:414.786667pt;}
.y108{bottom:420.546667pt;}
.y15b{bottom:422.786667pt;}
.y7e{bottom:424.386667pt;}
.ybf{bottom:429.346667pt;}
.y28{bottom:430.466667pt;}
.y5f{bottom:432.386667pt;}
.yec{bottom:432.546667pt;}
.y107{bottom:438.146667pt;}
.y15a{bottom:440.386667pt;}
.y7d{bottom:441.986667pt;}
.y13d{bottom:445.026667pt;}
.ybe{bottom:446.946667pt;}
.y27{bottom:448.066667pt;}
.y5e{bottom:449.986667pt;}
.yeb{bottom:452.546667pt;}
.y106{bottom:455.746667pt;}
.y159{bottom:457.986667pt;}
.y7c{bottom:459.586667pt;}
.ybd{bottom:464.706667pt;}
.y26{bottom:465.666667pt;}
.y5d{bottom:467.586667pt;}
.y105{bottom:469.026667pt;}
.yea{bottom:472.706667pt;}
.y158{bottom:475.586667pt;}
.y7b{bottom:477.346667pt;}
.ybc{bottom:482.306667pt;}
.y25{bottom:483.426667pt;}
.y5c{bottom:485.346667pt;}
.y13a{bottom:487.266667pt;}
.y104{bottom:491.106667pt;}
.ye9{bottom:492.866667pt;}
.y157{bottom:493.346667pt;}
.y7a{bottom:494.946667pt;}
.ybb{bottom:499.906667pt;}
.y24{bottom:501.026667pt;}
.y5b{bottom:502.946667pt;}
.y156{bottom:510.946667pt;}
.y79{bottom:512.546667pt;}
.ye8{bottom:512.866667pt;}
.y103{bottom:513.506667pt;}
.yba{bottom:517.506667pt;}
.y23{bottom:520.546667pt;}
.y155{bottom:528.546667pt;}
.y137{bottom:529.346667pt;}
.y78{bottom:530.146667pt;}
.ye7{bottom:533.026667pt;}
.yb9{bottom:535.106667pt;}
.y102{bottom:535.746667pt;}
.y5a{bottom:538.146667pt;}
.y22{bottom:538.306667pt;}
.y154{bottom:546.146667pt;}
.yb8{bottom:552.866667pt;}
.ye6{bottom:553.026667pt;}
.y59{bottom:555.746667pt;}
.y21{bottom:555.906667pt;}
.y101{bottom:557.826667pt;}
.y153{bottom:563.746667pt;}
.yb7{bottom:570.466667pt;}
.y135{bottom:571.746667pt;}
.ye4{bottom:573.186667pt;}
.y20{bottom:573.506667pt;}
.y100{bottom:580.093333pt;}
.y58{bottom:581.533333pt;}
.yb6{bottom:588.093333pt;}
.y1f{bottom:591.133333pt;}
.ye3{bottom:593.213333pt;}
.y57{bottom:599.133333pt;}
.yb5{bottom:601.213333pt;}
.yff{bottom:602.333333pt;}
.y134{bottom:605.853333pt;}
.y1e{bottom:608.733333pt;}
.y56{bottom:616.733333pt;}
.ye2{bottom:618.493333pt;}
.yb2{bottom:621.853333pt;}
.y133{bottom:623.453333pt;}
.yfe{bottom:624.573333pt;}
.y77{bottom:626.333333pt;}
.y1d{bottom:626.493333pt;}
.y55{bottom:634.333333pt;}
.ye1{bottom:636.253333pt;}
.y132{bottom:641.053333pt;}
.y76{bottom:643.933333pt;}
.y1c{bottom:644.093333pt;}
.yb1{bottom:650.813333pt;}
.y54{bottom:651.933333pt;}
.ye0{bottom:653.853333pt;}
.y131{bottom:658.813333pt;}
.y1b{bottom:661.693333pt;}
.y53{bottom:669.693333pt;}
.ydf{bottom:671.453333pt;}
.y130{bottom:676.413333pt;}
.y1a{bottom:679.293333pt;}
.yb0{bottom:679.613333pt;}
.y52{bottom:687.293333pt;}
.yde{bottom:689.053333pt;}
.y12f{bottom:694.013333pt;}
.y19{bottom:696.893333pt;}
.y51{bottom:704.893333pt;}
.ydd{bottom:706.653333pt;}
.yad{bottom:708.413333pt;}
.y12e{bottom:711.613333pt;}
.y75{bottom:714.493333pt;}
.y18{bottom:714.653333pt;}
.y50{bottom:722.493333pt;}
.ydc{bottom:724.413333pt;}
.y12d{bottom:729.213333pt;}
.y74{bottom:732.093333pt;}
.y17{bottom:732.253333pt;}
.ya9{bottom:737.373333pt;}
.y4f{bottom:740.093333pt;}
.ydb{bottom:742.013333pt;}
.y12c{bottom:746.973333pt;}
.y16{bottom:749.853333pt;}
.y4e{bottom:757.853333pt;}
.yda{bottom:759.613333pt;}
.y12b{bottom:764.573333pt;}
.ya5{bottom:766.493333pt;}
.y15{bottom:767.453333pt;}
.y4d{bottom:775.453333pt;}
.yd9{bottom:777.213333pt;}
.y12a{bottom:782.173333pt;}
.y14{bottom:785.053333pt;}
.y4c{bottom:793.053333pt;}
.yd8{bottom:794.813333pt;}
.y129{bottom:799.813333pt;}
.y73{bottom:802.693333pt;}
.yd7{bottom:808.133333pt;}
.ya3{bottom:810.213333pt;}
.y4b{bottom:810.693333pt;}
.y13{bottom:812.773333pt;}
.y128{bottom:817.413333pt;}
.y84{bottom:820.293333pt;}
.y4a{bottom:828.293333pt;}
.yd5{bottom:829.893333pt;}
.y127{bottom:835.173333pt;}
.ya2{bottom:835.973333pt;}
.y83{bottom:838.053333pt;}
.y12{bottom:838.373333pt;}
.y49{bottom:846.053333pt;}
.y126{bottom:848.293333pt;}
.yd4{bottom:851.813333pt;}
.ya1{bottom:853.573333pt;}
.y82{bottom:855.653333pt;}
.y11{bottom:856.613333pt;}
.y48{bottom:863.653333pt;}
.ya0{bottom:869.093333pt;}
.y125{bottom:871.493333pt;}
.y81{bottom:873.253333pt;}
.yd3{bottom:873.573333pt;}
.y10{bottom:875.973333pt;}
.y47{bottom:881.253333pt;}
.y9f{bottom:884.613333pt;}
.y80{bottom:890.853333pt;}
.y124{bottom:894.853333pt;}
.yd2{bottom:895.333333pt;}
.yf{bottom:898.053333pt;}
.y46{bottom:898.853333pt;}
.y9e{bottom:900.133333pt;}
.y7f{bottom:908.453333pt;}
.y45{bottom:916.453333pt;}
.yd1{bottom:917.253333pt;}
.y9d{bottom:917.733333pt;}
.y123{bottom:918.213333pt;}
.ye{bottom:926.213333pt;}
.y44{bottom:934.213333pt;}
.y9c{bottom:935.493333pt;}
.yd0{bottom:939.013333pt;}
.y122{bottom:941.573333pt;}
.yc{bottom:949.573333pt;}
.y43{bottom:951.813333pt;}
.y9b{bottom:953.093333pt;}
.ycf{bottom:960.933333pt;}
.y121{bottom:964.933333pt;}
.y1{bottom:966.533333pt;}
.y42{bottom:969.413333pt;}
.y9a{bottom:978.693333pt;}
.y41{bottom:987.013333pt;}
.y11f{bottom:988.133333pt;}
.y99{bottom:1004.453333pt;}
.y40{bottom:1004.613333pt;}
.y11d{bottom:1011.493333pt;}
.y3f{bottom:1022.400000pt;}
.y3e{bottom:1047.520000pt;}
.y3d{bottom:1063.360000pt;}
.h18{height:17.600000pt;}
.h11{height:18.400000pt;}
.h1a{height:18.432000pt;}
.h19{height:18.560000pt;}
.h1b{height:18.592000pt;}
.h1d{height:21.600000pt;}
.h1f{height:21.632000pt;}
.h20{height:21.760000pt;}
.h1e{height:21.792000pt;}
.h14{height:26.560000pt;}
.h15{height:26.720000pt;}
.h13{height:26.880000pt;}
.h21{height:27.232000pt;}
.h1c{height:28.640000pt;}
.hd{height:33.867188pt;}
.hc{height:37.479688pt;}
.h23{height:40.480000pt;}
.h24{height:40.640000pt;}
.h22{height:40.800000pt;}
.h12{height:41.312000pt;}
.ha{height:41.543750pt;}
.he{height:43.031250pt;}
.h3{height:46.747500pt;}
.hb{height:47.621250pt;}
.h10{height:49.542500pt;}
.h5{height:49.766250pt;}
.h25{height:56.960000pt;}
.h6{height:57.375000pt;}
.h8{height:60.057813pt;}
.h7{height:60.288750pt;}
.hf{height:63.656250pt;}
.h17{height:70.720000pt;}
.h9{height:76.308750pt;}
.h4{height:80.283750pt;}
.h16{height:88.352000pt;}
.h2{height:108.032000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:40.960000pt;}
.w24{width:59.680000pt;}
.w23{width:59.712000pt;}
.w22{width:65.600000pt;}
.w9{width:72.192000pt;}
.w1d{width:83.360000pt;}
.w1f{width:84.672000pt;}
.w17{width:86.752000pt;}
.w1c{width:89.312000pt;}
.w1e{width:95.392000pt;}
.w25{width:96.032000pt;}
.w18{width:98.880000pt;}
.w21{width:102.112000pt;}
.w2{width:103.712000pt;}
.wd{width:104.352000pt;}
.wc{width:104.480000pt;}
.w12{width:113.952000pt;}
.w11{width:125.152000pt;}
.w13{width:126.080000pt;}
.wa{width:135.040000pt;}
.wf{width:142.400000pt;}
.w4{width:148.986667pt;}
.w16{width:176.666667pt;}
.w7{width:203.066667pt;}
.w20{width:203.386667pt;}
.w8{width:207.226667pt;}
.w6{width:211.386667pt;}
.w10{width:213.946667pt;}
.we{width:228.226667pt;}
.w1a{width:232.826667pt;}
.w15{width:251.386667pt;}
.w14{width:255.706667pt;}
.w1b{width:257.146667pt;}
.w19{width:389.506667pt;}
.w3{width:444.573333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.280000pt;}
.x1d{left:5.920000pt;}
.x18{left:7.200000pt;}
.x2a{left:10.880000pt;}
.x4{left:12.000000pt;}
.xb{left:13.280000pt;}
.xc{left:16.640000pt;}
.x23{left:17.600000pt;}
.x22{left:23.520000pt;}
.x6{left:32.640000pt;}
.xe{left:33.920000pt;}
.x3{left:41.792000pt;}
.x10{left:47.039988pt;}
.x1{left:48.000000pt;}
.x35{left:51.359988pt;}
.x12{left:59.999988pt;}
.x9{left:67.520000pt;}
.x14{left:71.999988pt;}
.x13{left:84.031988pt;}
.x17{left:85.472000pt;}
.x2{left:86.426667pt;}
.x27{left:89.152000pt;}
.x2c{left:91.392000pt;}
.x15{left:96.031988pt;}
.x8{left:114.440000pt;}
.x34{left:120.031988pt;}
.x1e{left:127.072000pt;}
.xd{left:131.706667pt;}
.x16{left:144.026655pt;}
.x5{left:151.706667pt;}
.x7{left:179.240000pt;}
.x1f{left:232.186667pt;}
.x19{left:297.506667pt;}
.x20{left:337.186667pt;}
.x24{left:341.986667pt;}
.x2d{left:349.186667pt;}
.x2e{left:439.133333pt;}
.x31{left:451.613333pt;}
.x25{left:467.773333pt;}
.x2b{left:475.613333pt;}
.x1a{left:501.213333pt;}
.x28{left:518.493333pt;}
.x2f{left:523.133333pt;}
.x21{left:566.053333pt;}
.x1b{left:573.413333pt;}
.x32{left:578.213333pt;}
.x26{left:582.373333pt;}
.xa{left:596.293333pt;}
.x29{left:605.893333pt;}
.x30{left:619.173333pt;}
.x33{left:638.533333pt;}
.xf{left:723.519988pt;}
.x11{left:741.759988pt;}
}




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