
    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_62ca13175ba64552d58f6805.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.970215;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_02d8093bb757a339cca9584c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_4342c8161816868f0fb51594.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_f9d89bbe1427ca401250248c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_40791ac3b1a41e413b89aa6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.055370px;}
.ls4{letter-spacing:342.339473px;}
.ls5{letter-spacing:342.524571px;}
.ls2{letter-spacing:546.607403px;}
.ls1{letter-spacing:553.663133px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-588.941783px;}
.wse{word-spacing:-581.886053px;}
.ws35{word-spacing:-394.177673px;}
.ws24{word-spacing:-66.292670px;}
.ws14{word-spacing:-66.237300px;}
.ws26{word-spacing:-51.838200px;}
.ws38{word-spacing:-37.438560px;}
.ws2{word-spacing:-35.278650px;}
.ws0{word-spacing:-8.844856px;}
.ws1{word-spacing:0.000000px;}
.ws36{word-spacing:28.199981px;}
.ws3e{word-spacing:36.079387px;}
.ws33{word-spacing:85.947736px;}
.ws2d{word-spacing:101.447357px;}
.ws2e{word-spacing:101.965739px;}
.ws3a{word-spacing:105.438899px;}
.ws22{word-spacing:113.133308px;}
.ws2f{word-spacing:113.162791px;}
.ws34{word-spacing:113.341142px;}
.ws2c{word-spacing:124.256165px;}
.ws1e{word-spacing:149.895010px;}
.ws31{word-spacing:152.196955px;}
.ws3d{word-spacing:156.188497px;}
.ws1b{word-spacing:169.368776px;}
.ws28{word-spacing:181.278185px;}
.ws3c{word-spacing:183.196199px;}
.ws30{word-spacing:196.103911px;}
.ws2b{word-spacing:196.829645px;}
.ws20{word-spacing:197.784578px;}
.ws23{word-spacing:219.775361px;}
.ws3b{word-spacing:236.589545px;}
.ws39{word-spacing:249.549095px;}
.ws1f{word-spacing:256.537063px;}
.ws32{word-spacing:269.869669px;}
.wsd{word-spacing:269.952230px;}
.ws37{word-spacing:290.501273px;}
.ws21{word-spacing:348.805622px;}
.ws5{word-spacing:349.293914px;}
.ws11{word-spacing:350.105323px;}
.wsf{word-spacing:351.869255px;}
.ws19{word-spacing:367.683252px;}
.ws3{word-spacing:374.165362px;}
.ws9{word-spacing:396.320354px;}
.wsa{word-spacing:409.832077px;}
.ws2a{word-spacing:417.453025px;}
.ws10{word-spacing:417.593380px;}
.ws4{word-spacing:448.885543px;}
.ws12{word-spacing:457.352419px;}
.ws8{word-spacing:466.524868px;}
.ws7{word-spacing:466.877654px;}
.ws1a{word-spacing:474.325305px;}
.wsb{word-spacing:475.344530px;}
.ws13{word-spacing:511.328753px;}
.ws1c{word-spacing:512.544227px;}
.wsc{word-spacing:518.384483px;}
.ws17{word-spacing:536.058469px;}
.ws29{word-spacing:556.120210px;}
.ws15{word-spacing:575.535900px;}
.ws1d{word-spacing:619.186280px;}
.ws16{word-spacing:715.230365px;}
.ws18{word-spacing:725.629622px;}
.ws25{word-spacing:1654.210330px;}
.ws27{word-spacing:2866.542018px;}
._c{margin-left:-553.663133px;}
._20{margin-left:-546.607403px;}
._39{margin-left:-342.048905px;}
._0{margin-left:-1.084345px;}
._1{width:1.069158px;}
._d{width:2.116719px;}
._1f{width:3.527865px;}
._17{width:53.165064px;}
._1a{width:100.056353px;}
._3c{width:120.771261px;}
._3b{width:150.017928px;}
._3a{width:151.262653px;}
._35{width:164.534447px;}
._38{width:221.012782px;}
._45{width:224.985685px;}
._44{width:244.577892px;}
._43{width:262.237516px;}
._16{width:303.184718px;}
._2d{width:324.196103px;}
._1b{width:326.898072px;}
._19{width:328.232560px;}
._31{width:337.649133px;}
._40{width:342.339473px;}
._1e{width:350.546444px;}
._37{width:378.089211px;}
._34{width:381.092379px;}
._9{width:389.476709px;}
._27{width:392.061146px;}
._14{width:401.268185px;}
._26{width:417.504858px;}
._32{width:420.882045px;}
._15{width:423.346970px;}
._5{width:424.639739px;}
._36{width:426.418401px;}
._1c{width:431.591563px;}
._24{width:432.858976px;}
._25{width:435.054382px;}
._4{width:449.933015px;}
._1d{width:452.060621px;}
._2c{width:457.829115px;}
._22{width:466.877654px;}
._21{width:470.052733px;}
._2{width:473.651017px;}
._13{width:477.461249px;}
._3f{width:479.192321px;}
._b{width:487.503400px;}
._12{width:492.631069px;}
._3{width:493.759985px;}
._2f{width:498.676604px;}
._8{width:507.094626px;}
._a{width:508.774358px;}
._7{width:511.597969px;}
._23{width:514.462903px;}
._18{width:516.069046px;}
._f{width:519.762477px;}
._e{width:527.909719px;}
._6{width:530.026438px;}
._10{width:532.909976px;}
._11{width:546.607403px;}
._2b{width:550.135268px;}
._29{width:553.663133px;}
._42{width:556.949621px;}
._41{width:583.905485px;}
._3e{width:596.865035px;}
._30{width:616.265279px;}
._3d{width:623.302517px;}
._28{width:1118.398664px;}
._2a{width:1679.052068px;}
._2e{width:1936.468121px;}
._33{width:2131.529400px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:32.398740px;}
.fs1{font-size:35.278650px;}
.fs4{font-size:37.438560px;}
.fs3{font-size:51.838200px;}
.fs2{font-size:66.237300px;}
.y0{bottom:0.000000px;}
.y18{bottom:1.619994px;}
.y2d{bottom:1.620002px;}
.y39{bottom:1.620003px;}
.y34{bottom:1.799973px;}
.y8{bottom:1.799990px;}
.y5{bottom:1.799998px;}
.y2{bottom:1.799999px;}
.ya{bottom:1.800007px;}
.y31{bottom:1.800008px;}
.y33{bottom:1.979976px;}
.y23{bottom:1.979993px;}
.y1e{bottom:1.979994px;}
.y1a{bottom:1.980002px;}
.y20{bottom:1.980010px;}
.y25{bottom:1.980011px;}
.ya4{bottom:2.339985px;}
.ya0{bottom:2.520022px;}
.y9d{bottom:2.520024px;}
.y80{bottom:3.420001px;}
.y88{bottom:3.420009px;}
.y6c{bottom:243.720016px;}
.y7d{bottom:244.440033px;}
.y6b{bottom:272.700027px;}
.y6e{bottom:273.420043px;}
.y6a{bottom:301.680037px;}
.y6d{bottom:302.399986px;}
.y69{bottom:330.660015px;}
.y75{bottom:331.379997px;}
.y96{bottom:354.240005px;}
.y68{bottom:359.640025px;}
.y7c{bottom:360.360008px;}
.y98{bottom:376.740005px;}
.y95{bottom:376.920009px;}
.y67{bottom:388.620003px;}
.y7b{bottom:389.340018px;}
.y97{bottom:399.420009px;}
.y94{bottom:399.600013px;}
.y66{bottom:417.600013px;}
.y7a{bottom:418.319996px;}
.y9a{bottom:422.100013px;}
.y93{bottom:422.280017px;}
.y99{bottom:444.780017px;}
.y92{bottom:444.960022px;}
.y65{bottom:446.580024px;}
.y79{bottom:447.300006px;}
.y9c{bottom:464.939998px;}
.y9b{bottom:467.460022px;}
.y91{bottom:467.640025px;}
.y64{bottom:475.560000px;}
.y78{bottom:476.280017px;}
.y3e{bottom:477.900021px;}
.y9f{bottom:487.620003px;}
.y3d{bottom:489.420009px;}
.y9e{bottom:490.140025px;}
.y90{bottom:490.319996px;}
.y58{bottom:491.040012px;}
.y3c{bottom:500.939998px;}
.y56{bottom:502.560000px;}
.y63{bottom:504.540012px;}
.y77{bottom:505.259994px;}
.y3b{bottom:512.460022px;}
.ya1{bottom:512.819996px;}
.y8f{bottom:512.999999px;}
.y57{bottom:514.080024px;}
.y3a{bottom:523.980010px;}
.y54{bottom:525.600013px;}
.y62{bottom:533.520023px;}
.y76{bottom:534.240005px;}
.y38{bottom:535.499999px;}
.y8e{bottom:535.680004px;}
.y55{bottom:537.120003px;}
.y37{bottom:547.020023px;}
.y52{bottom:548.640025px;}
.ya3{bottom:554.040012px;}
.y8d{bottom:554.759994px;}
.y36{bottom:558.540012px;}
.y53{bottom:560.160015px;}
.y61{bottom:562.499999px;}
.y70{bottom:563.220016px;}
.y16{bottom:566.280017px;}
.y8c{bottom:569.879997px;}
.y35{bottom:570.060000px;}
.y50{bottom:571.680004px;}
.ya5{bottom:573.120003px;}
.ya2{bottom:573.300006px;}
.y32{bottom:581.580024px;}
.y51{bottom:583.200027px;}
.y15{bottom:589.680004px;}
.ya6{bottom:590.400021px;}
.y8b{bottom:590.580024px;}
.y60{bottom:591.480010px;}
.y6f{bottom:592.200027px;}
.y30{bottom:593.100013px;}
.y4e{bottom:594.720016px;}
.y14{bottom:601.379997px;}
.y2f{bottom:604.620003px;}
.y4f{bottom:606.240005px;}
.ya7{bottom:613.080007px;}
.y8a{bottom:613.260012px;}
.y2e{bottom:616.140008px;}
.y4c{bottom:617.760012px;}
.y5f{bottom:620.460005px;}
.y74{bottom:621.180004px;}
.y13{bottom:624.780017px;}
.y2c{bottom:627.660015px;}
.ya8{bottom:635.760012px;}
.y89{bottom:635.940015px;}
.y12{bottom:636.480010px;}
.y2b{bottom:639.180004px;}
.y4d{bottom:640.800006px;}
.y11{bottom:648.180004px;}
.y5e{bottom:649.440015px;}
.y73{bottom:650.160015px;}
.y2a{bottom:650.700009px;}
.y4a{bottom:652.320013px;}
.ya9{bottom:658.440015px;}
.y86{bottom:658.620003px;}
.y10{bottom:659.880014px;}
.y29{bottom:662.220016px;}
.y4b{bottom:663.840018px;}
.yf{bottom:671.580007px;}
.y87{bottom:672.120003px;}
.y28{bottom:673.740005px;}
.y48{bottom:675.360008px;}
.y5d{bottom:678.420009px;}
.yaa{bottom:681.120003px;}
.y85{bottom:681.300006px;}
.ye{bottom:683.280017px;}
.y27{bottom:685.260012px;}
.y49{bottom:686.880014px;}
.yd{bottom:694.980010px;}
.y26{bottom:696.780017px;}
.y46{bottom:698.400003px;}
.yab{bottom:703.800006px;}
.y84{bottom:703.980010px;}
.yc{bottom:706.680004px;}
.y5c{bottom:707.400003px;}
.y7e{bottom:708.120003px;}
.y24{bottom:708.300006px;}
.y47{bottom:709.920009px;}
.yb{bottom:718.380014px;}
.y22{bottom:719.820013px;}
.y44{bottom:721.440015px;}
.yac{bottom:726.480010px;}
.y83{bottom:726.660015px;}
.y9{bottom:730.080007px;}
.y21{bottom:731.340018px;}
.y45{bottom:732.960005px;}
.y5b{bottom:736.380014px;}
.y72{bottom:737.100013px;}
.y7{bottom:741.780017px;}
.y1f{bottom:742.860008px;}
.y42{bottom:744.480010px;}
.yae{bottom:749.160015px;}
.y82{bottom:749.340010px;}
.y6{bottom:753.480010px;}
.y1d{bottom:754.380014px;}
.y43{bottom:756.000008px;}
.y4{bottom:765.180013px;}
.y5a{bottom:765.360008px;}
.y1c{bottom:765.900012px;}
.y71{bottom:766.080007px;}
.y40{bottom:767.520014px;}
.yad{bottom:771.840010px;}
.y81{bottom:772.020014px;}
.y3{bottom:776.880014px;}
.y1b{bottom:777.420009px;}
.y41{bottom:779.040012px;}
.y19{bottom:788.940007px;}
.y3f{bottom:790.560009px;}
.y59{bottom:790.740014px;}
.y7f{bottom:791.280008px;}
.y1{bottom:800.280008px;}
.y17{bottom:800.460013px;}
.h14{height:4.140009px;}
.hc{height:10.079990px;}
.hb{height:10.079991px;}
.h7{height:10.079999px;}
.ha{height:10.080007px;}
.hd{height:10.080008px;}
.he{height:10.080025px;}
.h4{height:10.259994px;}
.h2{height:10.260003px;}
.h6{height:10.260011px;}
.h1a{height:11.520022px;}
.h18{height:11.520024px;}
.h16{height:14.040012px;}
.h1b{height:14.759994px;}
.h11{height:15.299999px;}
.h15{height:15.660015px;}
.h3{height:23.982661px;}
.h5{height:28.016684px;}
.h9{height:35.089165px;}
.h8{height:36.122719px;}
.h19{height:37.237474px;}
.h17{height:39.308948px;}
.h13{height:51.559772px;}
.h12{height:53.078469px;}
.h10{height:65.881533px;}
.hf{height:67.822079px;}
.h0{height:892.980015px;}
.h1{height:893.250000px;}
.w39{width:1.979943px;}
.w35{width:1.979976px;}
.w36{width:1.979978px;}
.w33{width:1.979993px;}
.w34{width:1.979994px;}
.w37{width:1.980010px;}
.w38{width:1.980011px;}
.w40{width:2.699960px;}
.wa{width:4.319996px;}
.w14{width:8.639991px;}
.w15{width:8.639992px;}
.w9{width:9.359991px;}
.w10{width:10.439965px;}
.wb{width:10.439998px;}
.wf{width:10.439999px;}
.w3{width:11.520006px;}
.w5{width:14.219983px;}
.wd{width:14.759994px;}
.wc{width:14.759996px;}
.w13{width:14.760011px;}
.w4{width:14.939998px;}
.w6{width:15.299973px;}
.w3f{width:17.280000px;}
.w1e{width:17.460004px;}
.w17{width:18.359991px;}
.w54{width:19.079990px;}
.w62{width:22.320030px;}
.w4b{width:23.039994px;}
.w25{width:23.399995px;}
.w7{width:24.299973px;}
.w57{width:25.919992px;}
.w12{width:26.280001px;}
.w47{width:27.000000px;}
.w3d{width:29.339951px;}
.w3c{width:29.519998px;}
.w21{width:30.060001px;}
.w29{width:30.599997px;}
.w4e{width:30.959988px;}
.w8{width:31.860000px;}
.w61{width:31.860008px;}
.w1b{width:33.119935px;}
.w19{width:33.119969px;}
.w18{width:33.120002px;}
.w1a{width:33.120003px;}
.w3b{width:33.839951px;}
.w41{width:33.840002px;}
.w42{width:35.639991px;}
.w5e{width:36.360008px;}
.w44{width:36.539994px;}
.w60{width:39.780001px;}
.w30{width:41.220000px;}
.w32{width:41.400005px;}
.w4f{width:46.799999px;}
.w22{width:47.879998px;}
.w5c{width:49.679996px;}
.w52{width:50.580000px;}
.w3e{width:52.560002px;}
.we{width:55.619994px;}
.w43{width:57.600006px;}
.w3a{width:59.760003px;}
.w2c{width:59.760011px;}
.w20{width:60.119994px;}
.w4d{width:60.840002px;}
.w50{width:64.260003px;}
.w2a{width:64.620020px;}
.w48{width:65.880007px;}
.w45{width:70.200002px;}
.w58{width:73.080000px;}
.w4c{width:75.239998px;}
.w1f{width:75.960006px;}
.w64{width:76.319996px;}
.w11{width:78.299990px;}
.w46{width:79.920001px;}
.w59{width:83.339994px;}
.w63{width:86.579990px;}
.w1d{width:88.199993px;}
.w4a{width:89.280010px;}
.w23{width:93.240006px;}
.w55{width:93.959997px;}
.w53{width:97.560010px;}
.w5b{width:99.720008px;}
.w24{width:102.060002px;}
.w16{width:102.419993px;}
.w56{width:102.600006px;}
.w49{width:107.100006px;}
.w51{width:107.459997px;}
.w1c{width:107.460006px;}
.w5a{width:113.760003px;}
.w2f{width:116.099945px;}
.w2e{width:116.099946px;}
.w2d{width:116.099980px;}
.w2{width:121.679997px;}
.w5f{width:157.859991px;}
.w28{width:192.060002px;}
.w2b{width:205.019955px;}
.w26{width:232.200010px;}
.w31{width:317.339985px;}
.w27{width:346.139958px;}
.w5d{width:1007.820021px;}
.w0{width:1262.880060px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:78.299998px;}
.x52{left:128.519998px;}
.xc{left:207.180005px;}
.x7{left:214.560001px;}
.x2{left:251.099997px;}
.x54{left:281.520006px;}
.xd{left:286.919992px;}
.x1a{left:300.600013px;}
.x1c{left:317.160015px;}
.x1b{left:321.300007px;}
.xe{left:357.480011px;}
.x53{left:365.399987px;}
.x1e{left:376.560001px;}
.x1d{left:391.500000px;}
.x57{left:409.680005px;}
.xf{left:428.040012px;}
.x55{left:453.959988px;}
.x23{left:458.639992px;}
.x24{left:489.959988px;}
.x58{left:497.699993px;}
.x8{left:498.959988px;}
.x3{left:506.879998px;}
.x2f{left:525.959988px;}
.x9{left:538.740006px;}
.x4{left:546.660015px;}
.x20{left:547.740006px;}
.x1f{left:554.040012px;}
.x10{left:569.160015px;}
.x21{left:573.120002px;}
.x28{left:583.019989px;}
.x3d{left:585.000000px;}
.x59{left:586.799973px;}
.x3e{left:587.879998px;}
.x2e{left:589.679970px;}
.x27{left:594.179970px;}
.x22{left:598.500000px;}
.x2d{left:600.480011px;}
.x2a{left:604.620002px;}
.x29{left:606.779983px;}
.x5a{left:621.000000px;}
.x11{left:639.720017px;}
.x39{left:657.360008px;}
.x30{left:661.500000px;}
.x2c{left:700.919975px;}
.x49{left:708.299973px;}
.x12{left:710.279983px;}
.x2b{left:712.259994px;}
.x37{left:714.240006px;}
.x4a{left:716.399987px;}
.x3c{left:718.379998px;}
.x25{left:720.539978px;}
.x38{left:724.679970px;}
.x3a{left:748.620002px;}
.x56{left:763.919975px;}
.x3b{left:771.120002px;}
.x13{left:780.840019px;}
.x31{left:809.820030px;}
.x46{left:814.679970px;}
.x33{left:823.679970px;}
.x36{left:826.019989px;}
.x48{left:828.000000px;}
.x32{left:829.080025px;}
.x35{left:832.139992px;}
.x47{left:834.299973px;}
.x34{left:838.440033px;}
.x14{left:851.399987px;}
.x26{left:855.720017px;}
.x4b{left:895.320030px;}
.xa{left:912.960023px;}
.x15{left:921.960023px;}
.x40{left:923.580025px;}
.x5{left:925.200027px;}
.x4d{left:928.440033px;}
.x41{left:933.840019px;}
.x42{left:937.440033px;}
.x45{left:939.779983px;}
.x4f{left:941.759994px;}
.x44{left:945.899987px;}
.x4e{left:948.059967px;}
.x43{left:952.200027px;}
.x3f{left:972.899987px;}
.x16{left:992.519989px;}
.x51{left:1000.799973px;}
.x50{left:1009.080025px;}
.x4c{left:1038.419975px;}
.xb{left:1042.200027px;}
.x6{left:1054.440033px;}
.x17{left:1063.080025px;}
.x19{left:1100.700027px;}
.x18{left:1133.639992px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.049218pt;}
.ls4{letter-spacing:304.301754pt;}
.ls5{letter-spacing:304.466286pt;}
.ls2{letter-spacing:485.873247pt;}
.ls1{letter-spacing:492.145007pt;}
.ws6{word-spacing:-523.503807pt;}
.wse{word-spacing:-517.232047pt;}
.ws35{word-spacing:-350.380154pt;}
.ws24{word-spacing:-58.926818pt;}
.ws14{word-spacing:-58.877600pt;}
.ws26{word-spacing:-46.078400pt;}
.ws38{word-spacing:-33.278720pt;}
.ws2{word-spacing:-31.358800pt;}
.ws0{word-spacing:-7.862094pt;}
.ws1{word-spacing:0.000000pt;}
.ws36{word-spacing:25.066650pt;}
.ws3e{word-spacing:32.070566pt;}
.ws33{word-spacing:76.397987pt;}
.ws2d{word-spacing:90.175429pt;}
.ws2e{word-spacing:90.636213pt;}
.ws3a{word-spacing:93.723466pt;}
.ws22{word-spacing:100.562941pt;}
.ws2f{word-spacing:100.589147pt;}
.ws34{word-spacing:100.747682pt;}
.ws2c{word-spacing:110.449925pt;}
.ws1e{word-spacing:133.240009pt;}
.ws31{word-spacing:135.286182pt;}
.ws3d{word-spacing:138.834219pt;}
.ws1b{word-spacing:150.550023pt;}
.ws28{word-spacing:161.136165pt;}
.ws3c{word-spacing:162.841066pt;}
.ws30{word-spacing:174.314587pt;}
.ws2b{word-spacing:174.959685pt;}
.ws20{word-spacing:175.808514pt;}
.ws23{word-spacing:195.355877pt;}
.ws3b{word-spacing:210.301818pt;}
.ws39{word-spacing:221.821418pt;}
.ws1f{word-spacing:228.032945pt;}
.ws32{word-spacing:239.884150pt;}
.wsd{word-spacing:239.957538pt;}
.ws37{word-spacing:258.223354pt;}
.ws21{word-spacing:310.049442pt;}
.ws5{word-spacing:310.483479pt;}
.ws11{word-spacing:311.204731pt;}
.wsf{word-spacing:312.772671pt;}
.ws19{word-spacing:326.829558pt;}
.ws3{word-spacing:332.591433pt;}
.ws9{word-spacing:352.284759pt;}
.wsa{word-spacing:364.295180pt;}
.ws2a{word-spacing:371.069355pt;}
.ws10{word-spacing:371.194116pt;}
.ws4{word-spacing:399.009371pt;}
.ws12{word-spacing:406.535483pt;}
.ws8{word-spacing:414.688771pt;}
.ws7{word-spacing:415.002359pt;}
.ws1a{word-spacing:421.622494pt;}
.wsb{word-spacing:422.528471pt;}
.ws13{word-spacing:454.514447pt;}
.ws1c{word-spacing:455.594869pt;}
.wsc{word-spacing:460.786207pt;}
.ws17{word-spacing:476.496417pt;}
.ws29{word-spacing:494.329075pt;}
.ws15{word-spacing:511.587466pt;}
.ws1d{word-spacing:550.387805pt;}
.ws16{word-spacing:635.760325pt;}
.ws18{word-spacing:645.004108pt;}
.ws25{word-spacing:1470.409182pt;}
.ws27{word-spacing:2548.037350pt;}
._c{margin-left:-492.145007pt;}
._20{margin-left:-485.873247pt;}
._39{margin-left:-304.043471pt;}
._0{margin-left:-0.963862pt;}
._1{width:0.950363pt;}
._d{width:1.881528pt;}
._1f{width:3.135880pt;}
._17{width:47.257834pt;}
._1a{width:88.938980pt;}
._3c{width:107.352232pt;}
._3b{width:133.349270pt;}
._3a{width:134.455691pt;}
._35{width:146.252842pt;}
._38{width:196.455806pt;}
._45{width:199.987276pt;}
._44{width:217.402571pt;}
._43{width:233.100014pt;}
._16{width:269.497527pt;}
._2d{width:288.174314pt;}
._1b{width:290.576064pt;}
._19{width:291.762275pt;}
._31{width:300.132563pt;}
._40{width:304.301754pt;}
._1e{width:311.596839pt;}
._37{width:336.079298pt;}
._34{width:338.748782pt;}
._9{width:346.201519pt;}
._27{width:348.498797pt;}
._14{width:356.682831pt;}
._26{width:371.115429pt;}
._32{width:374.117373pt;}
._15{width:376.308417pt;}
._5{width:377.457546pt;}
._36{width:379.038579pt;}
._1c{width:383.636945pt;}
._24{width:384.763534pt;}
._25{width:386.715007pt;}
._4{width:399.940458pt;}
._1d{width:401.831663pt;}
._2c{width:406.959213pt;}
._22{width:415.002359pt;}
._21{width:417.824651pt;}
._2{width:421.023126pt;}
._13{width:424.409999pt;}
._3f{width:425.948730pt;}
._b{width:433.336355pt;}
._12{width:437.894283pt;}
._3{width:438.897765pt;}
._2f{width:443.268092pt;}
._8{width:450.750779pt;}
._a{width:452.243874pt;}
._7{width:454.753750pt;}
._23{width:457.300358pt;}
._18{width:458.728041pt;}
._f{width:462.011091pt;}
._e{width:469.253083pt;}
._6{width:471.134611pt;}
._10{width:473.697756pt;}
._11{width:485.873247pt;}
._2b{width:489.009127pt;}
._29{width:492.145007pt;}
._42{width:495.066330pt;}
._41{width:519.027098pt;}
._3e{width:530.546698pt;}
._30{width:547.791359pt;}
._3d{width:554.046682pt;}
._28{width:994.132145pt;}
._2a{width:1492.490727pt;}
._2e{width:1721.304997pt;}
._33{width:1894.692800pt;}
.fs0{font-size:28.798880pt;}
.fs1{font-size:31.358800pt;}
.fs4{font-size:33.278720pt;}
.fs3{font-size:46.078400pt;}
.fs2{font-size:58.877600pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:1.439995pt;}
.y2d{bottom:1.440002pt;}
.y39{bottom:1.440003pt;}
.y34{bottom:1.599976pt;}
.y8{bottom:1.599991pt;}
.y5{bottom:1.599998pt;}
.y2{bottom:1.599999pt;}
.ya{bottom:1.600006pt;}
.y31{bottom:1.600007pt;}
.y33{bottom:1.759979pt;}
.y23{bottom:1.759994pt;}
.y1e{bottom:1.759995pt;}
.y1a{bottom:1.760002pt;}
.y20{bottom:1.760009pt;}
.y25{bottom:1.760010pt;}
.ya4{bottom:2.079987pt;}
.ya0{bottom:2.240020pt;}
.y9d{bottom:2.240021pt;}
.y80{bottom:3.040001pt;}
.y88{bottom:3.040008pt;}
.y6c{bottom:216.640014pt;}
.y7d{bottom:217.280029pt;}
.y6b{bottom:242.400024pt;}
.y6e{bottom:243.040038pt;}
.y6a{bottom:268.160033pt;}
.y6d{bottom:268.799987pt;}
.y69{bottom:293.920013pt;}
.y75{bottom:294.559997pt;}
.y96{bottom:314.880004pt;}
.y68{bottom:319.680022pt;}
.y7c{bottom:320.320007pt;}
.y98{bottom:334.880004pt;}
.y95{bottom:335.040008pt;}
.y67{bottom:345.440002pt;}
.y7b{bottom:346.080016pt;}
.y97{bottom:355.040008pt;}
.y94{bottom:355.200011pt;}
.y66{bottom:371.200011pt;}
.y7a{bottom:371.839996pt;}
.y9a{bottom:375.200011pt;}
.y93{bottom:375.360015pt;}
.y99{bottom:395.360015pt;}
.y92{bottom:395.520019pt;}
.y65{bottom:396.960021pt;}
.y79{bottom:397.600005pt;}
.y9c{bottom:413.279998pt;}
.y9b{bottom:415.520019pt;}
.y91{bottom:415.680022pt;}
.y64{bottom:422.720000pt;}
.y78{bottom:423.360015pt;}
.y3e{bottom:424.800018pt;}
.y9f{bottom:433.440002pt;}
.y3d{bottom:435.040008pt;}
.y9e{bottom:435.680022pt;}
.y90{bottom:435.839996pt;}
.y58{bottom:436.480010pt;}
.y3c{bottom:445.279998pt;}
.y56{bottom:446.720000pt;}
.y63{bottom:448.480010pt;}
.y77{bottom:449.119994pt;}
.y3b{bottom:455.520019pt;}
.ya1{bottom:455.839996pt;}
.y8f{bottom:455.999999pt;}
.y57{bottom:456.960021pt;}
.y3a{bottom:465.760009pt;}
.y54{bottom:467.200011pt;}
.y62{bottom:474.240020pt;}
.y76{bottom:474.880004pt;}
.y38{bottom:475.999999pt;}
.y8e{bottom:476.160003pt;}
.y55{bottom:477.440002pt;}
.y37{bottom:486.240020pt;}
.y52{bottom:487.680022pt;}
.ya3{bottom:492.480010pt;}
.y8d{bottom:493.119994pt;}
.y36{bottom:496.480010pt;}
.y53{bottom:497.920013pt;}
.y61{bottom:499.999999pt;}
.y70{bottom:500.640014pt;}
.y16{bottom:503.360015pt;}
.y8c{bottom:506.559997pt;}
.y35{bottom:506.720000pt;}
.y50{bottom:508.160003pt;}
.ya5{bottom:509.440002pt;}
.ya2{bottom:509.600005pt;}
.y32{bottom:516.960021pt;}
.y51{bottom:518.400024pt;}
.y15{bottom:524.160003pt;}
.ya6{bottom:524.800018pt;}
.y8b{bottom:524.960021pt;}
.y60{bottom:525.760009pt;}
.y6f{bottom:526.400024pt;}
.y30{bottom:527.200011pt;}
.y4e{bottom:528.640014pt;}
.y14{bottom:534.559997pt;}
.y2f{bottom:537.440002pt;}
.y4f{bottom:538.880004pt;}
.ya7{bottom:544.960006pt;}
.y8a{bottom:545.120010pt;}
.y2e{bottom:547.680007pt;}
.y4c{bottom:549.120010pt;}
.y5f{bottom:551.520004pt;}
.y74{bottom:552.160003pt;}
.y13{bottom:555.360015pt;}
.y2c{bottom:557.920013pt;}
.ya8{bottom:565.120010pt;}
.y89{bottom:565.280013pt;}
.y12{bottom:565.760009pt;}
.y2b{bottom:568.160003pt;}
.y4d{bottom:569.600005pt;}
.y11{bottom:576.160003pt;}
.y5e{bottom:577.280013pt;}
.y73{bottom:577.920013pt;}
.y2a{bottom:578.400008pt;}
.y4a{bottom:579.840011pt;}
.ya9{bottom:585.280013pt;}
.y86{bottom:585.440002pt;}
.y10{bottom:586.560012pt;}
.y29{bottom:588.640014pt;}
.y4b{bottom:590.080016pt;}
.yf{bottom:596.960006pt;}
.y87{bottom:597.440002pt;}
.y28{bottom:598.880004pt;}
.y48{bottom:600.320007pt;}
.y5d{bottom:603.040008pt;}
.yaa{bottom:605.440002pt;}
.y85{bottom:605.600005pt;}
.ye{bottom:607.360015pt;}
.y27{bottom:609.120010pt;}
.y49{bottom:610.560012pt;}
.yd{bottom:617.760009pt;}
.y26{bottom:619.360015pt;}
.y46{bottom:620.800002pt;}
.yab{bottom:625.600005pt;}
.y84{bottom:625.760009pt;}
.yc{bottom:628.160003pt;}
.y5c{bottom:628.800002pt;}
.y7e{bottom:629.440002pt;}
.y24{bottom:629.600005pt;}
.y47{bottom:631.040008pt;}
.yb{bottom:638.560012pt;}
.y22{bottom:639.840011pt;}
.y44{bottom:641.280013pt;}
.yac{bottom:645.760009pt;}
.y83{bottom:645.920013pt;}
.y9{bottom:648.960006pt;}
.y21{bottom:650.080016pt;}
.y45{bottom:651.520004pt;}
.y5b{bottom:654.560012pt;}
.y72{bottom:655.200011pt;}
.y7{bottom:659.360015pt;}
.y1f{bottom:660.320007pt;}
.y42{bottom:661.760009pt;}
.yae{bottom:665.920013pt;}
.y82{bottom:666.080009pt;}
.y6{bottom:669.760009pt;}
.y1d{bottom:670.560012pt;}
.y43{bottom:672.000007pt;}
.y4{bottom:680.160011pt;}
.y5a{bottom:680.320007pt;}
.y1c{bottom:680.800010pt;}
.y71{bottom:680.960006pt;}
.y40{bottom:682.240012pt;}
.yad{bottom:686.080009pt;}
.y81{bottom:686.240012pt;}
.y3{bottom:690.560012pt;}
.y1b{bottom:691.040008pt;}
.y41{bottom:692.480010pt;}
.y19{bottom:701.280006pt;}
.y3f{bottom:702.720008pt;}
.y59{bottom:702.880012pt;}
.y7f{bottom:703.360007pt;}
.y1{bottom:711.360007pt;}
.y17{bottom:711.520011pt;}
.h14{height:3.680008pt;}
.hc{height:8.959991pt;}
.hb{height:8.959992pt;}
.h7{height:8.959999pt;}
.ha{height:8.960006pt;}
.hd{height:8.960007pt;}
.he{height:8.960022pt;}
.h4{height:9.119995pt;}
.h2{height:9.120003pt;}
.h6{height:9.120010pt;}
.h1a{height:10.240020pt;}
.h18{height:10.240021pt;}
.h16{height:12.480011pt;}
.h1b{height:13.119995pt;}
.h11{height:13.599999pt;}
.h15{height:13.920013pt;}
.h3{height:21.317921pt;}
.h5{height:24.903719pt;}
.h9{height:31.190369pt;}
.h8{height:32.109084pt;}
.h19{height:33.099977pt;}
.h17{height:34.941287pt;}
.h13{height:45.830909pt;}
.h12{height:47.180862pt;}
.h10{height:58.561363pt;}
.hf{height:60.286293pt;}
.h0{height:793.760013pt;}
.h1{height:794.000000pt;}
.w39{width:1.759949pt;}
.w35{width:1.759979pt;}
.w36{width:1.759980pt;}
.w33{width:1.759994pt;}
.w34{width:1.759995pt;}
.w37{width:1.760009pt;}
.w38{width:1.760010pt;}
.w40{width:2.399964pt;}
.wa{width:3.839996pt;}
.w14{width:7.679992pt;}
.w15{width:7.679993pt;}
.w9{width:8.319992pt;}
.w10{width:9.279969pt;}
.wb{width:9.279998pt;}
.wf{width:9.279999pt;}
.w3{width:10.240005pt;}
.w5{width:12.639985pt;}
.wd{width:13.119995pt;}
.wc{width:13.119996pt;}
.w13{width:13.120010pt;}
.w4{width:13.279998pt;}
.w6{width:13.599976pt;}
.w3f{width:15.360000pt;}
.w1e{width:15.520004pt;}
.w17{width:16.319992pt;}
.w54{width:16.959991pt;}
.w62{width:19.840027pt;}
.w4b{width:20.479995pt;}
.w25{width:20.799996pt;}
.w7{width:21.599976pt;}
.w57{width:23.039993pt;}
.w12{width:23.360001pt;}
.w47{width:24.000000pt;}
.w3d{width:26.079956pt;}
.w3c{width:26.239998pt;}
.w21{width:26.720001pt;}
.w29{width:27.199997pt;}
.w4e{width:27.519989pt;}
.w8{width:28.320000pt;}
.w61{width:28.320007pt;}
.w1b{width:29.439942pt;}
.w19{width:29.439972pt;}
.w18{width:29.440002pt;}
.w1a{width:29.440003pt;}
.w3b{width:30.079956pt;}
.w41{width:30.080002pt;}
.w42{width:31.679992pt;}
.w5e{width:32.320007pt;}
.w44{width:32.479995pt;}
.w60{width:35.360001pt;}
.w30{width:36.640000pt;}
.w32{width:36.800004pt;}
.w4f{width:41.599999pt;}
.w22{width:42.559998pt;}
.w5c{width:44.159996pt;}
.w52{width:44.960000pt;}
.w3e{width:46.720002pt;}
.we{width:49.439995pt;}
.w43{width:51.200005pt;}
.w3a{width:53.120003pt;}
.w2c{width:53.120010pt;}
.w20{width:53.439995pt;}
.w4d{width:54.080002pt;}
.w50{width:57.120003pt;}
.w2a{width:57.440018pt;}
.w48{width:58.560006pt;}
.w45{width:62.400002pt;}
.w58{width:64.960000pt;}
.w4c{width:66.879998pt;}
.w1f{width:67.520005pt;}
.w64{width:67.839996pt;}
.w11{width:69.599991pt;}
.w46{width:71.040001pt;}
.w59{width:74.079995pt;}
.w63{width:76.959991pt;}
.w1d{width:78.399994pt;}
.w4a{width:79.360009pt;}
.w23{width:82.880005pt;}
.w55{width:83.519997pt;}
.w53{width:86.720009pt;}
.w5b{width:88.640007pt;}
.w24{width:90.720002pt;}
.w16{width:91.039994pt;}
.w56{width:91.200005pt;}
.w49{width:95.200005pt;}
.w51{width:95.519997pt;}
.w1c{width:95.520005pt;}
.w5a{width:101.120003pt;}
.w2f{width:103.199951pt;}
.w2e{width:103.199952pt;}
.w2d{width:103.199982pt;}
.w2{width:108.159997pt;}
.w5f{width:140.319992pt;}
.w28{width:170.720002pt;}
.w2b{width:182.239960pt;}
.w26{width:206.400009pt;}
.w31{width:282.079987pt;}
.w27{width:307.679963pt;}
.w5d{width:895.840019pt;}
.w0{width:1122.560053pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:69.599998pt;}
.x52{left:114.239998pt;}
.xc{left:184.160004pt;}
.x7{left:190.720001pt;}
.x2{left:223.199997pt;}
.x54{left:250.240005pt;}
.xd{left:255.039993pt;}
.x1a{left:267.200012pt;}
.x1c{left:281.920013pt;}
.x1b{left:285.600006pt;}
.xe{left:317.760010pt;}
.x53{left:324.799988pt;}
.x1e{left:334.720001pt;}
.x1d{left:348.000000pt;}
.x57{left:364.160004pt;}
.xf{left:380.480011pt;}
.x55{left:403.519989pt;}
.x23{left:407.679993pt;}
.x24{left:435.519989pt;}
.x58{left:442.399994pt;}
.x8{left:443.519989pt;}
.x3{left:450.559998pt;}
.x2f{left:467.519989pt;}
.x9{left:478.880005pt;}
.x4{left:485.920013pt;}
.x20{left:486.880005pt;}
.x1f{left:492.480011pt;}
.x10{left:505.920013pt;}
.x21{left:509.440002pt;}
.x28{left:518.239990pt;}
.x3d{left:520.000000pt;}
.x59{left:521.599976pt;}
.x3e{left:522.559998pt;}
.x2e{left:524.159973pt;}
.x27{left:528.159973pt;}
.x22{left:532.000000pt;}
.x2d{left:533.760010pt;}
.x2a{left:537.440002pt;}
.x29{left:539.359985pt;}
.x5a{left:552.000000pt;}
.x11{left:568.640015pt;}
.x39{left:584.320007pt;}
.x30{left:588.000000pt;}
.x2c{left:623.039978pt;}
.x49{left:629.599976pt;}
.x12{left:631.359985pt;}
.x2b{left:633.119995pt;}
.x37{left:634.880005pt;}
.x4a{left:636.799988pt;}
.x3c{left:638.559998pt;}
.x25{left:640.479980pt;}
.x38{left:644.159973pt;}
.x3a{left:665.440002pt;}
.x56{left:679.039978pt;}
.x3b{left:685.440002pt;}
.x13{left:694.080017pt;}
.x31{left:719.840027pt;}
.x46{left:724.159973pt;}
.x33{left:732.159973pt;}
.x36{left:734.239990pt;}
.x48{left:736.000000pt;}
.x32{left:736.960022pt;}
.x35{left:739.679993pt;}
.x47{left:741.599976pt;}
.x34{left:745.280029pt;}
.x14{left:756.799988pt;}
.x26{left:760.640015pt;}
.x4b{left:795.840027pt;}
.xa{left:811.520020pt;}
.x15{left:819.520020pt;}
.x40{left:820.960022pt;}
.x5{left:822.400024pt;}
.x4d{left:825.280029pt;}
.x41{left:830.080017pt;}
.x42{left:833.280029pt;}
.x45{left:835.359985pt;}
.x4f{left:837.119995pt;}
.x44{left:840.799988pt;}
.x4e{left:842.719971pt;}
.x43{left:846.400024pt;}
.x3f{left:864.799988pt;}
.x16{left:882.239990pt;}
.x51{left:889.599976pt;}
.x50{left:896.960022pt;}
.x4c{left:923.039978pt;}
.xb{left:926.400024pt;}
.x6{left:937.280029pt;}
.x17{left:944.960022pt;}
.x19{left:978.400024pt;}
.x18{left:1007.679993pt;}
}




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