
    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_c6d88a3f686b679c744a3b27.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_8ee205f32eb9f5d9fd8510e5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_738928b69d5b825d510624f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_ca6ef880281eae3ebbadfb1f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_2767576d5d26429545595a98.woff')format("woff");}.ff5{font-family:ff5;line-height:1.045000;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_ad6df95de31a44a64f7c094f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_e2085c73bb068718c79c14f2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.922852;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_195af0670afd786b06d0c8f8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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;}
.v1{vertical-align:3.420000px;}
.ls2b{letter-spacing:-2.280000px;}
.ls25{letter-spacing:-2.016000px;}
.ls2d{letter-spacing:-1.872000px;}
.ls11{letter-spacing:-1.152000px;}
.ls10{letter-spacing:-1.008000px;}
.lsd{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.504000px;}
.ls16{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls23{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls1a{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.648000px;}
.ls12{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.792000px;}
.ls29{letter-spacing:0.864000px;}
.ls14{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.152000px;}
.ls1c{letter-spacing:1.368000px;}
.ls18{letter-spacing:1.440000px;}
.ls2a{letter-spacing:2.976000px;}
.ls3{letter-spacing:4.320000px;}
.ls2c{letter-spacing:4.752000px;}
.ls1d{letter-spacing:5.112000px;}
.ls24{letter-spacing:6.336000px;}
.ls28{letter-spacing:8.280000px;}
.ls1{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.ls1b{letter-spacing:10.872000px;}
.ls1f{letter-spacing:162.060000px;}
.ls22{letter-spacing:202.200000px;}
.ls20{letter-spacing:205.320000px;}
.ls1e{letter-spacing:253.500000px;}
.ls21{letter-spacing:299.520000px;}
.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;}
}
.ws39{word-spacing:-49.248000px;}
.ws34{word-spacing:-49.032000px;}
.wsd{word-spacing:-48.672000px;}
.ws1{word-spacing:-48.528000px;}
.ws35{word-spacing:-48.456000px;}
.ws38{word-spacing:-48.384000px;}
.ws3b{word-spacing:-48.240000px;}
.wsb{word-spacing:-48.168000px;}
.ws37{word-spacing:-48.096000px;}
.wsc{word-spacing:-47.952000px;}
.ws4{word-spacing:-40.440000px;}
.ws3e{word-spacing:-32.352000px;}
.ws3f{word-spacing:-32.112000px;}
.ws3d{word-spacing:-25.320000px;}
.ws17{word-spacing:-20.952000px;}
.ws16{word-spacing:-20.664000px;}
.ws14{word-spacing:-20.592000px;}
.ws19{word-spacing:-20.376000px;}
.ws15{word-spacing:-20.232000px;}
.ws18{word-spacing:-19.800000px;}
.ws36{word-spacing:-18.216000px;}
.ws3a{word-spacing:-17.784000px;}
.wsf{word-spacing:-16.860000px;}
.ws3c{word-spacing:-16.560000px;}
.ws0{word-spacing:-8.520000px;}
.ws2{word-spacing:0.000000px;}
.ws24{word-spacing:154.080000px;}
.ws21{word-spacing:184.080000px;}
.ws3{word-spacing:184.560000px;}
.ws27{word-spacing:185.340000px;}
.ws25{word-spacing:188.460000px;}
.ws1e{word-spacing:206.640000px;}
.wsa{word-spacing:226.920000px;}
.ws1a{word-spacing:236.640000px;}
.ws23{word-spacing:242.280000px;}
.ws8{word-spacing:256.920000px;}
.ws22{word-spacing:257.520000px;}
.ws26{word-spacing:261.360000px;}
.ws1b{word-spacing:268.260000px;}
.ws1c{word-spacing:269.880000px;}
.ws2a{word-spacing:280.920000px;}
.ws7{word-spacing:286.920000px;}
.ws2e{word-spacing:290.760000px;}
.ws20{word-spacing:299.880000px;}
.ws32{word-spacing:310.020000px;}
.ws29{word-spacing:310.920000px;}
.ws2d{word-spacing:316.620000px;}
.ws30{word-spacing:320.760000px;}
.ws2f{word-spacing:334.440000px;}
.ws2b{word-spacing:346.620000px;}
.ws12{word-spacing:367.920000px;}
.ws5{word-spacing:369.960000px;}
.ws11{word-spacing:397.920000px;}
.ws10{word-spacing:414.660000px;}
.ws13{word-spacing:433.560000px;}
.wse{word-spacing:439.140000px;}
.ws31{word-spacing:439.500000px;}
.ws33{word-spacing:500.100000px;}
.ws2c{word-spacing:511.380000px;}
.ws28{word-spacing:541.380000px;}
.ws1d{word-spacing:631.680000px;}
.ws1f{word-spacing:642.720000px;}
.ws9{word-spacing:1169.220000px;}
.ws6{word-spacing:1191.480000px;}
._0{margin-left:-948.900000px;}
._9{margin-left:-14.580000px;}
._8{margin-left:-11.880000px;}
._e{margin-left:-9.000000px;}
._b{margin-left:-7.680000px;}
._1{margin-left:-5.940000px;}
._5{margin-left:-4.320000px;}
._6{margin-left:-2.400000px;}
._3{margin-left:-1.260000px;}
._2{width:1.860000px;}
._a{width:3.000000px;}
._4{width:4.200000px;}
._d{width:5.400000px;}
._f{width:6.492000px;}
._3f{width:7.500000px;}
._7{width:8.520000px;}
._c{width:10.152000px;}
._18{width:11.340000px;}
._10{width:75.840000px;}
._33{width:93.420000px;}
._32{width:137.400000px;}
._3b{width:155.220000px;}
._15{width:169.740000px;}
._2c{width:175.320000px;}
._1c{width:231.840000px;}
._1f{width:244.920000px;}
._29{width:259.140000px;}
._2b{width:269.520000px;}
._13{width:273.780000px;}
._22{width:285.120000px;}
._27{width:286.800000px;}
._19{width:297.000000px;}
._2d{width:299.520000px;}
._16{width:303.780000px;}
._2a{width:308.220000px;}
._23{width:316.740000px;}
._2e{width:327.780000px;}
._25{width:346.740000px;}
._1b{width:350.100000px;}
._35{width:351.300000px;}
._14{width:354.480000px;}
._3c{width:356.880000px;}
._26{width:359.940000px;}
._2f{width:363.480000px;}
._28{width:374.880000px;}
._38{width:410.040000px;}
._1a{width:414.780000px;}
._37{width:419.880000px;}
._21{width:425.100000px;}
._36{width:432.600000px;}
._3e{width:444.000000px;}
._39{width:456.540000px;}
._34{width:463.320000px;}
._24{width:478.200000px;}
._3d{width:482.940000px;}
._1e{width:501.480000px;}
._1d{width:520.500000px;}
._30{width:528.240000px;}
._20{width:563.640000px;}
._3a{width:752.640000px;}
._31{width:788.040000px;}
._11{width:921.600000px;}
._12{width:1004.700000px;}
._17{width:1199.280000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:39.000000px;}
.y22{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y16e{bottom:117.592050px;}
.y68{bottom:117.923700px;}
.yde{bottom:118.014300px;}
.y194{bottom:118.096200px;}
.yc2{bottom:118.396050px;}
.ya7{bottom:118.503600px;}
.y45{bottom:118.515000px;}
.y12b{bottom:118.628250px;}
.y1b7{bottom:118.854150px;}
.y21{bottom:119.192550px;}
.y102{bottom:122.430000px;}
.y14a{bottom:125.839050px;}
.y1b6{bottom:133.854150px;}
.y193{bottom:136.846200px;}
.ya6{bottom:139.653600px;}
.y16d{bottom:139.786050px;}
.ydd{bottom:139.920300px;}
.y12a{bottom:140.084250px;}
.y67{bottom:141.017700px;}
.yc1{bottom:141.346050px;}
.y20{bottom:141.548550px;}
.y44{bottom:141.609000px;}
.y101{bottom:144.930000px;}
.y1b5{bottom:148.854150px;}
.y149{bottom:150.274050px;}
.y192{bottom:155.596200px;}
.y87{bottom:157.410150px;}
.ya5{bottom:160.803600px;}
.y129{bottom:161.540250px;}
.ydc{bottom:161.826300px;}
.y16c{bottom:161.980050px;}
.y1f{bottom:163.454550px;}
.y1b4{bottom:163.854150px;}
.y43{bottom:163.965000px;}
.y66{bottom:164.111700px;}
.yc0{bottom:164.296050px;}
.y100{bottom:166.674000px;}
.y1da{bottom:171.222000px;}
.y191{bottom:174.346200px;}
.y148{bottom:174.709050px;}
.y1b3{bottom:178.854150px;}
.y86{bottom:180.666150px;}
.ya4{bottom:181.953600px;}
.y128{bottom:182.996250px;}
.ydb{bottom:183.732300px;}
.y16b{bottom:184.174050px;}
.y1e{bottom:185.360550px;}
.y42{bottom:186.321000px;}
.y65{bottom:187.205700px;}
.ybf{bottom:187.246050px;}
.yff{bottom:188.418000px;}
.y1d9{bottom:189.972000px;}
.y190{bottom:193.096200px;}
.y1b2{bottom:193.854150px;}
.y147{bottom:199.144050px;}
.ya3{bottom:203.103600px;}
.y85{bottom:203.922150px;}
.y127{bottom:204.452250px;}
.yda{bottom:205.638300px;}
.y16a{bottom:206.368050px;}
.y1d{bottom:207.266550px;}
.y41{bottom:208.677000px;}
.y1d8{bottom:208.722000px;}
.y1b1{bottom:208.854150px;}
.yfe{bottom:210.162000px;}
.ybe{bottom:210.196050px;}
.y64{bottom:210.299700px;}
.y18f{bottom:211.846200px;}
.y146{bottom:223.579050px;}
.y1b0{bottom:223.854150px;}
.ya2{bottom:224.253600px;}
.y126{bottom:225.908250px;}
.y1d7{bottom:227.472000px;}
.yd9{bottom:227.544300px;}
.y169{bottom:228.562050px;}
.y1c{bottom:229.172550px;}
.y40{bottom:231.033000px;}
.yfd{bottom:231.906000px;}
.ybd{bottom:233.146050px;}
.y63{bottom:233.399700px;}
.y1af{bottom:238.854150px;}
.y84{bottom:239.166150px;}
.y18e{bottom:239.286000px;}
.ya1{bottom:245.403600px;}
.y145{bottom:248.014050px;}
.yd8{bottom:249.450300px;}
.y168{bottom:250.756050px;}
.y1b{bottom:251.078550px;}
.y3f{bottom:253.389000px;}
.yfc{bottom:253.650000px;}
.ybc{bottom:256.096050px;}
.y1d6{bottom:257.472000px;}
.y1ae{bottom:260.238150px;}
.y18d{bottom:261.480000px;}
.y83{bottom:262.422150px;}
.ya0{bottom:266.553600px;}
.y144{bottom:272.449050px;}
.y167{bottom:272.950050px;}
.y1a{bottom:272.984550px;}
.yfb{bottom:275.394000px;}
.y3e{bottom:275.745000px;}
.ybb{bottom:279.046050px;}
.y62{bottom:279.768000px;}
.y18c{bottom:283.674000px;}
.y82{bottom:285.678150px;}
.y9f{bottom:287.703600px;}
.yd7{bottom:293.244300px;}
.y166{bottom:295.144050px;}
.y143{bottom:296.884050px;}
.y3d{bottom:298.101000px;}
.y1d5{bottom:298.722000px;}
.yba{bottom:301.996050px;}
.y61{bottom:302.862000px;}
.y1ad{bottom:305.238150px;}
.y19{bottom:305.690550px;}
.y18b{bottom:305.868000px;}
.y9e{bottom:308.853600px;}
.y81{bottom:308.934150px;}
.yd6{bottom:315.150300px;}
.y165{bottom:317.338050px;}
.y1d4{bottom:317.472000px;}
.yfa{bottom:318.900000px;}
.y3c{bottom:320.457000px;}
.y142{bottom:323.014050px;}
.y60{bottom:325.956000px;}
.y18{bottom:327.596550px;}
.y1ac{bottom:327.738150px;}
.y18a{bottom:328.062000px;}
.y9d{bottom:330.003600px;}
.y80{bottom:332.190150px;}
.y1d3{bottom:336.222000px;}
.y164{bottom:339.532050px;}
.yf9{bottom:340.644000px;}
.y3b{bottom:342.813000px;}
.y141{bottom:347.449050px;}
.yb9{bottom:347.896050px;}
.y5f{bottom:349.050000px;}
.y17{bottom:349.502550px;}
.y1ab{bottom:350.238150px;}
.y189{bottom:350.256000px;}
.y9c{bottom:351.153600px;}
.y1d2{bottom:354.972000px;}
.y7f{bottom:355.446150px;}
.y163{bottom:361.726050px;}
.yf8{bottom:362.388000px;}
.y3a{bottom:365.169000px;}
.yb8{bottom:370.846050px;}
.y16{bottom:371.408550px;}
.y5e{bottom:372.144000px;}
.y9b{bottom:372.303600px;}
.y188{bottom:372.450000px;}
.y1aa{bottom:372.738150px;}
.y1d1{bottom:373.722000px;}
.y7e{bottom:378.702150px;}
.y162{bottom:383.920050px;}
.yf7{bottom:384.132000px;}
.y140{bottom:385.909950px;}
.y39{bottom:387.525000px;}
.y1d0{bottom:392.472000px;}
.y15{bottom:393.314550px;}
.y9a{bottom:393.453600px;}
.yb7{bottom:393.796050px;}
.y187{bottom:394.644000px;}
.y5d{bottom:395.238000px;}
.y1a9{bottom:395.238150px;}
.y7d{bottom:401.958150px;}
.y117{bottom:402.559500px;}
.yf6{bottom:405.876000px;}
.y161{bottom:406.114050px;}
.y38{bottom:409.881000px;}
.y1cf{bottom:411.222000px;}
.y14{bottom:415.220550px;}
.yb6{bottom:416.746050px;}
.y186{bottom:416.838000px;}
.y1a8{bottom:417.738150px;}
.y5c{bottom:418.332000px;}
.y7c{bottom:425.214150px;}
.yf5{bottom:427.620000px;}
.y160{bottom:428.308050px;}
.y1ce{bottom:429.972000px;}
.y13f{bottom:430.909950px;}
.y37{bottom:432.237000px;}
.y13{bottom:437.126550px;}
.y185{bottom:439.032000px;}
.yb5{bottom:439.696050px;}
.y1a7{bottom:440.238150px;}
.y5b{bottom:441.426000px;}
.y7b{bottom:448.470150px;}
.y1cd{bottom:448.722000px;}
.y116{bottom:448.744500px;}
.yf4{bottom:449.364000px;}
.y15f{bottom:450.502050px;}
.y13e{bottom:453.409950px;}
.y36{bottom:454.593000px;}
.y12{bottom:459.032550px;}
.y184{bottom:461.226000px;}
.yb4{bottom:462.646050px;}
.y1a6{bottom:462.738150px;}
.y5a{bottom:464.520000px;}
.y1cc{bottom:467.472000px;}
.yf3{bottom:471.108000px;}
.y7a{bottom:471.726150px;}
.y115{bottom:472.324500px;}
.y15e{bottom:472.696050px;}
.y13d{bottom:475.909950px;}
.y35{bottom:476.949000px;}
.y99{bottom:480.785400px;}
.y11{bottom:480.938550px;}
.y183{bottom:483.420000px;}
.y1a5{bottom:485.238150px;}
.yb3{bottom:485.596050px;}
.y1cb{bottom:486.222000px;}
.y59{bottom:487.614000px;}
.y114{bottom:491.074500px;}
.yf2{bottom:492.852000px;}
.y15d{bottom:494.890050px;}
.y79{bottom:494.982150px;}
.y13c{bottom:498.409950px;}
.y34{bottom:499.305000px;}
.y98{bottom:501.935400px;}
.y10{bottom:502.844550px;}
.y1ca{bottom:504.972000px;}
.y182{bottom:505.614000px;}
.y1a4{bottom:507.738150px;}
.yb2{bottom:508.546050px;}
.yd5{bottom:510.300300px;}
.y58{bottom:510.708000px;}
.yf1{bottom:514.596000px;}
.y113{bottom:514.654500px;}
.y125{bottom:516.225600px;}
.y15c{bottom:517.084050px;}
.y78{bottom:518.238150px;}
.y13b{bottom:520.909950px;}
.y33{bottom:521.661000px;}
.y97{bottom:523.085400px;}
.y1c9{bottom:523.722000px;}
.yf{bottom:524.750550px;}
.y181{bottom:527.808000px;}
.y1a3{bottom:530.238150px;}
.yb1{bottom:531.496050px;}
.y57{bottom:533.802000px;}
.yf0{bottom:536.340000px;}
.y112{bottom:539.089500px;}
.y15b{bottom:539.278050px;}
.y77{bottom:541.494150px;}
.y1c8{bottom:542.472000px;}
.y13a{bottom:543.409950px;}
.y32{bottom:544.017000px;}
.y96{bottom:544.235400px;}
.ye{bottom:546.656550px;}
.y180{bottom:550.002000px;}
.y1a2{bottom:552.738150px;}
.yb0{bottom:554.446050px;}
.yd4{bottom:555.198000px;}
.y56{bottom:556.896000px;}
.yef{bottom:558.084000px;}
.y124{bottom:560.163600px;}
.y1c7{bottom:561.222000px;}
.y15a{bottom:561.472050px;}
.y111{bottom:563.524500px;}
.y139{bottom:565.909950px;}
.y31{bottom:566.353500px;}
.yd{bottom:568.562550px;}
.y17f{bottom:572.196000px;}
.y1a1{bottom:575.238150px;}
.yd3{bottom:577.104000px;}
.yaf{bottom:577.396050px;}
.yee{bottom:579.828000px;}
.y1c6{bottom:579.972000px;}
.y55{bottom:579.990000px;}
.y123{bottom:581.619600px;}
.y159{bottom:583.666050px;}
.y110{bottom:587.104500px;}
.y138{bottom:588.409950px;}
.y95{bottom:589.459350px;}
.yc{bottom:590.468550px;}
.y17e{bottom:594.390000px;}
.y1a0{bottom:597.736050px;}
.y1c5{bottom:598.722000px;}
.yd2{bottom:599.010000px;}
.yae{bottom:600.346050px;}
.yed{bottom:601.572000px;}
.y122{bottom:603.075600px;}
.y54{bottom:603.084000px;}
.y158{bottom:605.860050px;}
.y10f{bottom:610.684500px;}
.y137{bottom:610.909950px;}
.yb{bottom:612.368550px;}
.y30{bottom:614.233500px;}
.y94{bottom:616.444350px;}
.y17d{bottom:616.584000px;}
.y1c4{bottom:617.472000px;}
.yd1{bottom:620.916000px;}
.yad{bottom:623.296050px;}
.yec{bottom:623.316000px;}
.y76{bottom:623.922000px;}
.y121{bottom:624.544350px;}
.y53{bottom:626.178000px;}
.y157{bottom:628.054050px;}
.y136{bottom:633.409950px;}
.y10e{bottom:634.264500px;}
.ya{bottom:634.418550px;}
.y1c3{bottom:636.222000px;}
.y17c{bottom:638.778000px;}
.y2f{bottom:641.218500px;}
.y19f{bottom:642.736050px;}
.yd0{bottom:642.822000px;}
.y93{bottom:643.429350px;}
.yeb{bottom:645.060000px;}
.yac{bottom:646.246050px;}
.y75{bottom:647.178000px;}
.y52{bottom:649.272000px;}
.y156{bottom:650.248050px;}
.y10d{bottom:653.014500px;}
.y1c2{bottom:654.972000px;}
.y17b{bottom:660.972000px;}
.y19e{bottom:661.486050px;}
.y92{bottom:662.179350px;}
.ycf{bottom:664.728000px;}
.yea{bottom:666.804000px;}
.y2e{bottom:668.203500px;}
.yab{bottom:669.196050px;}
.y74{bottom:670.434000px;}
.y51{bottom:672.366000px;}
.y155{bottom:672.442050px;}
.y1c1{bottom:673.722000px;}
.y120{bottom:678.169350px;}
.y9{bottom:678.968550px;}
.y135{bottom:679.996950px;}
.y19d{bottom:680.236050px;}
.y91{bottom:680.929350px;}
.y17a{bottom:683.166000px;}
.yce{bottom:686.634000px;}
.y2d{bottom:687.253500px;}
.ye9{bottom:688.548000px;}
.y10c{bottom:691.050150px;}
.yaa{bottom:692.146050px;}
.y1c0{bottom:692.472000px;}
.y73{bottom:693.690000px;}
.y154{bottom:694.636050px;}
.y50{bottom:695.460000px;}
.y8{bottom:697.718550px;}
.y19c{bottom:698.986050px;}
.y11f{bottom:701.749350px;}
.y134{bottom:704.431950px;}
.y90{bottom:704.554350px;}
.y179{bottom:705.360000px;}
.ycd{bottom:708.540000px;}
.y1bf{bottom:711.222000px;}
.y2c{bottom:714.238500px;}
.ya9{bottom:715.096050px;}
.y153{bottom:716.830050px;}
.y72{bottom:716.946000px;}
.y4f{bottom:718.554000px;}
.y11e{bottom:725.329350px;}
.y19b{bottom:726.241050px;}
.y178{bottom:727.554000px;}
.y8f{bottom:728.179350px;}
.y133{bottom:728.866950px;}
.y1be{bottom:729.972000px;}
.ycc{bottom:730.446000px;}
.ye8{bottom:732.054000px;}
.y10b{bottom:734.964000px;}
.ya8{bottom:738.046050px;}
.y152{bottom:739.024050px;}
.y7{bottom:739.854300px;}
.y71{bottom:740.202000px;}
.y2b{bottom:741.223500px;}
.y4e{bottom:741.648000px;}
.y19a{bottom:744.991050px;}
.y11d{bottom:748.909350px;}
.y177{bottom:749.748000px;}
.ycb{bottom:752.352000px;}
.y132{bottom:753.301950px;}
.ye7{bottom:753.798000px;}
.y1bd{bottom:755.100000px;}
.y8e{bottom:755.164350px;}
.y10a{bottom:756.420000px;}
.y6{bottom:762.354300px;}
.y70{bottom:763.458000px;}
.y4d{bottom:764.742000px;}
.y2a{bottom:768.208500px;}
.y1bc{bottom:769.500000px;}
.y176{bottom:771.942000px;}
.y199{bottom:772.246050px;}
.y11c{bottom:772.489350px;}
.yca{bottom:774.258000px;}
.ye6{bottom:775.542000px;}
.y131{bottom:777.736950px;}
.y8d{bottom:782.149350px;}
.y151{bottom:785.311050px;}
.y6f{bottom:786.714000px;}
.y29{bottom:787.258500px;}
.y4c{bottom:787.836000px;}
.y198{bottom:790.996050px;}
.y175{bottom:794.136000px;}
.y11b{bottom:796.069350px;}
.yc9{bottom:796.164000px;}
.ye5{bottom:797.286000px;}
.y109{bottom:799.314000px;}
.y130{bottom:802.171950px;}
.y8c{bottom:809.134350px;}
.y150{bottom:809.746050px;}
.y6e{bottom:809.970000px;}
.y4b{bottom:810.930000px;}
.y28{bottom:814.243500px;}
.y1bb{bottom:814.500000px;}
.y174{bottom:816.330000px;}
.yc8{bottom:818.070000px;}
.ye4{bottom:819.030000px;}
.y11a{bottom:819.649350px;}
.y108{bottom:820.770000px;}
.y12f{bottom:826.606950px;}
.y5{bottom:829.500000px;}
.y8b{bottom:832.714350px;}
.y6d{bottom:833.226000px;}
.y4a{bottom:834.024000px;}
.y14f{bottom:834.181050px;}
.y197{bottom:837.000000px;}
.y173{bottom:838.524000px;}
.yc7{bottom:839.976000px;}
.ye3{bottom:840.774000px;}
.y27{bottom:841.228500px;}
.y107{bottom:842.226000px;}
.y1ba{bottom:844.500000px;}
.y119{bottom:846.634350px;}
.y12e{bottom:851.039100px;}
.y8a{bottom:851.464350px;}
.y6c{bottom:856.482000px;}
.y49{bottom:857.118000px;}
.y14e{bottom:858.616050px;}
.y4{bottom:859.500000px;}
.y172{bottom:860.718000px;}
.yc6{bottom:861.882000px;}
.ye2{bottom:862.518000px;}
.y106{bottom:863.682000px;}
.y118{bottom:865.384350px;}
.y26{bottom:868.213500px;}
.y12d{bottom:869.789100px;}
.y89{bottom:870.214350px;}
.y1b9{bottom:874.500000px;}
.y6b{bottom:879.738000px;}
.y48{bottom:880.212000px;}
.y196{bottom:882.000000px;}
.y171{bottom:882.912000px;}
.y14d{bottom:883.051050px;}
.yc5{bottom:883.788000px;}
.ye1{bottom:884.262000px;}
.y105{bottom:885.138000px;}
.y25{bottom:887.263500px;}
.y12c{bottom:888.539100px;}
.y88{bottom:888.964350px;}
.y3{bottom:889.500000px;}
.y6a{bottom:902.994000px;}
.y47{bottom:903.306000px;}
.y195{bottom:904.500000px;}
.y170{bottom:905.106000px;}
.yc4{bottom:905.694000px;}
.ye0{bottom:906.006000px;}
.y104{bottom:906.594000px;}
.y14c{bottom:907.486050px;}
.y2{bottom:919.500000px;}
.y69{bottom:926.250000px;}
.y46{bottom:926.400000px;}
.y24{bottom:927.000000px;}
.y16f{bottom:927.300000px;}
.yc3{bottom:927.600000px;}
.ydf{bottom:927.750000px;}
.y103{bottom:928.050000px;}
.y14b{bottom:931.921050px;}
.y1b8{bottom:934.500000px;}
.h8{height:39.326660px;}
.h9{height:39.888000px;}
.ha{height:40.757812px;}
.h6{height:41.396484px;}
.h5{height:49.860000px;}
.h3{height:50.580000px;}
.h1{height:50.947266px;}
.h7{height:54.367266px;}
.h4{height:61.136719px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x16{left:72.119850px;}
.x6{left:76.378950px;}
.xa{left:82.381950px;}
.x1e{left:87.434850px;}
.x28{left:97.263750px;}
.x2{left:112.500000px;}
.x1f{left:117.126900px;}
.x17{left:118.769850px;}
.xb{left:121.378950px;}
.x3{left:127.381950px;}
.x5{left:135.000000px;}
.x24{left:137.991750px;}
.x27{left:142.263750px;}
.x18{left:168.149850px;}
.x20{left:174.861900px;}
.x29{left:180.541950px;}
.x19{left:235.799850px;}
.x21{left:248.226900px;}
.x15{left:249.599850px;}
.xc{left:272.803950px;}
.x26{left:306.399750px;}
.xf{left:309.658950px;}
.x10{left:316.241850px;}
.x1a{left:330.944850px;}
.x14{left:349.166850px;}
.x25{left:351.399750px;}
.x22{left:354.756900px;}
.x1b{left:382.964850px;}
.x11{left:402.521850px;}
.xd{left:406.768950px;}
.x7{left:415.888950px;}
.x9{left:435.883950px;}
.x1c{left:447.194850px;}
.x23{left:477.336900px;}
.x8{left:482.773950px;}
.x12{left:488.801850px;}
.xe{left:537.223950px;}
.x1d{left:549.374850px;}
.x13{left:582.986850px;}
.x1{left:635.390550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.040000pt;}
.ls2b{letter-spacing:-2.026667pt;}
.ls25{letter-spacing:-1.792000pt;}
.ls2d{letter-spacing:-1.664000pt;}
.ls11{letter-spacing:-1.024000pt;}
.ls10{letter-spacing:-0.896000pt;}
.lsd{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.448000pt;}
.ls16{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls23{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls1a{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.576000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.704000pt;}
.ls29{letter-spacing:0.768000pt;}
.ls14{letter-spacing:0.896000pt;}
.ls15{letter-spacing:1.024000pt;}
.ls1c{letter-spacing:1.216000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls2a{letter-spacing:2.645333pt;}
.ls3{letter-spacing:3.840000pt;}
.ls2c{letter-spacing:4.224000pt;}
.ls1d{letter-spacing:4.544000pt;}
.ls24{letter-spacing:5.632000pt;}
.ls28{letter-spacing:7.360000pt;}
.ls1{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls1b{letter-spacing:9.664000pt;}
.ls1f{letter-spacing:144.053333pt;}
.ls22{letter-spacing:179.733333pt;}
.ls20{letter-spacing:182.506667pt;}
.ls1e{letter-spacing:225.333333pt;}
.ls21{letter-spacing:266.240000pt;}
.ws39{word-spacing:-43.776000pt;}
.ws34{word-spacing:-43.584000pt;}
.wsd{word-spacing:-43.264000pt;}
.ws1{word-spacing:-43.136000pt;}
.ws35{word-spacing:-43.072000pt;}
.ws38{word-spacing:-43.008000pt;}
.ws3b{word-spacing:-42.880000pt;}
.wsb{word-spacing:-42.816000pt;}
.ws37{word-spacing:-42.752000pt;}
.wsc{word-spacing:-42.624000pt;}
.ws4{word-spacing:-35.946667pt;}
.ws3e{word-spacing:-28.757333pt;}
.ws3f{word-spacing:-28.544000pt;}
.ws3d{word-spacing:-22.506667pt;}
.ws17{word-spacing:-18.624000pt;}
.ws16{word-spacing:-18.368000pt;}
.ws14{word-spacing:-18.304000pt;}
.ws19{word-spacing:-18.112000pt;}
.ws15{word-spacing:-17.984000pt;}
.ws18{word-spacing:-17.600000pt;}
.ws36{word-spacing:-16.192000pt;}
.ws3a{word-spacing:-15.808000pt;}
.wsf{word-spacing:-14.986667pt;}
.ws3c{word-spacing:-14.720000pt;}
.ws0{word-spacing:-7.573333pt;}
.ws2{word-spacing:0.000000pt;}
.ws24{word-spacing:136.960000pt;}
.ws21{word-spacing:163.626667pt;}
.ws3{word-spacing:164.053333pt;}
.ws27{word-spacing:164.746667pt;}
.ws25{word-spacing:167.520000pt;}
.ws1e{word-spacing:183.680000pt;}
.wsa{word-spacing:201.706667pt;}
.ws1a{word-spacing:210.346667pt;}
.ws23{word-spacing:215.360000pt;}
.ws8{word-spacing:228.373333pt;}
.ws22{word-spacing:228.906667pt;}
.ws26{word-spacing:232.320000pt;}
.ws1b{word-spacing:238.453333pt;}
.ws1c{word-spacing:239.893333pt;}
.ws2a{word-spacing:249.706667pt;}
.ws7{word-spacing:255.040000pt;}
.ws2e{word-spacing:258.453333pt;}
.ws20{word-spacing:266.560000pt;}
.ws32{word-spacing:275.573333pt;}
.ws29{word-spacing:276.373333pt;}
.ws2d{word-spacing:281.440000pt;}
.ws30{word-spacing:285.120000pt;}
.ws2f{word-spacing:297.280000pt;}
.ws2b{word-spacing:308.106667pt;}
.ws12{word-spacing:327.040000pt;}
.ws5{word-spacing:328.853333pt;}
.ws11{word-spacing:353.706667pt;}
.ws10{word-spacing:368.586667pt;}
.ws13{word-spacing:385.386667pt;}
.wse{word-spacing:390.346667pt;}
.ws31{word-spacing:390.666667pt;}
.ws33{word-spacing:444.533333pt;}
.ws2c{word-spacing:454.560000pt;}
.ws28{word-spacing:481.226667pt;}
.ws1d{word-spacing:561.493333pt;}
.ws1f{word-spacing:571.306667pt;}
.ws9{word-spacing:1039.306667pt;}
.ws6{word-spacing:1059.093333pt;}
._0{margin-left:-843.466667pt;}
._9{margin-left:-12.960000pt;}
._8{margin-left:-10.560000pt;}
._e{margin-left:-8.000000pt;}
._b{margin-left:-6.826667pt;}
._1{margin-left:-5.280000pt;}
._5{margin-left:-3.840000pt;}
._6{margin-left:-2.133333pt;}
._3{margin-left:-1.120000pt;}
._2{width:1.653333pt;}
._a{width:2.666667pt;}
._4{width:3.733333pt;}
._d{width:4.800000pt;}
._f{width:5.770667pt;}
._3f{width:6.666667pt;}
._7{width:7.573333pt;}
._c{width:9.024000pt;}
._18{width:10.080000pt;}
._10{width:67.413333pt;}
._33{width:83.040000pt;}
._32{width:122.133333pt;}
._3b{width:137.973333pt;}
._15{width:150.880000pt;}
._2c{width:155.840000pt;}
._1c{width:206.080000pt;}
._1f{width:217.706667pt;}
._29{width:230.346667pt;}
._2b{width:239.573333pt;}
._13{width:243.360000pt;}
._22{width:253.440000pt;}
._27{width:254.933333pt;}
._19{width:264.000000pt;}
._2d{width:266.240000pt;}
._16{width:270.026667pt;}
._2a{width:273.973333pt;}
._23{width:281.546667pt;}
._2e{width:291.360000pt;}
._25{width:308.213333pt;}
._1b{width:311.200000pt;}
._35{width:312.266667pt;}
._14{width:315.093333pt;}
._3c{width:317.226667pt;}
._26{width:319.946667pt;}
._2f{width:323.093333pt;}
._28{width:333.226667pt;}
._38{width:364.480000pt;}
._1a{width:368.693333pt;}
._37{width:373.226667pt;}
._21{width:377.866667pt;}
._36{width:384.533333pt;}
._3e{width:394.666667pt;}
._39{width:405.813333pt;}
._34{width:411.840000pt;}
._24{width:425.066667pt;}
._3d{width:429.280000pt;}
._1e{width:445.760000pt;}
._1d{width:462.666667pt;}
._30{width:469.546667pt;}
._20{width:501.013333pt;}
._3a{width:669.013333pt;}
._31{width:700.480000pt;}
._11{width:819.200000pt;}
._12{width:893.066667pt;}
._17{width:1066.026667pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:34.666667pt;}
.y22{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y16e{bottom:104.526267pt;}
.y68{bottom:104.821067pt;}
.yde{bottom:104.901600pt;}
.y194{bottom:104.974400pt;}
.yc2{bottom:105.240933pt;}
.ya7{bottom:105.336533pt;}
.y45{bottom:105.346667pt;}
.y12b{bottom:105.447333pt;}
.y1b7{bottom:105.648133pt;}
.y21{bottom:105.948933pt;}
.y102{bottom:108.826667pt;}
.y14a{bottom:111.856933pt;}
.y1b6{bottom:118.981467pt;}
.y193{bottom:121.641067pt;}
.ya6{bottom:124.136533pt;}
.y16d{bottom:124.254267pt;}
.ydd{bottom:124.373600pt;}
.y12a{bottom:124.519333pt;}
.y67{bottom:125.349067pt;}
.yc1{bottom:125.640933pt;}
.y20{bottom:125.820933pt;}
.y44{bottom:125.874667pt;}
.y101{bottom:128.826667pt;}
.y1b5{bottom:132.314800pt;}
.y149{bottom:133.576933pt;}
.y192{bottom:138.307733pt;}
.y87{bottom:139.920133pt;}
.ya5{bottom:142.936533pt;}
.y129{bottom:143.591333pt;}
.ydc{bottom:143.845600pt;}
.y16c{bottom:143.982267pt;}
.y1f{bottom:145.292933pt;}
.y1b4{bottom:145.648133pt;}
.y43{bottom:145.746667pt;}
.y66{bottom:145.877067pt;}
.yc0{bottom:146.040933pt;}
.y100{bottom:148.154667pt;}
.y1da{bottom:152.197333pt;}
.y191{bottom:154.974400pt;}
.y148{bottom:155.296933pt;}
.y1b3{bottom:158.981467pt;}
.y86{bottom:160.592133pt;}
.ya4{bottom:161.736533pt;}
.y128{bottom:162.663333pt;}
.ydb{bottom:163.317600pt;}
.y16b{bottom:163.710267pt;}
.y1e{bottom:164.764933pt;}
.y42{bottom:165.618667pt;}
.y65{bottom:166.405067pt;}
.ybf{bottom:166.440933pt;}
.yff{bottom:167.482667pt;}
.y1d9{bottom:168.864000pt;}
.y190{bottom:171.641067pt;}
.y1b2{bottom:172.314800pt;}
.y147{bottom:177.016933pt;}
.ya3{bottom:180.536533pt;}
.y85{bottom:181.264133pt;}
.y127{bottom:181.735333pt;}
.yda{bottom:182.789600pt;}
.y16a{bottom:183.438267pt;}
.y1d{bottom:184.236933pt;}
.y41{bottom:185.490667pt;}
.y1d8{bottom:185.530667pt;}
.y1b1{bottom:185.648133pt;}
.yfe{bottom:186.810667pt;}
.ybe{bottom:186.840933pt;}
.y64{bottom:186.933067pt;}
.y18f{bottom:188.307733pt;}
.y146{bottom:198.736933pt;}
.y1b0{bottom:198.981467pt;}
.ya2{bottom:199.336533pt;}
.y126{bottom:200.807333pt;}
.y1d7{bottom:202.197333pt;}
.yd9{bottom:202.261600pt;}
.y169{bottom:203.166267pt;}
.y1c{bottom:203.708933pt;}
.y40{bottom:205.362667pt;}
.yfd{bottom:206.138667pt;}
.ybd{bottom:207.240933pt;}
.y63{bottom:207.466400pt;}
.y1af{bottom:212.314800pt;}
.y84{bottom:212.592133pt;}
.y18e{bottom:212.698667pt;}
.ya1{bottom:218.136533pt;}
.y145{bottom:220.456933pt;}
.yd8{bottom:221.733600pt;}
.y168{bottom:222.894267pt;}
.y1b{bottom:223.180933pt;}
.y3f{bottom:225.234667pt;}
.yfc{bottom:225.466667pt;}
.ybc{bottom:227.640933pt;}
.y1d6{bottom:228.864000pt;}
.y1ae{bottom:231.322800pt;}
.y18d{bottom:232.426667pt;}
.y83{bottom:233.264133pt;}
.ya0{bottom:236.936533pt;}
.y144{bottom:242.176933pt;}
.y167{bottom:242.622267pt;}
.y1a{bottom:242.652933pt;}
.yfb{bottom:244.794667pt;}
.y3e{bottom:245.106667pt;}
.ybb{bottom:248.040933pt;}
.y62{bottom:248.682667pt;}
.y18c{bottom:252.154667pt;}
.y82{bottom:253.936133pt;}
.y9f{bottom:255.736533pt;}
.yd7{bottom:260.661600pt;}
.y166{bottom:262.350267pt;}
.y143{bottom:263.896933pt;}
.y3d{bottom:264.978667pt;}
.y1d5{bottom:265.530667pt;}
.yba{bottom:268.440933pt;}
.y61{bottom:269.210667pt;}
.y1ad{bottom:271.322800pt;}
.y19{bottom:271.724933pt;}
.y18b{bottom:271.882667pt;}
.y9e{bottom:274.536533pt;}
.y81{bottom:274.608133pt;}
.yd6{bottom:280.133600pt;}
.y165{bottom:282.078267pt;}
.y1d4{bottom:282.197333pt;}
.yfa{bottom:283.466667pt;}
.y3c{bottom:284.850667pt;}
.y142{bottom:287.123600pt;}
.y60{bottom:289.738667pt;}
.y18{bottom:291.196933pt;}
.y1ac{bottom:291.322800pt;}
.y18a{bottom:291.610667pt;}
.y9d{bottom:293.336533pt;}
.y80{bottom:295.280133pt;}
.y1d3{bottom:298.864000pt;}
.y164{bottom:301.806267pt;}
.yf9{bottom:302.794667pt;}
.y3b{bottom:304.722667pt;}
.y141{bottom:308.843600pt;}
.yb9{bottom:309.240933pt;}
.y5f{bottom:310.266667pt;}
.y17{bottom:310.668933pt;}
.y1ab{bottom:311.322800pt;}
.y189{bottom:311.338667pt;}
.y9c{bottom:312.136533pt;}
.y1d2{bottom:315.530667pt;}
.y7f{bottom:315.952133pt;}
.y163{bottom:321.534267pt;}
.yf8{bottom:322.122667pt;}
.y3a{bottom:324.594667pt;}
.yb8{bottom:329.640933pt;}
.y16{bottom:330.140933pt;}
.y5e{bottom:330.794667pt;}
.y9b{bottom:330.936533pt;}
.y188{bottom:331.066667pt;}
.y1aa{bottom:331.322800pt;}
.y1d1{bottom:332.197333pt;}
.y7e{bottom:336.624133pt;}
.y162{bottom:341.262267pt;}
.yf7{bottom:341.450667pt;}
.y140{bottom:343.031067pt;}
.y39{bottom:344.466667pt;}
.y1d0{bottom:348.864000pt;}
.y15{bottom:349.612933pt;}
.y9a{bottom:349.736533pt;}
.yb7{bottom:350.040933pt;}
.y187{bottom:350.794667pt;}
.y5d{bottom:351.322667pt;}
.y1a9{bottom:351.322800pt;}
.y7d{bottom:357.296133pt;}
.y117{bottom:357.830667pt;}
.yf6{bottom:360.778667pt;}
.y161{bottom:360.990267pt;}
.y38{bottom:364.338667pt;}
.y1cf{bottom:365.530667pt;}
.y14{bottom:369.084933pt;}
.yb6{bottom:370.440933pt;}
.y186{bottom:370.522667pt;}
.y1a8{bottom:371.322800pt;}
.y5c{bottom:371.850667pt;}
.y7c{bottom:377.968133pt;}
.yf5{bottom:380.106667pt;}
.y160{bottom:380.718267pt;}
.y1ce{bottom:382.197333pt;}
.y13f{bottom:383.031067pt;}
.y37{bottom:384.210667pt;}
.y13{bottom:388.556933pt;}
.y185{bottom:390.250667pt;}
.yb5{bottom:390.840933pt;}
.y1a7{bottom:391.322800pt;}
.y5b{bottom:392.378667pt;}
.y7b{bottom:398.640133pt;}
.y1cd{bottom:398.864000pt;}
.y116{bottom:398.884000pt;}
.yf4{bottom:399.434667pt;}
.y15f{bottom:400.446267pt;}
.y13e{bottom:403.031067pt;}
.y36{bottom:404.082667pt;}
.y12{bottom:408.028933pt;}
.y184{bottom:409.978667pt;}
.yb4{bottom:411.240933pt;}
.y1a6{bottom:411.322800pt;}
.y5a{bottom:412.906667pt;}
.y1cc{bottom:415.530667pt;}
.yf3{bottom:418.762667pt;}
.y7a{bottom:419.312133pt;}
.y115{bottom:419.844000pt;}
.y15e{bottom:420.174267pt;}
.y13d{bottom:423.031067pt;}
.y35{bottom:423.954667pt;}
.y99{bottom:427.364800pt;}
.y11{bottom:427.500933pt;}
.y183{bottom:429.706667pt;}
.y1a5{bottom:431.322800pt;}
.yb3{bottom:431.640933pt;}
.y1cb{bottom:432.197333pt;}
.y59{bottom:433.434667pt;}
.y114{bottom:436.510667pt;}
.yf2{bottom:438.090667pt;}
.y15d{bottom:439.902267pt;}
.y79{bottom:439.984133pt;}
.y13c{bottom:443.031067pt;}
.y34{bottom:443.826667pt;}
.y98{bottom:446.164800pt;}
.y10{bottom:446.972933pt;}
.y1ca{bottom:448.864000pt;}
.y182{bottom:449.434667pt;}
.y1a4{bottom:451.322800pt;}
.yb2{bottom:452.040933pt;}
.yd5{bottom:453.600267pt;}
.y58{bottom:453.962667pt;}
.yf1{bottom:457.418667pt;}
.y113{bottom:457.470667pt;}
.y125{bottom:458.867200pt;}
.y15c{bottom:459.630267pt;}
.y78{bottom:460.656133pt;}
.y13b{bottom:463.031067pt;}
.y33{bottom:463.698667pt;}
.y97{bottom:464.964800pt;}
.y1c9{bottom:465.530667pt;}
.yf{bottom:466.444933pt;}
.y181{bottom:469.162667pt;}
.y1a3{bottom:471.322800pt;}
.yb1{bottom:472.440933pt;}
.y57{bottom:474.490667pt;}
.yf0{bottom:476.746667pt;}
.y112{bottom:479.190667pt;}
.y15b{bottom:479.358267pt;}
.y77{bottom:481.328133pt;}
.y1c8{bottom:482.197333pt;}
.y13a{bottom:483.031067pt;}
.y32{bottom:483.570667pt;}
.y96{bottom:483.764800pt;}
.ye{bottom:485.916933pt;}
.y180{bottom:488.890667pt;}
.y1a2{bottom:491.322800pt;}
.yb0{bottom:492.840933pt;}
.yd4{bottom:493.509333pt;}
.y56{bottom:495.018667pt;}
.yef{bottom:496.074667pt;}
.y124{bottom:497.923200pt;}
.y1c7{bottom:498.864000pt;}
.y15a{bottom:499.086267pt;}
.y111{bottom:500.910667pt;}
.y139{bottom:503.031067pt;}
.y31{bottom:503.425333pt;}
.yd{bottom:505.388933pt;}
.y17f{bottom:508.618667pt;}
.y1a1{bottom:511.322800pt;}
.yd3{bottom:512.981333pt;}
.yaf{bottom:513.240933pt;}
.yee{bottom:515.402667pt;}
.y1c6{bottom:515.530667pt;}
.y55{bottom:515.546667pt;}
.y123{bottom:516.995200pt;}
.y159{bottom:518.814267pt;}
.y110{bottom:521.870667pt;}
.y138{bottom:523.031067pt;}
.y95{bottom:523.963867pt;}
.yc{bottom:524.860933pt;}
.y17e{bottom:528.346667pt;}
.y1a0{bottom:531.320933pt;}
.y1c5{bottom:532.197333pt;}
.yd2{bottom:532.453333pt;}
.yae{bottom:533.640933pt;}
.yed{bottom:534.730667pt;}
.y122{bottom:536.067200pt;}
.y54{bottom:536.074667pt;}
.y158{bottom:538.542267pt;}
.y10f{bottom:542.830667pt;}
.y137{bottom:543.031067pt;}
.yb{bottom:544.327600pt;}
.y30{bottom:545.985333pt;}
.y94{bottom:547.950533pt;}
.y17d{bottom:548.074667pt;}
.y1c4{bottom:548.864000pt;}
.yd1{bottom:551.925333pt;}
.yad{bottom:554.040933pt;}
.yec{bottom:554.058667pt;}
.y76{bottom:554.597333pt;}
.y121{bottom:555.150533pt;}
.y53{bottom:556.602667pt;}
.y157{bottom:558.270267pt;}
.y136{bottom:563.031067pt;}
.y10e{bottom:563.790667pt;}
.ya{bottom:563.927600pt;}
.y1c3{bottom:565.530667pt;}
.y17c{bottom:567.802667pt;}
.y2f{bottom:569.972000pt;}
.y19f{bottom:571.320933pt;}
.yd0{bottom:571.397333pt;}
.y93{bottom:571.937200pt;}
.yeb{bottom:573.386667pt;}
.yac{bottom:574.440933pt;}
.y75{bottom:575.269333pt;}
.y52{bottom:577.130667pt;}
.y156{bottom:577.998267pt;}
.y10d{bottom:580.457333pt;}
.y1c2{bottom:582.197333pt;}
.y17b{bottom:587.530667pt;}
.y19e{bottom:587.987600pt;}
.y92{bottom:588.603867pt;}
.ycf{bottom:590.869333pt;}
.yea{bottom:592.714667pt;}
.y2e{bottom:593.958667pt;}
.yab{bottom:594.840933pt;}
.y74{bottom:595.941333pt;}
.y51{bottom:597.658667pt;}
.y155{bottom:597.726267pt;}
.y1c1{bottom:598.864000pt;}
.y120{bottom:602.817200pt;}
.y9{bottom:603.527600pt;}
.y135{bottom:604.441733pt;}
.y19d{bottom:604.654267pt;}
.y91{bottom:605.270533pt;}
.y17a{bottom:607.258667pt;}
.yce{bottom:610.341333pt;}
.y2d{bottom:610.892000pt;}
.ye9{bottom:612.042667pt;}
.y10c{bottom:614.266800pt;}
.yaa{bottom:615.240933pt;}
.y1c0{bottom:615.530667pt;}
.y73{bottom:616.613333pt;}
.y154{bottom:617.454267pt;}
.y50{bottom:618.186667pt;}
.y8{bottom:620.194267pt;}
.y19c{bottom:621.320933pt;}
.y11f{bottom:623.777200pt;}
.y134{bottom:626.161733pt;}
.y90{bottom:626.270533pt;}
.y179{bottom:626.986667pt;}
.ycd{bottom:629.813333pt;}
.y1bf{bottom:632.197333pt;}
.y2c{bottom:634.878667pt;}
.ya9{bottom:635.640933pt;}
.y153{bottom:637.182267pt;}
.y72{bottom:637.285333pt;}
.y4f{bottom:638.714667pt;}
.y11e{bottom:644.737200pt;}
.y19b{bottom:645.547600pt;}
.y178{bottom:646.714667pt;}
.y8f{bottom:647.270533pt;}
.y133{bottom:647.881733pt;}
.y1be{bottom:648.864000pt;}
.ycc{bottom:649.285333pt;}
.ye8{bottom:650.714667pt;}
.y10b{bottom:653.301333pt;}
.ya8{bottom:656.040933pt;}
.y152{bottom:656.910267pt;}
.y7{bottom:657.648267pt;}
.y71{bottom:657.957333pt;}
.y2b{bottom:658.865333pt;}
.y4e{bottom:659.242667pt;}
.y19a{bottom:662.214267pt;}
.y11d{bottom:665.697200pt;}
.y177{bottom:666.442667pt;}
.ycb{bottom:668.757333pt;}
.y132{bottom:669.601733pt;}
.ye7{bottom:670.042667pt;}
.y1bd{bottom:671.200000pt;}
.y8e{bottom:671.257200pt;}
.y10a{bottom:672.373333pt;}
.y6{bottom:677.648267pt;}
.y70{bottom:678.629333pt;}
.y4d{bottom:679.770667pt;}
.y2a{bottom:682.852000pt;}
.y1bc{bottom:684.000000pt;}
.y176{bottom:686.170667pt;}
.y199{bottom:686.440933pt;}
.y11c{bottom:686.657200pt;}
.yca{bottom:688.229333pt;}
.ye6{bottom:689.370667pt;}
.y131{bottom:691.321733pt;}
.y8d{bottom:695.243867pt;}
.y151{bottom:698.054267pt;}
.y6f{bottom:699.301333pt;}
.y29{bottom:699.785333pt;}
.y4c{bottom:700.298667pt;}
.y198{bottom:703.107600pt;}
.y175{bottom:705.898667pt;}
.y11b{bottom:707.617200pt;}
.yc9{bottom:707.701333pt;}
.ye5{bottom:708.698667pt;}
.y109{bottom:710.501333pt;}
.y130{bottom:713.041733pt;}
.y8c{bottom:719.230533pt;}
.y150{bottom:719.774267pt;}
.y6e{bottom:719.973333pt;}
.y4b{bottom:720.826667pt;}
.y28{bottom:723.772000pt;}
.y1bb{bottom:724.000000pt;}
.y174{bottom:725.626667pt;}
.yc8{bottom:727.173333pt;}
.ye4{bottom:728.026667pt;}
.y11a{bottom:728.577200pt;}
.y108{bottom:729.573333pt;}
.y12f{bottom:734.761733pt;}
.y5{bottom:737.333333pt;}
.y8b{bottom:740.190533pt;}
.y6d{bottom:740.645333pt;}
.y4a{bottom:741.354667pt;}
.y14f{bottom:741.494267pt;}
.y197{bottom:744.000000pt;}
.y173{bottom:745.354667pt;}
.yc7{bottom:746.645333pt;}
.ye3{bottom:747.354667pt;}
.y27{bottom:747.758667pt;}
.y107{bottom:748.645333pt;}
.y1ba{bottom:750.666667pt;}
.y119{bottom:752.563867pt;}
.y12e{bottom:756.479200pt;}
.y8a{bottom:756.857200pt;}
.y6c{bottom:761.317333pt;}
.y49{bottom:761.882667pt;}
.y14e{bottom:763.214267pt;}
.y4{bottom:764.000000pt;}
.y172{bottom:765.082667pt;}
.yc6{bottom:766.117333pt;}
.ye2{bottom:766.682667pt;}
.y106{bottom:767.717333pt;}
.y118{bottom:769.230533pt;}
.y26{bottom:771.745333pt;}
.y12d{bottom:773.145867pt;}
.y89{bottom:773.523867pt;}
.y1b9{bottom:777.333333pt;}
.y6b{bottom:781.989333pt;}
.y48{bottom:782.410667pt;}
.y196{bottom:784.000000pt;}
.y171{bottom:784.810667pt;}
.y14d{bottom:784.934267pt;}
.yc5{bottom:785.589333pt;}
.ye1{bottom:786.010667pt;}
.y105{bottom:786.789333pt;}
.y25{bottom:788.678667pt;}
.y12c{bottom:789.812533pt;}
.y88{bottom:790.190533pt;}
.y3{bottom:790.666667pt;}
.y6a{bottom:802.661333pt;}
.y47{bottom:802.938667pt;}
.y195{bottom:804.000000pt;}
.y170{bottom:804.538667pt;}
.yc4{bottom:805.061333pt;}
.ye0{bottom:805.338667pt;}
.y104{bottom:805.861333pt;}
.y14c{bottom:806.654267pt;}
.y2{bottom:817.333333pt;}
.y69{bottom:823.333333pt;}
.y46{bottom:823.466667pt;}
.y24{bottom:824.000000pt;}
.y16f{bottom:824.266667pt;}
.yc3{bottom:824.533333pt;}
.ydf{bottom:824.666667pt;}
.y103{bottom:824.933333pt;}
.y14b{bottom:828.374267pt;}
.y1b8{bottom:830.666667pt;}
.h8{height:34.957031pt;}
.h9{height:35.456000pt;}
.ha{height:36.229167pt;}
.h6{height:36.796875pt;}
.h5{height:44.320000pt;}
.h3{height:44.960000pt;}
.h1{height:45.286458pt;}
.h7{height:48.326458pt;}
.h4{height:54.343750pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x16{left:64.106533pt;}
.x6{left:67.892400pt;}
.xa{left:73.228400pt;}
.x1e{left:77.719867pt;}
.x28{left:86.456667pt;}
.x2{left:100.000000pt;}
.x1f{left:104.112800pt;}
.x17{left:105.573200pt;}
.xb{left:107.892400pt;}
.x3{left:113.228400pt;}
.x5{left:120.000000pt;}
.x24{left:122.659333pt;}
.x27{left:126.456667pt;}
.x18{left:149.466533pt;}
.x20{left:155.432800pt;}
.x29{left:160.481733pt;}
.x19{left:209.599867pt;}
.x21{left:220.646133pt;}
.x15{left:221.866533pt;}
.xc{left:242.492400pt;}
.x26{left:272.355333pt;}
.xf{left:275.252400pt;}
.x10{left:281.103867pt;}
.x1a{left:294.173200pt;}
.x14{left:310.370533pt;}
.x25{left:312.355333pt;}
.x22{left:315.339467pt;}
.x1b{left:340.413200pt;}
.x11{left:357.797200pt;}
.xd{left:361.572400pt;}
.x7{left:369.679067pt;}
.x9{left:387.452400pt;}
.x1c{left:397.506533pt;}
.x23{left:424.299467pt;}
.x8{left:429.132400pt;}
.x12{left:434.490533pt;}
.xe{left:477.532400pt;}
.x1d{left:488.333200pt;}
.x13{left:518.210533pt;}
.x1{left:564.791600pt;}
}




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