
    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_6b7a7f58382cb4e2e0173e6c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_a973047174d52f75c1944683.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_65d0598c81352a3339c61db6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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_89a420a82d0653981b013026.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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:-27.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.400000px;}
.v1{vertical-align:27.600000px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.048000px;}
.lsf{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.084000px;}
.lse{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.132000px;}
.ls10{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.420000px;}
.ls11{letter-spacing:0.429600px;}
.lsc{letter-spacing:0.456000px;}
.ls15{letter-spacing:0.480000px;}
.ls7{letter-spacing:1.056000px;}
.ls13{letter-spacing:1.380000px;}
.lsb{letter-spacing:1.656000px;}
.ls8{letter-spacing:2.256000px;}
.lsa{letter-spacing:3.456000px;}
.ls6{letter-spacing:4.056000px;}
.ls9{letter-spacing:5.856000px;}
.ls5{letter-spacing:7.656000px;}
.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;}
}
.ws7{word-spacing:-20.088000px;}
.ws6{word-spacing:-20.016000px;}
.ws1{word-spacing:-19.944000px;}
.wsa{word-spacing:-16.800000px;}
.ws8{word-spacing:-16.620000px;}
.ws0{word-spacing:-14.791800px;}
.ws4{word-spacing:-12.298800px;}
.ws5{word-spacing:-11.634000px;}
.wsb{word-spacing:-9.972000px;}
.ws9{word-spacing:-9.639600px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:26.112000px;}
.ws12{word-spacing:27.912000px;}
.ws11{word-spacing:27.954000px;}
.wsd{word-spacing:28.536000px;}
.ws18{word-spacing:78.738000px;}
.wsc{word-spacing:91.326000px;}
.ws17{word-spacing:98.076000px;}
.wsf{word-spacing:104.778000px;}
.ws19{word-spacing:112.056000px;}
.ws1a{word-spacing:120.156000px;}
.ws1b{word-spacing:135.600000px;}
.ws15{word-spacing:160.812000px;}
.ws10{word-spacing:167.214000px;}
.ws13{word-spacing:172.662000px;}
.ws16{word-spacing:176.082000px;}
.ws14{word-spacing:184.662000px;}
.ws2{word-spacing:679.827000px;}
._1e{margin-left:-9.360000px;}
._10{margin-left:-7.872000px;}
._2{margin-left:-6.048000px;}
._3{margin-left:-4.452000px;}
._5{margin-left:-3.384000px;}
._1{margin-left:-2.184000px;}
._4{margin-left:-1.059000px;}
._6{width:1.032000px;}
._8{width:2.088000px;}
._7{width:3.672000px;}
._b{width:4.752000px;}
._d{width:6.264000px;}
._11{width:8.064000px;}
._1c{width:9.144000px;}
._9{width:10.512000px;}
._a{width:11.808000px;}
._f{width:13.248000px;}
._15{width:14.400000px;}
._16{width:15.504000px;}
._17{width:17.352000px;}
._18{width:18.432000px;}
._20{width:21.000000px;}
._21{width:22.012800px;}
._2b{width:23.158800px;}
._1b{width:24.885000px;}
._d8{width:25.908000px;}
._1f{width:27.504000px;}
._d0{width:29.592000px;}
._23{width:31.635000px;}
._d3{width:32.784000px;}
._d2{width:34.488000px;}
._19{width:35.883000px;}
._26{width:39.003000px;}
._85{width:40.560000px;}
._75{width:41.796000px;}
._cd{width:44.580600px;}
._e{width:47.208000px;}
._14{width:48.999000px;}
._12{width:50.760000px;}
._13{width:51.984000px;}
._76{width:54.897000px;}
._d4{width:57.738000px;}
._c9{width:59.622000px;}
._cf{width:60.792000px;}
._84{width:62.652000px;}
._73{width:64.188000px;}
._72{width:69.984000px;}
._ab{width:72.825000px;}
._bc{width:74.574000px;}
._cc{width:78.792000px;}
._c0{width:81.498000px;}
._77{width:83.166000px;}
._ad{width:84.903000px;}
._a8{width:86.544000px;}
._2a{width:92.064000px;}
._aa{width:93.330000px;}
._3d{width:95.103000px;}
._62{width:97.776000px;}
._51{width:99.216000px;}
._ac{width:101.856000px;}
._2c{width:103.728000px;}
._6c{width:104.832000px;}
._63{width:106.032000px;}
._2d{width:107.772000px;}
._5e{width:110.040000px;}
._1d{width:112.080000px;}
._4e{width:114.168000px;}
._a3{width:116.106000px;}
._61{width:117.324000px;}
._44{width:120.540000px;}
._a6{width:122.883000px;}
._55{width:123.984000px;}
._5d{width:125.412000px;}
._d1{width:127.032000px;}
._65{width:128.880000px;}
._45{width:130.368000px;}
._43{width:132.348000px;}
._7c{width:134.448000px;}
._7b{width:136.104000px;}
._6a{width:137.916000px;}
._6d{width:140.316000px;}
._3e{width:142.008000px;}
._c6{width:143.613000px;}
._3a{width:144.768000px;}
._74{width:146.184000px;}
._71{width:148.212000px;}
._49{width:150.264000px;}
._41{width:151.284000px;}
._5b{width:152.892000px;}
._32{width:155.340000px;}
._4d{width:157.149000px;}
._52{width:159.324000px;}
._c3{width:160.428000px;}
._48{width:162.600000px;}
._46{width:164.640000px;}
._42{width:166.107000px;}
._66{width:167.808000px;}
._3c{width:169.224000px;}
._b4{width:170.646000px;}
._28{width:171.684000px;}
._54{width:172.824000px;}
._2f{width:174.612000px;}
._bd{width:175.878000px;}
._40{width:176.904000px;}
._39{width:177.924000px;}
._70{width:179.652000px;}
._4f{width:181.908000px;}
._34{width:183.648000px;}
._6f{width:184.692000px;}
._37{width:186.228000px;}
._30{width:187.368000px;}
._47{width:188.508000px;}
._3f{width:190.176000px;}
._67{width:191.232000px;}
._b3{width:192.678000px;}
._59{width:194.676000px;}
._6b{width:196.359000px;}
._31{width:197.400000px;}
._8d{width:199.200000px;}
._b2{width:200.478000px;}
._cb{width:201.669000px;}
._b9{width:203.196000px;}
._36{width:205.224000px;}
._64{width:207.324000px;}
._2e{width:208.740000px;}
._5f{width:210.324000px;}
._3b{width:212.148000px;}
._8b{width:213.246000px;}
._a2{width:214.878000px;}
._b7{width:216.618000px;}
._33{width:217.740000px;}
._9a{width:219.096000px;}
._8c{width:220.548000px;}
._9d{width:222.048000px;}
._c4{width:223.440000px;}
._a1{width:224.472000px;}
._5c{width:226.044000px;}
._60{width:227.316000px;}
._83{width:228.696000px;}
._4a{width:230.091000px;}
._58{width:231.588000px;}
._68{width:233.400000px;}
._c1{width:234.738000px;}
._57{width:236.184000px;}
._27{width:238.299000px;}
._7a{width:240.378000px;}
._9c{width:241.848000px;}
._53{width:244.008000px;}
._bb{width:246.462000px;}
._6e{width:247.992000px;}
._ba{width:249.078000px;}
._a7{width:250.278000px;}
._69{width:251.448000px;}
._80{width:252.948000px;}
._35{width:254.400000px;}
._79{width:255.696000px;}
._a9{width:257.478000px;}
._b6{width:259.818000px;}
._5a{width:261.588000px;}
._c5{width:263.238000px;}
._a5{width:264.678000px;}
._b0{width:265.878000px;}
._7f{width:267.048000px;}
._ca{width:268.320000px;}
._8f{width:269.496000px;}
._88{width:271.248000px;}
._56{width:272.424000px;}
._b8{width:273.996000px;}
._99{width:275.448000px;}
._50{width:277.224000px;}
._82{width:278.256000px;}
._a4{width:279.678000px;}
._7d{width:281.400000px;}
._b1{width:283.278000px;}
._af{width:285.678000px;}
._94{width:287.448000px;}
._a0{width:288.474000px;}
._81{width:290.490000px;}
._78{width:291.498000px;}
._7e{width:293.574000px;}
._ae{width:295.878000px;}
._91{width:297.696000px;}
._9b{width:299.268000px;}
._be{width:301.053000px;}
._4b{width:302.280000px;}
._bf{width:306.297000px;}
._8a{width:309.696000px;}
._87{width:311.448000px;}
._c8{width:315.264000px;}
._38{width:320.424000px;}
._c7{width:321.723000px;}
._96{width:322.848000px;}
._c2{width:330.996000px;}
._93{width:342.156000px;}
._b5{width:343.824000px;}
._89{width:348.690000px;}
._90{width:350.157000px;}
._86{width:351.762000px;}
._92{width:352.809000px;}
._d7{width:355.536000px;}
._8e{width:361.248000px;}
._1a{width:363.768000px;}
._4c{width:368.400000px;}
._98{width:372.648000px;}
._22{width:418.656000px;}
._29{width:471.051000px;}
._97{width:487.248000px;}
._c{width:515.736000px;}
._ce{width:552.075000px;}
._9f{width:718.848000px;}
._9e{width:751.848000px;}
._d6{width:844.032000px;}
._95{width:883.248000px;}
._0{width:1144.800000px;}
._24{width:1162.416000px;}
._d9{width:1270.392000px;}
._25{width:1402.032000px;}
._d5{width:1410.288000px;}
.fc2{color:rgb(106,106,106);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:34.800000px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs5{font-size:44.400000px;}
.fs7{font-size:48.000000px;}
.fs2{font-size:53.400000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yd{bottom:88.950000px;}
.y5a{bottom:130.050000px;}
.y4f{bottom:136.200000px;}
.yc{bottom:145.350000px;}
.y5c{bottom:147.300000px;}
.y5b{bottom:164.550000px;}
.y4e{bottom:167.250000px;}
.yf3{bottom:181.200000px;}
.y5d{bottom:181.800000px;}
.y9d{bottom:187.650000px;}
.y14a{bottom:187.950000px;}
.y11f{bottom:189.150000px;}
.y4d{bottom:198.300000px;}
.y65{bottom:199.050000px;}
.yf2{bottom:201.600000px;}
.y9c{bottom:208.050000px;}
.y11e{bottom:209.550000px;}
.y64{bottom:216.300000px;}
.y149{bottom:219.000000px;}
.y37{bottom:220.800000px;}
.yf1{bottom:222.000000px;}
.y140{bottom:226.950000px;}
.y9b{bottom:228.450000px;}
.y4c{bottom:229.350000px;}
.y11d{bottom:229.950000px;}
.y63{bottom:233.550000px;}
.yf0{bottom:242.400000px;}
.y9a{bottom:248.850000px;}
.y148{bottom:250.050000px;}
.y11c{bottom:250.350000px;}
.y62{bottom:250.800000px;}
.y36{bottom:251.850000px;}
.y13f{bottom:258.000000px;}
.yc7{bottom:259.650000px;}
.y4b{bottom:260.400000px;}
.y99{bottom:261.000000px;}
.yef{bottom:262.800000px;}
.y61{bottom:268.050000px;}
.y11b{bottom:270.750000px;}
.y6e{bottom:281.100000px;}
.y35{bottom:282.900000px;}
.yee{bottom:283.200000px;}
.y60{bottom:285.300000px;}
.y98{bottom:289.200000px;}
.y11a{bottom:291.150000px;}
.y59{bottom:291.450000px;}
.y5f{bottom:302.550000px;}
.yed{bottom:303.600000px;}
.y119{bottom:311.550000px;}
.y6d{bottom:312.150000px;}
.y13e{bottom:312.300000px;}
.y34{bottom:313.950000px;}
.y5e{bottom:319.800000px;}
.y4a{bottom:322.500000px;}
.yec{bottom:324.000000px;}
.y118{bottom:331.950000px;}
.y13d{bottom:332.700000px;}
.yc6{bottom:334.350000px;}
.y70{bottom:337.050000px;}
.y23{bottom:340.350000px;}
.y6c{bottom:343.200000px;}
.yeb{bottom:352.200000px;}
.y117{bottom:352.350000px;}
.y13c{bottom:353.100000px;}
.y58{bottom:353.550000px;}
.y6f{bottom:354.300000px;}
.yc5{bottom:354.750000px;}
.y97{bottom:363.900000px;}
.y13b{bottom:365.100000px;}
.y116{bottom:372.750000px;}
.y6b{bottom:374.250000px;}
.yc4{bottom:375.150000px;}
.y33{bottom:376.050000px;}
.y22{bottom:376.650000px;}
.y96{bottom:382.650000px;}
.y49{bottom:384.600000px;}
.y13a{bottom:385.500000px;}
.y95{bottom:393.000000px;}
.y115{bottom:393.150000px;}
.yc3{bottom:395.550000px;}
.y147{bottom:405.300000px;}
.y139{bottom:405.900000px;}
.yea{bottom:406.500000px;}
.y32{bottom:407.100000px;}
.y94{bottom:411.600000px;}
.y21{bottom:412.200000px;}
.y114{bottom:413.550000px;}
.y57{bottom:415.650000px;}
.yc2{bottom:423.750000px;}
.y138{bottom:426.300000px;}
.ye9{bottom:426.900000px;}
.y93{bottom:430.350000px;}
.y6a{bottom:436.350000px;}
.y31{bottom:438.150000px;}
.y113{bottom:441.750000px;}
.y48{bottom:446.700000px;}
.ye8{bottom:447.300000px;}
.y92{bottom:448.950000px;}
.y69{bottom:466.800000px;}
.y137{bottom:467.100000px;}
.y91{bottom:467.700000px;}
.yb{bottom:471.300000px;}
.y20{bottom:474.300000px;}
.y56{bottom:477.750000px;}
.yc1{bottom:478.050000px;}
.y90{bottom:486.300000px;}
.ye7{bottom:488.100000px;}
.yc0{bottom:490.200000px;}
.y68{bottom:492.600000px;}
.ya{bottom:494.850000px;}
.y136{bottom:495.450000px;}
.y112{bottom:496.050000px;}
.y146{bottom:498.450000px;}
.y30{bottom:500.250000px;}
.y8f{bottom:505.050000px;}
.y1f{bottom:505.350000px;}
.ye6{bottom:508.500000px;}
.y47{bottom:508.800000px;}
.ybf{bottom:510.600000px;}
.y9{bottom:515.550000px;}
.y111{bottom:516.450000px;}
.y67{bottom:518.550000px;}
.ybe{bottom:522.600000px;}
.y8e{bottom:523.650000px;}
.ye5{bottom:528.900000px;}
.y2f{bottom:531.300000px;}
.y8d{bottom:534.000000px;}
.y1e{bottom:536.400000px;}
.y110{bottom:536.850000px;}
.y46{bottom:539.850000px;}
.ybd{bottom:543.000000px;}
.y66{bottom:544.350000px;}
.ye4{bottom:549.300000px;}
.y135{bottom:549.750000px;}
.y8c{bottom:552.750000px;}
.ybc{bottom:555.150000px;}
.y8{bottom:556.950000px;}
.y10f{bottom:557.250000px;}
.y145{bottom:560.550000px;}
.y1d{bottom:567.450000px;}
.ye3{bottom:569.700000px;}
.y134{bottom:570.150000px;}
.y45{bottom:570.900000px;}
.y8b{bottom:571.350000px;}
.ybb{bottom:575.550000px;}
.y10e{bottom:577.650000px;}
.yba{bottom:587.550000px;}
.y8a{bottom:590.100000px;}
.y133{bottom:590.550000px;}
.y2e{bottom:593.400000px;}
.y10d{bottom:598.050000px;}
.y1c{bottom:598.500000px;}
.y89{bottom:600.450000px;}
.y55{bottom:601.950000px;}
.ye2{bottom:602.250000px;}
.yb9{bottom:607.950000px;}
.y132{bottom:610.950000px;}
.y10c{bottom:618.450000px;}
.y7{bottom:619.050000px;}
.ye1{bottom:622.650000px;}
.yb8{bottom:628.350000px;}
.y1b{bottom:629.550000px;}
.y131{bottom:631.350000px;}
.y44{bottom:633.000000px;}
.y88{bottom:637.800000px;}
.y10b{bottom:638.850000px;}
.yb7{bottom:640.500000px;}
.ye0{bottom:643.050000px;}
.y130{bottom:651.750000px;}
.y2d{bottom:655.500000px;}
.y87{bottom:656.400000px;}
.y10a{bottom:659.250000px;}
.y1a{bottom:660.600000px;}
.yb6{bottom:660.900000px;}
.ydf{bottom:663.450000px;}
.y54{bottom:664.050000px;}
.y12f{bottom:672.150000px;}
.yb5{bottom:672.900000px;}
.y86{bottom:675.150000px;}
.y109{bottom:679.650000px;}
.yde{bottom:683.850000px;}
.y2c{bottom:686.550000px;}
.yb4{bottom:693.300000px;}
.y85{bottom:693.750000px;}
.y43{bottom:695.100000px;}
.y108{bottom:700.050000px;}
.y12e{bottom:700.350000px;}
.ydd{bottom:704.250000px;}
.yb3{bottom:705.450000px;}
.y84{bottom:712.500000px;}
.y107{bottom:720.450000px;}
.y19{bottom:722.700000px;}
.ydc{bottom:724.650000px;}
.yb2{bottom:725.850000px;}
.y42{bottom:726.150000px;}
.y83{bottom:731.100000px;}
.yb1{bottom:737.850000px;}
.y106{bottom:740.850000px;}
.y6{bottom:743.400000px;}
.ydb{bottom:745.050000px;}
.y2b{bottom:748.650000px;}
.y82{bottom:749.850000px;}
.y12d{bottom:754.650000px;}
.y41{bottom:757.200000px;}
.yb0{bottom:758.250000px;}
.y81{bottom:760.200000px;}
.y105{bottom:761.250000px;}
.yda{bottom:765.450000px;}
.yaf{bottom:770.400000px;}
.y12c{bottom:775.050000px;}
.y80{bottom:778.800000px;}
.y104{bottom:781.650000px;}
.y5{bottom:784.800000px;}
.yd9{bottom:785.850000px;}
.y53{bottom:788.250000px;}
.y7f{bottom:789.150000px;}
.y12b{bottom:795.450000px;}
.yae{bottom:798.600000px;}
.y103{bottom:802.050000px;}
.yd8{bottom:806.250000px;}
.y7e{bottom:807.900000px;}
.y2a{bottom:810.750000px;}
.y18{bottom:815.850000px;}
.y40{bottom:819.300000px;}
.y102{bottom:822.450000px;}
.y4{bottom:826.350000px;}
.y7d{bottom:826.500000px;}
.yd7{bottom:826.650000px;}
.yad{bottom:829.650000px;}
.y12a{bottom:836.250000px;}
.y29{bottom:841.800000px;}
.y101{bottom:842.850000px;}
.y7c{bottom:845.250000px;}
.y17{bottom:846.900000px;}
.yd6{bottom:847.050000px;}
.y52{bottom:850.350000px;}
.y144{bottom:852.150000px;}
.yac{bottom:852.900000px;}
.y100{bottom:855.000000px;}
.y129{bottom:856.650000px;}
.y7b{bottom:863.850000px;}
.yd5{bottom:867.450000px;}
.y3{bottom:868.200000px;}
.yab{bottom:873.300000px;}
.yff{bottom:875.400000px;}
.y128{bottom:877.050000px;}
.y16{bottom:877.950000px;}
.y3f{bottom:881.400000px;}
.y7a{bottom:882.600000px;}
.y143{bottom:883.200000px;}
.yd4{bottom:887.850000px;}
.y2{bottom:891.900000px;}
.y79{bottom:892.950000px;}
.yaa{bottom:893.700000px;}
.yfe{bottom:895.800000px;}
.y127{bottom:897.450000px;}
.y28{bottom:903.900000px;}
.yd3{bottom:908.250000px;}
.y15{bottom:909.000000px;}
.y78{bottom:911.550000px;}
.y51{bottom:912.450000px;}
.ya9{bottom:914.100000px;}
.y142{bottom:914.250000px;}
.yfd{bottom:916.200000px;}
.y126{bottom:917.850000px;}
.yd2{bottom:928.650000px;}
.y77{bottom:930.300000px;}
.ya8{bottom:934.500000px;}
.yfc{bottom:936.600000px;}
.y125{bottom:938.250000px;}
.y14{bottom:940.050000px;}
.y3e{bottom:943.500000px;}
.y76{bottom:948.900000px;}
.yd1{bottom:949.050000px;}
.ya7{bottom:954.900000px;}
.yfb{bottom:957.000000px;}
.y124{bottom:958.650000px;}
.y27{bottom:966.000000px;}
.y75{bottom:967.650000px;}
.yd0{bottom:969.450000px;}
.y13{bottom:971.100000px;}
.y3d{bottom:974.550000px;}
.ya6{bottom:975.300000px;}
.yfa{bottom:977.400000px;}
.y74{bottom:986.250000px;}
.y123{bottom:987.000000px;}
.ycf{bottom:989.850000px;}
.ya5{bottom:995.700000px;}
.y26{bottom:997.050000px;}
.yf9{bottom:998.100000px;}
.y12{bottom:1002.150000px;}
.y73{bottom:1005.000000px;}
.y3c{bottom:1005.600000px;}
.y141{bottom:1007.400000px;}
.ya4{bottom:1007.850000px;}
.yce{bottom:1010.250000px;}
.y122{bottom:1018.050000px;}
.y72{bottom:1024.350000px;}
.yf8{bottom:1027.800000px;}
.y25{bottom:1028.100000px;}
.ya3{bottom:1028.250000px;}
.ycd{bottom:1030.650000px;}
.y11{bottom:1033.200000px;}
.y3b{bottom:1036.650000px;}
.y71{bottom:1038.150000px;}
.y121{bottom:1041.300000px;}
.ya2{bottom:1048.650000px;}
.ycc{bottom:1051.050000px;}
.yf7{bottom:1058.850000px;}
.ya1{bottom:1060.650000px;}
.y120{bottom:1061.700000px;}
.y10{bottom:1064.250000px;}
.y50{bottom:1067.700000px;}
.ycb{bottom:1071.450000px;}
.yf6{bottom:1082.100000px;}
.ya0{bottom:1089.000000px;}
.yca{bottom:1091.850000px;}
.yf{bottom:1095.300000px;}
.y3a{bottom:1098.750000px;}
.yf5{bottom:1102.500000px;}
.yc9{bottom:1112.250000px;}
.y24{bottom:1121.850000px;}
.yf4{bottom:1122.900000px;}
.y39{bottom:1129.800000px;}
.yc8{bottom:1132.650000px;}
.y9f{bottom:1143.300000px;}
.ye{bottom:1158.000000px;}
.y38{bottom:1160.850000px;}
.y9e{bottom:1163.700000px;}
.hd{height:30.577148px;}
.ha{height:32.273438px;}
.hb{height:37.652344px;}
.h9{height:43.031250px;}
.h2{height:48.656250px;}
.h6{height:53.789062px;}
.h7{height:64.371094px;}
.h4{height:64.546875px;}
.hc{height:64.652344px;}
.he{height:65.149805px;}
.h5{height:65.252344px;}
.h8{height:65.749805px;}
.h3{height:75.304688px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w0{width:744.000000px;}
.x0{left:0.000000px;}
.x2{left:85.200000px;}
.x1f{left:91.350000px;}
.x24{left:92.700000px;}
.x25{left:95.400000px;}
.x26{left:97.050000px;}
.x31{left:100.500000px;}
.x2c{left:102.600000px;}
.xc{left:104.850000px;}
.x19{left:106.500000px;}
.x2d{left:109.950000px;}
.x2b{left:111.150000px;}
.x11{left:112.500000px;}
.x12{left:116.100000px;}
.x10{left:119.100000px;}
.xf{left:121.500000px;}
.x1{left:138.150000px;}
.x47{left:140.100000px;}
.x45{left:142.350000px;}
.x3e{left:146.250000px;}
.x46{left:147.600000px;}
.x3c{left:150.300000px;}
.x4c{left:153.150000px;}
.x3d{left:155.550000px;}
.x4d{left:158.400000px;}
.x2e{left:161.100000px;}
.x44{left:163.350000px;}
.x3f{left:168.450000px;}
.x4a{left:171.600000px;}
.x48{left:173.850000px;}
.x38{left:175.500000px;}
.x40{left:178.650000px;}
.x30{left:180.600000px;}
.x49{left:182.100000px;}
.x39{left:183.150000px;}
.x41{left:185.250000px;}
.x4b{left:187.350000px;}
.x51{left:188.700000px;}
.x52{left:189.900000px;}
.x7{left:191.100000px;}
.x2a{left:204.150000px;}
.x35{left:206.100000px;}
.x16{left:212.100000px;}
.x36{left:216.600000px;}
.x37{left:221.850000px;}
.x8{left:225.150000px;}
.x5{left:244.050000px;}
.x4e{left:254.700000px;}
.x32{left:258.300000px;}
.x50{left:273.600000px;}
.x17{left:289.350000px;}
.x42{left:295.800000px;}
.x4{left:297.000000px;}
.xd{left:305.100000px;}
.x27{left:345.150000px;}
.x3a{left:352.650000px;}
.xe{left:354.000000px;}
.x20{left:365.400000px;}
.x29{left:369.300000px;}
.x28{left:376.050000px;}
.x43{left:392.400000px;}
.xa{left:402.900000px;}
.x3b{left:408.150000px;}
.x4f{left:426.900000px;}
.x2f{left:438.000000px;}
.x13{left:443.250000px;}
.x1c{left:445.800000px;}
.x1d{left:447.750000px;}
.x21{left:450.600000px;}
.x6{left:455.850000px;}
.x22{left:462.000000px;}
.xb{left:508.800000px;}
.x23{left:526.950000px;}
.x1e{left:528.150000px;}
.x14{left:537.300000px;}
.x18{left:542.100000px;}
.x15{left:553.350000px;}
.x1a{left:554.550000px;}
.x1b{left:559.800000px;}
.x9{left:561.750000px;}
.x3{left:614.700000px;}
.x33{left:616.800000px;}
.x34{left:618.300000px;}
@media print{
.v2{vertical-align:-24.533333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:20.800000pt;}
.v1{vertical-align:24.533333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.042667pt;}
.lsf{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.074667pt;}
.lse{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.117333pt;}
.ls10{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.373333pt;}
.ls11{letter-spacing:0.381867pt;}
.lsc{letter-spacing:0.405333pt;}
.ls15{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.938667pt;}
.ls13{letter-spacing:1.226667pt;}
.lsb{letter-spacing:1.472000pt;}
.ls8{letter-spacing:2.005333pt;}
.lsa{letter-spacing:3.072000pt;}
.ls6{letter-spacing:3.605333pt;}
.ls9{letter-spacing:5.205333pt;}
.ls5{letter-spacing:6.805333pt;}
.ws7{word-spacing:-17.856000pt;}
.ws6{word-spacing:-17.792000pt;}
.ws1{word-spacing:-17.728000pt;}
.wsa{word-spacing:-14.933333pt;}
.ws8{word-spacing:-14.773333pt;}
.ws0{word-spacing:-13.148267pt;}
.ws4{word-spacing:-10.932267pt;}
.ws5{word-spacing:-10.341333pt;}
.wsb{word-spacing:-8.864000pt;}
.ws9{word-spacing:-8.568533pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:23.210667pt;}
.ws12{word-spacing:24.810667pt;}
.ws11{word-spacing:24.848000pt;}
.wsd{word-spacing:25.365333pt;}
.ws18{word-spacing:69.989333pt;}
.wsc{word-spacing:81.178667pt;}
.ws17{word-spacing:87.178667pt;}
.wsf{word-spacing:93.136000pt;}
.ws19{word-spacing:99.605333pt;}
.ws1a{word-spacing:106.805333pt;}
.ws1b{word-spacing:120.533333pt;}
.ws15{word-spacing:142.944000pt;}
.ws10{word-spacing:148.634667pt;}
.ws13{word-spacing:153.477333pt;}
.ws16{word-spacing:156.517333pt;}
.ws14{word-spacing:164.144000pt;}
.ws2{word-spacing:604.290667pt;}
._1e{margin-left:-8.320000pt;}
._10{margin-left:-6.997333pt;}
._2{margin-left:-5.376000pt;}
._3{margin-left:-3.957333pt;}
._5{margin-left:-3.008000pt;}
._1{margin-left:-1.941333pt;}
._4{margin-left:-0.941333pt;}
._6{width:0.917333pt;}
._8{width:1.856000pt;}
._7{width:3.264000pt;}
._b{width:4.224000pt;}
._d{width:5.568000pt;}
._11{width:7.168000pt;}
._1c{width:8.128000pt;}
._9{width:9.344000pt;}
._a{width:10.496000pt;}
._f{width:11.776000pt;}
._15{width:12.800000pt;}
._16{width:13.781333pt;}
._17{width:15.424000pt;}
._18{width:16.384000pt;}
._20{width:18.666667pt;}
._21{width:19.566933pt;}
._2b{width:20.585600pt;}
._1b{width:22.120000pt;}
._d8{width:23.029333pt;}
._1f{width:24.448000pt;}
._d0{width:26.304000pt;}
._23{width:28.120000pt;}
._d3{width:29.141333pt;}
._d2{width:30.656000pt;}
._19{width:31.896000pt;}
._26{width:34.669333pt;}
._85{width:36.053333pt;}
._75{width:37.152000pt;}
._cd{width:39.627200pt;}
._e{width:41.962667pt;}
._14{width:43.554667pt;}
._12{width:45.120000pt;}
._13{width:46.208000pt;}
._76{width:48.797333pt;}
._d4{width:51.322667pt;}
._c9{width:52.997333pt;}
._cf{width:54.037333pt;}
._84{width:55.690667pt;}
._73{width:57.056000pt;}
._72{width:62.208000pt;}
._ab{width:64.733333pt;}
._bc{width:66.288000pt;}
._cc{width:70.037333pt;}
._c0{width:72.442667pt;}
._77{width:73.925333pt;}
._ad{width:75.469333pt;}
._a8{width:76.928000pt;}
._2a{width:81.834667pt;}
._aa{width:82.960000pt;}
._3d{width:84.536000pt;}
._62{width:86.912000pt;}
._51{width:88.192000pt;}
._ac{width:90.538667pt;}
._2c{width:92.202667pt;}
._6c{width:93.184000pt;}
._63{width:94.250667pt;}
._2d{width:95.797333pt;}
._5e{width:97.813333pt;}
._1d{width:99.626667pt;}
._4e{width:101.482667pt;}
._a3{width:103.205333pt;}
._61{width:104.288000pt;}
._44{width:107.146667pt;}
._a6{width:109.229333pt;}
._55{width:110.208000pt;}
._5d{width:111.477333pt;}
._d1{width:112.917333pt;}
._65{width:114.560000pt;}
._45{width:115.882667pt;}
._43{width:117.642667pt;}
._7c{width:119.509333pt;}
._7b{width:120.981333pt;}
._6a{width:122.592000pt;}
._6d{width:124.725333pt;}
._3e{width:126.229333pt;}
._c6{width:127.656000pt;}
._3a{width:128.682667pt;}
._74{width:129.941333pt;}
._71{width:131.744000pt;}
._49{width:133.568000pt;}
._41{width:134.474667pt;}
._5b{width:135.904000pt;}
._32{width:138.080000pt;}
._4d{width:139.688000pt;}
._52{width:141.621333pt;}
._c3{width:142.602667pt;}
._48{width:144.533333pt;}
._46{width:146.346667pt;}
._42{width:147.650667pt;}
._66{width:149.162667pt;}
._3c{width:150.421333pt;}
._b4{width:151.685333pt;}
._28{width:152.608000pt;}
._54{width:153.621333pt;}
._2f{width:155.210667pt;}
._bd{width:156.336000pt;}
._40{width:157.248000pt;}
._39{width:158.154667pt;}
._70{width:159.690667pt;}
._4f{width:161.696000pt;}
._34{width:163.242667pt;}
._6f{width:164.170667pt;}
._37{width:165.536000pt;}
._30{width:166.549333pt;}
._47{width:167.562667pt;}
._3f{width:169.045333pt;}
._67{width:169.984000pt;}
._b3{width:171.269333pt;}
._59{width:173.045333pt;}
._6b{width:174.541333pt;}
._31{width:175.466667pt;}
._8d{width:177.066667pt;}
._b2{width:178.202667pt;}
._cb{width:179.261333pt;}
._b9{width:180.618667pt;}
._36{width:182.421333pt;}
._64{width:184.288000pt;}
._2e{width:185.546667pt;}
._5f{width:186.954667pt;}
._3b{width:188.576000pt;}
._8b{width:189.552000pt;}
._a2{width:191.002667pt;}
._b7{width:192.549333pt;}
._33{width:193.546667pt;}
._9a{width:194.752000pt;}
._8c{width:196.042667pt;}
._9d{width:197.376000pt;}
._c4{width:198.613333pt;}
._a1{width:199.530667pt;}
._5c{width:200.928000pt;}
._60{width:202.058667pt;}
._83{width:203.285333pt;}
._4a{width:204.525333pt;}
._58{width:205.856000pt;}
._68{width:207.466667pt;}
._c1{width:208.656000pt;}
._57{width:209.941333pt;}
._27{width:211.821333pt;}
._7a{width:213.669333pt;}
._9c{width:214.976000pt;}
._53{width:216.896000pt;}
._bb{width:219.077333pt;}
._6e{width:220.437333pt;}
._ba{width:221.402667pt;}
._a7{width:222.469333pt;}
._69{width:223.509333pt;}
._80{width:224.842667pt;}
._35{width:226.133333pt;}
._79{width:227.285333pt;}
._a9{width:228.869333pt;}
._b6{width:230.949333pt;}
._5a{width:232.522667pt;}
._c5{width:233.989333pt;}
._a5{width:235.269333pt;}
._b0{width:236.336000pt;}
._7f{width:237.376000pt;}
._ca{width:238.506667pt;}
._8f{width:239.552000pt;}
._88{width:241.109333pt;}
._56{width:242.154667pt;}
._b8{width:243.552000pt;}
._99{width:244.842667pt;}
._50{width:246.421333pt;}
._82{width:247.338667pt;}
._a4{width:248.602667pt;}
._7d{width:250.133333pt;}
._b1{width:251.802667pt;}
._af{width:253.936000pt;}
._94{width:255.509333pt;}
._a0{width:256.421333pt;}
._81{width:258.213333pt;}
._78{width:259.109333pt;}
._7e{width:260.954667pt;}
._ae{width:263.002667pt;}
._91{width:264.618667pt;}
._9b{width:266.016000pt;}
._be{width:267.602667pt;}
._4b{width:268.693333pt;}
._bf{width:272.264000pt;}
._8a{width:275.285333pt;}
._87{width:276.842667pt;}
._c8{width:280.234667pt;}
._38{width:284.821333pt;}
._c7{width:285.976000pt;}
._96{width:286.976000pt;}
._c2{width:294.218667pt;}
._93{width:304.138667pt;}
._b5{width:305.621333pt;}
._89{width:309.946667pt;}
._90{width:311.250667pt;}
._86{width:312.677333pt;}
._92{width:313.608000pt;}
._d7{width:316.032000pt;}
._8e{width:321.109333pt;}
._1a{width:323.349333pt;}
._4c{width:327.466667pt;}
._98{width:331.242667pt;}
._22{width:372.138667pt;}
._29{width:418.712000pt;}
._97{width:433.109333pt;}
._c{width:458.432000pt;}
._ce{width:490.733333pt;}
._9f{width:638.976000pt;}
._9e{width:668.309333pt;}
._d6{width:750.250667pt;}
._95{width:785.109333pt;}
._0{width:1017.600000pt;}
._24{width:1033.258667pt;}
._d9{width:1129.237333pt;}
._25{width:1246.250667pt;}
._d5{width:1253.589333pt;}
.fs6{font-size:30.933333pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs5{font-size:39.466667pt;}
.fs7{font-size:42.666667pt;}
.fs2{font-size:47.466667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yd{bottom:79.066667pt;}
.y5a{bottom:115.600000pt;}
.y4f{bottom:121.066667pt;}
.yc{bottom:129.200000pt;}
.y5c{bottom:130.933333pt;}
.y5b{bottom:146.266667pt;}
.y4e{bottom:148.666667pt;}
.yf3{bottom:161.066667pt;}
.y5d{bottom:161.600000pt;}
.y9d{bottom:166.800000pt;}
.y14a{bottom:167.066667pt;}
.y11f{bottom:168.133333pt;}
.y4d{bottom:176.266667pt;}
.y65{bottom:176.933333pt;}
.yf2{bottom:179.200000pt;}
.y9c{bottom:184.933333pt;}
.y11e{bottom:186.266667pt;}
.y64{bottom:192.266667pt;}
.y149{bottom:194.666667pt;}
.y37{bottom:196.266667pt;}
.yf1{bottom:197.333333pt;}
.y140{bottom:201.733333pt;}
.y9b{bottom:203.066667pt;}
.y4c{bottom:203.866667pt;}
.y11d{bottom:204.400000pt;}
.y63{bottom:207.600000pt;}
.yf0{bottom:215.466667pt;}
.y9a{bottom:221.200000pt;}
.y148{bottom:222.266667pt;}
.y11c{bottom:222.533333pt;}
.y62{bottom:222.933333pt;}
.y36{bottom:223.866667pt;}
.y13f{bottom:229.333333pt;}
.yc7{bottom:230.800000pt;}
.y4b{bottom:231.466667pt;}
.y99{bottom:232.000000pt;}
.yef{bottom:233.600000pt;}
.y61{bottom:238.266667pt;}
.y11b{bottom:240.666667pt;}
.y6e{bottom:249.866667pt;}
.y35{bottom:251.466667pt;}
.yee{bottom:251.733333pt;}
.y60{bottom:253.600000pt;}
.y98{bottom:257.066667pt;}
.y11a{bottom:258.800000pt;}
.y59{bottom:259.066667pt;}
.y5f{bottom:268.933333pt;}
.yed{bottom:269.866667pt;}
.y119{bottom:276.933333pt;}
.y6d{bottom:277.466667pt;}
.y13e{bottom:277.600000pt;}
.y34{bottom:279.066667pt;}
.y5e{bottom:284.266667pt;}
.y4a{bottom:286.666667pt;}
.yec{bottom:288.000000pt;}
.y118{bottom:295.066667pt;}
.y13d{bottom:295.733333pt;}
.yc6{bottom:297.200000pt;}
.y70{bottom:299.600000pt;}
.y23{bottom:302.533333pt;}
.y6c{bottom:305.066667pt;}
.yeb{bottom:313.066667pt;}
.y117{bottom:313.200000pt;}
.y13c{bottom:313.866667pt;}
.y58{bottom:314.266667pt;}
.y6f{bottom:314.933333pt;}
.yc5{bottom:315.333333pt;}
.y97{bottom:323.466667pt;}
.y13b{bottom:324.533333pt;}
.y116{bottom:331.333333pt;}
.y6b{bottom:332.666667pt;}
.yc4{bottom:333.466667pt;}
.y33{bottom:334.266667pt;}
.y22{bottom:334.800000pt;}
.y96{bottom:340.133333pt;}
.y49{bottom:341.866667pt;}
.y13a{bottom:342.666667pt;}
.y95{bottom:349.333333pt;}
.y115{bottom:349.466667pt;}
.yc3{bottom:351.600000pt;}
.y147{bottom:360.266667pt;}
.y139{bottom:360.800000pt;}
.yea{bottom:361.333333pt;}
.y32{bottom:361.866667pt;}
.y94{bottom:365.866667pt;}
.y21{bottom:366.400000pt;}
.y114{bottom:367.600000pt;}
.y57{bottom:369.466667pt;}
.yc2{bottom:376.666667pt;}
.y138{bottom:378.933333pt;}
.ye9{bottom:379.466667pt;}
.y93{bottom:382.533333pt;}
.y6a{bottom:387.866667pt;}
.y31{bottom:389.466667pt;}
.y113{bottom:392.666667pt;}
.y48{bottom:397.066667pt;}
.ye8{bottom:397.600000pt;}
.y92{bottom:399.066667pt;}
.y69{bottom:414.933333pt;}
.y137{bottom:415.200000pt;}
.y91{bottom:415.733333pt;}
.yb{bottom:418.933333pt;}
.y20{bottom:421.600000pt;}
.y56{bottom:424.666667pt;}
.yc1{bottom:424.933333pt;}
.y90{bottom:432.266667pt;}
.ye7{bottom:433.866667pt;}
.yc0{bottom:435.733333pt;}
.y68{bottom:437.866667pt;}
.ya{bottom:439.866667pt;}
.y136{bottom:440.400000pt;}
.y112{bottom:440.933333pt;}
.y146{bottom:443.066667pt;}
.y30{bottom:444.666667pt;}
.y8f{bottom:448.933333pt;}
.y1f{bottom:449.200000pt;}
.ye6{bottom:452.000000pt;}
.y47{bottom:452.266667pt;}
.ybf{bottom:453.866667pt;}
.y9{bottom:458.266667pt;}
.y111{bottom:459.066667pt;}
.y67{bottom:460.933333pt;}
.ybe{bottom:464.533333pt;}
.y8e{bottom:465.466667pt;}
.ye5{bottom:470.133333pt;}
.y2f{bottom:472.266667pt;}
.y8d{bottom:474.666667pt;}
.y1e{bottom:476.800000pt;}
.y110{bottom:477.200000pt;}
.y46{bottom:479.866667pt;}
.ybd{bottom:482.666667pt;}
.y66{bottom:483.866667pt;}
.ye4{bottom:488.266667pt;}
.y135{bottom:488.666667pt;}
.y8c{bottom:491.333333pt;}
.ybc{bottom:493.466667pt;}
.y8{bottom:495.066667pt;}
.y10f{bottom:495.333333pt;}
.y145{bottom:498.266667pt;}
.y1d{bottom:504.400000pt;}
.ye3{bottom:506.400000pt;}
.y134{bottom:506.800000pt;}
.y45{bottom:507.466667pt;}
.y8b{bottom:507.866667pt;}
.ybb{bottom:511.600000pt;}
.y10e{bottom:513.466667pt;}
.yba{bottom:522.266667pt;}
.y8a{bottom:524.533333pt;}
.y133{bottom:524.933333pt;}
.y2e{bottom:527.466667pt;}
.y10d{bottom:531.600000pt;}
.y1c{bottom:532.000000pt;}
.y89{bottom:533.733333pt;}
.y55{bottom:535.066667pt;}
.ye2{bottom:535.333333pt;}
.yb9{bottom:540.400000pt;}
.y132{bottom:543.066667pt;}
.y10c{bottom:549.733333pt;}
.y7{bottom:550.266667pt;}
.ye1{bottom:553.466667pt;}
.yb8{bottom:558.533333pt;}
.y1b{bottom:559.600000pt;}
.y131{bottom:561.200000pt;}
.y44{bottom:562.666667pt;}
.y88{bottom:566.933333pt;}
.y10b{bottom:567.866667pt;}
.yb7{bottom:569.333333pt;}
.ye0{bottom:571.600000pt;}
.y130{bottom:579.333333pt;}
.y2d{bottom:582.666667pt;}
.y87{bottom:583.466667pt;}
.y10a{bottom:586.000000pt;}
.y1a{bottom:587.200000pt;}
.yb6{bottom:587.466667pt;}
.ydf{bottom:589.733333pt;}
.y54{bottom:590.266667pt;}
.y12f{bottom:597.466667pt;}
.yb5{bottom:598.133333pt;}
.y86{bottom:600.133333pt;}
.y109{bottom:604.133333pt;}
.yde{bottom:607.866667pt;}
.y2c{bottom:610.266667pt;}
.yb4{bottom:616.266667pt;}
.y85{bottom:616.666667pt;}
.y43{bottom:617.866667pt;}
.y108{bottom:622.266667pt;}
.y12e{bottom:622.533333pt;}
.ydd{bottom:626.000000pt;}
.yb3{bottom:627.066667pt;}
.y84{bottom:633.333333pt;}
.y107{bottom:640.400000pt;}
.y19{bottom:642.400000pt;}
.ydc{bottom:644.133333pt;}
.yb2{bottom:645.200000pt;}
.y42{bottom:645.466667pt;}
.y83{bottom:649.866667pt;}
.yb1{bottom:655.866667pt;}
.y106{bottom:658.533333pt;}
.y6{bottom:660.800000pt;}
.ydb{bottom:662.266667pt;}
.y2b{bottom:665.466667pt;}
.y82{bottom:666.533333pt;}
.y12d{bottom:670.800000pt;}
.y41{bottom:673.066667pt;}
.yb0{bottom:674.000000pt;}
.y81{bottom:675.733333pt;}
.y105{bottom:676.666667pt;}
.yda{bottom:680.400000pt;}
.yaf{bottom:684.800000pt;}
.y12c{bottom:688.933333pt;}
.y80{bottom:692.266667pt;}
.y104{bottom:694.800000pt;}
.y5{bottom:697.600000pt;}
.yd9{bottom:698.533333pt;}
.y53{bottom:700.666667pt;}
.y7f{bottom:701.466667pt;}
.y12b{bottom:707.066667pt;}
.yae{bottom:709.866667pt;}
.y103{bottom:712.933333pt;}
.yd8{bottom:716.666667pt;}
.y7e{bottom:718.133333pt;}
.y2a{bottom:720.666667pt;}
.y18{bottom:725.200000pt;}
.y40{bottom:728.266667pt;}
.y102{bottom:731.066667pt;}
.y4{bottom:734.533333pt;}
.y7d{bottom:734.666667pt;}
.yd7{bottom:734.800000pt;}
.yad{bottom:737.466667pt;}
.y12a{bottom:743.333333pt;}
.y29{bottom:748.266667pt;}
.y101{bottom:749.200000pt;}
.y7c{bottom:751.333333pt;}
.y17{bottom:752.800000pt;}
.yd6{bottom:752.933333pt;}
.y52{bottom:755.866667pt;}
.y144{bottom:757.466667pt;}
.yac{bottom:758.133333pt;}
.y100{bottom:760.000000pt;}
.y129{bottom:761.466667pt;}
.y7b{bottom:767.866667pt;}
.yd5{bottom:771.066667pt;}
.y3{bottom:771.733333pt;}
.yab{bottom:776.266667pt;}
.yff{bottom:778.133333pt;}
.y128{bottom:779.600000pt;}
.y16{bottom:780.400000pt;}
.y3f{bottom:783.466667pt;}
.y7a{bottom:784.533333pt;}
.y143{bottom:785.066667pt;}
.yd4{bottom:789.200000pt;}
.y2{bottom:792.800000pt;}
.y79{bottom:793.733333pt;}
.yaa{bottom:794.400000pt;}
.yfe{bottom:796.266667pt;}
.y127{bottom:797.733333pt;}
.y28{bottom:803.466667pt;}
.yd3{bottom:807.333333pt;}
.y15{bottom:808.000000pt;}
.y78{bottom:810.266667pt;}
.y51{bottom:811.066667pt;}
.ya9{bottom:812.533333pt;}
.y142{bottom:812.666667pt;}
.yfd{bottom:814.400000pt;}
.y126{bottom:815.866667pt;}
.yd2{bottom:825.466667pt;}
.y77{bottom:826.933333pt;}
.ya8{bottom:830.666667pt;}
.yfc{bottom:832.533333pt;}
.y125{bottom:834.000000pt;}
.y14{bottom:835.600000pt;}
.y3e{bottom:838.666667pt;}
.y76{bottom:843.466667pt;}
.yd1{bottom:843.600000pt;}
.ya7{bottom:848.800000pt;}
.yfb{bottom:850.666667pt;}
.y124{bottom:852.133333pt;}
.y27{bottom:858.666667pt;}
.y75{bottom:860.133333pt;}
.yd0{bottom:861.733333pt;}
.y13{bottom:863.200000pt;}
.y3d{bottom:866.266667pt;}
.ya6{bottom:866.933333pt;}
.yfa{bottom:868.800000pt;}
.y74{bottom:876.666667pt;}
.y123{bottom:877.333333pt;}
.ycf{bottom:879.866667pt;}
.ya5{bottom:885.066667pt;}
.y26{bottom:886.266667pt;}
.yf9{bottom:887.200000pt;}
.y12{bottom:890.800000pt;}
.y73{bottom:893.333333pt;}
.y3c{bottom:893.866667pt;}
.y141{bottom:895.466667pt;}
.ya4{bottom:895.866667pt;}
.yce{bottom:898.000000pt;}
.y122{bottom:904.933333pt;}
.y72{bottom:910.533333pt;}
.yf8{bottom:913.600000pt;}
.y25{bottom:913.866667pt;}
.ya3{bottom:914.000000pt;}
.ycd{bottom:916.133333pt;}
.y11{bottom:918.400000pt;}
.y3b{bottom:921.466667pt;}
.y71{bottom:922.800000pt;}
.y121{bottom:925.600000pt;}
.ya2{bottom:932.133333pt;}
.ycc{bottom:934.266667pt;}
.yf7{bottom:941.200000pt;}
.ya1{bottom:942.800000pt;}
.y120{bottom:943.733333pt;}
.y10{bottom:946.000000pt;}
.y50{bottom:949.066667pt;}
.ycb{bottom:952.400000pt;}
.yf6{bottom:961.866667pt;}
.ya0{bottom:968.000000pt;}
.yca{bottom:970.533333pt;}
.yf{bottom:973.600000pt;}
.y3a{bottom:976.666667pt;}
.yf5{bottom:980.000000pt;}
.yc9{bottom:988.666667pt;}
.y24{bottom:997.200000pt;}
.yf4{bottom:998.133333pt;}
.y39{bottom:1004.266667pt;}
.yc8{bottom:1006.800000pt;}
.y9f{bottom:1016.266667pt;}
.ye{bottom:1029.333333pt;}
.y38{bottom:1031.866667pt;}
.y9e{bottom:1034.400000pt;}
.hd{height:27.179688pt;}
.ha{height:28.687500pt;}
.hb{height:33.468750pt;}
.h9{height:38.250000pt;}
.h2{height:43.250000pt;}
.h6{height:47.812500pt;}
.h7{height:57.218750pt;}
.h4{height:57.375000pt;}
.hc{height:57.468750pt;}
.he{height:57.910938pt;}
.h5{height:58.002083pt;}
.h8{height:58.444271pt;}
.h3{height:66.937500pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w0{width:661.333333pt;}
.x0{left:0.000000pt;}
.x2{left:75.733333pt;}
.x1f{left:81.200000pt;}
.x24{left:82.400000pt;}
.x25{left:84.800000pt;}
.x26{left:86.266667pt;}
.x31{left:89.333333pt;}
.x2c{left:91.200000pt;}
.xc{left:93.200000pt;}
.x19{left:94.666667pt;}
.x2d{left:97.733333pt;}
.x2b{left:98.800000pt;}
.x11{left:100.000000pt;}
.x12{left:103.200000pt;}
.x10{left:105.866667pt;}
.xf{left:108.000000pt;}
.x1{left:122.800000pt;}
.x47{left:124.533333pt;}
.x45{left:126.533333pt;}
.x3e{left:130.000000pt;}
.x46{left:131.200000pt;}
.x3c{left:133.600000pt;}
.x4c{left:136.133333pt;}
.x3d{left:138.266667pt;}
.x4d{left:140.800000pt;}
.x2e{left:143.200000pt;}
.x44{left:145.200000pt;}
.x3f{left:149.733333pt;}
.x4a{left:152.533333pt;}
.x48{left:154.533333pt;}
.x38{left:156.000000pt;}
.x40{left:158.800000pt;}
.x30{left:160.533333pt;}
.x49{left:161.866667pt;}
.x39{left:162.800000pt;}
.x41{left:164.666667pt;}
.x4b{left:166.533333pt;}
.x51{left:167.733333pt;}
.x52{left:168.800000pt;}
.x7{left:169.866667pt;}
.x2a{left:181.466667pt;}
.x35{left:183.200000pt;}
.x16{left:188.533333pt;}
.x36{left:192.533333pt;}
.x37{left:197.200000pt;}
.x8{left:200.133333pt;}
.x5{left:216.933333pt;}
.x4e{left:226.400000pt;}
.x32{left:229.600000pt;}
.x50{left:243.200000pt;}
.x17{left:257.200000pt;}
.x42{left:262.933333pt;}
.x4{left:264.000000pt;}
.xd{left:271.200000pt;}
.x27{left:306.800000pt;}
.x3a{left:313.466667pt;}
.xe{left:314.666667pt;}
.x20{left:324.800000pt;}
.x29{left:328.266667pt;}
.x28{left:334.266667pt;}
.x43{left:348.800000pt;}
.xa{left:358.133333pt;}
.x3b{left:362.800000pt;}
.x4f{left:379.466667pt;}
.x2f{left:389.333333pt;}
.x13{left:394.000000pt;}
.x1c{left:396.266667pt;}
.x1d{left:398.000000pt;}
.x21{left:400.533333pt;}
.x6{left:405.200000pt;}
.x22{left:410.666667pt;}
.xb{left:452.266667pt;}
.x23{left:468.400000pt;}
.x1e{left:469.466667pt;}
.x14{left:477.600000pt;}
.x18{left:481.866667pt;}
.x15{left:491.866667pt;}
.x1a{left:492.933333pt;}
.x1b{left:497.600000pt;}
.x9{left:499.333333pt;}
.x3{left:546.400000pt;}
.x33{left:548.266667pt;}
.x34{left:549.600000pt;}
}




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