
    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_79cf0f53fdd9015fef53154d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.927734;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_930788bd721ef6c8c6fb659a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_95ff1d0158165c86f4d79a1f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_51a284fe8c08e8d7578171d4.woff')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_2bce7aab34ca2f3ffed218c3.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_aea3c68b4696bb7d7eb16784.woff')format("woff");}.ff6{font-family:ff6;line-height:0.933594;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_005a83bc5cbc3bb56e59d872.woff')format("woff");}.ff7{font-family:ff7;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);}
.v2{vertical-align:-15.119937px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120005px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.019014px;}
.ls6{letter-spacing:0.019145px;}
.ls5{letter-spacing:0.019149px;}
.ls1{letter-spacing:0.031321px;}
.ls7{letter-spacing:0.044822px;}
.lsb{letter-spacing:0.049682px;}
.ls3{letter-spacing:0.054002px;}
.ls0{letter-spacing:0.261140px;}
.ls8{letter-spacing:0.287555px;}
.ls9{letter-spacing:0.287690px;}
.ls4{letter-spacing:19.439288px;}
.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:-66.242700px;}
.ws3{word-spacing:-16.560675px;}
.ws6{word-spacing:-16.272611px;}
.ws9{word-spacing:-14.970850px;}
.ws8{word-spacing:-14.940563px;}
.ws4{word-spacing:-13.500563px;}
.ws2{word-spacing:-10.471726px;}
.ws0{word-spacing:-10.440405px;}
.ws7{word-spacing:-9.720371px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-6.218152px;}
._16{margin-left:-4.965813px;}
._15{margin-left:-3.918317px;}
._2{margin-left:-2.733195px;}
._1{margin-left:-1.196173px;}
._0{width:1.844197px;}
._13{width:2.913596px;}
._5{width:3.958519px;}
._8{width:5.183491px;}
._a{width:6.573636px;}
._d{width:7.968431px;}
._c{width:9.026179px;}
._6{width:10.136686px;}
._7{width:11.378401px;}
._9{width:12.568776px;}
._3{width:14.396798px;}
._4{width:15.532176px;}
._28{width:16.856012px;}
._b{width:17.935294px;}
._e{width:19.807085px;}
._14{width:21.709999px;}
._1f{width:22.736504px;}
._1e{width:24.024425px;}
._2a{width:25.709094px;}
._1d{width:26.736835px;}
._1c{width:28.355680px;}
._1a{width:29.684590px;}
._27{width:31.897868px;}
._25{width:34.794936px;}
._23{width:35.838594px;}
._24{width:37.009227px;}
._33{width:38.404982px;}
._22{width:39.791826px;}
._20{width:40.930866px;}
._21{width:42.004196px;}
._12{width:45.691420px;}
._11{width:47.263649px;}
._26{width:48.467885px;}
._29{width:63.999795px;}
._1b{width:66.440681px;}
._36{width:70.014729px;}
._35{width:71.579042px;}
._31{width:76.841791px;}
._32{width:78.050461px;}
._2e{width:86.065828px;}
._2c{width:91.686515px;}
._2b{width:93.005935px;}
._34{width:95.125035px;}
._2f{width:104.365633px;}
._30{width:105.987003px;}
._2d{width:120.501436px;}
._38{width:136.342130px;}
._37{width:137.469904px;}
._3a{width:251.920124px;}
._39{width:253.457339px;}
._f{width:290.781705px;}
._19{width:309.747900px;}
._18{width:311.429057px;}
._10{width:524.114933px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.881485px;}
.fs5{font-size:41.761620px;}
.fs6{font-size:54.002250px;}
.fs2{font-size:59.762250px;}
.fs4{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs3{font-size:77.763154px;}
.fs0{font-size:95.763600px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.599979px;}
.y8{bottom:257.400055px;}
.y7{bottom:278.460091px;}
.y33{bottom:295.200096px;}
.y32{bottom:311.400055px;}
.y6{bottom:311.580093px;}
.y5{bottom:328.500068px;}
.y5c{bottom:329.400055px;}
.y6c{bottom:346.320099px;}
.y5b{bottom:350.100083px;}
.y5a{bottom:363.240074px;}
.y106{bottom:366.480079px;}
.y92{bottom:367.020058px;}
.y30{bottom:372.960091px;}
.y91{bottom:379.980079px;}
.y6b{bottom:383.760064px;}
.y11d{bottom:384.480079px;}
.y105{bottom:385.020058px;}
.y6a{bottom:396.900055px;}
.y59{bottom:399.960091px;}
.y2f{bottom:400.500068px;}
.y90{bottom:400.680039px;}
.y11c{bottom:403.020058px;}
.y69{bottom:413.820099px;}
.yb5{bottom:417.600083px;}
.y58{bottom:418.500068px;}
.y2e{bottom:419.040047px;}
.y104{bottom:421.560036px;}
.ye1{bottom:423.720085px;}
.yb4{bottom:430.740074px;}
.y68{bottom:434.520058px;}
.y57{bottom:437.040047px;}
.y2d{bottom:437.580093px;}
.y103{bottom:440.100083px;}
.y8f{bottom:442.260064px;}
.y67{bottom:447.480079px;}
.y56{bottom:455.760064px;}
.y2c{bottom:456.300041px;}
.y129{bottom:457.380066px;}
.y102{bottom:458.640060px;}
.y8e{bottom:460.800041px;}
.ycb{bottom:464.400055px;}
.yc6{bottom:465.480079px;}
.y66{bottom:468.180039px;}
.yb3{bottom:469.080093px;}
.y55{bottom:474.300041px;}
.y2b{bottom:474.840088px;}
.y11b{bottom:476.820099px;}
.y8d{bottom:479.340088px;}
.y65{bottom:481.320099px;}
.yc5{bottom:486.180039px;}
.yb2{bottom:487.620072px;}
.y54{bottom:492.840088px;}
.y2a{bottom:493.380066px;}
.y101{bottom:495.360077px;}
.y8c{bottom:497.880066px;}
.y64{bottom:498.240074px;}
.yc4{bottom:499.320099px;}
.yb1{bottom:506.160049px;}
.y53{bottom:511.380066px;}
.y29{bottom:511.920043px;}
.y100{bottom:513.900055px;}
.y8b{bottom:516.420043px;}
.y63{bottom:518.760064px;}
.yc3{bottom:520.020058px;}
.yb0{bottom:524.880066px;}
.yca{bottom:528.120072px;}
.y52{bottom:529.920043px;}
.y28{bottom:530.460091px;}
.y62{bottom:531.900055px;}
.yff{bottom:532.440033px;}
.yc2{bottom:532.980079px;}
.y8a{bottom:534.960091px;}
.yaf{bottom:543.420043px;}
.yc9{bottom:546.660049px;}
.y27{bottom:549.000068px;}
.y11a{bottom:550.440033px;}
.y89{bottom:553.500068px;}
.y51{bottom:558.900055px;}
.yae{bottom:561.960091px;}
.yc1{bottom:563.760064px;}
.yc8{bottom:565.380066px;}
.y26{bottom:567.540047px;}
.yfe{bottom:568.980079px;}
.y88{bottom:572.220085px;}
.y50{bottom:579.240074px;}
.yad{bottom:580.500068px;}
.yc0{bottom:582.300041px;}
.yc7{bottom:584.100083px;}
.y61{bottom:585.360077px;}
.y25{bottom:586.080093px;}
.yfd{bottom:587.520058px;}
.y87{bottom:590.760064px;}
.yac{bottom:599.040047px;}
.ybf{bottom:600.840088px;}
.y60{bottom:604.080093px;}
.y24{bottom:604.800041px;}
.y119{bottom:606.060036px;}
.yfc{bottom:608.220085px;}
.y86{bottom:609.300041px;}
.yab{bottom:617.580093px;}
.ybe{bottom:619.380066px;}
.y4f{bottom:620.100083px;}
.y5f{bottom:622.620072px;}
.y23{bottom:623.340088px;}
.y85{bottom:627.840088px;}
.yfb{bottom:629.460091px;}
.yaa{bottom:636.120072px;}
.ybd{bottom:637.920043px;}
.y4e{bottom:638.640060px;}
.y5e{bottom:641.160049px;}
.y22{bottom:641.880066px;}
.y118{bottom:642.600083px;}
.y84{bottom:646.380066px;}
.yfa{bottom:648.000068px;}
.ya9{bottom:654.660049px;}
.ybc{bottom:656.460091px;}
.y5d{bottom:659.700096px;}
.y21{bottom:660.420043px;}
.y117{bottom:661.320099px;}
.y83{bottom:664.920043px;}
.yf9{bottom:666.540047px;}
.ya8{bottom:673.380066px;}
.ybb{bottom:675.000068px;}
.y4d{bottom:678.240074px;}
.y20{bottom:678.960091px;}
.y116{bottom:679.860077px;}
.y82{bottom:683.460091px;}
.yf8{bottom:685.080093px;}
.ya7{bottom:691.920078px;}
.yba{bottom:693.720051px;}
.y4c{bottom:696.780052px;}
.y1f{bottom:697.500068px;}
.y128{bottom:699.660049px;}
.ye0{bottom:702.000068px;}
.yf7{bottom:703.620072px;}
.ya6{bottom:710.460056px;}
.y81{bottom:711.360077px;}
.yb9{bottom:712.260064px;}
.y4b{bottom:715.320065px;}
.y1e{bottom:716.040081px;}
.y115{bottom:716.400055px;}
.ydf{bottom:720.720051px;}
.yf6{bottom:722.160049px;}
.ya5{bottom:729.000068px;}
.yb8{bottom:730.800076px;}
.y4a{bottom:733.860077px;}
.y1d{bottom:734.580059px;}
.y114{bottom:734.940067px;}
.y127{bottom:736.200061px;}
.yde{bottom:740.880066px;}
.yf5{bottom:744.300076px;}
.ya4{bottom:747.540081px;}
.y80{bottom:749.340054px;}
.y49{bottom:752.580059px;}
.y1c{bottom:753.300076px;}
.y113{bottom:753.480079px;}
.y126{bottom:754.740074px;}
.ydd{bottom:760.860077px;}
.ya3{bottom:766.080059px;}
.y7f{bottom:767.880066px;}
.y48{bottom:771.120072px;}
.y1b{bottom:771.840054px;}
.y112{bottom:772.020058px;}
.y125{bottom:773.280052px;}
.ydc{bottom:779.580059px;}
.yf4{bottom:782.100083px;}
.ya2{bottom:784.620072px;}
.y7e{bottom:786.420078px;}
.yb7{bottom:786.600083px;}
.y47{bottom:789.660049px;}
.y1a{bottom:790.380066px;}
.y111{bottom:790.560070px;}
.ydb{bottom:798.120072px;}
.yf3{bottom:800.640060px;}
.ya1{bottom:803.160049px;}
.y7d{bottom:804.960056px;}
.yb6{bottom:806.760064px;}
.y46{bottom:808.200061px;}
.y124{bottom:809.820065px;}
.y18{bottom:813.600083px;}
.yda{bottom:816.660049px;}
.yf2{bottom:819.180073px;}
.ya0{bottom:821.880066px;}
.y7c{bottom:823.500068px;}
.y45{bottom:826.740074px;}
.y110{bottom:827.100083px;}
.y123{bottom:828.360077px;}
.y17{bottom:833.040081px;}
.yd9{bottom:835.200061px;}
.yf1{bottom:837.720051px;}
.y9f{bottom:840.420078px;}
.y7b{bottom:842.220051px;}
.y44{bottom:845.280052px;}
.y10f{bottom:845.820065px;}
.y122{bottom:847.080059px;}
.y16{bottom:851.580059px;}
.yd8{bottom:853.740074px;}
.yf0{bottom:856.260064px;}
.y9e{bottom:858.960056px;}
.y7a{bottom:860.760064px;}
.y43{bottom:863.820065px;}
.y10e{bottom:864.360077px;}
.y15{bottom:870.300076px;}
.yd7{bottom:872.280052px;}
.yef{bottom:874.980079px;}
.y9d{bottom:877.500068px;}
.y79{bottom:879.300076px;}
.y42{bottom:882.360077px;}
.y121{bottom:883.620072px;}
.y14{bottom:888.840054px;}
.yd6{bottom:890.820065px;}
.yee{bottom:893.520058px;}
.y9c{bottom:896.040081px;}
.y78{bottom:897.840054px;}
.y10d{bottom:900.900055px;}
.y41{bottom:901.080059px;}
.y120{bottom:902.160049px;}
.yd5{bottom:909.360077px;}
.y13{bottom:911.160049px;}
.yed{bottom:912.060070px;}
.y9b{bottom:914.580059px;}
.y77{bottom:916.380066px;}
.y10c{bottom:919.440067px;}
.y40{bottom:919.620072px;}
.y11f{bottom:920.700061px;}
.yd4{bottom:928.080059px;}
.y12{bottom:929.700061px;}
.yec{bottom:930.600083px;}
.y9a{bottom:933.120072px;}
.y76{bottom:934.920078px;}
.y3f{bottom:938.160049px;}
.y10b{bottom:939.240074px;}
.y11{bottom:944.460056px;}
.yd3{bottom:946.620072px;}
.y99{bottom:951.660049px;}
.yeb{bottom:952.560070px;}
.y75{bottom:953.460056px;}
.y3e{bottom:956.700061px;}
.y10a{bottom:957.780053px;}
.yd2{bottom:965.160049px;}
.y10{bottom:966.780053px;}
.y98{bottom:970.380066px;}
.y74{bottom:972.000068px;}
.y3d{bottom:975.240074px;}
.yf{bottom:981.540064px;}
.yd1{bottom:983.700061px;}
.y97{bottom:989.280069px;}
.yea{bottom:990.360060px;}
.y73{bottom:990.720068px;}
.y3c{bottom:993.780069px;}
.y109{bottom:994.320065px;}
.ye{bottom:1001.340070px;}
.yd0{bottom:1002.240074px;}
.ye9{bottom:1009.080059px;}
.y72{bottom:1009.260064px;}
.y96{bottom:1009.440067px;}
.y3b{bottom:1012.320065px;}
.y108{bottom:1012.860060px;}
.yd{bottom:1020.240074px;}
.ycf{bottom:1020.780069px;}
.ye8{bottom:1027.620072px;}
.y71{bottom:1027.800058px;}
.y95{bottom:1029.420061px;}
.y3a{bottom:1030.860060px;}
.y107{bottom:1031.580059px;}
.yce{bottom:1039.320065px;}
.yc{bottom:1041.120072px;}
.ye7{bottom:1046.160067px;}
.y70{bottom:1046.340070px;}
.y94{bottom:1047.960074px;}
.y39{bottom:1049.580059px;}
.y11e{bottom:1050.120072px;}
.ycd{bottom:1057.860060px;}
.yb{bottom:1063.080059px;}
.ye6{bottom:1064.700061px;}
.y6f{bottom:1064.880066px;}
.y93{bottom:1066.680073px;}
.y38{bottom:1068.120072px;}
.ye5{bottom:1083.240074px;}
.y6e{bottom:1083.600065px;}
.ya{bottom:1085.040064px;}
.ycc{bottom:1085.760064px;}
.y37{bottom:1086.660067px;}
.ye4{bottom:1101.780069px;}
.y6d{bottom:1103.760064px;}
.y36{bottom:1105.200061px;}
.y9{bottom:1106.460074px;}
.ye3{bottom:1120.680064px;}
.y35{bottom:1123.740066px;}
.y4{bottom:1126.620063px;}
.ye2{bottom:1141.020066px;}
.y34{bottom:1142.280069px;}
.y3{bottom:1146.960065px;}
.y2{bottom:1167.120063px;}
.y1{bottom:1189.080068px;}
.y31{bottom:1192.680064px;}
.he{height:15.119969px;}
.h11{height:27.072753px;}
.hd{height:29.078159px;}
.hb{height:31.004130px;}
.hf{height:36.572813px;}
.h10{height:41.495078px;}
.h5{height:41.611801px;}
.h13{height:43.508552px;}
.h9{height:44.862610px;}
.hc{height:46.124067px;}
.ha{height:48.226497px;}
.h7{height:48.763550px;}
.h4{height:49.994065px;}
.h3{height:50.134696px;}
.h8{height:52.664793px;}
.h2{height:64.855524px;}
.h12{height:65.886904px;}
.h6{height:71.615971px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wc{width:3.779983px;}
.w5{width:3.780001px;}
.wb{width:3.780017px;}
.w12{width:3.780018px;}
.w16{width:3.780052px;}
.w3{width:6.299990px;}
.w6{width:6.300007px;}
.wa{width:6.479976px;}
.w10{width:6.480010px;}
.w4{width:6.480011px;}
.we{width:9.179971px;}
.w8{width:9.180003px;}
.w13{width:9.180004px;}
.w18{width:9.180039px;}
.w11{width:12.780017px;}
.w15{width:12.780052px;}
.w17{width:25.019989px;}
.wd{width:25.020022px;}
.w7{width:25.199993px;}
.w9{width:39.960022px;}
.w2{width:43.560001px;}
.wf{width:46.979978px;}
.w14{width:80.820030px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:114.659998px;}
.x2{left:178.560001px;}
.xf{left:187.740006px;}
.x6{left:190.979994px;}
.x9{left:193.680005px;}
.x4{left:197.819996px;}
.x2e{left:204.120002px;}
.x31{left:210.419992px;}
.x10{left:231.300007px;}
.x30{left:232.560001px;}
.x11{left:237.599997px;}
.x12{left:243.900003px;}
.x13{left:247.500000px;}
.x7{left:253.439999px;}
.x14{left:260.099997px;}
.x15{left:263.699993px;}
.xe{left:287.639992px;}
.x16{left:288.899987px;}
.xb{left:307.980011px;}
.x17{left:318.779983px;}
.xa{left:322.199993px;}
.xc{left:345.600014px;}
.x1{left:348.660015px;}
.xd{left:351.899987px;}
.x18{left:358.740006px;}
.x19{left:365.040012px;}
.x1a{left:371.339985px;}
.x1b{left:374.939999px;}
.x1c{left:381.240006px;}
.x1d{left:387.540012px;}
.x1e{left:391.139992px;}
.x2f{left:394.560001px;}
.x1f{left:416.160015px;}
.x20{left:447.660015px;}
.x8{left:457.019989px;}
.x21{left:494.639992px;}
.x22{left:500.939999px;}
.x23{left:507.240006px;}
.x24{left:510.839985px;}
.x5{left:522.180005px;}
.x25{left:523.439999px;}
.x26{left:527.040012px;}
.x27{left:552.240006px;}
.x28{left:598.139992px;}
.x29{left:678.960023px;}
.x2a{left:682.559967px;}
.x2b{left:695.159981px;}
.x2c{left:698.759994px;}
.x2d{left:723.779983px;}
@media print{
.v2{vertical-align:-13.439944pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440004pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016902pt;}
.ls6{letter-spacing:0.017018pt;}
.ls5{letter-spacing:0.017022pt;}
.ls1{letter-spacing:0.027841pt;}
.ls7{letter-spacing:0.039841pt;}
.lsb{letter-spacing:0.044162pt;}
.ls3{letter-spacing:0.048002pt;}
.ls0{letter-spacing:0.232125pt;}
.ls8{letter-spacing:0.255604pt;}
.ls9{letter-spacing:0.255724pt;}
.ls4{letter-spacing:17.279367pt;}
.ws1{word-spacing:-58.882400pt;}
.ws3{word-spacing:-14.720600pt;}
.ws6{word-spacing:-14.464543pt;}
.ws9{word-spacing:-13.307422pt;}
.ws8{word-spacing:-13.280500pt;}
.ws4{word-spacing:-12.000500pt;}
.ws2{word-spacing:-9.308201pt;}
.ws0{word-spacing:-9.280360pt;}
.ws7{word-spacing:-8.640330pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-5.527247pt;}
._16{margin-left:-4.414056pt;}
._15{margin-left:-3.482949pt;}
._2{margin-left:-2.429507pt;}
._1{margin-left:-1.063265pt;}
._0{width:1.639287pt;}
._13{width:2.589863pt;}
._5{width:3.518683pt;}
._8{width:4.607548pt;}
._a{width:5.843232pt;}
._d{width:7.083050pt;}
._c{width:8.023271pt;}
._6{width:9.010387pt;}
._7{width:10.114134pt;}
._9{width:11.172245pt;}
._3{width:12.797154pt;}
._4{width:13.806379pt;}
._28{width:14.983122pt;}
._b{width:15.942483pt;}
._e{width:17.606298pt;}
._14{width:19.297777pt;}
._1f{width:20.210226pt;}
._1e{width:21.355044pt;}
._2a{width:22.852528pt;}
._1d{width:23.766075pt;}
._1c{width:25.205049pt;}
._1a{width:26.386302pt;}
._27{width:28.353660pt;}
._25{width:30.928832pt;}
._23{width:31.856528pt;}
._24{width:32.897091pt;}
._33{width:34.137761pt;}
._22{width:35.370512pt;}
._20{width:36.382992pt;}
._21{width:37.337063pt;}
._12{width:40.614595pt;}
._11{width:42.012132pt;}
._26{width:43.082564pt;}
._29{width:56.888707pt;}
._1b{width:59.058383pt;}
._36{width:62.235315pt;}
._35{width:63.625815pt;}
._31{width:68.303814pt;}
._32{width:69.378188pt;}
._2e{width:76.502958pt;}
._2c{width:81.499124pt;}
._2b{width:82.671942pt;}
._34{width:84.555586pt;}
._2f{width:92.769451pt;}
._30{width:94.210670pt;}
._2d{width:107.112388pt;}
._38{width:121.193005pt;}
._37{width:122.195471pt;}
._3a{width:223.928999pt;}
._39{width:225.295413pt;}
._f{width:258.472627pt;}
._19{width:275.331467pt;}
._18{width:276.825828pt;}
._10{width:465.879940pt;}
.fs7{font-size:34.561320pt;}
.fs5{font-size:37.121440pt;}
.fs6{font-size:48.002000pt;}
.fs2{font-size:53.122000pt;}
.fs4{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs3{font-size:69.122804pt;}
.fs0{font-size:85.123200pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:3.199981pt;}
.y8{bottom:228.800049pt;}
.y7{bottom:247.520081pt;}
.y33{bottom:262.400086pt;}
.y32{bottom:276.800049pt;}
.y6{bottom:276.960083pt;}
.y5{bottom:292.000061pt;}
.y5c{bottom:292.800049pt;}
.y6c{bottom:307.840088pt;}
.y5b{bottom:311.200074pt;}
.y5a{bottom:322.880066pt;}
.y106{bottom:325.760071pt;}
.y92{bottom:326.240052pt;}
.y30{bottom:331.520081pt;}
.y91{bottom:337.760071pt;}
.y6b{bottom:341.120057pt;}
.y11d{bottom:341.760071pt;}
.y105{bottom:342.240052pt;}
.y6a{bottom:352.800049pt;}
.y59{bottom:355.520081pt;}
.y2f{bottom:356.000061pt;}
.y90{bottom:356.160035pt;}
.y11c{bottom:358.240052pt;}
.y69{bottom:367.840088pt;}
.yb5{bottom:371.200074pt;}
.y58{bottom:372.000061pt;}
.y2e{bottom:372.480042pt;}
.y104{bottom:374.720032pt;}
.ye1{bottom:376.640076pt;}
.yb4{bottom:382.880066pt;}
.y68{bottom:386.240052pt;}
.y57{bottom:388.480042pt;}
.y2d{bottom:388.960083pt;}
.y103{bottom:391.200074pt;}
.y8f{bottom:393.120057pt;}
.y67{bottom:397.760071pt;}
.y56{bottom:405.120057pt;}
.y2c{bottom:405.600037pt;}
.y129{bottom:406.560059pt;}
.y102{bottom:407.680054pt;}
.y8e{bottom:409.600037pt;}
.ycb{bottom:412.800049pt;}
.yc6{bottom:413.760071pt;}
.y66{bottom:416.160035pt;}
.yb3{bottom:416.960083pt;}
.y55{bottom:421.600037pt;}
.y2b{bottom:422.080079pt;}
.y11b{bottom:423.840088pt;}
.y8d{bottom:426.080079pt;}
.y65{bottom:427.840088pt;}
.yc5{bottom:432.160035pt;}
.yb2{bottom:433.440064pt;}
.y54{bottom:438.080079pt;}
.y2a{bottom:438.560059pt;}
.y101{bottom:440.320069pt;}
.y8c{bottom:442.560059pt;}
.y64{bottom:442.880066pt;}
.yc4{bottom:443.840088pt;}
.yb1{bottom:449.920044pt;}
.y53{bottom:454.560059pt;}
.y29{bottom:455.040039pt;}
.y100{bottom:456.800049pt;}
.y8b{bottom:459.040039pt;}
.y63{bottom:461.120057pt;}
.yc3{bottom:462.240052pt;}
.yb0{bottom:466.560059pt;}
.yca{bottom:469.440064pt;}
.y52{bottom:471.040039pt;}
.y28{bottom:471.520081pt;}
.y62{bottom:472.800049pt;}
.yff{bottom:473.280030pt;}
.yc2{bottom:473.760071pt;}
.y8a{bottom:475.520081pt;}
.yaf{bottom:483.040039pt;}
.yc9{bottom:485.920044pt;}
.y27{bottom:488.000061pt;}
.y11a{bottom:489.280030pt;}
.y89{bottom:492.000061pt;}
.y51{bottom:496.800049pt;}
.yae{bottom:499.520081pt;}
.yc1{bottom:501.120057pt;}
.yc8{bottom:502.560059pt;}
.y26{bottom:504.480042pt;}
.yfe{bottom:505.760071pt;}
.y88{bottom:508.640076pt;}
.y50{bottom:514.880066pt;}
.yad{bottom:516.000061pt;}
.yc0{bottom:517.600037pt;}
.yc7{bottom:519.200074pt;}
.y61{bottom:520.320069pt;}
.y25{bottom:520.960083pt;}
.yfd{bottom:522.240052pt;}
.y87{bottom:525.120057pt;}
.yac{bottom:532.480042pt;}
.ybf{bottom:534.080079pt;}
.y60{bottom:536.960083pt;}
.y24{bottom:537.600037pt;}
.y119{bottom:538.720032pt;}
.yfc{bottom:540.640076pt;}
.y86{bottom:541.600037pt;}
.yab{bottom:548.960083pt;}
.ybe{bottom:550.560059pt;}
.y4f{bottom:551.200074pt;}
.y5f{bottom:553.440064pt;}
.y23{bottom:554.080079pt;}
.y85{bottom:558.080079pt;}
.yfb{bottom:559.520081pt;}
.yaa{bottom:565.440064pt;}
.ybd{bottom:567.040039pt;}
.y4e{bottom:567.680054pt;}
.y5e{bottom:569.920044pt;}
.y22{bottom:570.560059pt;}
.y118{bottom:571.200074pt;}
.y84{bottom:574.560059pt;}
.yfa{bottom:576.000061pt;}
.ya9{bottom:581.920044pt;}
.ybc{bottom:583.520081pt;}
.y5d{bottom:586.400086pt;}
.y21{bottom:587.040039pt;}
.y117{bottom:587.840088pt;}
.y83{bottom:591.040039pt;}
.yf9{bottom:592.480042pt;}
.ya8{bottom:598.560059pt;}
.ybb{bottom:600.000061pt;}
.y4d{bottom:602.880066pt;}
.y20{bottom:603.520081pt;}
.y116{bottom:604.320069pt;}
.y82{bottom:607.520081pt;}
.yf8{bottom:608.960083pt;}
.ya7{bottom:615.040070pt;}
.yba{bottom:616.640046pt;}
.y4c{bottom:619.360047pt;}
.y1f{bottom:620.000061pt;}
.y128{bottom:621.920044pt;}
.ye0{bottom:624.000061pt;}
.yf7{bottom:625.440064pt;}
.ya6{bottom:631.520050pt;}
.y81{bottom:632.320069pt;}
.yb9{bottom:633.120057pt;}
.y4b{bottom:635.840058pt;}
.y1e{bottom:636.480072pt;}
.y115{bottom:636.800049pt;}
.ydf{bottom:640.640046pt;}
.yf6{bottom:641.920044pt;}
.ya5{bottom:648.000061pt;}
.yb8{bottom:649.600068pt;}
.y4a{bottom:652.320069pt;}
.y1d{bottom:652.960053pt;}
.y114{bottom:653.280060pt;}
.y127{bottom:654.400055pt;}
.yde{bottom:658.560059pt;}
.yf5{bottom:661.600068pt;}
.ya4{bottom:664.480072pt;}
.y80{bottom:666.080048pt;}
.y49{bottom:668.960053pt;}
.y1c{bottom:669.600068pt;}
.y113{bottom:669.760071pt;}
.y126{bottom:670.880066pt;}
.ydd{bottom:676.320069pt;}
.ya3{bottom:680.960053pt;}
.y7f{bottom:682.560059pt;}
.y48{bottom:685.440064pt;}
.y1b{bottom:686.080048pt;}
.y112{bottom:686.240052pt;}
.y125{bottom:687.360047pt;}
.ydc{bottom:692.960053pt;}
.yf4{bottom:695.200074pt;}
.ya2{bottom:697.440064pt;}
.y7e{bottom:699.040070pt;}
.yb7{bottom:699.200074pt;}
.y47{bottom:701.920044pt;}
.y1a{bottom:702.560059pt;}
.y111{bottom:702.720063pt;}
.ydb{bottom:709.440064pt;}
.yf3{bottom:711.680054pt;}
.ya1{bottom:713.920044pt;}
.y7d{bottom:715.520050pt;}
.yb6{bottom:717.120057pt;}
.y46{bottom:718.400055pt;}
.y124{bottom:719.840058pt;}
.y18{bottom:723.200074pt;}
.yda{bottom:725.920044pt;}
.yf2{bottom:728.160065pt;}
.ya0{bottom:730.560059pt;}
.y7c{bottom:732.000061pt;}
.y45{bottom:734.880066pt;}
.y110{bottom:735.200074pt;}
.y123{bottom:736.320069pt;}
.y17{bottom:740.480072pt;}
.yd9{bottom:742.400055pt;}
.yf1{bottom:744.640046pt;}
.y9f{bottom:747.040070pt;}
.y7b{bottom:748.640046pt;}
.y44{bottom:751.360047pt;}
.y10f{bottom:751.840058pt;}
.y122{bottom:752.960053pt;}
.y16{bottom:756.960053pt;}
.yd8{bottom:758.880066pt;}
.yf0{bottom:761.120057pt;}
.y9e{bottom:763.520050pt;}
.y7a{bottom:765.120057pt;}
.y43{bottom:767.840058pt;}
.y10e{bottom:768.320069pt;}
.y15{bottom:773.600068pt;}
.yd7{bottom:775.360047pt;}
.yef{bottom:777.760071pt;}
.y9d{bottom:780.000061pt;}
.y79{bottom:781.600068pt;}
.y42{bottom:784.320069pt;}
.y121{bottom:785.440064pt;}
.y14{bottom:790.080048pt;}
.yd6{bottom:791.840058pt;}
.yee{bottom:794.240052pt;}
.y9c{bottom:796.480072pt;}
.y78{bottom:798.080048pt;}
.y10d{bottom:800.800049pt;}
.y41{bottom:800.960053pt;}
.y120{bottom:801.920044pt;}
.yd5{bottom:808.320069pt;}
.y13{bottom:809.920044pt;}
.yed{bottom:810.720063pt;}
.y9b{bottom:812.960053pt;}
.y77{bottom:814.560059pt;}
.y10c{bottom:817.280060pt;}
.y40{bottom:817.440064pt;}
.y11f{bottom:818.400055pt;}
.yd4{bottom:824.960053pt;}
.y12{bottom:826.400055pt;}
.yec{bottom:827.200074pt;}
.y9a{bottom:829.440064pt;}
.y76{bottom:831.040070pt;}
.y3f{bottom:833.920044pt;}
.y10b{bottom:834.880066pt;}
.y11{bottom:839.520050pt;}
.yd3{bottom:841.440064pt;}
.y99{bottom:845.920044pt;}
.yeb{bottom:846.720063pt;}
.y75{bottom:847.520050pt;}
.y3e{bottom:850.400055pt;}
.y10a{bottom:851.360047pt;}
.yd2{bottom:857.920044pt;}
.y10{bottom:859.360047pt;}
.y98{bottom:862.560059pt;}
.y74{bottom:864.000061pt;}
.y3d{bottom:866.880066pt;}
.yf{bottom:872.480057pt;}
.yd1{bottom:874.400055pt;}
.y97{bottom:879.360062pt;}
.yea{bottom:880.320054pt;}
.y73{bottom:880.640061pt;}
.y3c{bottom:883.360062pt;}
.y109{bottom:883.840058pt;}
.ye{bottom:890.080063pt;}
.yd0{bottom:890.880066pt;}
.ye9{bottom:896.960053pt;}
.y72{bottom:897.120057pt;}
.y96{bottom:897.280060pt;}
.y3b{bottom:899.840058pt;}
.y108{bottom:900.320054pt;}
.yd{bottom:906.880066pt;}
.ycf{bottom:907.360062pt;}
.ye8{bottom:913.440064pt;}
.y71{bottom:913.600052pt;}
.y95{bottom:915.040055pt;}
.y3a{bottom:916.320054pt;}
.y107{bottom:916.960053pt;}
.yce{bottom:923.840058pt;}
.yc{bottom:925.440064pt;}
.ye7{bottom:929.920060pt;}
.y70{bottom:930.080063pt;}
.y94{bottom:931.520066pt;}
.y39{bottom:932.960053pt;}
.y11e{bottom:933.440064pt;}
.ycd{bottom:940.320054pt;}
.yb{bottom:944.960053pt;}
.ye6{bottom:946.400055pt;}
.y6f{bottom:946.560059pt;}
.y93{bottom:948.160065pt;}
.y38{bottom:949.440064pt;}
.ye5{bottom:962.880066pt;}
.y6e{bottom:963.200058pt;}
.ya{bottom:964.480057pt;}
.ycc{bottom:965.120057pt;}
.y37{bottom:965.920060pt;}
.ye4{bottom:979.360062pt;}
.y6d{bottom:981.120057pt;}
.y36{bottom:982.400055pt;}
.y9{bottom:983.520066pt;}
.ye3{bottom:996.160057pt;}
.y35{bottom:998.880059pt;}
.y4{bottom:1001.440056pt;}
.ye2{bottom:1014.240059pt;}
.y34{bottom:1015.360062pt;}
.y3{bottom:1019.520058pt;}
.y2{bottom:1037.440056pt;}
.y1{bottom:1056.960061pt;}
.y31{bottom:1060.160057pt;}
.he{height:13.439972pt;}
.h11{height:24.064669pt;}
.hd{height:25.847253pt;}
.hb{height:27.559227pt;}
.hf{height:32.509167pt;}
.h10{height:36.884514pt;}
.h5{height:36.988268pt;}
.h13{height:38.674269pt;}
.h9{height:39.877875pt;}
.hc{height:40.999171pt;}
.ha{height:42.867997pt;}
.h7{height:43.345378pt;}
.h4{height:44.439169pt;}
.h3{height:44.564174pt;}
.h8{height:46.813149pt;}
.h2{height:57.649355pt;}
.h12{height:58.566137pt;}
.h6{height:63.658641pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wc{width:3.359985pt;}
.w5{width:3.360001pt;}
.wb{width:3.360015pt;}
.w12{width:3.360016pt;}
.w16{width:3.360046pt;}
.w3{width:5.599991pt;}
.w6{width:5.600006pt;}
.wa{width:5.759979pt;}
.w10{width:5.760009pt;}
.w4{width:5.760010pt;}
.we{width:8.159974pt;}
.w8{width:8.160003pt;}
.w13{width:8.160004pt;}
.w18{width:8.160035pt;}
.w11{width:11.360015pt;}
.w15{width:11.360046pt;}
.w17{width:22.239990pt;}
.wd{width:22.240020pt;}
.w7{width:22.399994pt;}
.w9{width:35.520020pt;}
.w2{width:38.720001pt;}
.wf{width:41.759980pt;}
.w14{width:71.840027pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:101.919998pt;}
.x2{left:158.720001pt;}
.xf{left:166.880005pt;}
.x6{left:169.759995pt;}
.x9{left:172.160004pt;}
.x4{left:175.839996pt;}
.x2e{left:181.440002pt;}
.x31{left:187.039993pt;}
.x10{left:205.600006pt;}
.x30{left:206.720001pt;}
.x11{left:211.199997pt;}
.x12{left:216.800003pt;}
.x13{left:220.000000pt;}
.x7{left:225.279999pt;}
.x14{left:231.199997pt;}
.x15{left:234.399994pt;}
.xe{left:255.679993pt;}
.x16{left:256.799988pt;}
.xb{left:273.760010pt;}
.x17{left:283.359985pt;}
.xa{left:286.399994pt;}
.xc{left:307.200012pt;}
.x1{left:309.920013pt;}
.xd{left:312.799988pt;}
.x18{left:318.880005pt;}
.x19{left:324.480011pt;}
.x1a{left:330.079987pt;}
.x1b{left:333.279999pt;}
.x1c{left:338.880005pt;}
.x1d{left:344.480011pt;}
.x1e{left:347.679993pt;}
.x2f{left:350.720001pt;}
.x1f{left:369.920013pt;}
.x20{left:397.920013pt;}
.x8{left:406.239990pt;}
.x21{left:439.679993pt;}
.x22{left:445.279999pt;}
.x23{left:450.880005pt;}
.x24{left:454.079987pt;}
.x5{left:464.160004pt;}
.x25{left:465.279999pt;}
.x26{left:468.480011pt;}
.x27{left:490.880005pt;}
.x28{left:531.679993pt;}
.x29{left:603.520020pt;}
.x2a{left:606.719971pt;}
.x2b{left:617.919983pt;}
.x2c{left:621.119995pt;}
.x2d{left:643.359985pt;}
}




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