
    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_f004c6c24f91c533c7f652eb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_7cb3f7b216254e39254865fd.woff')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_754c6bc3d477856029559bac.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_19f084a2cfb23291bd8a1632.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_046de3cb26938cd10dfeb292.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_874eb17e2c0dee60721fa916.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_97d83c51b6b9d142ed848e36.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6155433957d84b366d37a6f5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_8f20ff310a2e93fa738d9ff5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0b14df0f23f59cf9e8ad0e29.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_077c84cc177394149c1fd1b6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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);}
.v2{vertical-align:-54.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls7{letter-spacing:-5.628000px;}
.ls15{letter-spacing:-4.500000px;}
.ls28{letter-spacing:-4.242000px;}
.ls23{letter-spacing:-3.378000px;}
.lsf{letter-spacing:-2.766000px;}
.ls27{letter-spacing:-2.250000px;}
.lsa{letter-spacing:-1.740000px;}
.ls5{letter-spacing:-1.482000px;}
.ls4{letter-spacing:-1.128000px;}
.ls17{letter-spacing:-1.008000px;}
.ls21{letter-spacing:-0.261000px;}
.ls9{letter-spacing:-0.256200px;}
.ls13{letter-spacing:-0.009000px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.018000px;}
.ls1c{letter-spacing:0.168000px;}
.lse{letter-spacing:0.256200px;}
.ls22{letter-spacing:0.522000px;}
.ls14{letter-spacing:1.008000px;}
.ls8{letter-spacing:1.026000px;}
.ls1f{letter-spacing:1.089000px;}
.ls1d{letter-spacing:1.125000px;}
.ls12{letter-spacing:1.128000px;}
.ls29{letter-spacing:1.255500px;}
.ls20{letter-spacing:1.375500px;}
.ls11{letter-spacing:1.512000px;}
.ls6{letter-spacing:1.740000px;}
.ls18{letter-spacing:2.016000px;}
.ls1e{letter-spacing:2.178000px;}
.ls1{letter-spacing:2.250000px;}
.ls26{letter-spacing:2.370000px;}
.ls25{letter-spacing:2.400000px;}
.ls24{letter-spacing:2.430000px;}
.lsb{letter-spacing:3.018000px;}
.lsd{letter-spacing:3.378000px;}
.ls16{letter-spacing:4.242000px;}
.lsc{letter-spacing:5.526000px;}
.ls0{letter-spacing:5.958000px;}
.ls2{letter-spacing:7.875000px;}
.ls1b{letter-spacing:18.180000px;}
.ls19{letter-spacing:35.055000px;}
.ls10{letter-spacing:297.420000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-17.643000px;}
.ws7{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.365000px;}
.ws3{word-spacing:-15.651000px;}
.wse{word-spacing:-15.012000px;}
.ws8{word-spacing:-14.881200px;}
.ws1{word-spacing:-14.625000px;}
.ws14{word-spacing:-14.553000px;}
.ws4{word-spacing:-14.368800px;}
.ws11{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.143000px;}
.ws15{word-spacing:-12.897000px;}
.ws5{word-spacing:-12.885000px;}
.ws12{word-spacing:-12.375000px;}
.ws13{word-spacing:-12.114000px;}
.wsa{word-spacing:-11.859000px;}
.ws10{word-spacing:-11.016000px;}
.ws0{word-spacing:-10.125000px;}
.wsc{word-spacing:-10.116000px;}
.wsd{word-spacing:-10.008000px;}
.ws16{word-spacing:-8.133000px;}
.wsf{word-spacing:-7.992000px;}
.wsb{word-spacing:0.000000px;}
._24{margin-left:-7.405350px;}
._1{margin-left:-6.338100px;}
._4{margin-left:-5.009100px;}
._0{margin-left:-3.472500px;}
._2{margin-left:-1.705650px;}
._3{width:1.199100px;}
._8{width:2.215350px;}
._9{width:3.372450px;}
._d{width:4.520550px;}
._a{width:6.076050px;}
._12{width:7.127700px;}
._b{width:8.143350px;}
._5{width:9.756750px;}
._2f{width:11.031150px;}
._c{width:12.077850px;}
._10{width:13.299450px;}
._7{width:14.384100px;}
._f{width:15.863250px;}
._e{width:16.875000px;}
._6{width:18.778950px;}
._22{width:20.717700px;}
._11{width:21.966150px;}
._2e{width:23.341800px;}
._23{width:24.435150px;}
._1e{width:25.689750px;}
._14{width:26.735400px;}
._19{width:27.800100px;}
._2c{width:29.325150px;}
._16{width:30.794550px;}
._18{width:32.844600px;}
._27{width:34.142100px;}
._15{width:35.296500px;}
._17{width:36.680100px;}
._2d{width:38.395800px;}
._13{width:39.945300px;}
._31{width:41.716350px;}
._1d{width:43.168050px;}
._1c{width:44.315550px;}
._25{width:48.711300px;}
._30{width:50.412000px;}
._1a{width:52.835400px;}
._28{width:54.015000px;}
._1f{width:56.730150px;}
._21{width:61.657950px;}
._1b{width:62.769750px;}
._20{width:66.823950px;}
._2a{width:70.965600px;}
._2b{width:75.744300px;}
._29{width:80.231700px;}
._26{width:103.987950px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:40.500000px;}
.fs5{font-size:49.500000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:58.500000px;}
.fs0{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:2.250000px;}
.ya3{bottom:2.265000px;}
.ya7{bottom:2.280000px;}
.ya1{bottom:2.295000px;}
.yac{bottom:3.375000px;}
.yb6{bottom:3.390000px;}
.y9c{bottom:4.500000px;}
.ybd{bottom:4.515000px;}
.y98{bottom:5.625000px;}
.y94{bottom:6.750000px;}
.yb9{bottom:6.765000px;}
.y126{bottom:6.795000px;}
.y97{bottom:7.875000px;}
.yb3{bottom:7.890000px;}
.y129{bottom:7.905000px;}
.y9e{bottom:11.250000px;}
.yf4{bottom:11.265000px;}
.yae{bottom:11.295000px;}
.y95{bottom:12.375000px;}
.yb2{bottom:12.390000px;}
.y127{bottom:12.405000px;}
.y99{bottom:12.420000px;}
.yf0{bottom:22.515000px;}
.yf6{bottom:22.545000px;}
.yd2{bottom:25.905000px;}
.y187{bottom:108.112500px;}
.y100{bottom:109.237500px;}
.yd0{bottom:113.737500px;}
.y36{bottom:120.487500px;}
.y12d{bottom:121.612500px;}
.y153{bottom:122.737500px;}
.y8c{bottom:124.987500px;}
.y54{bottom:126.112500px;}
.ycf{bottom:130.612500px;}
.y186{bottom:135.112500px;}
.y152{bottom:136.237500px;}
.y35{bottom:137.362500px;}
.y12c{bottom:138.487500px;}
.y8b{bottom:140.737500px;}
.yff{bottom:142.987500px;}
.y151{bottom:148.612500px;}
.y53{bottom:150.900000px;}
.y34{bottom:154.275000px;}
.yce{bottom:155.400000px;}
.yfe{bottom:159.900000px;}
.y150{bottom:162.150000px;}
.y8a{bottom:166.650000px;}
.y33{bottom:171.150000px;}
.y185{bottom:174.525000px;}
.y14f{bottom:175.650000px;}
.y52{bottom:176.775000px;}
.y12b{bottom:180.150000px;}
.ycd{bottom:181.275000px;}
.y89{bottom:183.525000px;}
.y32{bottom:186.900000px;}
.y184{bottom:188.025000px;}
.y14e{bottom:189.150000px;}
.yfd{bottom:192.570000px;}
.y51{bottom:193.695000px;}
.y12a{bottom:197.070000px;}
.ycc{bottom:198.195000px;}
.y88{bottom:200.445000px;}
.y183{bottom:201.570000px;}
.y14d{bottom:202.695000px;}
.y31{bottom:203.820000px;}
.yfc{bottom:209.445000px;}
.y50{bottom:210.570000px;}
.ycb{bottom:215.070000px;}
.y87{bottom:217.320000px;}
.y30{bottom:220.695000px;}
.y14c{bottom:225.195000px;}
.y4f{bottom:226.320000px;}
.y182{bottom:228.570000px;}
.yca{bottom:230.820000px;}
.y86{bottom:233.070000px;}
.y2f{bottom:237.600000px;}
.y181{bottom:240.975000px;}
.y4e{bottom:243.225000px;}
.yc9{bottom:247.725000px;}
.y85{bottom:249.975000px;}
.y128{bottom:251.100000px;}
.y2e{bottom:254.475000px;}
.yfb{bottom:258.975000px;}
.y4d{bottom:260.100000px;}
.yc8{bottom:264.600000px;}
.y14b{bottom:265.725000px;}
.y84{bottom:266.850000px;}
.y180{bottom:267.975000px;}
.y2d{bottom:270.225000px;}
.y125{bottom:271.350000px;}
.yfa{bottom:275.850000px;}
.y4c{bottom:277.005000px;}
.y14a{bottom:280.380000px;}
.yc7{bottom:281.520000px;}
.y83{bottom:283.755000px;}
.y2c{bottom:287.130000px;}
.y124{bottom:291.630000px;}
.y4b{bottom:292.755000px;}
.y149{bottom:295.020000px;}
.yc6{bottom:297.255000px;}
.y82{bottom:299.505000px;}
.y2b{bottom:304.005000px;}
.y123{bottom:305.145000px;}
.y17f{bottom:307.380000px;}
.y4a{bottom:309.630000px;}
.y148{bottom:310.755000px;}
.yc5{bottom:314.130000px;}
.y81{bottom:315.270000px;}
.y2a{bottom:320.925000px;}
.y80{bottom:322.050000px;}
.y49{bottom:326.550000px;}
.y122{bottom:327.675000px;}
.yc4{bottom:331.050000px;}
.yf9{bottom:334.425000px;}
.yd1{bottom:335.550000px;}
.y29{bottom:336.675000px;}
.y48{bottom:343.425000px;}
.y121{bottom:344.550000px;}
.yc3{bottom:347.925000px;}
.y147{bottom:351.300000px;}
.y28{bottom:353.550000px;}
.y47{bottom:359.175000px;}
.yf8{bottom:360.330000px;}
.yc2{bottom:361.455000px;}
.y146{bottom:368.205000px;}
.y27{bottom:370.455000px;}
.yf7{bottom:374.955000px;}
.y46{bottom:376.095000px;}
.y120{bottom:378.330000px;}
.yc1{bottom:381.705000px;}
.y145{bottom:385.080000px;}
.y17e{bottom:387.330000px;}
.y7f{bottom:394.080000px;}
.y26{bottom:395.205000px;}
.y17d{bottom:400.830000px;}
.yc0{bottom:401.955000px;}
.y45{bottom:404.250000px;}
.y7e{bottom:411.000000px;}
.y25{bottom:412.125000px;}
.ybf{bottom:413.250000px;}
.y17c{bottom:414.375000px;}
.y44{bottom:421.125000px;}
.yf5{bottom:424.500000px;}
.y7d{bottom:427.875000px;}
.y24{bottom:429.000000px;}
.ybe{bottom:433.500000px;}
.y11f{bottom:436.875000px;}
.y43{bottom:438.000000px;}
.y17b{bottom:441.375000px;}
.y7c{bottom:443.625000px;}
.ybc{bottom:444.780000px;}
.y23{bottom:445.920000px;}
.y11e{bottom:453.795000px;}
.y42{bottom:454.905000px;}
.ybb{bottom:459.405000px;}
.y7b{bottom:460.545000px;}
.y22{bottom:462.795000px;}
.y11d{bottom:467.280000px;}
.y17a{bottom:467.295000px;}
.yba{bottom:469.530000px;}
.y41{bottom:471.780000px;}
.yf3{bottom:474.030000px;}
.y7a{bottom:477.420000px;}
.y21{bottom:478.530000px;}
.yb8{bottom:479.655000px;}
.y179{bottom:480.795000px;}
.y40{bottom:487.575000px;}
.y79{bottom:494.325000px;}
.y20{bottom:495.450000px;}
.y11c{bottom:497.700000px;}
.yb7{bottom:499.950000px;}
.y3f{bottom:504.450000px;}
.y11b{bottom:507.825000px;}
.y78{bottom:510.075000px;}
.y1f{bottom:512.325000px;}
.yf2{bottom:514.575000px;}
.y178{bottom:520.200000px;}
.y3e{bottom:521.325000px;}
.yf1{bottom:524.700000px;}
.y77{bottom:526.950000px;}
.yb5{bottom:529.230000px;}
.y1e{bottom:529.245000px;}
.yef{bottom:533.730000px;}
.y177{bottom:533.745000px;}
.y3d{bottom:538.230000px;}
.yb4{bottom:541.605000px;}
.y76{bottom:543.870000px;}
.y1d{bottom:546.120000px;}
.y176{bottom:547.245000px;}
.yb1{bottom:551.730000px;}
.y3c{bottom:555.105000px;}
.y75{bottom:560.745000px;}
.y1c{bottom:561.855000px;}
.yee{bottom:565.230000px;}
.y11a{bottom:568.605000px;}
.y3b{bottom:570.900000px;}
.yb0{bottom:572.025000px;}
.y175{bottom:574.275000px;}
.y74{bottom:576.525000px;}
.y1b{bottom:578.775000px;}
.yed{bottom:579.900000px;}
.y119{bottom:584.400000px;}
.y3a{bottom:587.775000px;}
.yaf{bottom:592.275000px;}
.y73{bottom:593.400000px;}
.y1a{bottom:595.650000px;}
.y118{bottom:600.150000px;}
.yad{bottom:602.400000px;}
.y39{bottom:604.650000px;}
.y72{bottom:610.275000px;}
.y19{bottom:612.525000px;}
.y174{bottom:613.695000px;}
.y117{bottom:617.070000px;}
.yec{bottom:619.320000px;}
.y38{bottom:621.570000px;}
.y71{bottom:627.195000px;}
.y18{bottom:628.320000px;}
.y116{bottom:633.945000px;}
.yeb{bottom:636.195000px;}
.y37{bottom:637.320000px;}
.y173{bottom:640.695000px;}
.yab{bottom:641.820000px;}
.y70{bottom:642.945000px;}
.y144{bottom:644.070000px;}
.y115{bottom:650.820000px;}
.yea{bottom:653.070000px;}
.y17{bottom:654.195000px;}
.yaa{bottom:655.350000px;}
.y6f{bottom:659.850000px;}
.y172{bottom:666.600000px;}
.y114{bottom:667.725000px;}
.ye9{bottom:669.975000px;}
.y143{bottom:672.225000px;}
.ya9{bottom:674.475000px;}
.y6e{bottom:676.725000px;}
.y171{bottom:680.100000px;}
.y113{bottom:683.475000px;}
.ya8{bottom:684.600000px;}
.ye8{bottom:685.725000px;}
.y142{bottom:689.100000px;}
.y16{bottom:691.350000px;}
.y6d{bottom:693.600000px;}
.ya6{bottom:695.850000px;}
.y112{bottom:700.380000px;}
.ye7{bottom:702.645000px;}
.y141{bottom:704.880000px;}
.ya5{bottom:707.130000px;}
.y6c{bottom:710.505000px;}
.y15{bottom:716.145000px;}
.ya4{bottom:717.255000px;}
.ye6{bottom:719.520000px;}
.y170{bottom:720.630000px;}
.y140{bottom:721.755000px;}
.y6b{bottom:726.270000px;}
.ya2{bottom:727.380000px;}
.y14{bottom:733.020000px;}
.y111{bottom:734.130000px;}
.ye5{bottom:736.395000px;}
.ya0{bottom:737.505000px;}
.y13f{bottom:738.630000px;}
.y6a{bottom:743.175000px;}
.y16f{bottom:746.550000px;}
.y9f{bottom:748.800000px;}
.y13{bottom:749.925000px;}
.ye4{bottom:752.175000px;}
.y13e{bottom:755.550000px;}
.y69{bottom:760.050000px;}
.y12{bottom:766.800000px;}
.y9d{bottom:769.050000px;}
.y13d{bottom:772.425000px;}
.y16e{bottom:773.550000px;}
.y110{bottom:775.800000px;}
.y68{bottom:776.925000px;}
.y11{bottom:783.705000px;}
.ye3{bottom:785.955000px;}
.y16d{bottom:787.080000px;}
.y9b{bottom:788.205000px;}
.y67{bottom:792.705000px;}
.y10{bottom:799.455000px;}
.y16c{bottom:800.580000px;}
.y9a{bottom:801.705000px;}
.ye2{bottom:802.830000px;}
.y13c{bottom:805.080000px;}
.y10f{bottom:806.205000px;}
.y66{bottom:809.580000px;}
.y96{bottom:811.830000px;}
.y16b{bottom:812.955000px;}
.yf{bottom:816.330000px;}
.ye1{bottom:818.580000px;}
.y13b{bottom:821.955000px;}
.y10e{bottom:826.500000px;}
.y93{bottom:832.125000px;}
.ye{bottom:833.250000px;}
.y65{bottom:835.500000px;}
.y13a{bottom:838.875000px;}
.y16a{bottom:840.000000px;}
.ye0{bottom:844.500000px;}
.y10d{bottom:846.750000px;}
.yd{bottom:850.125000px;}
.y92{bottom:852.375000px;}
.y169{bottom:853.500000px;}
.y139{bottom:854.625000px;}
.y64{bottom:860.250000px;}
.ydf{bottom:861.375000px;}
.y91{bottom:862.500000px;}
.y10c{bottom:865.920000px;}
.yc{bottom:867.045000px;}
.y138{bottom:871.545000px;}
.y90{bottom:872.670000px;}
.yde{bottom:874.920000px;}
.y63{bottom:877.170000px;}
.y168{bottom:879.420000px;}
.yb{bottom:882.795000px;}
.y8e{bottom:883.920000px;}
.ydd{bottom:885.045000px;}
.y10b{bottom:886.170000px;}
.y137{bottom:888.420000px;}
.y167{bottom:892.920000px;}
.y62{bottom:894.045000px;}
.ydc{bottom:895.170000px;}
.ya{bottom:899.670000px;}
.ydb{bottom:905.295000px;}
.y10a{bottom:906.405000px;}
.y166{bottom:906.420000px;}
.y61{bottom:910.950000px;}
.y8d{bottom:912.075000px;}
.yda{bottom:915.450000px;}
.y9{bottom:916.575000px;}
.y165{bottom:919.950000px;}
.y136{bottom:921.075000px;}
.yd9{bottom:925.575000px;}
.y109{bottom:926.700000px;}
.y60{bottom:927.825000px;}
.y164{bottom:933.450000px;}
.y8{bottom:935.700000px;}
.y135{bottom:937.950000px;}
.yd8{bottom:939.075000px;}
.y5f{bottom:944.700000px;}
.y163{bottom:945.825000px;}
.y108{bottom:946.950000px;}
.yd7{bottom:948.075000px;}
.y7{bottom:951.495000px;}
.y134{bottom:954.870000px;}
.yd6{bottom:958.245000px;}
.y162{bottom:959.370000px;}
.y5e{bottom:960.495000px;}
.y107{bottom:961.620000px;}
.y6{bottom:968.370000px;}
.y133{bottom:971.745000px;}
.y161{bottom:972.870000px;}
.y5d{bottom:977.370000px;}
.yd5{bottom:978.495000px;}
.y106{bottom:985.245000px;}
.y160{bottom:986.370000px;}
.yd4{bottom:989.730000px;}
.y5{bottom:994.275000px;}
.y132{bottom:996.525000px;}
.y15f{bottom:999.900000px;}
.y105{bottom:1002.150000px;}
.yd3{bottom:1004.400000px;}
.y4{bottom:1011.150000px;}
.y15e{bottom:1013.400000px;}
.y104{bottom:1017.900000px;}
.y15d{bottom:1025.775000px;}
.y5c{bottom:1026.900000px;}
.y131{bottom:1029.150000px;}
.y103{bottom:1034.820000px;}
.y3{bottom:1035.945000px;}
.y15c{bottom:1039.320000px;}
.y5b{bottom:1043.820000px;}
.y130{bottom:1049.445000px;}
.y102{bottom:1051.695000px;}
.y15b{bottom:1052.820000px;}
.y5a{bottom:1060.695000px;}
.y15a{bottom:1066.320000px;}
.y12f{bottom:1069.695000px;}
.y2{bottom:1071.945000px;}
.y101{bottom:1076.475000px;}
.y59{bottom:1077.600000px;}
.y159{bottom:1079.850000px;}
.y12e{bottom:1083.225000px;}
.y158{bottom:1092.225000px;}
.y58{bottom:1093.350000px;}
.y1{bottom:1095.600000px;}
.y157{bottom:1105.725000px;}
.y57{bottom:1110.225000px;}
.y156{bottom:1119.255000px;}
.y56{bottom:1127.130000px;}
.y155{bottom:1132.755000px;}
.y55{bottom:1144.005000px;}
.y154{bottom:1146.255000px;}
.h1e{height:9.000000px;}
.he{height:9.037500px;}
.hc{height:10.110000px;}
.h10{height:10.125000px;}
.h1f{height:10.147500px;}
.h16{height:10.162500px;}
.ha{height:11.235000px;}
.h19{height:11.250000px;}
.h15{height:11.287500px;}
.h13{height:13.500000px;}
.h18{height:13.537500px;}
.h1a{height:14.625000px;}
.h8{height:16.136719px;}
.h17{height:19.125000px;}
.h14{height:19.162500px;}
.h22{height:20.235000px;}
.h11{height:20.250000px;}
.h12{height:20.287500px;}
.hd{height:25.400391px;}
.hb{height:28.575439px;}
.h20{height:30.375000px;}
.h21{height:30.412500px;}
.hf{height:32.273438px;}
.h23{height:36.571289px;}
.h1c{height:37.705078px;}
.h1b{height:38.287500px;}
.h24{height:40.798828px;}
.h7{height:40.847168px;}
.h5{height:42.246826px;}
.h1d{height:44.375977px;}
.h3{height:46.575439px;}
.h4{height:48.216797px;}
.h9{height:48.410156px;}
.h6{height:52.444336px;}
.h2{height:60.431763px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1b{width:27.037500px;}
.w14{width:31.537500px;}
.w18{width:46.162500px;}
.w9{width:51.825000px;}
.w11{width:52.950000px;}
.w3{width:61.950000px;}
.wd{width:64.200000px;}
.w15{width:74.325000px;}
.w4{width:78.825000px;}
.we{width:83.362500px;}
.w17{width:86.737500px;}
.wa{width:93.487500px;}
.w1c{width:97.987500px;}
.wc{width:103.650000px;}
.wb{width:104.737500px;}
.w2{width:104.775000px;}
.w13{width:107.025000px;}
.w1a{width:111.525000px;}
.w8{width:114.900000px;}
.wf{width:115.987500px;}
.w10{width:117.150000px;}
.w5{width:118.275000px;}
.w19{width:132.937500px;}
.w1d{width:135.150000px;}
.w12{width:138.562500px;}
.w16{width:159.975000px;}
.w7{width:335.655000px;}
.w6{width:363.825000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:4.485000px;}
.x1a{left:5.655000px;}
.x20{left:9.000000px;}
.x36{left:13.500000px;}
.x21{left:16.875000px;}
.x14{left:21.360000px;}
.x16{left:28.170000px;}
.x18{left:31.530000px;}
.x34{left:34.905000px;}
.x12{left:36.060000px;}
.x33{left:39.405000px;}
.x3b{left:40.537500px;}
.x38{left:43.950000px;}
.x3f{left:45.045000px;}
.xb{left:64.199987px;}
.x27{left:66.450000px;}
.x23{left:67.575000px;}
.x1f{left:82.237500px;}
.x44{left:100.237487px;}
.x1e{left:108.150000px;}
.x26{left:112.649987px;}
.x19{left:118.275000px;}
.x1c{left:121.650000px;}
.x39{left:125.024987px;}
.x9{left:127.274987px;}
.x4{left:140.812487px;}
.x1d{left:141.930000px;}
.x22{left:149.812487px;}
.x5{left:150.929987px;}
.x3a{left:164.429987px;}
.xe{left:165.599987px;}
.x42{left:168.974987px;}
.x28{left:170.100000px;}
.x3c{left:175.725000px;}
.x6{left:182.474987px;}
.xa{left:188.099987px;}
.x41{left:192.599987px;}
.x40{left:200.519987px;}
.x3d{left:202.770000px;}
.x43{left:203.894987px;}
.x1{left:215.144987px;}
.x3{left:228.674987px;}
.x24{left:234.300000px;}
.xf{left:250.049987px;}
.x3e{left:300.750000px;}
.x2{left:306.374987px;}
.x29{left:317.670000px;}
.x25{left:327.795000px;}
.x7{left:349.199987px;}
.x8{left:446.069987px;}
.xc{left:457.319987px;}
.x11{left:461.820000px;}
.x10{left:466.319987px;}
.x45{left:493.349987px;}
.x2e{left:530.549987px;}
.x2a{left:542.924987px;}
.xd{left:548.549987px;}
.x32{left:549.674987px;}
.x2f{left:564.345000px;}
.x13{left:566.595000px;}
.x2b{left:574.470000px;}
.x30{left:595.875000px;}
.x15{left:628.530000px;}
.x2c{left:638.655000px;}
.x35{left:651.075000px;}
.x31{left:670.200000px;}
.x2d{left:691.620000px;}
.x37{left:697.245000px;}
.x17{left:707.370000px;}
@media print{
.v2{vertical-align:-48.106667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls7{letter-spacing:-5.002667pt;}
.ls15{letter-spacing:-4.000000pt;}
.ls28{letter-spacing:-3.770667pt;}
.ls23{letter-spacing:-3.002667pt;}
.lsf{letter-spacing:-2.458667pt;}
.ls27{letter-spacing:-2.000000pt;}
.lsa{letter-spacing:-1.546667pt;}
.ls5{letter-spacing:-1.317333pt;}
.ls4{letter-spacing:-1.002667pt;}
.ls17{letter-spacing:-0.896000pt;}
.ls21{letter-spacing:-0.232000pt;}
.ls9{letter-spacing:-0.227733pt;}
.ls13{letter-spacing:-0.008000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.016000pt;}
.ls1c{letter-spacing:0.149333pt;}
.lse{letter-spacing:0.227733pt;}
.ls22{letter-spacing:0.464000pt;}
.ls14{letter-spacing:0.896000pt;}
.ls8{letter-spacing:0.912000pt;}
.ls1f{letter-spacing:0.968000pt;}
.ls1d{letter-spacing:1.000000pt;}
.ls12{letter-spacing:1.002667pt;}
.ls29{letter-spacing:1.116000pt;}
.ls20{letter-spacing:1.222667pt;}
.ls11{letter-spacing:1.344000pt;}
.ls6{letter-spacing:1.546667pt;}
.ls18{letter-spacing:1.792000pt;}
.ls1e{letter-spacing:1.936000pt;}
.ls1{letter-spacing:2.000000pt;}
.ls26{letter-spacing:2.106667pt;}
.ls25{letter-spacing:2.133333pt;}
.ls24{letter-spacing:2.160000pt;}
.lsb{letter-spacing:2.682667pt;}
.lsd{letter-spacing:3.002667pt;}
.ls16{letter-spacing:3.770667pt;}
.lsc{letter-spacing:4.912000pt;}
.ls0{letter-spacing:5.296000pt;}
.ls2{letter-spacing:7.000000pt;}
.ls1b{letter-spacing:16.160000pt;}
.ls19{letter-spacing:31.160000pt;}
.ls10{letter-spacing:264.373333pt;}
.ws6{word-spacing:-15.682667pt;}
.ws7{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.546667pt;}
.ws3{word-spacing:-13.912000pt;}
.wse{word-spacing:-13.344000pt;}
.ws8{word-spacing:-13.227733pt;}
.ws1{word-spacing:-13.000000pt;}
.ws14{word-spacing:-12.936000pt;}
.ws4{word-spacing:-12.772267pt;}
.ws11{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.682667pt;}
.ws15{word-spacing:-11.464000pt;}
.ws5{word-spacing:-11.453333pt;}
.ws12{word-spacing:-11.000000pt;}
.ws13{word-spacing:-10.768000pt;}
.wsa{word-spacing:-10.541333pt;}
.ws10{word-spacing:-9.792000pt;}
.ws0{word-spacing:-9.000000pt;}
.wsc{word-spacing:-8.992000pt;}
.wsd{word-spacing:-8.896000pt;}
.ws16{word-spacing:-7.229333pt;}
.wsf{word-spacing:-7.104000pt;}
.wsb{word-spacing:0.000000pt;}
._24{margin-left:-6.582533pt;}
._1{margin-left:-5.633867pt;}
._4{margin-left:-4.452533pt;}
._0{margin-left:-3.086667pt;}
._2{margin-left:-1.516133pt;}
._3{width:1.065867pt;}
._8{width:1.969200pt;}
._9{width:2.997733pt;}
._d{width:4.018267pt;}
._a{width:5.400933pt;}
._12{width:6.335733pt;}
._b{width:7.238533pt;}
._5{width:8.672667pt;}
._2f{width:9.805467pt;}
._c{width:10.735867pt;}
._10{width:11.821733pt;}
._7{width:12.785867pt;}
._f{width:14.100667pt;}
._e{width:15.000000pt;}
._6{width:16.692400pt;}
._22{width:18.415733pt;}
._11{width:19.525467pt;}
._2e{width:20.748267pt;}
._23{width:21.720133pt;}
._1e{width:22.835333pt;}
._14{width:23.764800pt;}
._19{width:24.711200pt;}
._2c{width:26.066800pt;}
._16{width:27.372933pt;}
._18{width:29.195200pt;}
._27{width:30.348533pt;}
._15{width:31.374667pt;}
._17{width:32.604533pt;}
._2d{width:34.129600pt;}
._13{width:35.506933pt;}
._31{width:37.081200pt;}
._1d{width:38.371600pt;}
._1c{width:39.391600pt;}
._25{width:43.298933pt;}
._30{width:44.810667pt;}
._1a{width:46.964800pt;}
._28{width:48.013333pt;}
._1f{width:50.426800pt;}
._21{width:54.807067pt;}
._1b{width:55.795333pt;}
._20{width:59.399067pt;}
._2a{width:63.080533pt;}
._2b{width:67.328267pt;}
._29{width:71.317067pt;}
._26{width:92.433733pt;}
.fs3{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:36.000000pt;}
.fs5{font-size:44.000000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:52.000000pt;}
.fs0{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:2.000000pt;}
.ya3{bottom:2.013333pt;}
.ya7{bottom:2.026667pt;}
.ya1{bottom:2.040000pt;}
.yac{bottom:3.000000pt;}
.yb6{bottom:3.013333pt;}
.y9c{bottom:4.000000pt;}
.ybd{bottom:4.013333pt;}
.y98{bottom:5.000000pt;}
.y94{bottom:6.000000pt;}
.yb9{bottom:6.013333pt;}
.y126{bottom:6.040000pt;}
.y97{bottom:7.000000pt;}
.yb3{bottom:7.013333pt;}
.y129{bottom:7.026667pt;}
.y9e{bottom:10.000000pt;}
.yf4{bottom:10.013333pt;}
.yae{bottom:10.040000pt;}
.y95{bottom:11.000000pt;}
.yb2{bottom:11.013333pt;}
.y127{bottom:11.026667pt;}
.y99{bottom:11.040000pt;}
.yf0{bottom:20.013333pt;}
.yf6{bottom:20.040000pt;}
.yd2{bottom:23.026667pt;}
.y187{bottom:96.100000pt;}
.y100{bottom:97.100000pt;}
.yd0{bottom:101.100000pt;}
.y36{bottom:107.100000pt;}
.y12d{bottom:108.100000pt;}
.y153{bottom:109.100000pt;}
.y8c{bottom:111.100000pt;}
.y54{bottom:112.100000pt;}
.ycf{bottom:116.100000pt;}
.y186{bottom:120.100000pt;}
.y152{bottom:121.100000pt;}
.y35{bottom:122.100000pt;}
.y12c{bottom:123.100000pt;}
.y8b{bottom:125.100000pt;}
.yff{bottom:127.100000pt;}
.y151{bottom:132.100000pt;}
.y53{bottom:134.133333pt;}
.y34{bottom:137.133333pt;}
.yce{bottom:138.133333pt;}
.yfe{bottom:142.133333pt;}
.y150{bottom:144.133333pt;}
.y8a{bottom:148.133333pt;}
.y33{bottom:152.133333pt;}
.y185{bottom:155.133333pt;}
.y14f{bottom:156.133333pt;}
.y52{bottom:157.133333pt;}
.y12b{bottom:160.133333pt;}
.ycd{bottom:161.133333pt;}
.y89{bottom:163.133333pt;}
.y32{bottom:166.133333pt;}
.y184{bottom:167.133333pt;}
.y14e{bottom:168.133333pt;}
.yfd{bottom:171.173333pt;}
.y51{bottom:172.173333pt;}
.y12a{bottom:175.173333pt;}
.ycc{bottom:176.173333pt;}
.y88{bottom:178.173333pt;}
.y183{bottom:179.173333pt;}
.y14d{bottom:180.173333pt;}
.y31{bottom:181.173333pt;}
.yfc{bottom:186.173333pt;}
.y50{bottom:187.173333pt;}
.ycb{bottom:191.173333pt;}
.y87{bottom:193.173333pt;}
.y30{bottom:196.173333pt;}
.y14c{bottom:200.173333pt;}
.y4f{bottom:201.173333pt;}
.y182{bottom:203.173333pt;}
.yca{bottom:205.173333pt;}
.y86{bottom:207.173333pt;}
.y2f{bottom:211.200000pt;}
.y181{bottom:214.200000pt;}
.y4e{bottom:216.200000pt;}
.yc9{bottom:220.200000pt;}
.y85{bottom:222.200000pt;}
.y128{bottom:223.200000pt;}
.y2e{bottom:226.200000pt;}
.yfb{bottom:230.200000pt;}
.y4d{bottom:231.200000pt;}
.yc8{bottom:235.200000pt;}
.y14b{bottom:236.200000pt;}
.y84{bottom:237.200000pt;}
.y180{bottom:238.200000pt;}
.y2d{bottom:240.200000pt;}
.y125{bottom:241.200000pt;}
.yfa{bottom:245.200000pt;}
.y4c{bottom:246.226667pt;}
.y14a{bottom:249.226667pt;}
.yc7{bottom:250.240000pt;}
.y83{bottom:252.226667pt;}
.y2c{bottom:255.226667pt;}
.y124{bottom:259.226667pt;}
.y4b{bottom:260.226667pt;}
.y149{bottom:262.240000pt;}
.yc6{bottom:264.226667pt;}
.y82{bottom:266.226667pt;}
.y2b{bottom:270.226667pt;}
.y123{bottom:271.240000pt;}
.y17f{bottom:273.226667pt;}
.y4a{bottom:275.226667pt;}
.y148{bottom:276.226667pt;}
.yc5{bottom:279.226667pt;}
.y81{bottom:280.240000pt;}
.y2a{bottom:285.266667pt;}
.y80{bottom:286.266667pt;}
.y49{bottom:290.266667pt;}
.y122{bottom:291.266667pt;}
.yc4{bottom:294.266667pt;}
.yf9{bottom:297.266667pt;}
.yd1{bottom:298.266667pt;}
.y29{bottom:299.266667pt;}
.y48{bottom:305.266667pt;}
.y121{bottom:306.266667pt;}
.yc3{bottom:309.266667pt;}
.y147{bottom:312.266667pt;}
.y28{bottom:314.266667pt;}
.y47{bottom:319.266667pt;}
.yf8{bottom:320.293333pt;}
.yc2{bottom:321.293333pt;}
.y146{bottom:327.293333pt;}
.y27{bottom:329.293333pt;}
.yf7{bottom:333.293333pt;}
.y46{bottom:334.306667pt;}
.y120{bottom:336.293333pt;}
.yc1{bottom:339.293333pt;}
.y145{bottom:342.293333pt;}
.y17e{bottom:344.293333pt;}
.y7f{bottom:350.293333pt;}
.y26{bottom:351.293333pt;}
.y17d{bottom:356.293333pt;}
.yc0{bottom:357.293333pt;}
.y45{bottom:359.333333pt;}
.y7e{bottom:365.333333pt;}
.y25{bottom:366.333333pt;}
.ybf{bottom:367.333333pt;}
.y17c{bottom:368.333333pt;}
.y44{bottom:374.333333pt;}
.yf5{bottom:377.333333pt;}
.y7d{bottom:380.333333pt;}
.y24{bottom:381.333333pt;}
.ybe{bottom:385.333333pt;}
.y11f{bottom:388.333333pt;}
.y43{bottom:389.333333pt;}
.y17b{bottom:392.333333pt;}
.y7c{bottom:394.333333pt;}
.ybc{bottom:395.360000pt;}
.y23{bottom:396.373333pt;}
.y11e{bottom:403.373333pt;}
.y42{bottom:404.360000pt;}
.ybb{bottom:408.360000pt;}
.y7b{bottom:409.373333pt;}
.y22{bottom:411.373333pt;}
.y11d{bottom:415.360000pt;}
.y17a{bottom:415.373333pt;}
.yba{bottom:417.360000pt;}
.y41{bottom:419.360000pt;}
.yf3{bottom:421.360000pt;}
.y7a{bottom:424.373333pt;}
.y21{bottom:425.360000pt;}
.yb8{bottom:426.360000pt;}
.y179{bottom:427.373333pt;}
.y40{bottom:433.400000pt;}
.y79{bottom:439.400000pt;}
.y20{bottom:440.400000pt;}
.y11c{bottom:442.400000pt;}
.yb7{bottom:444.400000pt;}
.y3f{bottom:448.400000pt;}
.y11b{bottom:451.400000pt;}
.y78{bottom:453.400000pt;}
.y1f{bottom:455.400000pt;}
.yf2{bottom:457.400000pt;}
.y178{bottom:462.400000pt;}
.y3e{bottom:463.400000pt;}
.yf1{bottom:466.400000pt;}
.y77{bottom:468.400000pt;}
.yb5{bottom:470.426667pt;}
.y1e{bottom:470.440000pt;}
.yef{bottom:474.426667pt;}
.y177{bottom:474.440000pt;}
.y3d{bottom:478.426667pt;}
.yb4{bottom:481.426667pt;}
.y76{bottom:483.440000pt;}
.y1d{bottom:485.440000pt;}
.y176{bottom:486.440000pt;}
.yb1{bottom:490.426667pt;}
.y3c{bottom:493.426667pt;}
.y75{bottom:498.440000pt;}
.y1c{bottom:499.426667pt;}
.yee{bottom:502.426667pt;}
.y11a{bottom:505.426667pt;}
.y3b{bottom:507.466667pt;}
.yb0{bottom:508.466667pt;}
.y175{bottom:510.466667pt;}
.y74{bottom:512.466667pt;}
.y1b{bottom:514.466667pt;}
.yed{bottom:515.466667pt;}
.y119{bottom:519.466667pt;}
.y3a{bottom:522.466667pt;}
.yaf{bottom:526.466667pt;}
.y73{bottom:527.466667pt;}
.y1a{bottom:529.466667pt;}
.y118{bottom:533.466667pt;}
.yad{bottom:535.466667pt;}
.y39{bottom:537.466667pt;}
.y72{bottom:542.466667pt;}
.y19{bottom:544.466667pt;}
.y174{bottom:545.506667pt;}
.y117{bottom:548.506667pt;}
.yec{bottom:550.506667pt;}
.y38{bottom:552.506667pt;}
.y71{bottom:557.506667pt;}
.y18{bottom:558.506667pt;}
.y116{bottom:563.506667pt;}
.yeb{bottom:565.506667pt;}
.y37{bottom:566.506667pt;}
.y173{bottom:569.506667pt;}
.yab{bottom:570.506667pt;}
.y70{bottom:571.506667pt;}
.y144{bottom:572.506667pt;}
.y115{bottom:578.506667pt;}
.yea{bottom:580.506667pt;}
.y17{bottom:581.506667pt;}
.yaa{bottom:582.533333pt;}
.y6f{bottom:586.533333pt;}
.y172{bottom:592.533333pt;}
.y114{bottom:593.533333pt;}
.ye9{bottom:595.533333pt;}
.y143{bottom:597.533333pt;}
.ya9{bottom:599.533333pt;}
.y6e{bottom:601.533333pt;}
.y171{bottom:604.533333pt;}
.y113{bottom:607.533333pt;}
.ya8{bottom:608.533333pt;}
.ye8{bottom:609.533333pt;}
.y142{bottom:612.533333pt;}
.y16{bottom:614.533333pt;}
.y6d{bottom:616.533333pt;}
.ya6{bottom:618.533333pt;}
.y112{bottom:622.560000pt;}
.ye7{bottom:624.573333pt;}
.y141{bottom:626.560000pt;}
.ya5{bottom:628.560000pt;}
.y6c{bottom:631.560000pt;}
.y15{bottom:636.573333pt;}
.ya4{bottom:637.560000pt;}
.ye6{bottom:639.573333pt;}
.y170{bottom:640.560000pt;}
.y140{bottom:641.560000pt;}
.y6b{bottom:645.573333pt;}
.ya2{bottom:646.560000pt;}
.y14{bottom:651.573333pt;}
.y111{bottom:652.560000pt;}
.ye5{bottom:654.573333pt;}
.ya0{bottom:655.560000pt;}
.y13f{bottom:656.560000pt;}
.y6a{bottom:660.600000pt;}
.y16f{bottom:663.600000pt;}
.y9f{bottom:665.600000pt;}
.y13{bottom:666.600000pt;}
.ye4{bottom:668.600000pt;}
.y13e{bottom:671.600000pt;}
.y69{bottom:675.600000pt;}
.y12{bottom:681.600000pt;}
.y9d{bottom:683.600000pt;}
.y13d{bottom:686.600000pt;}
.y16e{bottom:687.600000pt;}
.y110{bottom:689.600000pt;}
.y68{bottom:690.600000pt;}
.y11{bottom:696.626667pt;}
.ye3{bottom:698.626667pt;}
.y16d{bottom:699.626667pt;}
.y9b{bottom:700.626667pt;}
.y67{bottom:704.626667pt;}
.y10{bottom:710.626667pt;}
.y16c{bottom:711.626667pt;}
.y9a{bottom:712.626667pt;}
.ye2{bottom:713.626667pt;}
.y13c{bottom:715.626667pt;}
.y10f{bottom:716.626667pt;}
.y66{bottom:719.626667pt;}
.y96{bottom:721.626667pt;}
.y16b{bottom:722.626667pt;}
.yf{bottom:725.626667pt;}
.ye1{bottom:727.626667pt;}
.y13b{bottom:730.626667pt;}
.y10e{bottom:734.666667pt;}
.y93{bottom:739.666667pt;}
.ye{bottom:740.666667pt;}
.y65{bottom:742.666667pt;}
.y13a{bottom:745.666667pt;}
.y16a{bottom:746.666667pt;}
.ye0{bottom:750.666667pt;}
.y10d{bottom:752.666667pt;}
.yd{bottom:755.666667pt;}
.y92{bottom:757.666667pt;}
.y169{bottom:758.666667pt;}
.y139{bottom:759.666667pt;}
.y64{bottom:764.666667pt;}
.ydf{bottom:765.666667pt;}
.y91{bottom:766.666667pt;}
.y10c{bottom:769.706667pt;}
.yc{bottom:770.706667pt;}
.y138{bottom:774.706667pt;}
.y90{bottom:775.706667pt;}
.yde{bottom:777.706667pt;}
.y63{bottom:779.706667pt;}
.y168{bottom:781.706667pt;}
.yb{bottom:784.706667pt;}
.y8e{bottom:785.706667pt;}
.ydd{bottom:786.706667pt;}
.y10b{bottom:787.706667pt;}
.y137{bottom:789.706667pt;}
.y167{bottom:793.706667pt;}
.y62{bottom:794.706667pt;}
.ydc{bottom:795.706667pt;}
.ya{bottom:799.706667pt;}
.ydb{bottom:804.706667pt;}
.y10a{bottom:805.693333pt;}
.y166{bottom:805.706667pt;}
.y61{bottom:809.733333pt;}
.y8d{bottom:810.733333pt;}
.yda{bottom:813.733333pt;}
.y9{bottom:814.733333pt;}
.y165{bottom:817.733333pt;}
.y136{bottom:818.733333pt;}
.yd9{bottom:822.733333pt;}
.y109{bottom:823.733333pt;}
.y60{bottom:824.733333pt;}
.y164{bottom:829.733333pt;}
.y8{bottom:831.733333pt;}
.y135{bottom:833.733333pt;}
.yd8{bottom:834.733333pt;}
.y5f{bottom:839.733333pt;}
.y163{bottom:840.733333pt;}
.y108{bottom:841.733333pt;}
.yd7{bottom:842.733333pt;}
.y7{bottom:845.773333pt;}
.y134{bottom:848.773333pt;}
.yd6{bottom:851.773333pt;}
.y162{bottom:852.773333pt;}
.y5e{bottom:853.773333pt;}
.y107{bottom:854.773333pt;}
.y6{bottom:860.773333pt;}
.y133{bottom:863.773333pt;}
.y161{bottom:864.773333pt;}
.y5d{bottom:868.773333pt;}
.yd5{bottom:869.773333pt;}
.y106{bottom:875.773333pt;}
.y160{bottom:876.773333pt;}
.yd4{bottom:879.760000pt;}
.y5{bottom:883.800000pt;}
.y132{bottom:885.800000pt;}
.y15f{bottom:888.800000pt;}
.y105{bottom:890.800000pt;}
.yd3{bottom:892.800000pt;}
.y4{bottom:898.800000pt;}
.y15e{bottom:900.800000pt;}
.y104{bottom:904.800000pt;}
.y15d{bottom:911.800000pt;}
.y5c{bottom:912.800000pt;}
.y131{bottom:914.800000pt;}
.y103{bottom:919.840000pt;}
.y3{bottom:920.840000pt;}
.y15c{bottom:923.840000pt;}
.y5b{bottom:927.840000pt;}
.y130{bottom:932.840000pt;}
.y102{bottom:934.840000pt;}
.y15b{bottom:935.840000pt;}
.y5a{bottom:942.840000pt;}
.y15a{bottom:947.840000pt;}
.y12f{bottom:950.840000pt;}
.y2{bottom:952.840000pt;}
.y101{bottom:956.866667pt;}
.y59{bottom:957.866667pt;}
.y159{bottom:959.866667pt;}
.y12e{bottom:962.866667pt;}
.y158{bottom:970.866667pt;}
.y58{bottom:971.866667pt;}
.y1{bottom:973.866667pt;}
.y157{bottom:982.866667pt;}
.y57{bottom:986.866667pt;}
.y156{bottom:994.893333pt;}
.y56{bottom:1001.893333pt;}
.y155{bottom:1006.893333pt;}
.y55{bottom:1016.893333pt;}
.y154{bottom:1018.893333pt;}
.h1e{height:8.000000pt;}
.he{height:8.033333pt;}
.hc{height:8.986667pt;}
.h10{height:9.000000pt;}
.h1f{height:9.020000pt;}
.h16{height:9.033333pt;}
.ha{height:9.986667pt;}
.h19{height:10.000000pt;}
.h15{height:10.033333pt;}
.h13{height:12.000000pt;}
.h18{height:12.033333pt;}
.h1a{height:13.000000pt;}
.h8{height:14.343750pt;}
.h17{height:17.000000pt;}
.h14{height:17.033333pt;}
.h22{height:17.986667pt;}
.h11{height:18.000000pt;}
.h12{height:18.033333pt;}
.hd{height:22.578125pt;}
.hb{height:25.400391pt;}
.h20{height:27.000000pt;}
.h21{height:27.033333pt;}
.hf{height:28.687500pt;}
.h23{height:32.507812pt;}
.h1c{height:33.515625pt;}
.h1b{height:34.033333pt;}
.h24{height:36.265625pt;}
.h7{height:36.308594pt;}
.h5{height:37.552734pt;}
.h1d{height:39.445312pt;}
.h3{height:41.400391pt;}
.h4{height:42.859375pt;}
.h9{height:43.031250pt;}
.h6{height:46.617188pt;}
.h2{height:53.717122pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1b{width:24.033333pt;}
.w14{width:28.033333pt;}
.w18{width:41.033333pt;}
.w9{width:46.066667pt;}
.w11{width:47.066667pt;}
.w3{width:55.066667pt;}
.wd{width:57.066667pt;}
.w15{width:66.066667pt;}
.w4{width:70.066667pt;}
.we{width:74.100000pt;}
.w17{width:77.100000pt;}
.wa{width:83.100000pt;}
.w1c{width:87.100000pt;}
.wc{width:92.133333pt;}
.wb{width:93.100000pt;}
.w2{width:93.133333pt;}
.w13{width:95.133333pt;}
.w1a{width:99.133333pt;}
.w8{width:102.133333pt;}
.wf{width:103.100000pt;}
.w10{width:104.133333pt;}
.w5{width:105.133333pt;}
.w19{width:118.166667pt;}
.w1d{width:120.133333pt;}
.w12{width:123.166667pt;}
.w16{width:142.200000pt;}
.w7{width:298.360000pt;}
.w6{width:323.400000pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:3.986667pt;}
.x1a{left:5.026667pt;}
.x20{left:8.000000pt;}
.x36{left:12.000000pt;}
.x21{left:15.000000pt;}
.x14{left:18.986667pt;}
.x16{left:25.040000pt;}
.x18{left:28.026667pt;}
.x34{left:31.026667pt;}
.x12{left:32.053333pt;}
.x33{left:35.026667pt;}
.x3b{left:36.033333pt;}
.x38{left:39.066667pt;}
.x3f{left:40.040000pt;}
.xb{left:57.066655pt;}
.x27{left:59.066667pt;}
.x23{left:60.066667pt;}
.x1f{left:73.100000pt;}
.x44{left:89.099988pt;}
.x1e{left:96.133333pt;}
.x26{left:100.133322pt;}
.x19{left:105.133333pt;}
.x1c{left:108.133333pt;}
.x39{left:111.133322pt;}
.x9{left:113.133322pt;}
.x4{left:125.166655pt;}
.x1d{left:126.160000pt;}
.x22{left:133.166655pt;}
.x5{left:134.159988pt;}
.x3a{left:146.159988pt;}
.xe{left:147.199988pt;}
.x42{left:150.199988pt;}
.x28{left:151.200000pt;}
.x3c{left:156.200000pt;}
.x6{left:162.199988pt;}
.xa{left:167.199988pt;}
.x41{left:171.199988pt;}
.x40{left:178.239988pt;}
.x3d{left:180.240000pt;}
.x43{left:181.239988pt;}
.x1{left:191.239988pt;}
.x3{left:203.266655pt;}
.x24{left:208.266667pt;}
.xf{left:222.266655pt;}
.x3e{left:267.333333pt;}
.x2{left:272.333322pt;}
.x29{left:282.373333pt;}
.x25{left:291.373333pt;}
.x7{left:310.399988pt;}
.x8{left:396.506655pt;}
.xc{left:406.506655pt;}
.x11{left:410.506667pt;}
.x10{left:414.506655pt;}
.x45{left:438.533322pt;}
.x2e{left:471.599988pt;}
.x2a{left:482.599988pt;}
.xd{left:487.599988pt;}
.x32{left:488.599988pt;}
.x2f{left:501.640000pt;}
.x13{left:503.640000pt;}
.x2b{left:510.640000pt;}
.x30{left:529.666667pt;}
.x15{left:558.693333pt;}
.x2c{left:567.693333pt;}
.x35{left:578.733333pt;}
.x31{left:595.733333pt;}
.x2d{left:614.773333pt;}
.x37{left:619.773333pt;}
.x17{left:628.773333pt;}
}




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