
    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_704b6dad34b5321955390256.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_192f50ebff9299e261de782b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_1453cd9149e016c718d8bfc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_0bb6279363001c41db4b84b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_86bd72dcacce7e1f67f48778.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_e7504fdb7321d8fbe540bdc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_74a3e18684961bab3d3c5a6a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fec6a9a6167313db01b090ae.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-68.400000px;}
.vb{vertical-align:-66.960000px;}
.v9{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.va{vertical-align:-61.200000px;}
.v6{vertical-align:-30.240000px;}
.v7{vertical-align:-23.760000px;}
.v10{vertical-align:-13.800000px;}
.v11{vertical-align:-12.600000px;}
.v4{vertical-align:-9.006000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:1.200000px;}
.v8{vertical-align:4.502400px;}
.v3{vertical-align:9.006000px;}
.vf{vertical-align:13.506000px;}
.vd{vertical-align:22.512000px;}
.vc{vertical-align:24.000000px;}
.v12{vertical-align:26.376000px;}
.v5{vertical-align:30.240000px;}
.v13{vertical-align:40.524000px;}
.ls32{letter-spacing:-0.720000px;}
.ls35{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.305400px;}
.ls11{letter-spacing:-0.220800px;}
.ls1a{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls10{letter-spacing:-0.027360px;}
.lse{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.342000px;}
.ls2{letter-spacing:0.360000px;}
.ls2c{letter-spacing:0.600000px;}
.ls36{letter-spacing:0.738000px;}
.ls33{letter-spacing:0.828000px;}
.ls27{letter-spacing:0.900000px;}
.ls22{letter-spacing:1.026000px;}
.ls34{letter-spacing:1.080000px;}
.ls17{letter-spacing:1.200000px;}
.ls2d{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.620000px;}
.ls37{letter-spacing:2.988000px;}
.ls4{letter-spacing:4.714080px;}
.ls1d{letter-spacing:5.100000px;}
.ls6{letter-spacing:5.940000px;}
.ls7{letter-spacing:23.220000px;}
.ls30{letter-spacing:30.348000px;}
.ls9{letter-spacing:52.560000px;}
.lsc{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls20{letter-spacing:67.578000px;}
.ls0{letter-spacing:154.980000px;}
.ls21{letter-spacing:262.260000px;}
.ls1c{letter-spacing:310.500000px;}
.ls18{letter-spacing:310.980000px;}
.ls29{letter-spacing:360.000000px;}
.ls16{letter-spacing:394.860000px;}
.ls2b{letter-spacing:496.980000px;}
.ls24{letter-spacing:609.900000px;}
.ls28{letter-spacing:630.300000px;}
.ls1f{letter-spacing:635.040000px;}
.ls26{letter-spacing:892.500000px;}
.ls23{letter-spacing:929.700000px;}
.ls25{letter-spacing:939.300000px;}
.ls14{letter-spacing:1286.040000px;}
.ls2f{letter-spacing:1290.900000px;}
.ls15{letter-spacing:1343.640000px;}
.lsb{letter-spacing:1367.340000px;}
.ls2e{letter-spacing:1479.900000px;}
.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:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.102200px;}
.ws5{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws10{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.680000px;}
.ws16{word-spacing:-13.626000px;}
.wsd{word-spacing:-13.608000px;}
.ws13{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.wse{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.996000px;}
.ws14{word-spacing:-12.780000px;}
.ws6{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.ws11{word-spacing:-2.457000px;}
.wsb{word-spacing:0.000000px;}
._22{margin-left:-2245.123560px;}
._7{margin-left:-9.996000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._8{width:2.700000px;}
._9{width:4.145760px;}
._a{width:5.790000px;}
._5{width:7.236000px;}
._6{width:8.364000px;}
._e{width:9.448320px;}
._f{width:11.124000px;}
._c{width:12.366000px;}
._d{width:15.222000px;}
._b{width:23.616000px;}
._2e{width:26.820000px;}
._26{width:51.300000px;}
._11{width:53.346000px;}
._1e{width:106.500000px;}
._1b{width:154.500000px;}
._10{width:193.482000px;}
._19{width:262.260000px;}
._17{width:269.700000px;}
._21{width:323.100000px;}
._13{width:467.814000px;}
._18{width:477.300000px;}
._16{width:488.100000px;}
._20{width:495.300000px;}
._14{width:507.282000px;}
._12{width:521.814000px;}
._2b{width:530.940000px;}
._1c{width:558.300000px;}
._1a{width:603.300000px;}
._23{width:627.900000px;}
._2c{width:638.700000px;}
._2a{width:648.300000px;}
._1d{width:651.300000px;}
._27{width:656.700000px;}
._24{width:672.936000px;}
._1f{width:675.300000px;}
._29{width:702.300000px;}
._25{width:747.300000px;}
._28{width:771.300000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
._15{width:2297.880000px;}
._2d{width:2590.085760px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fsc{font-size:45.000000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:2.850000px;}
.y63{bottom:3.150000px;}
.y59{bottom:3.225000px;}
.y5c{bottom:3.240000px;}
.y60{bottom:3.300000px;}
.y57{bottom:3.405000px;}
.y69{bottom:3.450000px;}
.yb1{bottom:9.300000px;}
.y5e{bottom:15.075000px;}
.yf4{bottom:18.450000px;}
.y68{bottom:18.900000px;}
.y8e{bottom:21.825000px;}
.yb0{bottom:24.750000px;}
.yfa{bottom:34.011000px;}
.yd1{bottom:34.350000px;}
.yf9{bottom:37.530000px;}
.ybd{bottom:39.840000px;}
.y2{bottom:45.435000px;}
.y32{bottom:54.060000px;}
.y4{bottom:58.020000px;}
.yf3{bottom:58.335000px;}
.y5b{bottom:66.240000px;}
.y5d{bottom:69.480000px;}
.yf2{bottom:73.845000px;}
.y3{bottom:76.950000px;}
.ya0{bottom:78.000000px;}
.yab{bottom:78.150000px;}
.y5a{bottom:88.965000px;}
.yf1{bottom:89.505000px;}
.y8d{bottom:92.745000px;}
.y9f{bottom:93.600000px;}
.yaa{bottom:93.750000px;}
.yf0{bottom:105.165000px;}
.y9e{bottom:109.050000px;}
.ya6{bottom:109.200000px;}
.y58{bottom:111.465000px;}
.yef{bottom:120.645000px;}
.y8a{bottom:121.545000px;}
.y97{bottom:125.850000px;}
.y56{bottom:133.965000px;}
.yee{bottom:136.305000px;}
.y96{bottom:141.450000px;}
.yed{bottom:151.965000px;}
.y53{bottom:156.600000px;}
.y94{bottom:156.900000px;}
.y55{bottom:159.450000px;}
.y2e{bottom:162.255600px;}
.yec{bottom:167.445000px;}
.y8b{bottom:169.950000px;}
.y8c{bottom:171.150000px;}
.y89{bottom:173.250000px;}
.y2d{bottom:178.275600px;}
.y52{bottom:182.415000px;}
.yeb{bottom:182.745000px;}
.y2c{bottom:190.695600px;}
.y1{bottom:195.150000px;}
.yea{bottom:198.405000px;}
.yb9{bottom:209.400000px;}
.y51{bottom:213.555000px;}
.ye9{bottom:214.245000px;}
.y50{bottom:229.035000px;}
.ye8{bottom:229.905000px;}
.y87{bottom:243.750000px;}
.y4f{bottom:244.695000px;}
.ye7{bottom:245.025000px;}
.y85{bottom:247.050000px;}
.y4e{bottom:260.175000px;}
.yba{bottom:264.750000px;}
.y4d{bottom:275.655000px;}
.ye6{bottom:276.705000px;}
.ybb{bottom:289.500000px;}
.y86{bottom:289.950000px;}
.y4c{bottom:291.135000px;}
.y84{bottom:292.050000px;}
.ye5{bottom:292.185000px;}
.y88{bottom:293.100000px;}
.ybc{bottom:293.850000px;}
.y4b{bottom:306.795000px;}
.ye4{bottom:307.665000px;}
.y4a{bottom:322.275000px;}
.ye3{bottom:322.965000px;}
.y49{bottom:337.800000px;}
.y48{bottom:353.280000px;}
.y2b{bottom:353.595600px;}
.ye2{bottom:354.510000px;}
.y82{bottom:365.850000px;}
.y47{bottom:368.940000px;}
.y2a{bottom:369.075600px;}
.y80{bottom:369.300000px;}
.ye1{bottom:370.170000px;}
.yb7{bottom:373.350000px;}
.y29{bottom:384.555600px;}
.ye0{bottom:385.650000px;}
.y28{bottom:400.215600px;}
.ydf{bottom:401.130000px;}
.y46{bottom:408.540000px;}
.y81{bottom:412.050000px;}
.y83{bottom:414.300000px;}
.y27{bottom:415.695600px;}
.yde{bottom:416.790000px;}
.y7f{bottom:417.600000px;}
.y45{bottom:426.720000px;}
.y26{bottom:431.175600px;}
.ydd{bottom:432.270000px;}
.y44{bottom:439.140000px;}
.yb6{bottom:440.889000px;}
.yb8{bottom:444.270000px;}
.y25{bottom:446.655600px;}
.ydc{bottom:447.750000px;}
.yb5{bottom:449.895000px;}
.ydb{bottom:463.410000px;}
.y24{bottom:477.615600px;}
.yda{bottom:478.890000px;}
.y7d{bottom:488.100000px;}
.y7b{bottom:491.250000px;}
.yd9{bottom:494.370000px;}
.y23{bottom:508.575600px;}
.yd8{bottom:510.030000px;}
.yd7{bottom:525.510000px;}
.y22{bottom:526.755600px;}
.yd6{bottom:541.170000px;}
.y7c{bottom:542.100000px;}
.y7e{bottom:544.200000px;}
.y7a{bottom:549.900000px;}
.yb4{bottom:553.560000px;}
.y21{bottom:555.735600px;}
.yd5{bottom:556.650000px;}
.y43{bottom:557.220000px;}
.yb3{bottom:569.040000px;}
.yd4{bottom:572.130000px;}
.y42{bottom:572.700000px;}
.y20{bottom:573.915600px;}
.yb2{bottom:584.700000px;}
.yd3{bottom:587.790000px;}
.y41{bottom:588.180000px;}
.y1f{bottom:589.575600px;}
.yaf{bottom:597.750000px;}
.y40{bottom:603.660000px;}
.y1e{bottom:605.265600px;}
.yd2{bottom:618.600000px;}
.y3f{bottom:619.350000px;}
.y1d{bottom:627.405600px;}
.yd0{bottom:631.950000px;}
.y3e{bottom:634.830000px;}
.ya9{bottom:635.550000px;}
.ya8{bottom:638.700000px;}
.y3d{bottom:650.310000px;}
.y1c{bottom:654.045600px;}
.y3c{bottom:665.970000px;}
.y1b{bottom:669.525600px;}
.ycc{bottom:679.200000px;}
.y3b{bottom:681.270000px;}
.ycd{bottom:682.650000px;}
.y77{bottom:683.400000px;}
.y1a{bottom:685.185600px;}
.y73{bottom:686.205000px;}
.y79{bottom:686.248500px;}
.y76{bottom:686.700000px;}
.y78{bottom:688.500000px;}
.y75{bottom:701.652000px;}
.ya7{bottom:706.350000px;}
.y74{bottom:707.280000px;}
.y3a{bottom:713.490000px;}
.yae{bottom:713.700000px;}
.y19{bottom:719.745600px;}
.yad{bottom:729.300000px;}
.y39{bottom:731.850000px;}
.y18{bottom:741.345000px;}
.y38{bottom:744.090000px;}
.yac{bottom:744.750000px;}
.ycb{bottom:747.900000px;}
.yce{bottom:753.600000px;}
.ycf{bottom:756.900000px;}
.ya5{bottom:757.800000px;}
.y72{bottom:769.860000px;}
.y17{bottom:775.905000px;}
.y71{bottom:788.220000px;}
.y70{bottom:800.640000px;}
.ya4{bottom:809.550000px;}
.y16{bottom:810.645000px;}
.yc6{bottom:843.450000px;}
.y15{bottom:845.205000px;}
.yc8{bottom:846.690000px;}
.yc7{bottom:862.350000px;}
.y14{bottom:873.285000px;}
.y12{bottom:874.410000px;}
.y9d{bottom:880.050000px;}
.y2f{bottom:881.400000px;}
.y9c{bottom:883.200000px;}
.y11{bottom:894.435000px;}
.y13{bottom:903.360000px;}
.yc5{bottom:913.200000px;}
.yc9{bottom:919.950000px;}
.yca{bottom:923.400000px;}
.y10{bottom:932.370000px;}
.y95{bottom:935.550000px;}
.y9b{bottom:936.150000px;}
.yf{bottom:956.670000px;}
.ya3{bottom:958.050000px;}
.ya2{bottom:973.650000px;}
.y37{bottom:979.290000px;}
.y6f{bottom:981.540000px;}
.ya1{bottom:989.100000px;}
.y36{bottom:994.770000px;}
.y6e{bottom:997.020000px;}
.y90{bottom:997.050000px;}
.y93{bottom:1002.000000px;}
.y92{bottom:1005.450000px;}
.yc2{bottom:1007.550000px;}
.y35{bottom:1010.430000px;}
.yc3{bottom:1011.000000px;}
.y6d{bottom:1012.680000px;}
.ye{bottom:1016.070000px;}
.y34{bottom:1026.090000px;}
.y6c{bottom:1028.160000px;}
.yb{bottom:1034.070000px;}
.y33{bottom:1038.510000px;}
.yd{bottom:1039.290000px;}
.y6b{bottom:1043.820000px;}
.ya{bottom:1057.290000px;}
.y6a{bottom:1059.300000px;}
.y9a{bottom:1070.400000px;}
.yc{bottom:1071.330000px;}
.y67{bottom:1072.200000px;}
.yc1{bottom:1076.250000px;}
.y91{bottom:1083.150000px;}
.yc4{bottom:1085.250000px;}
.y9{bottom:1086.630000px;}
.y65{bottom:1104.150000px;}
.y8{bottom:1105.710000px;}
.y66{bottom:1107.300000px;}
.yf8{bottom:1112.130000px;}
.y7{bottom:1122.990000px;}
.y62{bottom:1126.800000px;}
.yf7{bottom:1127.610000px;}
.y64{bottom:1129.950000px;}
.y6{bottom:1140.300000px;}
.y99{bottom:1143.300000px;}
.y5f{bottom:1149.300000px;}
.y61{bottom:1152.600000px;}
.y5{bottom:1158.300000px;}
.y98{bottom:1158.900000px;}
.yf6{bottom:1158.960000px;}
.yf5{bottom:1172.250000px;}
.ybf{bottom:1173.450000px;}
.y8f{bottom:1174.575000px;}
.y31{bottom:1175.160000px;}
.ybe{bottom:1176.690000px;}
.yc0{bottom:1176.750000px;}
.y30{bottom:1193.700000px;}
.h18{height:21.765000px;}
.h15{height:21.780000px;}
.h19{height:21.810000px;}
.h17{height:21.945000px;}
.h25{height:28.785000px;}
.h30{height:28.800000px;}
.h1a{height:31.140000px;}
.hd{height:35.314453px;}
.h2a{height:36.975000px;}
.h11{height:38.158594px;}
.hc{height:42.086250px;}
.h31{height:46.620000px;}
.h12{height:47.344922px;}
.h6{height:48.616875px;}
.he{height:52.971680px;}
.h13{height:52.998047px;}
.h2e{height:53.598047px;}
.h1f{height:54.198047px;}
.hf{height:54.421875px;}
.h34{height:55.503491px;}
.h7{height:55.796836px;}
.h14{height:55.824609px;}
.h26{height:57.671039px;}
.h8{height:58.621992px;}
.h32{height:58.732031px;}
.h33{height:59.092031px;}
.h1d{height:59.109656px;}
.h1b{height:59.332031px;}
.h3{height:60.226875px;}
.h16{height:60.281250px;}
.h10{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.hb{height:72.326250px;}
.h2{height:72.562500px;}
.h1c{height:76.933875px;}
.h2b{height:80.797875px;}
.h5{height:81.995625px;}
.ha{height:84.898125px;}
.h35{height:90.750000px;}
.h9{height:93.904125px;}
.h2c{height:94.945875px;}
.h24{height:121.170000px;}
.h23{height:121.305000px;}
.h1e{height:121.320000px;}
.h21{height:121.350000px;}
.h22{height:121.500000px;}
.h29{height:121.515000px;}
.h20{height:139.170000px;}
.h2d{height:163.350000px;}
.h2f{height:163.500000px;}
.h27{height:168.900000px;}
.h28{height:169.050000px;}
.h0{height:1263.000000px;}
.w1{width:93.660000px;}
.w4{width:94.140000px;}
.w3{width:94.155000px;}
.w2{width:94.170000px;}
.w7{width:127.650000px;}
.w6{width:127.995000px;}
.wa{width:128.010000px;}
.wc{width:136.995000px;}
.we{width:137.010000px;}
.wd{width:137.220000px;}
.w10{width:137.370000px;}
.w9{width:180.000000px;}
.w13{width:183.450000px;}
.w8{width:195.900000px;}
.w12{width:205.800000px;}
.wf{width:205.950000px;}
.w5{width:471.750000px;}
.wb{width:761.400000px;}
.w11{width:802.800000px;}
.w0{width:894.000000px;}
.x1{left:-180.900000px;}
.x0{left:0.000000px;}
.x1d{left:7.650000px;}
.x59{left:11.145000px;}
.x5f{left:14.580000px;}
.x20{left:25.200000px;}
.x4{left:29.899500px;}
.xc{left:38.581500px;}
.xf{left:46.816500px;}
.x11{left:50.377500px;}
.x5e{left:51.660000px;}
.x48{left:53.400000px;}
.x50{left:54.525000px;}
.x4c{left:55.650000px;}
.x53{left:57.450000px;}
.x49{left:60.330000px;}
.x4a{left:64.050000px;}
.x3e{left:67.170000px;}
.x5a{left:69.480000px;}
.x25{left:73.050000px;}
.x6a{left:74.808000px;}
.x54{left:76.260000px;}
.x23{left:79.200000px;}
.xa{left:88.770000px;}
.x6d{left:90.510000px;}
.x29{left:97.644000px;}
.x69{left:101.838000px;}
.x43{left:106.800000px;}
.x66{left:107.970000px;}
.x64{left:111.345000px;}
.x35{left:113.400000px;}
.x63{left:116.100000px;}
.x37{left:120.300000px;}
.x32{left:129.495000px;}
.x3a{left:132.870000px;}
.x33{left:139.710000px;}
.x52{left:172.350000px;}
.x47{left:180.150000px;}
.x51{left:188.100000px;}
.x5d{left:192.750000px;}
.x3f{left:200.550000px;}
.x2b{left:212.785500px;}
.x1c{left:217.200000px;}
.x2a{left:220.074000px;}
.x7{left:244.170000px;}
.x2e{left:245.787000px;}
.x2c{left:254.785500px;}
.x2d{left:266.487000px;}
.x5{left:270.300000px;}
.x16{left:272.475000px;}
.x13{left:280.027500px;}
.x6{left:290.610000px;}
.x1b{left:296.160000px;}
.x24{left:311.250000px;}
.x18{left:316.335000px;}
.x1e{left:319.350000px;}
.x6b{left:395.100000px;}
.x40{left:396.750000px;}
.xb{left:398.311500px;}
.x60{left:403.500000px;}
.x1f{left:405.750000px;}
.x10{left:412.507500px;}
.x27{left:427.500000px;}
.x14{left:441.750000px;}
.x45{left:447.750000px;}
.x19{left:449.205000px;}
.xe{left:450.226500px;}
.x55{left:453.315000px;}
.x5c{left:454.500000px;}
.x6c{left:457.860000px;}
.x2{left:460.200000px;}
.x46{left:462.750000px;}
.x3{left:465.499500px;}
.x21{left:472.200000px;}
.x8{left:478.965000px;}
.x26{left:500.400000px;}
.x9{left:506.580000px;}
.x34{left:520.950000px;}
.x3c{left:524.250000px;}
.x3b{left:528.750000px;}
.x67{left:531.000000px;}
.x61{left:534.300000px;}
.x41{left:552.450000px;}
.x30{left:555.750000px;}
.x2f{left:571.500000px;}
.x36{left:577.200000px;}
.x4b{left:579.450000px;}
.x22{left:594.900000px;}
.x56{left:598.680000px;}
.x57{left:637.365000px;}
.x62{left:646.200000px;}
.x42{left:654.900000px;}
.x68{left:659.700000px;}
.x65{left:666.450000px;}
.x1a{left:686.310000px;}
.x17{left:695.535000px;}
.x44{left:705.600000px;}
.x58{left:728.640000px;}
.x31{left:734.700000px;}
.x15{left:739.425000px;}
.x4e{left:752.850000px;}
.x28{left:755.304000px;}
.x3d{left:757.200000px;}
.x38{left:758.250000px;}
.x4f{left:763.050000px;}
.x4d{left:769.650000px;}
.x5b{left:774.600000px;}
.x12{left:776.677500px;}
.xd{left:824.776500px;}
.x39{left:825.900000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.vb{vertical-align:-59.520000pt;}
.v9{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.va{vertical-align:-54.400000pt;}
.v6{vertical-align:-26.880000pt;}
.v7{vertical-align:-21.120000pt;}
.v10{vertical-align:-12.266667pt;}
.v11{vertical-align:-11.200000pt;}
.v4{vertical-align:-8.005333pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.066667pt;}
.v8{vertical-align:4.002133pt;}
.v3{vertical-align:8.005333pt;}
.vf{vertical-align:12.005333pt;}
.vd{vertical-align:20.010667pt;}
.vc{vertical-align:21.333333pt;}
.v12{vertical-align:23.445333pt;}
.v5{vertical-align:26.880000pt;}
.v13{vertical-align:36.021333pt;}
.ls32{letter-spacing:-0.640000pt;}
.ls35{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls11{letter-spacing:-0.196267pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls10{letter-spacing:-0.024320pt;}
.lse{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.304000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls36{letter-spacing:0.656000pt;}
.ls33{letter-spacing:0.736000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.912000pt;}
.ls34{letter-spacing:0.960000pt;}
.ls17{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.440000pt;}
.ls37{letter-spacing:2.656000pt;}
.ls4{letter-spacing:4.190293pt;}
.ls1d{letter-spacing:4.533333pt;}
.ls6{letter-spacing:5.280000pt;}
.ls7{letter-spacing:20.640000pt;}
.ls30{letter-spacing:26.976000pt;}
.ls9{letter-spacing:46.720000pt;}
.lsc{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls20{letter-spacing:60.069333pt;}
.ls0{letter-spacing:137.760000pt;}
.ls21{letter-spacing:233.120000pt;}
.ls1c{letter-spacing:276.000000pt;}
.ls18{letter-spacing:276.426667pt;}
.ls29{letter-spacing:320.000000pt;}
.ls16{letter-spacing:350.986667pt;}
.ls2b{letter-spacing:441.760000pt;}
.ls24{letter-spacing:542.133333pt;}
.ls28{letter-spacing:560.266667pt;}
.ls1f{letter-spacing:564.480000pt;}
.ls26{letter-spacing:793.333333pt;}
.ls23{letter-spacing:826.400000pt;}
.ls25{letter-spacing:834.933333pt;}
.ls14{letter-spacing:1143.146667pt;}
.ls2f{letter-spacing:1147.466667pt;}
.ls15{letter-spacing:1194.346667pt;}
.lsb{letter-spacing:1215.413333pt;}
.ls2e{letter-spacing:1315.466667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.313067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws10{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.160000pt;}
.ws16{word-spacing:-12.112000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws13{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.wse{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.552000pt;}
.ws14{word-spacing:-11.360000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws11{word-spacing:-2.184000pt;}
.wsb{word-spacing:0.000000pt;}
._22{margin-left:-1995.665387pt;}
._7{margin-left:-8.885333pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._8{width:2.400000pt;}
._9{width:3.685120pt;}
._a{width:5.146667pt;}
._5{width:6.432000pt;}
._6{width:7.434667pt;}
._e{width:8.398507pt;}
._f{width:9.888000pt;}
._c{width:10.992000pt;}
._d{width:13.530667pt;}
._b{width:20.992000pt;}
._2e{width:23.840000pt;}
._26{width:45.600000pt;}
._11{width:47.418667pt;}
._1e{width:94.666667pt;}
._1b{width:137.333333pt;}
._10{width:171.984000pt;}
._19{width:233.120000pt;}
._17{width:239.733333pt;}
._21{width:287.200000pt;}
._13{width:415.834667pt;}
._18{width:424.266667pt;}
._16{width:433.866667pt;}
._20{width:440.266667pt;}
._14{width:450.917333pt;}
._12{width:463.834667pt;}
._2b{width:471.946667pt;}
._1c{width:496.266667pt;}
._1a{width:536.266667pt;}
._23{width:558.133333pt;}
._2c{width:567.733333pt;}
._2a{width:576.266667pt;}
._1d{width:578.933333pt;}
._27{width:583.733333pt;}
._24{width:598.165333pt;}
._1f{width:600.266667pt;}
._29{width:624.266667pt;}
._25{width:664.266667pt;}
._28{width:685.600000pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
._15{width:2042.560000pt;}
._2d{width:2302.298453pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fsc{font-size:40.000000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:2.533333pt;}
.y63{bottom:2.800000pt;}
.y59{bottom:2.866667pt;}
.y5c{bottom:2.880000pt;}
.y60{bottom:2.933333pt;}
.y57{bottom:3.026667pt;}
.y69{bottom:3.066667pt;}
.yb1{bottom:8.266667pt;}
.y5e{bottom:13.400000pt;}
.yf4{bottom:16.400000pt;}
.y68{bottom:16.800000pt;}
.y8e{bottom:19.400000pt;}
.yb0{bottom:22.000000pt;}
.yfa{bottom:30.232000pt;}
.yd1{bottom:30.533333pt;}
.yf9{bottom:33.360000pt;}
.ybd{bottom:35.413333pt;}
.y2{bottom:40.386667pt;}
.y32{bottom:48.053333pt;}
.y4{bottom:51.573333pt;}
.yf3{bottom:51.853333pt;}
.y5b{bottom:58.880000pt;}
.y5d{bottom:61.760000pt;}
.yf2{bottom:65.640000pt;}
.y3{bottom:68.400000pt;}
.ya0{bottom:69.333333pt;}
.yab{bottom:69.466667pt;}
.y5a{bottom:79.080000pt;}
.yf1{bottom:79.560000pt;}
.y8d{bottom:82.440000pt;}
.y9f{bottom:83.200000pt;}
.yaa{bottom:83.333333pt;}
.yf0{bottom:93.480000pt;}
.y9e{bottom:96.933333pt;}
.ya6{bottom:97.066667pt;}
.y58{bottom:99.080000pt;}
.yef{bottom:107.240000pt;}
.y8a{bottom:108.040000pt;}
.y97{bottom:111.866667pt;}
.y56{bottom:119.080000pt;}
.yee{bottom:121.160000pt;}
.y96{bottom:125.733333pt;}
.yed{bottom:135.080000pt;}
.y53{bottom:139.200000pt;}
.y94{bottom:139.466667pt;}
.y55{bottom:141.733333pt;}
.y2e{bottom:144.227200pt;}
.yec{bottom:148.840000pt;}
.y8b{bottom:151.066667pt;}
.y8c{bottom:152.133333pt;}
.y89{bottom:154.000000pt;}
.y2d{bottom:158.467200pt;}
.y52{bottom:162.146667pt;}
.yeb{bottom:162.440000pt;}
.y2c{bottom:169.507200pt;}
.y1{bottom:173.466667pt;}
.yea{bottom:176.360000pt;}
.yb9{bottom:186.133333pt;}
.y51{bottom:189.826667pt;}
.ye9{bottom:190.440000pt;}
.y50{bottom:203.586667pt;}
.ye8{bottom:204.360000pt;}
.y87{bottom:216.666667pt;}
.y4f{bottom:217.506667pt;}
.ye7{bottom:217.800000pt;}
.y85{bottom:219.600000pt;}
.y4e{bottom:231.266667pt;}
.yba{bottom:235.333333pt;}
.y4d{bottom:245.026667pt;}
.ye6{bottom:245.960000pt;}
.ybb{bottom:257.333333pt;}
.y86{bottom:257.733333pt;}
.y4c{bottom:258.786667pt;}
.y84{bottom:259.600000pt;}
.ye5{bottom:259.720000pt;}
.y88{bottom:260.533333pt;}
.ybc{bottom:261.200000pt;}
.y4b{bottom:272.706667pt;}
.ye4{bottom:273.480000pt;}
.y4a{bottom:286.466667pt;}
.ye3{bottom:287.080000pt;}
.y49{bottom:300.266667pt;}
.y48{bottom:314.026667pt;}
.y2b{bottom:314.307200pt;}
.ye2{bottom:315.120000pt;}
.y82{bottom:325.200000pt;}
.y47{bottom:327.946667pt;}
.y2a{bottom:328.067200pt;}
.y80{bottom:328.266667pt;}
.ye1{bottom:329.040000pt;}
.yb7{bottom:331.866667pt;}
.y29{bottom:341.827200pt;}
.ye0{bottom:342.800000pt;}
.y28{bottom:355.747200pt;}
.ydf{bottom:356.560000pt;}
.y46{bottom:363.146667pt;}
.y81{bottom:366.266667pt;}
.y83{bottom:368.266667pt;}
.y27{bottom:369.507200pt;}
.yde{bottom:370.480000pt;}
.y7f{bottom:371.200000pt;}
.y45{bottom:379.306667pt;}
.y26{bottom:383.267200pt;}
.ydd{bottom:384.240000pt;}
.y44{bottom:390.346667pt;}
.yb6{bottom:391.901333pt;}
.yb8{bottom:394.906667pt;}
.y25{bottom:397.027200pt;}
.ydc{bottom:398.000000pt;}
.yb5{bottom:399.906667pt;}
.ydb{bottom:411.920000pt;}
.y24{bottom:424.547200pt;}
.yda{bottom:425.680000pt;}
.y7d{bottom:433.866667pt;}
.y7b{bottom:436.666667pt;}
.yd9{bottom:439.440000pt;}
.y23{bottom:452.067200pt;}
.yd8{bottom:453.360000pt;}
.yd7{bottom:467.120000pt;}
.y22{bottom:468.227200pt;}
.yd6{bottom:481.040000pt;}
.y7c{bottom:481.866667pt;}
.y7e{bottom:483.733333pt;}
.y7a{bottom:488.800000pt;}
.yb4{bottom:492.053333pt;}
.y21{bottom:493.987200pt;}
.yd5{bottom:494.800000pt;}
.y43{bottom:495.306667pt;}
.yb3{bottom:505.813333pt;}
.yd4{bottom:508.560000pt;}
.y42{bottom:509.066667pt;}
.y20{bottom:510.147200pt;}
.yb2{bottom:519.733333pt;}
.yd3{bottom:522.480000pt;}
.y41{bottom:522.826667pt;}
.y1f{bottom:524.067200pt;}
.yaf{bottom:531.333333pt;}
.y40{bottom:536.586667pt;}
.y1e{bottom:538.013867pt;}
.yd2{bottom:549.866667pt;}
.y3f{bottom:550.533333pt;}
.y1d{bottom:557.693867pt;}
.yd0{bottom:561.733333pt;}
.y3e{bottom:564.293333pt;}
.ya9{bottom:564.933333pt;}
.ya8{bottom:567.733333pt;}
.y3d{bottom:578.053333pt;}
.y1c{bottom:581.373867pt;}
.y3c{bottom:591.973333pt;}
.y1b{bottom:595.133867pt;}
.ycc{bottom:603.733333pt;}
.y3b{bottom:605.573333pt;}
.ycd{bottom:606.800000pt;}
.y77{bottom:607.466667pt;}
.y1a{bottom:609.053867pt;}
.y73{bottom:609.960000pt;}
.y79{bottom:609.998667pt;}
.y76{bottom:610.400000pt;}
.y78{bottom:612.000000pt;}
.y75{bottom:623.690667pt;}
.ya7{bottom:627.866667pt;}
.y74{bottom:628.693333pt;}
.y3a{bottom:634.213333pt;}
.yae{bottom:634.400000pt;}
.y19{bottom:639.773867pt;}
.yad{bottom:648.266667pt;}
.y39{bottom:650.533333pt;}
.y18{bottom:658.973333pt;}
.y38{bottom:661.413333pt;}
.yac{bottom:662.000000pt;}
.ycb{bottom:664.800000pt;}
.yce{bottom:669.866667pt;}
.ycf{bottom:672.800000pt;}
.ya5{bottom:673.600000pt;}
.y72{bottom:684.320000pt;}
.y17{bottom:689.693333pt;}
.y71{bottom:700.640000pt;}
.y70{bottom:711.680000pt;}
.ya4{bottom:719.600000pt;}
.y16{bottom:720.573333pt;}
.yc6{bottom:749.733333pt;}
.y15{bottom:751.293333pt;}
.yc8{bottom:752.613333pt;}
.yc7{bottom:766.533333pt;}
.y14{bottom:776.253333pt;}
.y12{bottom:777.253333pt;}
.y9d{bottom:782.266667pt;}
.y2f{bottom:783.466667pt;}
.y9c{bottom:785.066667pt;}
.y11{bottom:795.053333pt;}
.y13{bottom:802.986667pt;}
.yc5{bottom:811.733333pt;}
.yc9{bottom:817.733333pt;}
.yca{bottom:820.800000pt;}
.y10{bottom:828.773333pt;}
.y95{bottom:831.600000pt;}
.y9b{bottom:832.133333pt;}
.yf{bottom:850.373333pt;}
.ya3{bottom:851.600000pt;}
.ya2{bottom:865.466667pt;}
.y37{bottom:870.480000pt;}
.y6f{bottom:872.480000pt;}
.ya1{bottom:879.200000pt;}
.y36{bottom:884.240000pt;}
.y6e{bottom:886.240000pt;}
.y90{bottom:886.266667pt;}
.y93{bottom:890.666667pt;}
.y92{bottom:893.733333pt;}
.yc2{bottom:895.600000pt;}
.y35{bottom:898.160000pt;}
.yc3{bottom:898.666667pt;}
.y6d{bottom:900.160000pt;}
.ye{bottom:903.173333pt;}
.y34{bottom:912.080000pt;}
.y6c{bottom:913.920000pt;}
.yb{bottom:919.173333pt;}
.y33{bottom:923.120000pt;}
.yd{bottom:923.813333pt;}
.y6b{bottom:927.840000pt;}
.ya{bottom:939.813333pt;}
.y6a{bottom:941.600000pt;}
.y9a{bottom:951.466667pt;}
.yc{bottom:952.293333pt;}
.y67{bottom:953.066667pt;}
.yc1{bottom:956.666667pt;}
.y91{bottom:962.800000pt;}
.yc4{bottom:964.666667pt;}
.y9{bottom:965.893333pt;}
.y65{bottom:981.466667pt;}
.y8{bottom:982.853333pt;}
.y66{bottom:984.266667pt;}
.yf8{bottom:988.560000pt;}
.y7{bottom:998.213333pt;}
.y62{bottom:1001.600000pt;}
.yf7{bottom:1002.320000pt;}
.y64{bottom:1004.400000pt;}
.y6{bottom:1013.600000pt;}
.y99{bottom:1016.266667pt;}
.y5f{bottom:1021.600000pt;}
.y61{bottom:1024.533333pt;}
.y5{bottom:1029.600000pt;}
.y98{bottom:1030.133333pt;}
.yf6{bottom:1030.186667pt;}
.yf5{bottom:1042.000000pt;}
.ybf{bottom:1043.066667pt;}
.y8f{bottom:1044.066667pt;}
.y31{bottom:1044.586667pt;}
.ybe{bottom:1045.946667pt;}
.yc0{bottom:1046.000000pt;}
.y30{bottom:1061.066667pt;}
.h18{height:19.346667pt;}
.h15{height:19.360000pt;}
.h19{height:19.386667pt;}
.h17{height:19.506667pt;}
.h25{height:25.586667pt;}
.h30{height:25.600000pt;}
.h1a{height:27.680000pt;}
.hd{height:31.390625pt;}
.h2a{height:32.866667pt;}
.h11{height:33.918750pt;}
.hc{height:37.410000pt;}
.h31{height:41.440000pt;}
.h12{height:42.084375pt;}
.h6{height:43.215000pt;}
.he{height:47.085938pt;}
.h13{height:47.109375pt;}
.h2e{height:47.642708pt;}
.h1f{height:48.176042pt;}
.hf{height:48.375000pt;}
.h34{height:49.336436pt;}
.h7{height:49.597187pt;}
.h14{height:49.621875pt;}
.h26{height:51.263146pt;}
.h8{height:52.108438pt;}
.h32{height:52.206250pt;}
.h33{height:52.526250pt;}
.h1d{height:52.541917pt;}
.h1b{height:52.739583pt;}
.h3{height:53.535000pt;}
.h16{height:53.583333pt;}
.h10{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.hb{height:64.290000pt;}
.h2{height:64.500000pt;}
.h1c{height:68.385667pt;}
.h2b{height:71.820333pt;}
.h5{height:72.885000pt;}
.ha{height:75.465000pt;}
.h35{height:80.666667pt;}
.h9{height:83.470333pt;}
.h2c{height:84.396333pt;}
.h24{height:107.706667pt;}
.h23{height:107.826667pt;}
.h1e{height:107.840000pt;}
.h21{height:107.866667pt;}
.h22{height:108.000000pt;}
.h29{height:108.013333pt;}
.h20{height:123.706667pt;}
.h2d{height:145.200000pt;}
.h2f{height:145.333333pt;}
.h27{height:150.133333pt;}
.h28{height:150.266667pt;}
.h0{height:1122.666667pt;}
.w1{width:83.253333pt;}
.w4{width:83.680000pt;}
.w3{width:83.693333pt;}
.w2{width:83.706667pt;}
.w7{width:113.466667pt;}
.w6{width:113.773333pt;}
.wa{width:113.786667pt;}
.wc{width:121.773333pt;}
.we{width:121.786667pt;}
.wd{width:121.973333pt;}
.w10{width:122.106667pt;}
.w9{width:160.000000pt;}
.w13{width:163.066667pt;}
.w8{width:174.133333pt;}
.w12{width:182.933333pt;}
.wf{width:183.066667pt;}
.w5{width:419.333333pt;}
.wb{width:676.800000pt;}
.w11{width:713.600000pt;}
.w0{width:794.666667pt;}
.x1{left:-160.800000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.800000pt;}
.x59{left:9.906667pt;}
.x5f{left:12.960000pt;}
.x20{left:22.400000pt;}
.x4{left:26.577333pt;}
.xc{left:34.294667pt;}
.xf{left:41.614667pt;}
.x11{left:44.780000pt;}
.x5e{left:45.920000pt;}
.x48{left:47.466667pt;}
.x50{left:48.466667pt;}
.x4c{left:49.466667pt;}
.x53{left:51.066667pt;}
.x49{left:53.626667pt;}
.x4a{left:56.933333pt;}
.x3e{left:59.706667pt;}
.x5a{left:61.760000pt;}
.x25{left:64.933333pt;}
.x6a{left:66.496000pt;}
.x54{left:67.786667pt;}
.x23{left:70.400000pt;}
.xa{left:78.906667pt;}
.x6d{left:80.453333pt;}
.x29{left:86.794667pt;}
.x69{left:90.522667pt;}
.x43{left:94.933333pt;}
.x66{left:95.973333pt;}
.x64{left:98.973333pt;}
.x35{left:100.800000pt;}
.x63{left:103.200000pt;}
.x37{left:106.933333pt;}
.x32{left:115.106667pt;}
.x3a{left:118.106667pt;}
.x33{left:124.186667pt;}
.x52{left:153.200000pt;}
.x47{left:160.133333pt;}
.x51{left:167.200000pt;}
.x5d{left:171.333333pt;}
.x3f{left:178.266667pt;}
.x2b{left:189.142667pt;}
.x1c{left:193.066667pt;}
.x2a{left:195.621333pt;}
.x7{left:217.040000pt;}
.x2e{left:218.477333pt;}
.x2c{left:226.476000pt;}
.x2d{left:236.877333pt;}
.x5{left:240.266667pt;}
.x16{left:242.200000pt;}
.x13{left:248.913333pt;}
.x6{left:258.320000pt;}
.x1b{left:263.253333pt;}
.x24{left:276.666667pt;}
.x18{left:281.186667pt;}
.x1e{left:283.866667pt;}
.x6b{left:351.200000pt;}
.x40{left:352.666667pt;}
.xb{left:354.054667pt;}
.x60{left:358.666667pt;}
.x1f{left:360.666667pt;}
.x10{left:366.673333pt;}
.x27{left:380.000000pt;}
.x14{left:392.666667pt;}
.x45{left:398.000000pt;}
.x19{left:399.293333pt;}
.xe{left:400.201333pt;}
.x55{left:402.946667pt;}
.x5c{left:404.000000pt;}
.x6c{left:406.986667pt;}
.x2{left:409.066667pt;}
.x46{left:411.333333pt;}
.x3{left:413.777333pt;}
.x21{left:419.733333pt;}
.x8{left:425.746667pt;}
.x26{left:444.800000pt;}
.x9{left:450.293333pt;}
.x34{left:463.066667pt;}
.x3c{left:466.000000pt;}
.x3b{left:470.000000pt;}
.x67{left:472.000000pt;}
.x61{left:474.933333pt;}
.x41{left:491.066667pt;}
.x30{left:494.000000pt;}
.x2f{left:508.000000pt;}
.x36{left:513.066667pt;}
.x4b{left:515.066667pt;}
.x22{left:528.800000pt;}
.x56{left:532.160000pt;}
.x57{left:566.546667pt;}
.x62{left:574.400000pt;}
.x42{left:582.133333pt;}
.x68{left:586.400000pt;}
.x65{left:592.400000pt;}
.x1a{left:610.053333pt;}
.x17{left:618.253333pt;}
.x44{left:627.200000pt;}
.x58{left:647.680000pt;}
.x31{left:653.066667pt;}
.x15{left:657.266667pt;}
.x4e{left:669.200000pt;}
.x28{left:671.381333pt;}
.x3d{left:673.066667pt;}
.x38{left:674.000000pt;}
.x4f{left:678.266667pt;}
.x4d{left:684.133333pt;}
.x5b{left:688.533333pt;}
.x12{left:690.380000pt;}
.xd{left:733.134667pt;}
.x39{left:734.133333pt;}
}




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