
    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_6b1ad62060e10b9732212506.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.932129;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_017632760e8c657c67280b30.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936523;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_19f052e1798debaa95476ca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.903320;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_eb1354577ede0781b6c8c78d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.872559;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_069c49d0152de896fa41e9ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.730957;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);}
.va{vertical-align:-39.966000px;}
.v6{vertical-align:-31.464000px;}
.ve{vertical-align:-26.532000px;}
.v5{vertical-align:-24.324000px;}
.v9{vertical-align:-22.278000px;}
.v3{vertical-align:-10.884000px;}
.v4{vertical-align:-9.864000px;}
.vb{vertical-align:-4.422000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.362000px;}
.v1{vertical-align:4.422000px;}
.v10{vertical-align:18.876000px;}
.vf{vertical-align:22.794000px;}
.v2{vertical-align:28.740000px;}
.v7{vertical-align:31.464000px;}
.vd{vertical-align:32.820000px;}
.vc{vertical-align:35.376000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:39.786732px;}
.ls8{letter-spacing:99.259128px;}
.ls9{letter-spacing:100.598616px;}
.ls1{letter-spacing:103.081104px;}
.ls4{letter-spacing:115.918524px;}
.ls6{letter-spacing:120.801672px;}
.ls3{letter-spacing:122.038524px;}
.ls5{letter-spacing:122.044524px;}
.ls2{letter-spacing:150.895296px;}
.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;}
}
.ws1{word-spacing:-46.545972px;}
.ws3{word-spacing:-37.352988px;}
.ws4{word-spacing:-23.272986px;}
.ws8{word-spacing:-19.929042px;}
.ws5{word-spacing:-14.981268px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:350.650020px;}
.ws7{word-spacing:438.184944px;}
.ws6{word-spacing:447.880944px;}
._25{margin-left:-183.136704px;}
._24{margin-left:-160.522704px;}
._26{margin-left:-118.660008px;}
._39{margin-left:-11.547126px;}
._37{margin-left:-9.655380px;}
._0{margin-left:-7.377786px;}
._2{margin-left:-5.675226px;}
._5{margin-left:-4.028976px;}
._4{margin-left:-2.949786px;}
._1{margin-left:-1.451802px;}
._3{width:1.127802px;}
._27{width:2.145792px;}
._13{width:3.747144px;}
._6{width:97.144038px;}
._10{width:109.546782px;}
._12{width:123.069792px;}
._28{width:124.584018px;}
._b{width:129.436758px;}
._e{width:132.483696px;}
._3a{width:162.659016px;}
._34{width:165.175074px;}
._2c{width:168.810018px;}
._14{width:171.696018px;}
._23{width:200.610030px;}
._36{width:207.986256px;}
._22{width:213.845016px;}
._2e{width:220.060998px;}
._2b{width:222.549006px;}
._7{width:244.889022px;}
._a{width:255.393468px;}
._18{width:269.661006px;}
._1b{width:306.965058px;}
._8{width:319.575024px;}
._16{width:329.985990px;}
._2f{width:336.367032px;}
._1c{width:358.300056px;}
._29{width:360.119004px;}
._1a{width:371.341992px;}
._d{width:374.769006px;}
._15{width:382.397004px;}
._17{width:395.436012px;}
._30{width:400.589028px;}
._32{width:407.567004px;}
._19{width:425.395074px;}
._21{width:426.869010px;}
._38{width:431.717016px;}
._1e{width:448.500024px;}
._31{width:452.639016px;}
._1f{width:541.844022px;}
._1d{width:686.523018px;}
._f{width:787.439058px;}
._11{width:838.774056px;}
._c{width:860.787582px;}
._9{width:862.047042px;}
._35{width:869.728056px;}
._33{width:906.864012px;}
._2d{width:917.176056px;}
._2a{width:954.312012px;}
._20{width:1664.058882px;}
.fc9{color:rgb(204,0,0);}
.fc8{color:transparent;}
.fc7{color:rgb(0,255,255);}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(0,151,167);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,159,223);}
.fc2{color:rgb(29,28,29);}
.fca{color:rgb(255,255,255);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:54.084000px;}
.fsa{font-size:65.988000px;}
.fs4{font-size:71.946000px;}
.fs5{font-size:72.624000px;}
.fsd{font-size:78.066000px;}
.fs7{font-size:84.018000px;}
.fse{font-size:89.970000px;}
.fs8{font-size:95.922000px;}
.fs3{font-size:108.000000px;}
.fsf{font-size:120.078000px;}
.fs1{font-size:131.982000px;}
.fs12{font-size:137.934000px;}
.fs10{font-size:139.122000px;}
.fsc{font-size:145.248000px;}
.fs9{font-size:150.012000px;}
.fs11{font-size:155.964000px;}
.fs2{font-size:168.036000px;}
.fs0{font-size:179.946000px;}
.fs6{font-size:211.236000px;}
.yce{bottom:-20.664000px;}
.ycd{bottom:-3.189000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y14d{bottom:3.742500px;}
.y14e{bottom:15.138000px;}
.y14c{bottom:23.556000px;}
.y11a{bottom:28.276500px;}
.y104{bottom:28.615500px;}
.y9b{bottom:31.890000px;}
.yc7{bottom:35.589000px;}
.y14b{bottom:43.371000px;}
.y79{bottom:51.066000px;}
.y9a{bottom:51.703500px;}
.y119{bottom:53.490000px;}
.y12d{bottom:54.936000px;}
.yc6{bottom:57.189000px;}
.y53{bottom:61.101000px;}
.y180{bottom:61.270500px;}
.y14a{bottom:63.184500px;}
.y99{bottom:71.518500px;}
.y78{bottom:72.666000px;}
.y35{bottom:78.321000px;}
.yc5{bottom:78.789000px;}
.y12c{bottom:80.149500px;}
.y52{bottom:82.701000px;}
.y17f{bottom:82.870500px;}
.y149{bottom:82.998000px;}
.y1e{bottom:83.338500px;}
.y98{bottom:91.332000px;}
.y77{bottom:91.545000px;}
.y16b{bottom:92.226000px;}
.y16c{bottom:92.650500px;}
.yc4{bottom:97.668000px;}
.y34{bottom:99.921000px;}
.yf2{bottom:100.347000px;}
.y1d{bottom:104.173500px;}
.y51{bottom:104.301000px;}
.y17e{bottom:104.470500px;}
.ye3{bottom:105.109500px;}
.y12b{bottom:105.364500px;}
.y97{bottom:111.147000px;}
.y16a{bottom:112.848000px;}
.y76{bottom:115.866000px;}
.yf1{bottom:121.947000px;}
.y148{bottom:122.626500px;}
.y50{bottom:123.180000px;}
.y1c{bottom:125.008500px;}
.y17d{bottom:125.092500px;}
.ye2{bottom:126.709500px;}
.y12a{bottom:130.578000px;}
.y96{bottom:130.960500px;}
.y117{bottom:134.659500px;}
.y75{bottom:137.466000px;}
.y7c{bottom:137.806500px;}
.ycc{bottom:141.633000px;}
.y147{bottom:142.441500px;}
.y100{bottom:142.611000px;}
.y33{bottom:143.121000px;}
.yf0{bottom:143.547000px;}
.yc3{bottom:143.589000px;}
.y183{bottom:143.929500px;}
.y1b{bottom:145.843500px;}
.y4f{bottom:147.501000px;}
.y95{bottom:148.309500px;}
.y62{bottom:151.243500px;}
.y129{bottom:155.793000px;}
.y116{bottom:156.259500px;}
.y169{bottom:157.026000px;}
.y7{bottom:158.215500px;}
.y74{bottom:159.066000px;}
.y146{bottom:162.255000px;}
.yef{bottom:162.426000px;}
.yc2{bottom:162.468000px;}
.yff{bottom:164.211000px;}
.y32{bottom:164.721000px;}
.y1a{bottom:166.677000px;}
.y65{bottom:168.676500px;}
.y4e{bottom:169.101000px;}
.y17c{bottom:169.270500px;}
.y3f{bottom:170.334000px;}
.y94{bottom:170.589000px;}
.y184{bottom:172.630500px;}
.y61{bottom:172.843500px;}
.y15c{bottom:174.586500px;}
.y83{bottom:176.839500px;}
.y115{bottom:177.859500px;}
.y168{bottom:178.626000px;}
.y73{bottom:180.666000px;}
.y128{bottom:181.006500px;}
.y145{bottom:182.070000px;}
.yfe{bottom:185.811000px;}
.y36{bottom:187.470000px;}
.y19{bottom:187.512000px;}
.y17b{bottom:189.892500px;}
.y93{bottom:190.404000px;}
.y4d{bottom:190.701000px;}
.y40{bottom:190.998000px;}
.ye1{bottom:191.509500px;}
.y60{bottom:194.443500px;}
.y6{bottom:195.123000px;}
.y15b{bottom:196.186500px;}
.y114{bottom:199.459500px;}
.y167{bottom:200.226000px;}
.y72{bottom:202.266000px;}
.y9e{bottom:204.562500px;}
.yfd{bottom:204.690000px;}
.y127{bottom:205.114500px;}
.y7d{bottom:205.710000px;}
.y18{bottom:208.347000px;}
.yc1{bottom:208.389000px;}
.y4c{bottom:209.580000px;}
.y92{bottom:210.217500px;}
.y3e{bottom:211.492500px;}
.y31{bottom:211.536000px;}
.y185{bottom:212.046000px;}
.y39{bottom:212.938500px;}
.ye0{bottom:213.109500px;}
.y5f{bottom:213.321000px;}
.y66{bottom:213.789000px;}
.y15a{bottom:217.786500px;}
.y3d{bottom:220.465500px;}
.yd{bottom:220.677000px;}
.y144{bottom:221.698500px;}
.y82{bottom:221.826000px;}
.y71{bottom:223.866000px;}
.y17{bottom:229.054500px;}
.yee{bottom:229.947000px;}
.yc0{bottom:229.989000px;}
.y91{bottom:230.032500px;}
.y7b{bottom:230.839500px;}
.y5{bottom:232.030500px;}
.y30{bottom:233.136000px;}
.y4b{bottom:233.901000px;}
.y17a{bottom:234.070500px;}
.ydf{bottom:234.709500px;}
.y64{bottom:236.877000px;}
.y5e{bottom:237.643500px;}
.y159{bottom:239.386500px;}
.y143{bottom:241.512000px;}
.y166{bottom:242.448000px;}
.y113{bottom:242.659500px;}
.y37{bottom:242.830500px;}
.y150{bottom:244.318500px;}
.y70{bottom:245.466000px;}
.yae{bottom:249.676500px;}
.y90{bottom:249.846000px;}
.yfc{bottom:250.611000px;}
.yed{bottom:251.547000px;}
.ybf{bottom:251.589000px;}
.y27{bottom:252.439500px;}
.y179{bottom:254.692500px;}
.y4a{bottom:255.501000px;}
.y126{bottom:255.543000px;}
.yde{bottom:256.309500px;}
.y11f{bottom:257.371500px;}
.y5d{bottom:259.243500px;}
.y158{bottom:260.986500px;}
.y142{bottom:261.325500px;}
.y7a{bottom:261.624000px;}
.y63{bottom:262.048500px;}
.y112{bottom:264.259500px;}
.y6f{bottom:264.345000px;}
.y38{bottom:264.430500px;}
.y81{bottom:266.811000px;}
.y3a{bottom:268.852500px;}
.y8f{bottom:269.659500px;}
.yfb{bottom:272.211000px;}
.yf3{bottom:272.934000px;}
.yec{bottom:273.147000px;}
.y16{bottom:273.189000px;}
.yc{bottom:273.402000px;}
.y49{bottom:277.101000px;}
.y3b{bottom:277.824000px;}
.y2f{bottom:279.949500px;}
.y5c{bottom:280.843500px;}
.y141{bottom:281.140500px;}
.y157{bottom:282.586500px;}
.y111{bottom:285.859500px;}
.y165{bottom:286.626000px;}
.y8e{bottom:287.008500px;}
.y6e{bottom:288.666000px;}
.y182{bottom:290.538000px;}
.yeb{bottom:292.026000px;}
.yfa{bottom:293.811000px;}
.y15{bottom:294.024000px;}
.ybe{bottom:294.789000px;}
.y48{bottom:295.980000px;}
.y178{bottom:298.870500px;}
.y26{bottom:299.211000px;}
.ydd{bottom:299.509500px;}
.y5b{bottom:299.721000px;}
.y140{bottom:300.954000px;}
.y2e{bottom:301.549500px;}
.y156{bottom:304.186500px;}
.y9f{bottom:305.419500px;}
.y125{bottom:307.077000px;}
.y110{bottom:307.459500px;}
.y164{bottom:308.226000px;}
.y11e{bottom:308.905500px;}
.y8d{bottom:309.288000px;}
.y6d{bottom:310.266000px;}
.y80{bottom:311.797500px;}
.y14{bottom:314.731500px;}
.yf9{bottom:315.411000px;}
.ybd{bottom:316.389000px;}
.y47{bottom:320.301000px;}
.y177{bottom:320.470500px;}
.ydc{bottom:321.109500px;}
.yac{bottom:321.237000px;}
.y5a{bottom:324.043500px;}
.y155{bottom:325.786500px;}
.yb{bottom:326.125500px;}
.y136{bottom:328.294500px;}
.y8c{bottom:329.103000px;}
.y163{bottom:329.826000px;}
.y6c{bottom:331.866000px;}
.y124{bottom:332.292000px;}
.y11d{bottom:333.015000px;}
.yf8{bottom:334.290000px;}
.yea{bottom:337.947000px;}
.ybc{bottom:337.989000px;}
.y13f{bottom:340.582500px;}
.y109{bottom:340.710000px;}
.yab{bottom:341.050500px;}
.y46{bottom:341.901000px;}
.y176{bottom:342.070500px;}
.ydb{bottom:342.709500px;}
.yaf{bottom:343.687500px;}
.y135{bottom:344.538000px;}
.y2d{bottom:344.749500px;}
.ya4{bottom:345.048000px;}
.y59{bottom:345.643500px;}
.y154{bottom:347.386500px;}
.yc9{bottom:347.514000px;}
.y8b{bottom:348.916500px;}
.y25{bottom:349.597500px;}
.y162{bottom:350.448000px;}
.y6b{bottom:350.745000px;}
.y4{bottom:351.595500px;}
.y133{bottom:352.743000px;}
.y9d{bottom:353.892000px;}
.y123{bottom:356.400000px;}
.y7f{bottom:356.782500px;}
.y108{bottom:356.953500px;}
.y13{bottom:358.866000px;}
.ye9{bottom:359.547000px;}
.ybb{bottom:359.589000px;}
.y13e{bottom:360.397500px;}
.yaa{bottom:360.865500px;}
.y45{bottom:363.501000px;}
.y175{bottom:363.670500px;}
.yd1{bottom:364.011000px;}
.y2c{bottom:366.349500px;}
.y58{bottom:367.243500px;}
.y153{bottom:368.604000px;}
.y8a{bottom:368.731500px;}
.y132{bottom:368.986500px;}
.y170{bottom:371.877000px;}
.y10f{bottom:372.259500px;}
.y6a{bottom:375.066000px;}
.y10b{bottom:377.532000px;}
.ya9{bottom:378.213000px;}
.ye8{bottom:378.426000px;}
.ya{bottom:378.850500px;}
.yd6{bottom:378.978000px;}
.y12{bottom:379.701000px;}
.yf7{bottom:380.211000px;}
.yd0{bottom:380.254500px;}
.yba{bottom:381.189000px;}
.y44{bottom:382.380000px;}
.y107{bottom:383.187000px;}
.yb4{bottom:383.314500px;}
.y11c{bottom:383.443500px;}
.y131{bottom:385.228500px;}
.y174{bottom:385.270500px;}
.y134{bottom:385.866000px;}
.yda{bottom:385.909500px;}
.y57{bottom:386.121000px;}
.y130{bottom:387.780000px;}
.y89{bottom:388.545000px;}
.y138{bottom:390.756000px;}
.ya2{bottom:393.009000px;}
.y10a{bottom:393.775500px;}
.y10e{bottom:393.859500px;}
.y161{bottom:394.626000px;}
.yd5{bottom:395.220000px;}
.ycf{bottom:396.496500px;}
.y69{bottom:396.666000px;}
.yca{bottom:397.899000px;}
.yf6{bottom:399.090000px;}
.y106{bottom:399.430500px;}
.y24{bottom:399.982500px;}
.y13d{bottom:400.026000px;}
.y11{bottom:400.408500px;}
.ya8{bottom:400.492500px;}
.y7e{bottom:401.769000px;}
.y3{bottom:401.811000px;}
.ya1{bottom:402.237000px;}
.yb9{bottom:402.789000px;}
.y12f{bottom:404.022000px;}
.y173{bottom:405.892500px;}
.y43{bottom:406.701000px;}
.y122{bottom:406.828500px;}
.y137{bottom:406.998000px;}
.yd9{bottom:407.509500px;}
.y88{bottom:408.360000px;}
.ya3{bottom:409.039500px;}
.y2b{bottom:409.252500px;}
.y56{bottom:410.443500px;}
.y10d{bottom:415.459500px;}
.y68{bottom:415.545000px;}
.y105{bottom:415.672500px;}
.y160{bottom:416.226000px;}
.y16f{bottom:416.863500px;}
.y13c{bottom:419.839500px;}
.yd4{bottom:420.265500px;}
.ya7{bottom:420.307500px;}
.ye7{bottom:421.626000px;}
.yc8{bottom:422.008500px;}
.yb8{bottom:424.389000px;}
.y87{bottom:428.173500px;}
.y42{bottom:428.301000px;}
.y2a{bottom:429.364500px;}
.y11b{bottom:429.661500px;}
.yb2{bottom:431.277000px;}
.y9{bottom:431.575500px;}
.y55{bottom:432.043500px;}
.y21{bottom:434.424000px;}
.y152{bottom:436.422000px;}
.yd3{bottom:436.507500px;}
.y15f{bottom:436.848000px;}
.yad{bottom:438.676500px;}
.y181{bottom:439.059000px;}
.ya6{bottom:440.121000px;}
.yb1{bottom:440.503500px;}
.yf5{bottom:441.993000px;}
.ye6{bottom:443.226000px;}
.yb7{bottom:443.268000px;}
.y10{bottom:444.543000px;}
.y86{bottom:445.521000px;}
.y23{bottom:446.754000px;}
.y41{bottom:447.180000px;}
.yb3{bottom:447.307500px;}
.yd8{bottom:450.411000px;}
.y54{bottom:450.921000px;}
.y29{bottom:450.964500px;}
.y2{bottom:452.026500px;}
.yd2{bottom:452.749500px;}
.y101{bottom:454.195500px;}
.y121{bottom:456.661500px;}
.ya5{bottom:457.470000px;}
.y15e{bottom:458.448000px;}
.y10c{bottom:458.659500px;}
.y13b{bottom:459.468000px;}
.y20{bottom:459.637500px;}
.ya0{bottom:460.446000px;}
.yf{bottom:465.250500px;}
.y102{bottom:472.182000px;}
.y13a{bottom:479.281500px;}
.y151{bottom:484.426500px;}
.y85{bottom:485.149500px;}
.ye5{bottom:486.127500px;}
.yb6{bottom:486.171000px;}
.y172{bottom:493.186500px;}
.yb0{bottom:498.714000px;}
.yd7{bottom:505.984500px;}
.y8{bottom:506.154000px;}
.y16e{bottom:506.835000px;}
.y9c{bottom:510.916500px;}
.y1f{bottom:516.189000px;}
.y22{bottom:518.910000px;}
.y139{bottom:519.208500px;}
.y118{bottom:523.714500px;}
.y28{bottom:525.459000px;}
.y3c{bottom:528.094500px;}
.y103{bottom:528.817500px;}
.y67{bottom:528.987000px;}
.ye{bottom:533.154000px;}
.y171{bottom:534.940500px;}
.yb5{bottom:535.450500px;}
.y15d{bottom:539.362500px;}
.y120{bottom:541.233000px;}
.ycb{bottom:547.824000px;}
.y16d{bottom:548.121000px;}
.y84{bottom:552.459000px;}
.ye4{bottom:552.883500px;}
.y14f{bottom:554.967000px;}
.y12e{bottom:555.393000px;}
.yf4{bottom:556.710000px;}
.hf{height:39.189773px;}
.h12{height:46.397813px;}
.he{height:47.815523px;}
.h13{height:48.266613px;}
.hc{height:50.587031px;}
.h7{height:52.132746px;}
.h8{height:52.624031px;}
.hd{height:52.624564px;}
.h14{height:56.567355px;}
.ha{height:60.880230px;}
.h17{height:62.242230px;}
.h15{height:65.193105px;}
.h11{height:67.929773px;}
.h1d{height:69.505980px;}
.hb{height:74.583697px;}
.h6{height:78.257812px;}
.h1e{height:79.756230px;}
.h16{height:87.009645px;}
.h18{height:91.834230px;}
.h4{height:95.635395px;}
.h1c{height:99.948270px;}
.h19{height:100.809105px;}
.h10{height:108.700102px;}
.h1a{height:113.012977px;}
.h5{height:121.760461px;}
.h1b{height:129.076230px;}
.h3{height:130.390559px;}
.h9{height:153.063586px;}
.h2{height:607.477500px;}
.h1{height:607.500000px;}
.h0{height:607.521260px;}
.w1{width:1079.956500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x21{left:10.800000px;}
.x33{left:14.584500px;}
.x1e{left:16.668000px;}
.xd{left:18.751500px;}
.x2a{left:19.984500px;}
.x14{left:23.215500px;}
.x41{left:25.426500px;}
.x34{left:32.569500px;}
.x1f{left:34.653000px;}
.x1b{left:36.525000px;}
.xb{left:37.758000px;}
.x43{left:38.778000px;}
.x42{left:43.413000px;}
.x19{left:45.708000px;}
.x7{left:47.622000px;}
.x44{left:52.384500px;}
.x2{left:57.147000px;}
.x1a{left:63.694500px;}
.x8{left:64.885500px;}
.x3a{left:77.428500px;}
.x3c{left:81.553500px;}
.x9{left:118.885500px;}
.xc{left:123.264000px;}
.x48{left:155.409000px;}
.xa{left:186.703500px;}
.x3{left:214.767000px;}
.x45{left:253.587000px;}
.x1{left:305.674500px;}
.x5{left:323.659500px;}
.x6{left:337.692000px;}
.x4{left:418.138500px;}
.x37{left:488.296500px;}
.x27{left:595.786500px;}
.x26{left:637.114500px;}
.x49{left:647.872500px;}
.x24{left:649.147500px;}
.x28{left:652.125000px;}
.x47{left:654.250500px;}
.x46{left:655.525500px;}
.x23{left:684.907500px;}
.x3b{left:721.602000px;}
.x25{left:725.811000px;}
.x15{left:756.382500px;}
.x2b{left:762.547500px;}
.x17{left:777.600000px;}
.x2e{left:780.492000px;}
.x2d{left:789.463500px;}
.x13{left:801.580500px;}
.x11{left:810.595500px;}
.x16{left:822.459000px;}
.x12{left:828.580500px;}
.x1d{left:835.384500px;}
.x1c{left:836.532000px;}
.xe{left:838.233000px;}
.x38{left:841.719000px;}
.x30{left:843.165000px;}
.x18{left:844.780500px;}
.x40{left:845.971500px;}
.xf{left:847.375500px;}
.x2c{left:855.453000px;}
.x3e{left:858.514500px;}
.x36{left:863.703000px;}
.x3f{left:871.951500px;}
.x3d{left:875.523000px;}
.x10{left:879.052500px;}
.x39{left:881.391000px;}
.x31{left:887.173500px;}
.x20{left:889.597500px;}
.x35{left:892.488000px;}
.x2f{left:928.630500px;}
.x32{left:950.697000px;}
.x29{left:956.310000px;}
.x22{left:961.285500px;}
@media print{
.va{vertical-align:-35.525333pt;}
.v6{vertical-align:-27.968000pt;}
.ve{vertical-align:-23.584000pt;}
.v5{vertical-align:-21.621333pt;}
.v9{vertical-align:-19.802667pt;}
.v3{vertical-align:-9.674667pt;}
.v4{vertical-align:-8.768000pt;}
.vb{vertical-align:-3.930667pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.210667pt;}
.v1{vertical-align:3.930667pt;}
.v10{vertical-align:16.778667pt;}
.vf{vertical-align:20.261333pt;}
.v2{vertical-align:25.546667pt;}
.v7{vertical-align:27.968000pt;}
.vd{vertical-align:29.173333pt;}
.vc{vertical-align:31.445333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:35.365984pt;}
.ls8{letter-spacing:88.230336pt;}
.ls9{letter-spacing:89.420992pt;}
.ls1{letter-spacing:91.627648pt;}
.ls4{letter-spacing:103.038688pt;}
.ls6{letter-spacing:107.379264pt;}
.ls3{letter-spacing:108.478688pt;}
.ls5{letter-spacing:108.484021pt;}
.ls2{letter-spacing:134.129152pt;}
.ws1{word-spacing:-41.374197pt;}
.ws3{word-spacing:-33.202656pt;}
.ws4{word-spacing:-20.687099pt;}
.ws8{word-spacing:-17.714704pt;}
.ws5{word-spacing:-13.316683pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:311.688907pt;}
.ws7{word-spacing:389.497728pt;}
.ws6{word-spacing:398.116395pt;}
._25{margin-left:-162.788181pt;}
._24{margin-left:-142.686848pt;}
._26{margin-left:-105.475563pt;}
._39{margin-left:-10.264112pt;}
._37{margin-left:-8.582560pt;}
._0{margin-left:-6.558032pt;}
._2{margin-left:-5.044645pt;}
._5{margin-left:-3.581312pt;}
._4{margin-left:-2.622032pt;}
._1{margin-left:-1.290491pt;}
._3{width:1.002491pt;}
._27{width:1.907371pt;}
._13{width:3.330795pt;}
._6{width:86.350256pt;}
._10{width:97.374917pt;}
._12{width:109.395371pt;}
._28{width:110.741349pt;}
._b{width:115.054896pt;}
._e{width:117.763285pt;}
._3a{width:144.585792pt;}
._34{width:146.822288pt;}
._2c{width:150.053349pt;}
._14{width:152.618683pt;}
._23{width:178.320027pt;}
._36{width:184.876672pt;}
._22{width:190.084459pt;}
._2e{width:195.609776pt;}
._2b{width:197.821339pt;}
._7{width:217.679131pt;}
._a{width:227.016416pt;}
._18{width:239.698672pt;}
._1b{width:272.857829pt;}
._8{width:284.066688pt;}
._16{width:293.320880pt;}
._2f{width:298.992917pt;}
._1c{width:318.488939pt;}
._29{width:320.105781pt;}
._1a{width:330.081771pt;}
._d{width:333.128005pt;}
._15{width:339.908448pt;}
._17{width:351.498677pt;}
._30{width:356.079136pt;}
._32{width:362.281781pt;}
._19{width:378.128955pt;}
._21{width:379.439120pt;}
._38{width:383.748459pt;}
._1e{width:398.666688pt;}
._31{width:402.345792pt;}
._1f{width:481.639131pt;}
._1d{width:610.242683pt;}
._f{width:699.945829pt;}
._11{width:745.576939pt;}
._c{width:765.144517pt;}
._9{width:766.264037pt;}
._35{width:773.091605pt;}
._33{width:806.101344pt;}
._2d{width:815.267605pt;}
._2a{width:848.277344pt;}
._20{width:1479.163451pt;}
.fsb{font-size:48.074667pt;}
.fsa{font-size:58.656000pt;}
.fs4{font-size:63.952000pt;}
.fs5{font-size:64.554667pt;}
.fsd{font-size:69.392000pt;}
.fs7{font-size:74.682667pt;}
.fse{font-size:79.973333pt;}
.fs8{font-size:85.264000pt;}
.fs3{font-size:96.000000pt;}
.fsf{font-size:106.736000pt;}
.fs1{font-size:117.317333pt;}
.fs12{font-size:122.608000pt;}
.fs10{font-size:123.664000pt;}
.fsc{font-size:129.109333pt;}
.fs9{font-size:133.344000pt;}
.fs11{font-size:138.634667pt;}
.fs2{font-size:149.365333pt;}
.fs0{font-size:159.952000pt;}
.fs6{font-size:187.765333pt;}
.yce{bottom:-18.368000pt;}
.ycd{bottom:-2.834667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y14d{bottom:3.326667pt;}
.y14e{bottom:13.456000pt;}
.y14c{bottom:20.938667pt;}
.y11a{bottom:25.134667pt;}
.y104{bottom:25.436000pt;}
.y9b{bottom:28.346667pt;}
.yc7{bottom:31.634667pt;}
.y14b{bottom:38.552000pt;}
.y79{bottom:45.392000pt;}
.y9a{bottom:45.958667pt;}
.y119{bottom:47.546667pt;}
.y12d{bottom:48.832000pt;}
.yc6{bottom:50.834667pt;}
.y53{bottom:54.312000pt;}
.y180{bottom:54.462667pt;}
.y14a{bottom:56.164000pt;}
.y99{bottom:63.572000pt;}
.y78{bottom:64.592000pt;}
.y35{bottom:69.618667pt;}
.yc5{bottom:70.034667pt;}
.y12c{bottom:71.244000pt;}
.y52{bottom:73.512000pt;}
.y17f{bottom:73.662667pt;}
.y149{bottom:73.776000pt;}
.y1e{bottom:74.078667pt;}
.y98{bottom:81.184000pt;}
.y77{bottom:81.373333pt;}
.y16b{bottom:81.978667pt;}
.y16c{bottom:82.356000pt;}
.yc4{bottom:86.816000pt;}
.y34{bottom:88.818667pt;}
.yf2{bottom:89.197333pt;}
.y1d{bottom:92.598667pt;}
.y51{bottom:92.712000pt;}
.y17e{bottom:92.862667pt;}
.ye3{bottom:93.430667pt;}
.y12b{bottom:93.657333pt;}
.y97{bottom:98.797333pt;}
.y16a{bottom:100.309333pt;}
.y76{bottom:102.992000pt;}
.yf1{bottom:108.397333pt;}
.y148{bottom:109.001333pt;}
.y50{bottom:109.493333pt;}
.y1c{bottom:111.118667pt;}
.y17d{bottom:111.193333pt;}
.ye2{bottom:112.630667pt;}
.y12a{bottom:116.069333pt;}
.y96{bottom:116.409333pt;}
.y117{bottom:119.697333pt;}
.y75{bottom:122.192000pt;}
.y7c{bottom:122.494667pt;}
.ycc{bottom:125.896000pt;}
.y147{bottom:126.614667pt;}
.y100{bottom:126.765333pt;}
.y33{bottom:127.218667pt;}
.yf0{bottom:127.597333pt;}
.yc3{bottom:127.634667pt;}
.y183{bottom:127.937333pt;}
.y1b{bottom:129.638667pt;}
.y4f{bottom:131.112000pt;}
.y95{bottom:131.830667pt;}
.y62{bottom:134.438667pt;}
.y129{bottom:138.482667pt;}
.y116{bottom:138.897333pt;}
.y169{bottom:139.578667pt;}
.y7{bottom:140.636000pt;}
.y74{bottom:141.392000pt;}
.y146{bottom:144.226667pt;}
.yef{bottom:144.378667pt;}
.yc2{bottom:144.416000pt;}
.yff{bottom:145.965333pt;}
.y32{bottom:146.418667pt;}
.y1a{bottom:148.157333pt;}
.y65{bottom:149.934667pt;}
.y4e{bottom:150.312000pt;}
.y17c{bottom:150.462667pt;}
.y3f{bottom:151.408000pt;}
.y94{bottom:151.634667pt;}
.y184{bottom:153.449333pt;}
.y61{bottom:153.638667pt;}
.y15c{bottom:155.188000pt;}
.y83{bottom:157.190667pt;}
.y115{bottom:158.097333pt;}
.y168{bottom:158.778667pt;}
.y73{bottom:160.592000pt;}
.y128{bottom:160.894667pt;}
.y145{bottom:161.840000pt;}
.yfe{bottom:165.165333pt;}
.y36{bottom:166.640000pt;}
.y19{bottom:166.677333pt;}
.y17b{bottom:168.793333pt;}
.y93{bottom:169.248000pt;}
.y4d{bottom:169.512000pt;}
.y40{bottom:169.776000pt;}
.ye1{bottom:170.230667pt;}
.y60{bottom:172.838667pt;}
.y6{bottom:173.442667pt;}
.y15b{bottom:174.388000pt;}
.y114{bottom:177.297333pt;}
.y167{bottom:177.978667pt;}
.y72{bottom:179.792000pt;}
.y9e{bottom:181.833333pt;}
.yfd{bottom:181.946667pt;}
.y127{bottom:182.324000pt;}
.y7d{bottom:182.853333pt;}
.y18{bottom:185.197333pt;}
.yc1{bottom:185.234667pt;}
.y4c{bottom:186.293333pt;}
.y92{bottom:186.860000pt;}
.y3e{bottom:187.993333pt;}
.y31{bottom:188.032000pt;}
.y185{bottom:188.485333pt;}
.y39{bottom:189.278667pt;}
.ye0{bottom:189.430667pt;}
.y5f{bottom:189.618667pt;}
.y66{bottom:190.034667pt;}
.y15a{bottom:193.588000pt;}
.y3d{bottom:195.969333pt;}
.yd{bottom:196.157333pt;}
.y144{bottom:197.065333pt;}
.y82{bottom:197.178667pt;}
.y71{bottom:198.992000pt;}
.y17{bottom:203.604000pt;}
.yee{bottom:204.397333pt;}
.yc0{bottom:204.434667pt;}
.y91{bottom:204.473333pt;}
.y7b{bottom:205.190667pt;}
.y5{bottom:206.249333pt;}
.y30{bottom:207.232000pt;}
.y4b{bottom:207.912000pt;}
.y17a{bottom:208.062667pt;}
.ydf{bottom:208.630667pt;}
.y64{bottom:210.557333pt;}
.y5e{bottom:211.238667pt;}
.y159{bottom:212.788000pt;}
.y143{bottom:214.677333pt;}
.y166{bottom:215.509333pt;}
.y113{bottom:215.697333pt;}
.y37{bottom:215.849333pt;}
.y150{bottom:217.172000pt;}
.y70{bottom:218.192000pt;}
.yae{bottom:221.934667pt;}
.y90{bottom:222.085333pt;}
.yfc{bottom:222.765333pt;}
.yed{bottom:223.597333pt;}
.ybf{bottom:223.634667pt;}
.y27{bottom:224.390667pt;}
.y179{bottom:226.393333pt;}
.y4a{bottom:227.112000pt;}
.y126{bottom:227.149333pt;}
.yde{bottom:227.830667pt;}
.y11f{bottom:228.774667pt;}
.y5d{bottom:230.438667pt;}
.y158{bottom:231.988000pt;}
.y142{bottom:232.289333pt;}
.y7a{bottom:232.554667pt;}
.y63{bottom:232.932000pt;}
.y112{bottom:234.897333pt;}
.y6f{bottom:234.973333pt;}
.y38{bottom:235.049333pt;}
.y81{bottom:237.165333pt;}
.y3a{bottom:238.980000pt;}
.y8f{bottom:239.697333pt;}
.yfb{bottom:241.965333pt;}
.yf3{bottom:242.608000pt;}
.yec{bottom:242.797333pt;}
.y16{bottom:242.834667pt;}
.yc{bottom:243.024000pt;}
.y49{bottom:246.312000pt;}
.y3b{bottom:246.954667pt;}
.y2f{bottom:248.844000pt;}
.y5c{bottom:249.638667pt;}
.y141{bottom:249.902667pt;}
.y157{bottom:251.188000pt;}
.y111{bottom:254.097333pt;}
.y165{bottom:254.778667pt;}
.y8e{bottom:255.118667pt;}
.y6e{bottom:256.592000pt;}
.y182{bottom:258.256000pt;}
.yeb{bottom:259.578667pt;}
.yfa{bottom:261.165333pt;}
.y15{bottom:261.354667pt;}
.ybe{bottom:262.034667pt;}
.y48{bottom:263.093333pt;}
.y178{bottom:265.662667pt;}
.y26{bottom:265.965333pt;}
.ydd{bottom:266.230667pt;}
.y5b{bottom:266.418667pt;}
.y140{bottom:267.514667pt;}
.y2e{bottom:268.044000pt;}
.y156{bottom:270.388000pt;}
.y9f{bottom:271.484000pt;}
.y125{bottom:272.957333pt;}
.y110{bottom:273.297333pt;}
.y164{bottom:273.978667pt;}
.y11e{bottom:274.582667pt;}
.y8d{bottom:274.922667pt;}
.y6d{bottom:275.792000pt;}
.y80{bottom:277.153333pt;}
.y14{bottom:279.761333pt;}
.yf9{bottom:280.365333pt;}
.ybd{bottom:281.234667pt;}
.y47{bottom:284.712000pt;}
.y177{bottom:284.862667pt;}
.ydc{bottom:285.430667pt;}
.yac{bottom:285.544000pt;}
.y5a{bottom:288.038667pt;}
.y155{bottom:289.588000pt;}
.yb{bottom:289.889333pt;}
.y136{bottom:291.817333pt;}
.y8c{bottom:292.536000pt;}
.y163{bottom:293.178667pt;}
.y6c{bottom:294.992000pt;}
.y124{bottom:295.370667pt;}
.y11d{bottom:296.013333pt;}
.yf8{bottom:297.146667pt;}
.yea{bottom:300.397333pt;}
.ybc{bottom:300.434667pt;}
.y13f{bottom:302.740000pt;}
.y109{bottom:302.853333pt;}
.yab{bottom:303.156000pt;}
.y46{bottom:303.912000pt;}
.y176{bottom:304.062667pt;}
.ydb{bottom:304.630667pt;}
.yaf{bottom:305.500000pt;}
.y135{bottom:306.256000pt;}
.y2d{bottom:306.444000pt;}
.ya4{bottom:306.709333pt;}
.y59{bottom:307.238667pt;}
.y154{bottom:308.788000pt;}
.yc9{bottom:308.901333pt;}
.y8b{bottom:310.148000pt;}
.y25{bottom:310.753333pt;}
.y162{bottom:311.509333pt;}
.y6b{bottom:311.773333pt;}
.y4{bottom:312.529333pt;}
.y133{bottom:313.549333pt;}
.y9d{bottom:314.570667pt;}
.y123{bottom:316.800000pt;}
.y7f{bottom:317.140000pt;}
.y108{bottom:317.292000pt;}
.y13{bottom:318.992000pt;}
.ye9{bottom:319.597333pt;}
.ybb{bottom:319.634667pt;}
.y13e{bottom:320.353333pt;}
.yaa{bottom:320.769333pt;}
.y45{bottom:323.112000pt;}
.y175{bottom:323.262667pt;}
.yd1{bottom:323.565333pt;}
.y2c{bottom:325.644000pt;}
.y58{bottom:326.438667pt;}
.y153{bottom:327.648000pt;}
.y8a{bottom:327.761333pt;}
.y132{bottom:327.988000pt;}
.y170{bottom:330.557333pt;}
.y10f{bottom:330.897333pt;}
.y6a{bottom:333.392000pt;}
.y10b{bottom:335.584000pt;}
.ya9{bottom:336.189333pt;}
.ye8{bottom:336.378667pt;}
.ya{bottom:336.756000pt;}
.yd6{bottom:336.869333pt;}
.y12{bottom:337.512000pt;}
.yf7{bottom:337.965333pt;}
.yd0{bottom:338.004000pt;}
.yba{bottom:338.834667pt;}
.y44{bottom:339.893333pt;}
.y107{bottom:340.610667pt;}
.yb4{bottom:340.724000pt;}
.y11c{bottom:340.838667pt;}
.y131{bottom:342.425333pt;}
.y174{bottom:342.462667pt;}
.y134{bottom:342.992000pt;}
.yda{bottom:343.030667pt;}
.y57{bottom:343.218667pt;}
.y130{bottom:344.693333pt;}
.y89{bottom:345.373333pt;}
.y138{bottom:347.338667pt;}
.ya2{bottom:349.341333pt;}
.y10a{bottom:350.022667pt;}
.y10e{bottom:350.097333pt;}
.y161{bottom:350.778667pt;}
.yd5{bottom:351.306667pt;}
.ycf{bottom:352.441333pt;}
.y69{bottom:352.592000pt;}
.yca{bottom:353.688000pt;}
.yf6{bottom:354.746667pt;}
.y106{bottom:355.049333pt;}
.y24{bottom:355.540000pt;}
.y13d{bottom:355.578667pt;}
.y11{bottom:355.918667pt;}
.ya8{bottom:355.993333pt;}
.y7e{bottom:357.128000pt;}
.y3{bottom:357.165333pt;}
.ya1{bottom:357.544000pt;}
.yb9{bottom:358.034667pt;}
.y12f{bottom:359.130667pt;}
.y173{bottom:360.793333pt;}
.y43{bottom:361.512000pt;}
.y122{bottom:361.625333pt;}
.y137{bottom:361.776000pt;}
.yd9{bottom:362.230667pt;}
.y88{bottom:362.986667pt;}
.ya3{bottom:363.590667pt;}
.y2b{bottom:363.780000pt;}
.y56{bottom:364.838667pt;}
.y10d{bottom:369.297333pt;}
.y68{bottom:369.373333pt;}
.y105{bottom:369.486667pt;}
.y160{bottom:369.978667pt;}
.y16f{bottom:370.545333pt;}
.y13c{bottom:373.190667pt;}
.yd4{bottom:373.569333pt;}
.ya7{bottom:373.606667pt;}
.ye7{bottom:374.778667pt;}
.yc8{bottom:375.118667pt;}
.yb8{bottom:377.234667pt;}
.y87{bottom:380.598667pt;}
.y42{bottom:380.712000pt;}
.y2a{bottom:381.657333pt;}
.y11b{bottom:381.921333pt;}
.yb2{bottom:383.357333pt;}
.y9{bottom:383.622667pt;}
.y55{bottom:384.038667pt;}
.y21{bottom:386.154667pt;}
.y152{bottom:387.930667pt;}
.yd3{bottom:388.006667pt;}
.y15f{bottom:388.309333pt;}
.yad{bottom:389.934667pt;}
.y181{bottom:390.274667pt;}
.ya6{bottom:391.218667pt;}
.yb1{bottom:391.558667pt;}
.yf5{bottom:392.882667pt;}
.ye6{bottom:393.978667pt;}
.yb7{bottom:394.016000pt;}
.y10{bottom:395.149333pt;}
.y86{bottom:396.018667pt;}
.y23{bottom:397.114667pt;}
.y41{bottom:397.493333pt;}
.yb3{bottom:397.606667pt;}
.yd8{bottom:400.365333pt;}
.y54{bottom:400.818667pt;}
.y29{bottom:400.857333pt;}
.y2{bottom:401.801333pt;}
.yd2{bottom:402.444000pt;}
.y101{bottom:403.729333pt;}
.y121{bottom:405.921333pt;}
.ya5{bottom:406.640000pt;}
.y15e{bottom:407.509333pt;}
.y10c{bottom:407.697333pt;}
.y13b{bottom:408.416000pt;}
.y20{bottom:408.566667pt;}
.ya0{bottom:409.285333pt;}
.yf{bottom:413.556000pt;}
.y102{bottom:419.717333pt;}
.y13a{bottom:426.028000pt;}
.y151{bottom:430.601333pt;}
.y85{bottom:431.244000pt;}
.ye5{bottom:432.113333pt;}
.yb6{bottom:432.152000pt;}
.y172{bottom:438.388000pt;}
.yb0{bottom:443.301333pt;}
.yd7{bottom:449.764000pt;}
.y8{bottom:449.914667pt;}
.y16e{bottom:450.520000pt;}
.y9c{bottom:454.148000pt;}
.y1f{bottom:458.834667pt;}
.y22{bottom:461.253333pt;}
.y139{bottom:461.518667pt;}
.y118{bottom:465.524000pt;}
.y28{bottom:467.074667pt;}
.y3c{bottom:469.417333pt;}
.y103{bottom:470.060000pt;}
.y67{bottom:470.210667pt;}
.ye{bottom:473.914667pt;}
.y171{bottom:475.502667pt;}
.yb5{bottom:475.956000pt;}
.y15d{bottom:479.433333pt;}
.y120{bottom:481.096000pt;}
.ycb{bottom:486.954667pt;}
.y16d{bottom:487.218667pt;}
.y84{bottom:491.074667pt;}
.ye4{bottom:491.452000pt;}
.y14f{bottom:493.304000pt;}
.y12e{bottom:493.682667pt;}
.yf4{bottom:494.853333pt;}
.hf{height:34.835354pt;}
.h12{height:41.242500pt;}
.he{height:42.502687pt;}
.h13{height:42.903656pt;}
.hc{height:44.966250pt;}
.h7{height:46.340219pt;}
.h8{height:46.776917pt;}
.hd{height:46.777391pt;}
.h14{height:50.282094pt;}
.ha{height:54.115760pt;}
.h17{height:55.326427pt;}
.h15{height:57.949427pt;}
.h11{height:60.382021pt;}
.h1d{height:61.783094pt;}
.hb{height:66.296620pt;}
.h6{height:69.562500pt;}
.h1e{height:70.894427pt;}
.h16{height:77.341906pt;}
.h18{height:81.630427pt;}
.h4{height:85.009240pt;}
.h1c{height:88.842906pt;}
.h19{height:89.608094pt;}
.h10{height:96.622312pt;}
.h1a{height:100.455979pt;}
.h5{height:108.231521pt;}
.h1b{height:114.734427pt;}
.h3{height:115.902719pt;}
.h9{height:136.056521pt;}
.h2{height:539.980000pt;}
.h1{height:540.000000pt;}
.h0{height:540.018898pt;}
.w1{width:959.961333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x21{left:9.600000pt;}
.x33{left:12.964000pt;}
.x1e{left:14.816000pt;}
.xd{left:16.668000pt;}
.x2a{left:17.764000pt;}
.x14{left:20.636000pt;}
.x41{left:22.601333pt;}
.x34{left:28.950667pt;}
.x1f{left:30.802667pt;}
.x1b{left:32.466667pt;}
.xb{left:33.562667pt;}
.x43{left:34.469333pt;}
.x42{left:38.589333pt;}
.x19{left:40.629333pt;}
.x7{left:42.330667pt;}
.x44{left:46.564000pt;}
.x2{left:50.797333pt;}
.x1a{left:56.617333pt;}
.x8{left:57.676000pt;}
.x3a{left:68.825333pt;}
.x3c{left:72.492000pt;}
.x9{left:105.676000pt;}
.xc{left:109.568000pt;}
.x48{left:138.141333pt;}
.xa{left:165.958667pt;}
.x3{left:190.904000pt;}
.x45{left:225.410667pt;}
.x1{left:271.710667pt;}
.x5{left:287.697333pt;}
.x6{left:300.170667pt;}
.x4{left:371.678667pt;}
.x37{left:434.041333pt;}
.x27{left:529.588000pt;}
.x26{left:566.324000pt;}
.x49{left:575.886667pt;}
.x24{left:577.020000pt;}
.x28{left:579.666667pt;}
.x47{left:581.556000pt;}
.x46{left:582.689333pt;}
.x23{left:608.806667pt;}
.x3b{left:641.424000pt;}
.x25{left:645.165333pt;}
.x15{left:672.340000pt;}
.x2b{left:677.820000pt;}
.x17{left:691.200000pt;}
.x2e{left:693.770667pt;}
.x2d{left:701.745333pt;}
.x13{left:712.516000pt;}
.x11{left:720.529333pt;}
.x16{left:731.074667pt;}
.x12{left:736.516000pt;}
.x1d{left:742.564000pt;}
.x1c{left:743.584000pt;}
.xe{left:745.096000pt;}
.x38{left:748.194667pt;}
.x30{left:749.480000pt;}
.x18{left:750.916000pt;}
.x40{left:751.974667pt;}
.xf{left:753.222667pt;}
.x2c{left:760.402667pt;}
.x3e{left:763.124000pt;}
.x36{left:767.736000pt;}
.x3f{left:775.068000pt;}
.x3d{left:778.242667pt;}
.x10{left:781.380000pt;}
.x39{left:783.458667pt;}
.x31{left:788.598667pt;}
.x20{left:790.753333pt;}
.x35{left:793.322667pt;}
.x2f{left:825.449333pt;}
.x32{left:845.064000pt;}
.x29{left:850.053333pt;}
.x22{left:854.476000pt;}
}




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