
    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_fecd0620f1e6509a2908f8e8.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ac1c2c12162ff1d45f53e365.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5aac2026c2fab1000d5fb394.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cac502b96d95983ec294b1f2.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_d18861fe735072766e52e0f0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_adaf37084e637ddc4a3667db.woff')format("woff");}.ff6{font-family:ff6;line-height:1.053223;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_7e27675718f86b0df3f0e73b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8b7de5a3dfe04f17c541623c.woff')format("woff");}.ff8{font-family:ff8;line-height:1.053223;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls16{letter-spacing:-0.960000px;}
.ls2a{letter-spacing:-0.786000px;}
.ls1d{letter-spacing:-0.579600px;}
.ls1a{letter-spacing:-0.544800px;}
.ls6{letter-spacing:-0.463800px;}
.ls2b{letter-spacing:-0.431400px;}
.ls15{letter-spacing:-0.414000px;}
.ls1e{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.303000px;}
.lsd{letter-spacing:-0.240600px;}
.ls26{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.132600px;}
.ls30{letter-spacing:-0.107400px;}
.ls22{letter-spacing:-0.069600px;}
.ls1c{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls34{letter-spacing:-0.032400px;}
.lsb{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.023760px;}
.ls4{letter-spacing:0.038880px;}
.ls1f{letter-spacing:0.060480px;}
.ls20{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls8{letter-spacing:0.150000px;}
.ls1{letter-spacing:0.174000px;}
.ls11{letter-spacing:0.174240px;}
.ls19{letter-spacing:0.175200px;}
.lsc{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.210000px;}
.ls32{letter-spacing:0.218400px;}
.ls23{letter-spacing:0.220320px;}
.ls21{letter-spacing:0.233280px;}
.ls7{letter-spacing:0.256200px;}
.ls35{letter-spacing:0.274800px;}
.ls28{letter-spacing:0.288600px;}
.ls18{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.393600px;}
.ls2f{letter-spacing:0.433440px;}
.lse{letter-spacing:0.654000px;}
.ls2c{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.744000px;}
.ls31{letter-spacing:0.780000px;}
.ls2d{letter-spacing:0.900000px;}
.ls13{letter-spacing:1.026000px;}
.ls17{letter-spacing:4.494240px;}
.ls2e{letter-spacing:12.186720px;}
.ls27{letter-spacing:14.346720px;}
.ls29{letter-spacing:42.426720px;}
.ls2{letter-spacing:45.306720px;}
.ls33{letter-spacing:46.146720px;}
.ls24{letter-spacing:117.678240px;}
.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;}
}
.ws5{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws4{word-spacing:-15.226440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws14{word-spacing:-14.165760px;}
.wse{word-spacing:-13.899360px;}
.wsc{word-spacing:-13.811760px;}
.ws18{word-spacing:-13.780560px;}
.ws17{word-spacing:-13.724160px;}
.wsd{word-spacing:-13.680960px;}
.ws10{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.566360px;}
.ws8{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.473360px;}
.wsa{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.436160px;}
.ws15{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.265160px;}
.ws13{word-spacing:-13.202760px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._21{margin-left:-196.738560px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._26{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._25{margin-left:-145.392000px;}
._10{margin-left:-142.046400px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._24{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._22{margin-left:-80.367360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-35.130240px;}
._19{margin-left:-32.468640px;}
._27{margin-left:-3.674880px;}
._2d{margin-left:-2.404560px;}
._2{margin-left:-1.347840px;}
._29{width:1.118640px;}
._2a{width:2.462400px;}
._2b{width:3.823200px;}
._2c{width:5.460720px;}
._2e{width:7.171200px;}
._2f{width:8.220720px;}
._31{width:9.681120px;}
._32{width:11.208240px;}
._30{width:12.430080px;}
._35{width:14.521680px;}
._36{width:16.314480px;}
._3f{width:17.377680px;}
._3e{width:18.525600px;}
._28{width:19.918080px;}
._4a{width:23.186880px;}
._34{width:27.967680px;}
._33{width:28.983600px;}
._49{width:30.135840px;}
._48{width:34.481520px;}
._40{width:38.485440px;}
._44{width:39.668640px;}
._41{width:40.958160px;}
._3a{width:45.002640px;}
._42{width:47.688480px;}
._45{width:52.588800px;}
._46{width:56.353680px;}
._47{width:57.811680px;}
._43{width:66.273840px;}
._38{width:67.588560px;}
._3d{width:89.691840px;}
._3c{width:111.862800px;}
._3b{width:113.775120px;}
._37{width:140.734800px;}
._39{width:156.558240px;}
._4b{width:295.812000px;}
.fc7{color:rgb(0,0,255);}
.fc6{color:transparent;}
.fc4{color:rgb(38,74,96);}
.fc5{color:rgb(68,84,106);}
.fc3{color:rgb(1,2,5);}
.fc2{color:rgb(28,28,28);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:6.660000px;}
.y136{bottom:7.380000px;}
.y13c{bottom:11.160000px;}
.y132{bottom:14.940000px;}
.y12c{bottom:17.100000px;}
.y129{bottom:17.280000px;}
.y134{bottom:17.820000px;}
.y13a{bottom:21.780000px;}
.y133{bottom:23.400000px;}
.ya4{bottom:27.720000px;}
.y12e{bottom:27.750000px;}
.ybe{bottom:27.765000px;}
.y135{bottom:28.440000px;}
.y137{bottom:29.160000px;}
.yd1{bottom:30.780000px;}
.y13b{bottom:32.220000px;}
.y12f{bottom:38.190000px;}
.ya8{bottom:48.780000px;}
.y130{bottom:48.810000px;}
.yce{bottom:51.840000px;}
.y6{bottom:61.560000px;}
.ybc{bottom:69.840000px;}
.y127{bottom:70.920000px;}
.y125{bottom:81.540000px;}
.y126{bottom:91.980000px;}
.ycc{bottom:97.380000px;}
.yfc{bottom:100.440000px;}
.y143{bottom:102.645000px;}
.y148{bottom:103.170000px;}
.y70{bottom:104.220000px;}
.ya0{bottom:105.660000px;}
.y15e{bottom:109.260000px;}
.y121{bottom:113.220000px;}
.y2f{bottom:116.280000px;}
.ycb{bottom:118.440000px;}
.yfb{bottom:121.500000px;}
.y6f{bottom:125.280000px;}
.y9f{bottom:126.540000px;}
.y12d{bottom:127.440000px;}
.y11c{bottom:128.340000px;}
.y120{bottom:134.280000px;}
.y2e{bottom:137.340000px;}
.yca{bottom:139.500000px;}
.yfa{bottom:142.560000px;}
.y6e{bottom:146.340000px;}
.y9e{bottom:147.600000px;}
.y11b{bottom:149.400000px;}
.y11f{bottom:155.370000px;}
.y2d{bottom:158.430000px;}
.yc9{bottom:160.590000px;}
.yf9{bottom:163.650000px;}
.y6d{bottom:167.430000px;}
.y9d{bottom:168.690000px;}
.y11a{bottom:170.490000px;}
.y11e{bottom:176.430000px;}
.y2c{bottom:179.490000px;}
.yc8{bottom:181.650000px;}
.yf8{bottom:184.710000px;}
.y6c{bottom:188.490000px;}
.y9c{bottom:189.750000px;}
.y124{bottom:191.370000px;}
.y119{bottom:191.550000px;}
.y11d{bottom:197.490000px;}
.y2b{bottom:200.550000px;}
.yc7{bottom:202.710000px;}
.yf7{bottom:205.770000px;}
.y15d{bottom:208.290000px;}
.y77{bottom:209.550000px;}
.y9b{bottom:210.810000px;}
.y118{bottom:212.610000px;}
.y6b{bottom:218.550000px;}
.y2a{bottom:221.610000px;}
.yc6{bottom:223.770000px;}
.yf6{bottom:226.830000px;}
.y15c{bottom:229.350000px;}
.y76{bottom:230.610000px;}
.y9a{bottom:231.870000px;}
.y117{bottom:233.670000px;}
.y12b{bottom:234.210000px;}
.y6a{bottom:239.610000px;}
.y29{bottom:242.670000px;}
.yc5{bottom:244.830000px;}
.yf5{bottom:247.890000px;}
.y15b{bottom:250.410000px;}
.y75{bottom:251.670000px;}
.y99{bottom:252.930000px;}
.y116{bottom:254.730000px;}
.y69{bottom:260.670000px;}
.y28{bottom:263.730000px;}
.yc4{bottom:265.890000px;}
.yf4{bottom:268.950000px;}
.y15a{bottom:271.470000px;}
.y74{bottom:272.730000px;}
.y98{bottom:273.990000px;}
.y115{bottom:275.790000px;}
.y12a{bottom:277.050000px;}
.y68{bottom:281.730000px;}
.y27{bottom:284.790000px;}
.yc3{bottom:286.950000px;}
.yf3{bottom:290.010000px;}
.y159{bottom:292.530000px;}
.y73{bottom:293.790000px;}
.y97{bottom:295.050000px;}
.y114{bottom:296.850000px;}
.y67{bottom:302.790000px;}
.y26{bottom:305.850000px;}
.yc2{bottom:308.010000px;}
.yf2{bottom:311.070000px;}
.y158{bottom:313.590000px;}
.y72{bottom:314.850000px;}
.y96{bottom:316.110000px;}
.y113{bottom:317.910000px;}
.y128{bottom:319.890000px;}
.y66{bottom:323.850000px;}
.y25{bottom:326.910000px;}
.yc1{bottom:329.070000px;}
.yf1{bottom:332.130000px;}
.y157{bottom:334.650000px;}
.y71{bottom:335.910000px;}
.y95{bottom:337.170000px;}
.y112{bottom:338.970000px;}
.y65{bottom:344.910000px;}
.y24{bottom:347.970000px;}
.yc0{bottom:350.130000px;}
.yf0{bottom:353.190000px;}
.y156{bottom:355.710000px;}
.y57{bottom:356.970000px;}
.y94{bottom:358.230000px;}
.y111{bottom:360.030000px;}
.y123{bottom:362.910000px;}
.ybf{bottom:365.250000px;}
.y64{bottom:365.970000px;}
.y23{bottom:369.030000px;}
.yef{bottom:374.250000px;}
.y155{bottom:376.770000px;}
.y56{bottom:378.030000px;}
.y93{bottom:379.290000px;}
.y110{bottom:381.090000px;}
.y63{bottom:387.030000px;}
.ybd{bottom:387.210000px;}
.y22{bottom:390.090000px;}
.y122{bottom:391.350000px;}
.yee{bottom:395.310000px;}
.y154{bottom:397.830000px;}
.y55{bottom:399.090000px;}
.y92{bottom:400.350000px;}
.y10f{bottom:402.195000px;}
.y13e{bottom:406.515000px;}
.y62{bottom:408.135000px;}
.y21{bottom:411.195000px;}
.yed{bottom:416.415000px;}
.y153{bottom:418.935000px;}
.y54{bottom:420.195000px;}
.y91{bottom:421.455000px;}
.y10e{bottom:423.255000px;}
.y61{bottom:429.195000px;}
.ybb{bottom:430.095000px;}
.y20{bottom:432.255000px;}
.yec{bottom:437.475000px;}
.y152{bottom:439.995000px;}
.y53{bottom:441.255000px;}
.y90{bottom:442.515000px;}
.y10d{bottom:444.315000px;}
.y60{bottom:450.255000px;}
.yeb{bottom:452.595000px;}
.y1f{bottom:453.315000px;}
.y151{bottom:461.055000px;}
.y52{bottom:462.315000px;}
.y8f{bottom:463.575000px;}
.y10c{bottom:465.375000px;}
.y13d{bottom:470.415000px;}
.y5f{bottom:471.315000px;}
.y1e{bottom:474.375000px;}
.yea{bottom:474.555000px;}
.y150{bottom:482.115000px;}
.y51{bottom:483.375000px;}
.y8e{bottom:484.635000px;}
.y10b{bottom:486.435000px;}
.y5e{bottom:492.375000px;}
.y1d{bottom:495.435000px;}
.ye9{bottom:496.335000px;}
.y14f{bottom:503.175000px;}
.y50{bottom:504.435000px;}
.y8d{bottom:505.695000px;}
.y10a{bottom:507.495000px;}
.y5d{bottom:513.435000px;}
.yba{bottom:515.055000px;}
.y1c{bottom:516.495000px;}
.ye8{bottom:518.115000px;}
.y14e{bottom:524.235000px;}
.y4f{bottom:525.495000px;}
.y8c{bottom:526.755000px;}
.y109{bottom:528.555000px;}
.y139{bottom:534.315000px;}
.y5c{bottom:534.495000px;}
.yb9{bottom:536.835000px;}
.ye7{bottom:539.895000px;}
.y14d{bottom:545.295000px;}
.y4e{bottom:546.555000px;}
.y8b{bottom:547.815000px;}
.y108{bottom:549.615000px;}
.y5b{bottom:555.555000px;}
.y1b{bottom:557.895000px;}
.yb8{bottom:558.615000px;}
.y14c{bottom:566.355000px;}
.y4d{bottom:567.615000px;}
.ye6{bottom:568.335000px;}
.y8a{bottom:568.875000px;}
.y5a{bottom:576.615000px;}
.y107{bottom:579.675000px;}
.y147{bottom:581.475000px;}
.ye5{bottom:583.455000px;}
.y138{bottom:586.335000px;}
.yb7{bottom:587.055000px;}
.y1a{bottom:587.775000px;}
.y4c{bottom:588.675000px;}
.y89{bottom:589.935000px;}
.y59{bottom:597.675000px;}
.y106{bottom:600.735000px;}
.ye4{bottom:605.235000px;}
.yb6{bottom:608.115000px;}
.y19{bottom:608.835000px;}
.y4b{bottom:609.735000px;}
.y88{bottom:610.995000px;}
.y58{bottom:618.735000px;}
.y105{bottom:621.795000px;}
.y14b{bottom:625.575000px;}
.yb5{bottom:629.175000px;}
.y18{bottom:629.895000px;}
.y81{bottom:630.795000px;}
.y87{bottom:632.055000px;}
.ye3{bottom:633.855000px;}
.y4a{bottom:639.795000px;}
.y104{bottom:642.855000px;}
.yb4{bottom:650.265000px;}
.y17{bottom:650.985000px;}
.y80{bottom:651.885000px;}
.y86{bottom:653.145000px;}
.ye2{bottom:654.945000px;}
.y49{bottom:660.885000px;}
.y103{bottom:663.945000px;}
.y14a{bottom:668.445000px;}
.yb3{bottom:671.325000px;}
.y16{bottom:672.045000px;}
.y7f{bottom:672.945000px;}
.y85{bottom:674.205000px;}
.ye1{bottom:676.005000px;}
.y48{bottom:681.945000px;}
.y102{bottom:685.005000px;}
.yb2{bottom:692.385000px;}
.y15{bottom:693.105000px;}
.y7e{bottom:694.005000px;}
.y131{bottom:694.545000px;}
.ye0{bottom:697.065000px;}
.y47{bottom:703.005000px;}
.y101{bottom:706.065000px;}
.y84{bottom:706.605000px;}
.yb1{bottom:713.445000px;}
.y14{bottom:714.165000px;}
.y7d{bottom:715.065000px;}
.ydf{bottom:718.125000px;}
.y46{bottom:724.065000px;}
.y100{bottom:727.125000px;}
.y83{bottom:728.925000px;}
.y149{bottom:732.345000px;}
.yb0{bottom:734.505000px;}
.y13{bottom:735.225000px;}
.y7c{bottom:736.125000px;}
.yde{bottom:739.005000px;}
.y45{bottom:745.125000px;}
.y82{bottom:746.025000px;}
.yaf{bottom:755.565000px;}
.y12{bottom:756.285000px;}
.y7b{bottom:757.005000px;}
.ydd{bottom:760.065000px;}
.y44{bottom:766.005000px;}
.yae{bottom:776.625000px;}
.y11{bottom:777.345000px;}
.y7a{bottom:778.065000px;}
.ydc{bottom:781.125000px;}
.y43{bottom:787.065000px;}
.y142{bottom:796.245000px;}
.yad{bottom:797.685000px;}
.y10{bottom:798.405000px;}
.y79{bottom:799.125000px;}
.ydb{bottom:802.185000px;}
.y42{bottom:808.125000px;}
.yac{bottom:813.525000px;}
.yf{bottom:819.465000px;}
.y78{bottom:820.185000px;}
.yda{bottom:823.245000px;}
.y41{bottom:829.185000px;}
.yab{bottom:836.205000px;}
.y146{bottom:839.085000px;}
.yff{bottom:841.245000px;}
.ye{bottom:842.685000px;}
.y40{bottom:850.245000px;}
.yd9{bottom:853.305000px;}
.yaa{bottom:858.705000px;}
.yfe{bottom:862.305000px;}
.yd{bottom:868.965000px;}
.y3f{bottom:871.305000px;}
.yd8{bottom:874.365000px;}
.ya9{bottom:881.205000px;}
.yfd{bottom:883.365000px;}
.yc{bottom:890.025000px;}
.y3e{bottom:892.365000px;}
.yd7{bottom:895.425000px;}
.y145{bottom:903.210000px;}
.ya7{bottom:903.930000px;}
.yb{bottom:911.130000px;}
.y3d{bottom:913.470000px;}
.yd6{bottom:916.530000px;}
.ya{bottom:927.870000px;}
.y3c{bottom:934.530000px;}
.yd5{bottom:937.590000px;}
.y144{bottom:946.050000px;}
.y9{bottom:950.190000px;}
.y3b{bottom:955.590000px;}
.yd4{bottom:958.650000px;}
.ya6{bottom:967.110000px;}
.y8{bottom:975.390000px;}
.yd0{bottom:976.110000px;}
.y3a{bottom:976.650000px;}
.y141{bottom:988.890000px;}
.y39{bottom:997.710000px;}
.yd3{bottom:1000.230000px;}
.y7{bottom:1009.050000px;}
.ya5{bottom:1010.670000px;}
.y38{bottom:1018.770000px;}
.yd2{bottom:1024.170000px;}
.ya3{bottom:1033.170000px;}
.y37{bottom:1039.830000px;}
.ycd{bottom:1048.290000px;}
.y5{bottom:1049.190000px;}
.y140{bottom:1052.790000px;}
.y36{bottom:1060.890000px;}
.ycf{bottom:1072.410000px;}
.ya1{bottom:1075.290000px;}
.y4{bottom:1081.410000px;}
.y35{bottom:1081.950000px;}
.y34{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y13f{bottom:1116.690000px;}
.y33{bottom:1124.070000px;}
.y32{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y31{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y30{bottom:1193.220000px;}
.ha{height:21.060000px;}
.hd{height:21.096000px;}
.h14{height:37.800000px;}
.h7{height:38.671172px;}
.hb{height:42.120000px;}
.hf{height:42.156000px;}
.h19{height:43.380000px;}
.h15{height:43.560000px;}
.h16{height:51.300000px;}
.h9{height:52.260820px;}
.h5{height:59.439023px;}
.h8{height:61.189805px;}
.hc{height:63.180000px;}
.h13{height:63.216000px;}
.h3{height:65.884219px;}
.h10{height:66.240000px;}
.h6{height:67.824844px;}
.h11{height:69.120000px;}
.he{height:84.240000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h12{height:170.640000px;}
.h17{height:191.910000px;}
.h18{height:214.050000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2c{width:29.556000px;}
.w18{width:53.460000px;}
.w28{width:55.656000px;}
.w32{width:60.516000px;}
.w15{width:62.640000px;}
.w14{width:66.096000px;}
.w16{width:79.200000px;}
.w5{width:81.900000px;}
.w7{width:83.376000px;}
.w10{width:90.576000px;}
.w30{width:91.116000px;}
.w8{width:93.600000px;}
.w1a{width:97.020000px;}
.w20{width:97.236000px;}
.w26{width:98.100000px;}
.w22{width:98.136000px;}
.w17{width:98.316000px;}
.w1b{width:99.216000px;}
.w23{width:100.440000px;}
.w25{width:100.656000px;}
.w1c{width:101.340000px;}
.w2f{width:103.320000px;}
.w1e{width:103.860000px;}
.w1d{width:103.896000px;}
.w19{width:104.076000px;}
.w24{width:105.336000px;}
.w27{width:108.036000px;}
.wa{width:110.880000px;}
.w9{width:110.916000px;}
.wb{width:111.816000px;}
.wd{width:113.436000px;}
.wf{width:114.480000px;}
.w31{width:115.560000px;}
.we{width:115.596000px;}
.w1f{width:115.776000px;}
.w2e{width:121.896000px;}
.w4{width:124.236000px;}
.w21{width:124.380000px;}
.w13{width:127.800000px;}
.w29{width:156.090000px;}
.w11{width:157.530000px;}
.w2a{width:168.480000px;}
.w12{width:179.130000px;}
.w3{width:207.570000px;}
.w2d{width:244.290000px;}
.w2b{width:381.855000px;}
.wc{width:436.245000px;}
.w6{width:515.085000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x33{left:-19.290000px;}
.x0{left:0.000000px;}
.x12{left:7.560000px;}
.xd{left:21.240000px;}
.x20{left:28.980000px;}
.x6{left:53.999987px;}
.x34{left:61.200000px;}
.x2f{left:64.440000px;}
.x1e{left:68.939987px;}
.x8{left:74.339987px;}
.x9{left:80.999987px;}
.x35{left:91.476000px;}
.x7{left:94.535987px;}
.x27{left:99.036000px;}
.x16{left:108.035987px;}
.x1f{left:115.596000px;}
.x30{left:120.816000px;}
.x17{left:146.376000px;}
.x5{left:176.969987px;}
.xc{left:189.030000px;}
.x1d{left:199.830000px;}
.x21{left:213.330000px;}
.x28{left:224.130000px;}
.x11{left:228.450000px;}
.xb{left:257.609987px;}
.x2e{left:270.074987px;}
.x3{left:272.414987px;}
.x31{left:277.635000px;}
.x18{left:306.795000px;}
.x22{left:313.275000px;}
.xe{left:314.715000px;}
.x29{left:322.995000px;}
.x36{left:336.495000px;}
.x13{left:342.615000px;}
.x2{left:350.714987px;}
.xf{left:367.455000px;}
.x1c{left:387.615000px;}
.x23{left:415.335000px;}
.x4{left:419.294987px;}
.x2a{left:424.155000px;}
.x32{left:446.865000px;}
.x14{left:458.925000px;}
.x1{left:479.444987px;}
.x19{left:487.365000px;}
.x24{left:519.945000px;}
.x2b{left:530.205000px;}
.x37{left:563.145000px;}
.x15{left:574.125000px;}
.x10{left:592.305000px;}
.x1a{left:616.605000px;}
.x25{left:624.705000px;}
.x2c{left:631.590000px;}
.x38{left:655.170000px;}
.x1b{left:684.150000px;}
.x2d{left:730.410000px;}
.x26{left:741.210000px;}
.x39{left:771.450000px;}
.xa{left:811.079987px;}
.x3a{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls16{letter-spacing:-0.853333pt;}
.ls2a{letter-spacing:-0.698667pt;}
.ls1d{letter-spacing:-0.515200pt;}
.ls1a{letter-spacing:-0.484267pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls2b{letter-spacing:-0.383467pt;}
.ls15{letter-spacing:-0.368000pt;}
.ls1e{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.269333pt;}
.lsd{letter-spacing:-0.213867pt;}
.ls26{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls30{letter-spacing:-0.095467pt;}
.ls22{letter-spacing:-0.061867pt;}
.ls1c{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls34{letter-spacing:-0.028800pt;}
.lsb{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.021120pt;}
.ls4{letter-spacing:0.034560pt;}
.ls1f{letter-spacing:0.053760pt;}
.ls20{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls8{letter-spacing:0.133333pt;}
.ls1{letter-spacing:0.154667pt;}
.ls11{letter-spacing:0.154880pt;}
.ls19{letter-spacing:0.155733pt;}
.lsc{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.186667pt;}
.ls32{letter-spacing:0.194133pt;}
.ls23{letter-spacing:0.195840pt;}
.ls21{letter-spacing:0.207360pt;}
.ls7{letter-spacing:0.227733pt;}
.ls35{letter-spacing:0.244267pt;}
.ls28{letter-spacing:0.256533pt;}
.ls18{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.349867pt;}
.ls2f{letter-spacing:0.385280pt;}
.lse{letter-spacing:0.581333pt;}
.ls2c{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.661333pt;}
.ls31{letter-spacing:0.693333pt;}
.ls2d{letter-spacing:0.800000pt;}
.ls13{letter-spacing:0.912000pt;}
.ls17{letter-spacing:3.994880pt;}
.ls2e{letter-spacing:10.832640pt;}
.ls27{letter-spacing:12.752640pt;}
.ls29{letter-spacing:37.712640pt;}
.ls2{letter-spacing:40.272640pt;}
.ls33{letter-spacing:41.019307pt;}
.ls24{letter-spacing:104.602880pt;}
.ws5{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws4{word-spacing:-13.534613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws14{word-spacing:-12.591787pt;}
.wse{word-spacing:-12.354987pt;}
.wsc{word-spacing:-12.277120pt;}
.ws18{word-spacing:-12.249387pt;}
.ws17{word-spacing:-12.199253pt;}
.wsd{word-spacing:-12.160853pt;}
.ws10{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.058987pt;}
.ws8{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.976320pt;}
.wsa{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.943253pt;}
.ws15{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.791253pt;}
.ws13{word-spacing:-11.735787pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._21{margin-left:-174.878720pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._26{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._25{margin-left:-129.237333pt;}
._10{margin-left:-126.263467pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._24{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._22{margin-left:-71.437653pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-31.226880pt;}
._19{margin-left:-28.861013pt;}
._27{margin-left:-3.266560pt;}
._2d{margin-left:-2.137387pt;}
._2{margin-left:-1.198080pt;}
._29{width:0.994347pt;}
._2a{width:2.188800pt;}
._2b{width:3.398400pt;}
._2c{width:4.853973pt;}
._2e{width:6.374400pt;}
._2f{width:7.307307pt;}
._31{width:8.605440pt;}
._32{width:9.962880pt;}
._30{width:11.048960pt;}
._35{width:12.908160pt;}
._36{width:14.501760pt;}
._3f{width:15.446827pt;}
._3e{width:16.467200pt;}
._28{width:17.704960pt;}
._4a{width:20.610560pt;}
._34{width:24.860160pt;}
._33{width:25.763200pt;}
._49{width:26.787413pt;}
._48{width:30.650240pt;}
._40{width:34.209280pt;}
._44{width:35.261013pt;}
._41{width:36.407253pt;}
._3a{width:40.002347pt;}
._42{width:42.389760pt;}
._45{width:46.745600pt;}
._46{width:50.092160pt;}
._47{width:51.388160pt;}
._43{width:58.910080pt;}
._38{width:60.078720pt;}
._3d{width:79.726080pt;}
._3c{width:99.433600pt;}
._3b{width:101.133440pt;}
._37{width:125.097600pt;}
._39{width:139.162880pt;}
._4b{width:262.944000pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:5.920000pt;}
.y136{bottom:6.560000pt;}
.y13c{bottom:9.920000pt;}
.y132{bottom:13.280000pt;}
.y12c{bottom:15.200000pt;}
.y129{bottom:15.360000pt;}
.y134{bottom:15.840000pt;}
.y13a{bottom:19.360000pt;}
.y133{bottom:20.800000pt;}
.ya4{bottom:24.640000pt;}
.y12e{bottom:24.666667pt;}
.ybe{bottom:24.680000pt;}
.y135{bottom:25.280000pt;}
.y137{bottom:25.920000pt;}
.yd1{bottom:27.360000pt;}
.y13b{bottom:28.640000pt;}
.y12f{bottom:33.946667pt;}
.ya8{bottom:43.360000pt;}
.y130{bottom:43.386667pt;}
.yce{bottom:46.080000pt;}
.y6{bottom:54.720000pt;}
.ybc{bottom:62.080000pt;}
.y127{bottom:63.040000pt;}
.y125{bottom:72.480000pt;}
.y126{bottom:81.760000pt;}
.ycc{bottom:86.560000pt;}
.yfc{bottom:89.280000pt;}
.y143{bottom:91.240000pt;}
.y148{bottom:91.706667pt;}
.y70{bottom:92.640000pt;}
.ya0{bottom:93.920000pt;}
.y15e{bottom:97.120000pt;}
.y121{bottom:100.640000pt;}
.y2f{bottom:103.360000pt;}
.ycb{bottom:105.280000pt;}
.yfb{bottom:108.000000pt;}
.y6f{bottom:111.360000pt;}
.y9f{bottom:112.480000pt;}
.y12d{bottom:113.280000pt;}
.y11c{bottom:114.080000pt;}
.y120{bottom:119.360000pt;}
.y2e{bottom:122.080000pt;}
.yca{bottom:124.000000pt;}
.yfa{bottom:126.720000pt;}
.y6e{bottom:130.080000pt;}
.y9e{bottom:131.200000pt;}
.y11b{bottom:132.800000pt;}
.y11f{bottom:138.106667pt;}
.y2d{bottom:140.826667pt;}
.yc9{bottom:142.746667pt;}
.yf9{bottom:145.466667pt;}
.y6d{bottom:148.826667pt;}
.y9d{bottom:149.946667pt;}
.y11a{bottom:151.546667pt;}
.y11e{bottom:156.826667pt;}
.y2c{bottom:159.546667pt;}
.yc8{bottom:161.466667pt;}
.yf8{bottom:164.186667pt;}
.y6c{bottom:167.546667pt;}
.y9c{bottom:168.666667pt;}
.y124{bottom:170.106667pt;}
.y119{bottom:170.266667pt;}
.y11d{bottom:175.546667pt;}
.y2b{bottom:178.266667pt;}
.yc7{bottom:180.186667pt;}
.yf7{bottom:182.906667pt;}
.y15d{bottom:185.146667pt;}
.y77{bottom:186.266667pt;}
.y9b{bottom:187.386667pt;}
.y118{bottom:188.986667pt;}
.y6b{bottom:194.266667pt;}
.y2a{bottom:196.986667pt;}
.yc6{bottom:198.906667pt;}
.yf6{bottom:201.626667pt;}
.y15c{bottom:203.866667pt;}
.y76{bottom:204.986667pt;}
.y9a{bottom:206.106667pt;}
.y117{bottom:207.706667pt;}
.y12b{bottom:208.186667pt;}
.y6a{bottom:212.986667pt;}
.y29{bottom:215.706667pt;}
.yc5{bottom:217.626667pt;}
.yf5{bottom:220.346667pt;}
.y15b{bottom:222.586667pt;}
.y75{bottom:223.706667pt;}
.y99{bottom:224.826667pt;}
.y116{bottom:226.426667pt;}
.y69{bottom:231.706667pt;}
.y28{bottom:234.426667pt;}
.yc4{bottom:236.346667pt;}
.yf4{bottom:239.066667pt;}
.y15a{bottom:241.306667pt;}
.y74{bottom:242.426667pt;}
.y98{bottom:243.546667pt;}
.y115{bottom:245.146667pt;}
.y12a{bottom:246.266667pt;}
.y68{bottom:250.426667pt;}
.y27{bottom:253.146667pt;}
.yc3{bottom:255.066667pt;}
.yf3{bottom:257.786667pt;}
.y159{bottom:260.026667pt;}
.y73{bottom:261.146667pt;}
.y97{bottom:262.266667pt;}
.y114{bottom:263.866667pt;}
.y67{bottom:269.146667pt;}
.y26{bottom:271.866667pt;}
.yc2{bottom:273.786667pt;}
.yf2{bottom:276.506667pt;}
.y158{bottom:278.746667pt;}
.y72{bottom:279.866667pt;}
.y96{bottom:280.986667pt;}
.y113{bottom:282.586667pt;}
.y128{bottom:284.346667pt;}
.y66{bottom:287.866667pt;}
.y25{bottom:290.586667pt;}
.yc1{bottom:292.506667pt;}
.yf1{bottom:295.226667pt;}
.y157{bottom:297.466667pt;}
.y71{bottom:298.586667pt;}
.y95{bottom:299.706667pt;}
.y112{bottom:301.306667pt;}
.y65{bottom:306.586667pt;}
.y24{bottom:309.306667pt;}
.yc0{bottom:311.226667pt;}
.yf0{bottom:313.946667pt;}
.y156{bottom:316.186667pt;}
.y57{bottom:317.306667pt;}
.y94{bottom:318.426667pt;}
.y111{bottom:320.026667pt;}
.y123{bottom:322.586667pt;}
.ybf{bottom:324.666667pt;}
.y64{bottom:325.306667pt;}
.y23{bottom:328.026667pt;}
.yef{bottom:332.666667pt;}
.y155{bottom:334.906667pt;}
.y56{bottom:336.026667pt;}
.y93{bottom:337.146667pt;}
.y110{bottom:338.746667pt;}
.y63{bottom:344.026667pt;}
.ybd{bottom:344.186667pt;}
.y22{bottom:346.746667pt;}
.y122{bottom:347.866667pt;}
.yee{bottom:351.386667pt;}
.y154{bottom:353.626667pt;}
.y55{bottom:354.746667pt;}
.y92{bottom:355.866667pt;}
.y10f{bottom:357.506667pt;}
.y13e{bottom:361.346667pt;}
.y62{bottom:362.786667pt;}
.y21{bottom:365.506667pt;}
.yed{bottom:370.146667pt;}
.y153{bottom:372.386667pt;}
.y54{bottom:373.506667pt;}
.y91{bottom:374.626667pt;}
.y10e{bottom:376.226667pt;}
.y61{bottom:381.506667pt;}
.ybb{bottom:382.306667pt;}
.y20{bottom:384.226667pt;}
.yec{bottom:388.866667pt;}
.y152{bottom:391.106667pt;}
.y53{bottom:392.226667pt;}
.y90{bottom:393.346667pt;}
.y10d{bottom:394.946667pt;}
.y60{bottom:400.226667pt;}
.yeb{bottom:402.306667pt;}
.y1f{bottom:402.946667pt;}
.y151{bottom:409.826667pt;}
.y52{bottom:410.946667pt;}
.y8f{bottom:412.066667pt;}
.y10c{bottom:413.666667pt;}
.y13d{bottom:418.146667pt;}
.y5f{bottom:418.946667pt;}
.y1e{bottom:421.666667pt;}
.yea{bottom:421.826667pt;}
.y150{bottom:428.546667pt;}
.y51{bottom:429.666667pt;}
.y8e{bottom:430.786667pt;}
.y10b{bottom:432.386667pt;}
.y5e{bottom:437.666667pt;}
.y1d{bottom:440.386667pt;}
.ye9{bottom:441.186667pt;}
.y14f{bottom:447.266667pt;}
.y50{bottom:448.386667pt;}
.y8d{bottom:449.506667pt;}
.y10a{bottom:451.106667pt;}
.y5d{bottom:456.386667pt;}
.yba{bottom:457.826667pt;}
.y1c{bottom:459.106667pt;}
.ye8{bottom:460.546667pt;}
.y14e{bottom:465.986667pt;}
.y4f{bottom:467.106667pt;}
.y8c{bottom:468.226667pt;}
.y109{bottom:469.826667pt;}
.y139{bottom:474.946667pt;}
.y5c{bottom:475.106667pt;}
.yb9{bottom:477.186667pt;}
.ye7{bottom:479.906667pt;}
.y14d{bottom:484.706667pt;}
.y4e{bottom:485.826667pt;}
.y8b{bottom:486.946667pt;}
.y108{bottom:488.546667pt;}
.y5b{bottom:493.826667pt;}
.y1b{bottom:495.906667pt;}
.yb8{bottom:496.546667pt;}
.y14c{bottom:503.426667pt;}
.y4d{bottom:504.546667pt;}
.ye6{bottom:505.186667pt;}
.y8a{bottom:505.666667pt;}
.y5a{bottom:512.546667pt;}
.y107{bottom:515.266667pt;}
.y147{bottom:516.866667pt;}
.ye5{bottom:518.626667pt;}
.y138{bottom:521.186667pt;}
.yb7{bottom:521.826667pt;}
.y1a{bottom:522.466667pt;}
.y4c{bottom:523.266667pt;}
.y89{bottom:524.386667pt;}
.y59{bottom:531.266667pt;}
.y106{bottom:533.986667pt;}
.ye4{bottom:537.986667pt;}
.yb6{bottom:540.546667pt;}
.y19{bottom:541.186667pt;}
.y4b{bottom:541.986667pt;}
.y88{bottom:543.106667pt;}
.y58{bottom:549.986667pt;}
.y105{bottom:552.706667pt;}
.y14b{bottom:556.066667pt;}
.yb5{bottom:559.266667pt;}
.y18{bottom:559.906667pt;}
.y81{bottom:560.706667pt;}
.y87{bottom:561.826667pt;}
.ye3{bottom:563.426667pt;}
.y4a{bottom:568.706667pt;}
.y104{bottom:571.426667pt;}
.yb4{bottom:578.013333pt;}
.y17{bottom:578.653333pt;}
.y80{bottom:579.453333pt;}
.y86{bottom:580.573333pt;}
.ye2{bottom:582.173333pt;}
.y49{bottom:587.453333pt;}
.y103{bottom:590.173333pt;}
.y14a{bottom:594.173333pt;}
.yb3{bottom:596.733333pt;}
.y16{bottom:597.373333pt;}
.y7f{bottom:598.173333pt;}
.y85{bottom:599.293333pt;}
.ye1{bottom:600.893333pt;}
.y48{bottom:606.173333pt;}
.y102{bottom:608.893333pt;}
.yb2{bottom:615.453333pt;}
.y15{bottom:616.093333pt;}
.y7e{bottom:616.893333pt;}
.y131{bottom:617.373333pt;}
.ye0{bottom:619.613333pt;}
.y47{bottom:624.893333pt;}
.y101{bottom:627.613333pt;}
.y84{bottom:628.093333pt;}
.yb1{bottom:634.173333pt;}
.y14{bottom:634.813333pt;}
.y7d{bottom:635.613333pt;}
.ydf{bottom:638.333333pt;}
.y46{bottom:643.613333pt;}
.y100{bottom:646.333333pt;}
.y83{bottom:647.933333pt;}
.y149{bottom:650.973333pt;}
.yb0{bottom:652.893333pt;}
.y13{bottom:653.533333pt;}
.y7c{bottom:654.333333pt;}
.yde{bottom:656.893333pt;}
.y45{bottom:662.333333pt;}
.y82{bottom:663.133333pt;}
.yaf{bottom:671.613333pt;}
.y12{bottom:672.253333pt;}
.y7b{bottom:672.893333pt;}
.ydd{bottom:675.613333pt;}
.y44{bottom:680.893333pt;}
.yae{bottom:690.333333pt;}
.y11{bottom:690.973333pt;}
.y7a{bottom:691.613333pt;}
.ydc{bottom:694.333333pt;}
.y43{bottom:699.613333pt;}
.y142{bottom:707.773333pt;}
.yad{bottom:709.053333pt;}
.y10{bottom:709.693333pt;}
.y79{bottom:710.333333pt;}
.ydb{bottom:713.053333pt;}
.y42{bottom:718.333333pt;}
.yac{bottom:723.133333pt;}
.yf{bottom:728.413333pt;}
.y78{bottom:729.053333pt;}
.yda{bottom:731.773333pt;}
.y41{bottom:737.053333pt;}
.yab{bottom:743.293333pt;}
.y146{bottom:745.853333pt;}
.yff{bottom:747.773333pt;}
.ye{bottom:749.053333pt;}
.y40{bottom:755.773333pt;}
.yd9{bottom:758.493333pt;}
.yaa{bottom:763.293333pt;}
.yfe{bottom:766.493333pt;}
.yd{bottom:772.413333pt;}
.y3f{bottom:774.493333pt;}
.yd8{bottom:777.213333pt;}
.ya9{bottom:783.293333pt;}
.yfd{bottom:785.213333pt;}
.yc{bottom:791.133333pt;}
.y3e{bottom:793.213333pt;}
.yd7{bottom:795.933333pt;}
.y145{bottom:802.853333pt;}
.ya7{bottom:803.493333pt;}
.yb{bottom:809.893333pt;}
.y3d{bottom:811.973333pt;}
.yd6{bottom:814.693333pt;}
.ya{bottom:824.773333pt;}
.y3c{bottom:830.693333pt;}
.yd5{bottom:833.413333pt;}
.y144{bottom:840.933333pt;}
.y9{bottom:844.613333pt;}
.y3b{bottom:849.413333pt;}
.yd4{bottom:852.133333pt;}
.ya6{bottom:859.653333pt;}
.y8{bottom:867.013333pt;}
.yd0{bottom:867.653333pt;}
.y3a{bottom:868.133333pt;}
.y141{bottom:879.013333pt;}
.y39{bottom:886.853333pt;}
.yd3{bottom:889.093333pt;}
.y7{bottom:896.933333pt;}
.ya5{bottom:898.373333pt;}
.y38{bottom:905.573333pt;}
.yd2{bottom:910.373333pt;}
.ya3{bottom:918.373333pt;}
.y37{bottom:924.293333pt;}
.ycd{bottom:931.813333pt;}
.y5{bottom:932.613333pt;}
.y140{bottom:935.813333pt;}
.y36{bottom:943.013333pt;}
.ycf{bottom:953.253333pt;}
.ya1{bottom:955.813333pt;}
.y4{bottom:961.253333pt;}
.y35{bottom:961.733333pt;}
.y34{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y13f{bottom:992.613333pt;}
.y33{bottom:999.173333pt;}
.y32{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y31{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y30{bottom:1060.640000pt;}
.ha{height:18.720000pt;}
.hd{height:18.752000pt;}
.h14{height:33.600000pt;}
.h7{height:34.374375pt;}
.hb{height:37.440000pt;}
.hf{height:37.472000pt;}
.h19{height:38.560000pt;}
.h15{height:38.720000pt;}
.h16{height:45.600000pt;}
.h9{height:46.454062pt;}
.h5{height:52.834688pt;}
.h8{height:54.390938pt;}
.hc{height:56.160000pt;}
.h13{height:56.192000pt;}
.h3{height:58.563750pt;}
.h10{height:58.880000pt;}
.h6{height:60.288750pt;}
.h11{height:61.440000pt;}
.he{height:74.880000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h12{height:151.680000pt;}
.h17{height:170.586667pt;}
.h18{height:190.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2c{width:26.272000pt;}
.w18{width:47.520000pt;}
.w28{width:49.472000pt;}
.w32{width:53.792000pt;}
.w15{width:55.680000pt;}
.w14{width:58.752000pt;}
.w16{width:70.400000pt;}
.w5{width:72.800000pt;}
.w7{width:74.112000pt;}
.w10{width:80.512000pt;}
.w30{width:80.992000pt;}
.w8{width:83.200000pt;}
.w1a{width:86.240000pt;}
.w20{width:86.432000pt;}
.w26{width:87.200000pt;}
.w22{width:87.232000pt;}
.w17{width:87.392000pt;}
.w1b{width:88.192000pt;}
.w23{width:89.280000pt;}
.w25{width:89.472000pt;}
.w1c{width:90.080000pt;}
.w2f{width:91.840000pt;}
.w1e{width:92.320000pt;}
.w1d{width:92.352000pt;}
.w19{width:92.512000pt;}
.w24{width:93.632000pt;}
.w27{width:96.032000pt;}
.wa{width:98.560000pt;}
.w9{width:98.592000pt;}
.wb{width:99.392000pt;}
.wd{width:100.832000pt;}
.wf{width:101.760000pt;}
.w31{width:102.720000pt;}
.we{width:102.752000pt;}
.w1f{width:102.912000pt;}
.w2e{width:108.352000pt;}
.w4{width:110.432000pt;}
.w21{width:110.560000pt;}
.w13{width:113.600000pt;}
.w29{width:138.746667pt;}
.w11{width:140.026667pt;}
.w2a{width:149.760000pt;}
.w12{width:159.226667pt;}
.w3{width:184.506667pt;}
.w2d{width:217.146667pt;}
.w2b{width:339.426667pt;}
.wc{width:387.773333pt;}
.w6{width:457.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x33{left:-17.146667pt;}
.x0{left:0.000000pt;}
.x12{left:6.720000pt;}
.xd{left:18.880000pt;}
.x20{left:25.760000pt;}
.x6{left:47.999988pt;}
.x34{left:54.400000pt;}
.x2f{left:57.280000pt;}
.x1e{left:61.279988pt;}
.x8{left:66.079988pt;}
.x9{left:71.999988pt;}
.x35{left:81.312000pt;}
.x7{left:84.031988pt;}
.x27{left:88.032000pt;}
.x16{left:96.031988pt;}
.x1f{left:102.752000pt;}
.x30{left:107.392000pt;}
.x17{left:130.112000pt;}
.x5{left:157.306655pt;}
.xc{left:168.026667pt;}
.x1d{left:177.626667pt;}
.x21{left:189.626667pt;}
.x28{left:199.226667pt;}
.x11{left:203.066667pt;}
.xb{left:228.986655pt;}
.x2e{left:240.066655pt;}
.x3{left:242.146655pt;}
.x31{left:246.786667pt;}
.x18{left:272.706667pt;}
.x22{left:278.466667pt;}
.xe{left:279.746667pt;}
.x29{left:287.106667pt;}
.x36{left:299.106667pt;}
.x13{left:304.546667pt;}
.x2{left:311.746655pt;}
.xf{left:326.626667pt;}
.x1c{left:344.546667pt;}
.x23{left:369.186667pt;}
.x4{left:372.706655pt;}
.x2a{left:377.026667pt;}
.x32{left:397.213333pt;}
.x14{left:407.933333pt;}
.x1{left:426.173322pt;}
.x19{left:433.213333pt;}
.x24{left:462.173333pt;}
.x2b{left:471.293333pt;}
.x37{left:500.573333pt;}
.x15{left:510.333333pt;}
.x10{left:526.493333pt;}
.x1a{left:548.093333pt;}
.x25{left:555.293333pt;}
.x2c{left:561.413333pt;}
.x38{left:582.373333pt;}
.x1b{left:608.133333pt;}
.x2d{left:649.253333pt;}
.x26{left:658.853333pt;}
.x39{left:685.733333pt;}
.xa{left:720.959988pt;}
.x3a{left:746.079988pt;}
}




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