
    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_093ce8d8db53cf4a74ca3153.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_789b7b766ae7ffbe01dcc160.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_29fdbd3a88edaa9666307859.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_21b1262db1c7ce49f8bd82cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e906f6dafc34123d319ac4bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_7765656e0fbc32507e0d5f60.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ddcb516c9246fd5af5964094.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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);}
.v1{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.666000px;}
.ls15{letter-spacing:-0.540000px;}
.lse{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.666000px;}
.ls4{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.080000px;}
.ls17{letter-spacing:16.506720px;}
.ls16{letter-spacing:46.026720px;}
.lsd{letter-spacing:55.362720px;}
.ls7{letter-spacing:64.170720px;}
.ls6{letter-spacing:201.204000px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.wse{word-spacing:-16.020000px;}
.ws2{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.238800px;}
.wsb{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.274000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-2.157840px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.260560px;}
._7{width:3.654240px;}
._a{width:4.712160px;}
._b{width:5.787840px;}
._3{width:6.872400px;}
._4{width:8.381520px;}
._9{width:10.277280px;}
._8{width:11.473920px;}
._10{width:13.217040px;}
._e{width:16.613280px;}
._12{width:17.621520px;}
._11{width:18.709200px;}
._d{width:19.780560px;}
._f{width:21.752640px;}
._1a{width:23.379600px;}
._15{width:24.388560px;}
._6{width:25.398000px;}
._5{width:26.637120px;}
._14{width:28.226880px;}
._20{width:29.680560px;}
._17{width:31.051440px;}
._16{width:32.533200px;}
._1b{width:35.915760px;}
._1c{width:37.051200px;}
._18{width:48.764160px;}
._1d{width:90.030720px;}
._1f{width:103.507680px;}
._c{width:201.204000px;}
._1e{width:243.603120px;}
._19{width:333.035760px;}
._21{width:913.824480px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs0{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.y22a{bottom:-4.890000px;}
.y22d{bottom:-4.860000px;}
.y0{bottom:0.000000px;}
.y137{bottom:3.240000px;}
.y14c{bottom:3.420000px;}
.y5{bottom:3.600000px;}
.y139{bottom:3.780000px;}
.y15f{bottom:3.825000px;}
.y20f{bottom:11.880000px;}
.y213{bottom:12.420000px;}
.y20d{bottom:20.520000px;}
.y216{bottom:20.880000px;}
.y212{bottom:21.060000px;}
.y4{bottom:21.240000px;}
.y20e{bottom:29.160000px;}
.y210{bottom:37.800000px;}
.y268{bottom:57.420000px;}
.ye1{bottom:58.860000px;}
.yc0{bottom:61.560000px;}
.y170{bottom:61.920000px;}
.yf2{bottom:62.820000px;}
.y45{bottom:63.540000px;}
.y19b{bottom:68.400000px;}
.y1cf{bottom:68.760000px;}
.y135{bottom:68.940000px;}
.y229{bottom:69.480000px;}
.y73{bottom:71.280000px;}
.ye0{bottom:72.540000px;}
.y9e{bottom:74.520000px;}
.y267{bottom:75.060000px;}
.ybf{bottom:78.840000px;}
.y1f6{bottom:79.200000px;}
.y16f{bottom:79.560000px;}
.yf1{bottom:80.460000px;}
.y44{bottom:80.820000px;}
.y19a{bottom:85.680000px;}
.y1ce{bottom:86.040000px;}
.y134{bottom:86.220000px;}
.y72{bottom:88.560000px;}
.y289{bottom:90.720000px;}
.y228{bottom:91.260000px;}
.y9d{bottom:91.800000px;}
.y266{bottom:92.340000px;}
.ybe{bottom:96.120000px;}
.y16e{bottom:96.840000px;}
.yf0{bottom:97.740000px;}
.y43{bottom:98.136000px;}
.y1f5{bottom:101.016000px;}
.y199{bottom:102.816000px;}
.y1cd{bottom:103.536000px;}
.y133{bottom:103.896000px;}
.y71{bottom:105.876000px;}
.y288{bottom:108.036000px;}
.y9c{bottom:108.756000px;}
.y265{bottom:109.656000px;}
.ybd{bottom:113.436000px;}
.y16d{bottom:113.796000px;}
.yef{bottom:115.056000px;}
.y42{bottom:115.416000px;}
.y227{bottom:115.596000px;}
.y198{bottom:120.096000px;}
.y1cc{bottom:120.456000px;}
.y132{bottom:121.176000px;}
.y105{bottom:121.536000px;}
.y1f4{bottom:122.796000px;}
.y70{bottom:122.976000px;}
.y287{bottom:125.316000px;}
.y9b{bottom:126.396000px;}
.y264{bottom:126.936000px;}
.ybc{bottom:130.716000px;}
.y16c{bottom:131.436000px;}
.yee{bottom:132.336000px;}
.y41{bottom:132.516000px;}
.y226{bottom:132.876000px;}
.y197{bottom:137.376000px;}
.y131{bottom:138.276000px;}
.y104{bottom:138.816000px;}
.y6f{bottom:140.256000px;}
.y1cb{bottom:142.236000px;}
.y286{bottom:142.416000px;}
.y9a{bottom:143.496000px;}
.y263{bottom:144.036000px;}
.y1f3{bottom:144.576000px;}
.ybb{bottom:147.816000px;}
.y16b{bottom:148.536000px;}
.yed{bottom:149.616000px;}
.y40{bottom:149.796000px;}
.y225{bottom:150.150000px;}
.y196{bottom:154.650000px;}
.y130{bottom:155.190000px;}
.y103{bottom:155.730000px;}
.y6e{bottom:157.530000px;}
.y285{bottom:159.690000px;}
.y99{bottom:160.770000px;}
.y262{bottom:161.310000px;}
.yec{bottom:163.110000px;}
.yba{bottom:165.090000px;}
.y16a{bottom:165.450000px;}
.y1f2{bottom:166.170000px;}
.y1ca{bottom:166.530000px;}
.y3f{bottom:167.070000px;}
.y224{bottom:167.430000px;}
.y6d{bottom:171.210000px;}
.y195{bottom:171.570000px;}
.y12f{bottom:172.830000px;}
.y102{bottom:173.370000px;}
.y284{bottom:176.970000px;}
.y98{bottom:178.050000px;}
.y261{bottom:178.590000px;}
.yb9{bottom:182.370000px;}
.y169{bottom:183.090000px;}
.y1c9{bottom:183.810000px;}
.y223{bottom:184.170000px;}
.y3e{bottom:184.350000px;}
.y194{bottom:189.030000px;}
.y12e{bottom:190.110000px;}
.y101{bottom:190.650000px;}
.y283{bottom:194.250000px;}
.y97{bottom:194.970000px;}
.y260{bottom:195.870000px;}
.yb8{bottom:199.650000px;}
.y168{bottom:200.370000px;}
.y1c8{bottom:200.730000px;}
.y3d{bottom:201.630000px;}
.y222{bottom:201.810000px;}
.y193{bottom:206.310000px;}
.y12d{bottom:207.390000px;}
.y100{bottom:207.750000px;}
.y1f1{bottom:207.930000px;}
.y282{bottom:211.530000px;}
.y96{bottom:212.610000px;}
.y25f{bottom:213.150000px;}
.yb7{bottom:216.930000px;}
.y167{bottom:217.650000px;}
.y1c7{bottom:218.370000px;}
.y3c{bottom:218.730000px;}
.y221{bottom:219.090000px;}
.y192{bottom:223.590000px;}
.y12c{bottom:224.310000px;}
.yff{bottom:225.030000px;}
.y281{bottom:228.810000px;}
.y95{bottom:229.890000px;}
.y25e{bottom:230.430000px;}
.yb6{bottom:234.030000px;}
.y166{bottom:234.930000px;}
.y1c6{bottom:235.650000px;}
.y3b{bottom:236.010000px;}
.y220{bottom:236.370000px;}
.y191{bottom:240.870000px;}
.y12b{bottom:241.770000px;}
.y1f0{bottom:241.950000px;}
.yfe{bottom:242.310000px;}
.y280{bottom:245.910000px;}
.y94{bottom:246.990000px;}
.y25d{bottom:247.530000px;}
.yb5{bottom:251.310000px;}
.y165{bottom:252.030000px;}
.y1c5{bottom:252.570000px;}
.y3a{bottom:253.290000px;}
.y21f{bottom:253.650000px;}
.yfd{bottom:255.990000px;}
.y190{bottom:257.790000px;}
.y12a{bottom:259.050000px;}
.y1ef{bottom:259.590000px;}
.y27f{bottom:263.190000px;}
.y93{bottom:264.270000px;}
.y25c{bottom:264.810000px;}
.yb4{bottom:268.590000px;}
.y164{bottom:269.310000px;}
.y1c4{bottom:270.030000px;}
.y39{bottom:270.570000px;}
.y21e{bottom:270.930000px;}
.y129{bottom:276.330000px;}
.y1ee{bottom:276.870000px;}
.y18f{bottom:279.570000px;}
.y27e{bottom:280.470000px;}
.y92{bottom:281.550000px;}
.y25b{bottom:282.090000px;}
.yb3{bottom:285.870000px;}
.y163{bottom:286.590000px;}
.y1c3{bottom:287.310000px;}
.y38{bottom:287.850000px;}
.y21d{bottom:288.030000px;}
.y128{bottom:293.610000px;}
.y1ed{bottom:294.150000px;}
.y27d{bottom:297.750000px;}
.y91{bottom:298.470000px;}
.y25a{bottom:299.010000px;}
.yb2{bottom:303.150000px;}
.y162{bottom:303.870000px;}
.y1c2{bottom:304.230000px;}
.y37{bottom:305.130000px;}
.y21c{bottom:305.310000px;}
.y127{bottom:310.530000px;}
.y1ec{bottom:311.430000px;}
.y27c{bottom:315.030000px;}
.y90{bottom:315.750000px;}
.y259{bottom:316.650000px;}
.yb1{bottom:320.430000px;}
.y161{bottom:321.150000px;}
.y36{bottom:322.230000px;}
.y21b{bottom:322.590000px;}
.y1c1{bottom:326.010000px;}
.y126{bottom:328.170000px;}
.y1eb{bottom:328.530000px;}
.y27b{bottom:332.310000px;}
.y8f{bottom:333.210000px;}
.y258{bottom:333.930000px;}
.yb0{bottom:337.530000px;}
.y160{bottom:338.430000px;}
.y35{bottom:339.510000px;}
.y21a{bottom:339.870000px;}
.y125{bottom:345.270000px;}
.y1ea{bottom:345.810000px;}
.y27a{bottom:349.410000px;}
.y1c0{bottom:350.310000px;}
.y8e{bottom:350.490000px;}
.y257{bottom:351.030000px;}
.yaf{bottom:354.810000px;}
.y15e{bottom:355.170000px;}
.y18e{bottom:355.530000px;}
.y34{bottom:356.790000px;}
.y219{bottom:357.195000px;}
.y124{bottom:362.595000px;}
.y1e9{bottom:363.135000px;}
.y279{bottom:366.735000px;}
.y8d{bottom:367.455000px;}
.y1bf{bottom:367.635000px;}
.y256{bottom:368.355000px;}
.yae{bottom:372.135000px;}
.y18d{bottom:372.495000px;}
.y218{bottom:373.935000px;}
.y33{bottom:374.115000px;}
.y15d{bottom:376.995000px;}
.ydf{bottom:379.695000px;}
.y123{bottom:379.875000px;}
.y1e8{bottom:380.415000px;}
.y278{bottom:384.015000px;}
.y1be{bottom:384.555000px;}
.y8c{bottom:385.095000px;}
.y255{bottom:385.635000px;}
.yad{bottom:389.415000px;}
.y18c{bottom:390.135000px;}
.y32{bottom:391.395000px;}
.yde{bottom:396.975000px;}
.y122{bottom:397.155000px;}
.y1e7{bottom:397.335000px;}
.y277{bottom:401.295000px;}
.y15c{bottom:401.475000px;}
.y1bd{bottom:402.195000px;}
.y8b{bottom:402.375000px;}
.y254{bottom:402.915000px;}
.yac{bottom:406.695000px;}
.y18b{bottom:407.415000px;}
.y31{bottom:408.315000px;}
.y217{bottom:412.995000px;}
.ydd{bottom:413.895000px;}
.y121{bottom:414.075000px;}
.y15b{bottom:418.575000px;}
.y1e6{bottom:418.935000px;}
.y1bc{bottom:419.475000px;}
.y253{bottom:420.195000px;}
.y8a{bottom:420.735000px;}
.yab{bottom:423.975000px;}
.y18a{bottom:424.335000px;}
.y30{bottom:425.775000px;}
.ydc{bottom:431.535000px;}
.y276{bottom:435.675000px;}
.y15a{bottom:435.855000px;}
.y1bb{bottom:436.215000px;}
.y252{bottom:437.475000px;}
.y89{bottom:437.835000px;}
.y1e5{bottom:440.715000px;}
.yaa{bottom:441.075000px;}
.y189{bottom:441.975000px;}
.y2f{bottom:443.055000px;}
.ydb{bottom:448.635000px;}
.y120{bottom:448.815000px;}
.y215{bottom:452.055000px;}
.y275{bottom:452.955000px;}
.y159{bottom:453.135000px;}
.y251{bottom:454.575000px;}
.y88{bottom:456.195000px;}
.y1ba{bottom:457.995000px;}
.ya9{bottom:458.355000px;}
.y188{bottom:459.075000px;}
.y2e{bottom:460.335000px;}
.y1e4{bottom:462.495000px;}
.yda{bottom:465.915000px;}
.y11f{bottom:466.095000px;}
.y274{bottom:470.235000px;}
.y158{bottom:470.415000px;}
.y250{bottom:471.855000px;}
.y87{bottom:473.475000px;}
.ya8{bottom:475.635000px;}
.y187{bottom:476.355000px;}
.y2d{bottom:477.615000px;}
.y1b9{bottom:482.295000px;}
.yd9{bottom:483.195000px;}
.y11e{bottom:483.375000px;}
.y1e3{bottom:484.275000px;}
.y157{bottom:487.335000px;}
.y273{bottom:487.515000px;}
.y24f{bottom:489.135000px;}
.y214{bottom:490.935000px;}
.y86{bottom:491.835000px;}
.ya7{bottom:492.915000px;}
.y186{bottom:493.635000px;}
.y2c{bottom:494.895000px;}
.yd8{bottom:500.475000px;}
.y11d{bottom:500.655000px;}
.y272{bottom:504.435000px;}
.y156{bottom:504.795000px;}
.y6c{bottom:505.875000px;}
.y24e{bottom:506.415000px;}
.y1e2{bottom:508.575000px;}
.y85{bottom:509.115000px;}
.ya6{bottom:510.195000px;}
.y185{bottom:510.915000px;}
.y2b{bottom:511.995000px;}
.y1b8{bottom:516.495000px;}
.yd7{bottom:517.395000px;}
.y11c{bottom:517.935000px;}
.y155{bottom:522.075000px;}
.y6b{bottom:523.155000px;}
.y24d{bottom:523.695000px;}
.y1e1{bottom:525.855000px;}
.y84{bottom:526.935000px;}
.ya5{bottom:527.295000px;}
.y184{bottom:527.835000px;}
.y2a{bottom:529.275000px;}
.y211{bottom:529.995000px;}
.y1b7{bottom:534.135000px;}
.yd6{bottom:534.855000px;}
.y11b{bottom:535.035000px;}
.yeb{bottom:537.735000px;}
.y271{bottom:539.175000px;}
.y154{bottom:539.355000px;}
.y6a{bottom:539.895000px;}
.y24c{bottom:540.435000px;}
.y1e0{bottom:543.135000px;}
.y83{bottom:544.575000px;}
.y29{bottom:546.555000px;}
.y183{bottom:549.435000px;}
.y1b6{bottom:551.415000px;}
.y11a{bottom:552.315000px;}
.yd5{bottom:553.215000px;}
.yea{bottom:555.015000px;}
.y270{bottom:556.455000px;}
.y153{bottom:556.635000px;}
.y69{bottom:557.535000px;}
.y24b{bottom:558.075000px;}
.y1df{bottom:560.055000px;}
.y82{bottom:561.855000px;}
.y28{bottom:563.835000px;}
.y1b5{bottom:568.695000px;}
.y20c{bottom:569.055000px;}
.y119{bottom:569.595000px;}
.yd4{bottom:571.215000px;}
.ye9{bottom:571.935000px;}
.y152{bottom:573.915000px;}
.y68{bottom:574.815000px;}
.y24a{bottom:575.355000px;}
.y1de{bottom:577.695000px;}
.y81{bottom:578.775000px;}
.ya4{bottom:579.135000px;}
.y27{bottom:580.755000px;}
.y1b4{bottom:585.435000px;}
.y118{bottom:586.875000px;}
.yd3{bottom:588.855000px;}
.ye8{bottom:589.575000px;}
.y151{bottom:591.195000px;}
.y67{bottom:592.095000px;}
.y249{bottom:592.635000px;}
.y1dd{bottom:594.795000px;}
.y80{bottom:596.415000px;}
.y26{bottom:598.395000px;}
.y117{bottom:604.155000px;}
.ye7{bottom:606.855000px;}
.yd2{bottom:607.215000px;}
.y150{bottom:608.295000px;}
.y66{bottom:609.375000px;}
.y248{bottom:609.915000px;}
.y1dc{bottom:612.075000px;}
.y7f{bottom:613.695000px;}
.y25{bottom:615.495000px;}
.y116{bottom:621.465000px;}
.ye6{bottom:623.985000px;}
.yfc{bottom:625.065000px;}
.yd1{bottom:625.605000px;}
.y247{bottom:627.225000px;}
.y65{bottom:627.585000px;}
.y20b{bottom:627.945000px;}
.y1db{bottom:629.385000px;}
.y7e{bottom:630.465000px;}
.ya3{bottom:630.825000px;}
.y1b3{bottom:631.725000px;}
.y24{bottom:632.445000px;}
.y115{bottom:638.565000px;}
.ye5{bottom:641.265000px;}
.yfb{bottom:642.345000px;}
.y182{bottom:642.525000px;}
.y14f{bottom:642.885000px;}
.yd0{bottom:643.785000px;}
.y246{bottom:644.325000px;}
.y64{bottom:644.865000px;}
.y20a{bottom:645.225000px;}
.y1da{bottom:646.665000px;}
.y7d{bottom:648.105000px;}
.y23{bottom:650.085000px;}
.y114{bottom:655.845000px;}
.ye4{bottom:658.545000px;}
.yfa{bottom:659.265000px;}
.y14e{bottom:660.165000px;}
.y245{bottom:661.605000px;}
.ycf{bottom:661.785000px;}
.y26f{bottom:662.145000px;}
.y209{bottom:662.325000px;}
.y63{bottom:663.225000px;}
.y1d9{bottom:663.945000px;}
.y7c{bottom:665.385000px;}
.y1b2{bottom:665.745000px;}
.y22{bottom:667.365000px;}
.ye3{bottom:672.045000px;}
.y113{bottom:673.125000px;}
.yf9{bottom:676.905000px;}
.y14d{bottom:677.085000px;}
.y181{bottom:677.445000px;}
.y244{bottom:678.885000px;}
.yce{bottom:679.425000px;}
.y208{bottom:679.605000px;}
.y62{bottom:680.505000px;}
.y1d8{bottom:681.225000px;}
.y7b{bottom:682.665000px;}
.y1b1{bottom:683.385000px;}
.y21{bottom:684.645000px;}
.y112{bottom:690.405000px;}
.yf8{bottom:694.185000px;}
.y180{bottom:694.725000px;}
.y243{bottom:696.165000px;}
.y207{bottom:696.525000px;}
.ycd{bottom:696.705000px;}
.y26e{bottom:697.785000px;}
.y1d7{bottom:698.325000px;}
.y14b{bottom:698.685000px;}
.y61{bottom:698.865000px;}
.y7a{bottom:699.945000px;}
.y1b0{bottom:700.665000px;}
.y20{bottom:701.925000px;}
.y111{bottom:707.685000px;}
.yf7{bottom:711.465000px;}
.y17f{bottom:711.825000px;}
.y242{bottom:713.445000px;}
.ycc{bottom:713.985000px;}
.y206{bottom:714.165000px;}
.y26d{bottom:715.065000px;}
.y1d6{bottom:715.245000px;}
.y60{bottom:716.145000px;}
.y79{bottom:717.225000px;}
.y1af{bottom:717.945000px;}
.y1f{bottom:719.025000px;}
.y14a{bottom:723.165000px;}
.y110{bottom:724.965000px;}
.yf6{bottom:728.565000px;}
.y17e{bottom:729.105000px;}
.y241{bottom:730.725000px;}
.ycb{bottom:731.085000px;}
.y205{bottom:731.445000px;}
.y1d5{bottom:732.525000px;}
.y26c{bottom:733.245000px;}
.y5f{bottom:734.325000px;}
.y1ae{bottom:735.225000px;}
.y1e{bottom:736.305000px;}
.y149{bottom:740.445000px;}
.y10f{bottom:742.065000px;}
.yf5{bottom:745.845000px;}
.y17d{bottom:746.385000px;}
.y240{bottom:747.825000px;}
.y204{bottom:748.725000px;}
.yca{bottom:749.445000px;}
.y26b{bottom:750.525000px;}
.y5e{bottom:751.245000px;}
.y78{bottom:751.605000px;}
.y1ad{bottom:752.325000px;}
.y1d{bottom:753.585000px;}
.y1d4{bottom:754.305000px;}
.y148{bottom:757.725000px;}
.y10e{bottom:759.345000px;}
.yf4{bottom:759.525000px;}
.y17c{bottom:763.665000px;}
.y23f{bottom:765.105000px;}
.y203{bottom:765.825000px;}
.yc9{bottom:766.725000px;}
.y26a{bottom:767.805000px;}
.y5d{bottom:768.525000px;}
.y77{bottom:768.885000px;}
.y1ac{bottom:769.245000px;}
.y1c{bottom:770.865000px;}
.y147{bottom:774.825000px;}
.y1d3{bottom:776.085000px;}
.y10d{bottom:776.265000px;}
.y17b{bottom:780.945000px;}
.y23e{bottom:782.025000px;}
.y202{bottom:783.105000px;}
.yc8{bottom:784.005000px;}
.y5c{bottom:786.165000px;}
.y1b{bottom:788.145000px;}
.y1ab{bottom:791.025000px;}
.y146{bottom:792.105000px;}
.y10c{bottom:793.905000px;}
.y17a{bottom:797.685000px;}
.y23d{bottom:799.305000px;}
.y201{bottom:800.025000px;}
.yc7{bottom:801.285000px;}
.y5b{bottom:803.445000px;}
.y1a{bottom:805.425000px;}
.y145{bottom:809.025000px;}
.y10b{bottom:811.185000px;}
.y1aa{bottom:815.325000px;}
.y23c{bottom:816.945000px;}
.y200{bottom:817.665000px;}
.y179{bottom:819.465000px;}
.yc6{bottom:819.645000px;}
.y269{bottom:820.365000px;}
.y5a{bottom:820.725000px;}
.y19{bottom:822.525000px;}
.y144{bottom:826.665000px;}
.y10a{bottom:828.285000px;}
.y23b{bottom:834.045000px;}
.y1ff{bottom:834.945000px;}
.yc5{bottom:836.745000px;}
.ya2{bottom:837.465000px;}
.y59{bottom:837.825000px;}
.y18{bottom:839.805000px;}
.y143{bottom:843.945000px;}
.y109{bottom:845.565000px;}
.y1a9{bottom:849.525000px;}
.y23a{bottom:851.325000px;}
.y1fe{bottom:852.045000px;}
.yc4{bottom:854.025000px;}
.y58{bottom:855.105000px;}
.y17{bottom:856.725000px;}
.y142{bottom:861.045000px;}
.y108{bottom:862.845000px;}
.y1a8{bottom:867.165000px;}
.y239{bottom:868.605000px;}
.y1fd{bottom:869.325000px;}
.yc3{bottom:871.305000px;}
.y57{bottom:872.385000px;}
.y16{bottom:874.770000px;}
.y141{bottom:878.370000px;}
.y107{bottom:880.170000px;}
.y1a7{bottom:884.490000px;}
.y238{bottom:885.930000px;}
.y1fc{bottom:886.650000px;}
.yc2{bottom:889.350000px;}
.y56{bottom:889.710000px;}
.y15{bottom:892.410000px;}
.y106{bottom:893.670000px;}
.y140{bottom:895.650000px;}
.y1a6{bottom:901.230000px;}
.y237{bottom:903.210000px;}
.y1fb{bottom:903.930000px;}
.ya1{bottom:906.630000px;}
.y55{bottom:906.990000px;}
.y14{bottom:909.690000px;}
.y178{bottom:912.570000px;}
.y13f{bottom:912.930000px;}
.y1a5{bottom:918.870000px;}
.y236{bottom:920.490000px;}
.y1fa{bottom:920.850000px;}
.y54{bottom:924.090000px;}
.y13{bottom:926.790000px;}
.y13e{bottom:930.210000px;}
.y1a4{bottom:936.150000px;}
.y235{bottom:937.590000px;}
.y53{bottom:941.370000px;}
.y1f9{bottom:942.630000px;}
.y12{bottom:944.070000px;}
.y13d{bottom:947.490000px;}
.y1a3{bottom:953.430000px;}
.y234{bottom:954.870000px;}
.y52{bottom:958.290000px;}
.y76{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.y1f8{bottom:964.230000px;}
.y13c{bottom:964.590000px;}
.y1a2{bottom:970.350000px;}
.y233{bottom:972.150000px;}
.yc1{bottom:975.570000px;}
.y51{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.y13b{bottom:981.870000px;}
.y1f7{bottom:986.010000px;}
.y232{bottom:989.430000px;}
.y1a1{bottom:992.130000px;}
.ya0{bottom:992.850000px;}
.y50{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.y13a{bottom:999.150000px;}
.y231{bottom:1006.350000px;}
.y4f{bottom:1010.490000px;}
.ye{bottom:1013.190000px;}
.y138{bottom:1016.070000px;}
.y177{bottom:1016.430000px;}
.y4e{bottom:1027.590000px;}
.y230{bottom:1027.950000px;}
.yd{bottom:1030.290000px;}
.y176{bottom:1033.710000px;}
.y136{bottom:1037.850000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1047.570000px;}
.y22f{bottom:1049.730000px;}
.y1d2{bottom:1050.630000px;}
.y175{bottom:1050.990000px;}
.y9f{bottom:1061.790000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.y1a0{bottom:1067.730000px;}
.y174{bottom:1068.090000px;}
.y22e{bottom:1071.510000px;}
.ye2{bottom:1079.070000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.y1d1{bottom:1085.010000px;}
.y173{bottom:1085.370000px;}
.y22c{bottom:1093.290000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.y172{bottom:1102.290000px;}
.y19f{bottom:1102.650000px;}
.y1d0{bottom:1106.790000px;}
.y49{bottom:1113.630000px;}
.y75{bottom:1113.990000px;}
.y22b{bottom:1115.070000px;}
.y19e{bottom:1119.930000px;}
.y8{bottom:1121.190000px;}
.y171{bottom:1124.070000px;}
.y74{bottom:1130.730000px;}
.y48{bottom:1131.090000px;}
.y19d{bottom:1136.880000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y19c{bottom:1158.480000px;}
.y6{bottom:1162.620000px;}
.yf3{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h8{height:17.100000px;}
.h9{height:17.280000px;}
.ha{height:17.316000px;}
.hd{height:34.380000px;}
.hc{height:34.560000px;}
.h7{height:42.894141px;}
.hb{height:51.696000px;}
.h2{height:58.621992px;}
.h4{height:58.651172px;}
.h5{height:60.226875px;}
.h6{height:61.423863px;}
.h3{height:72.562500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3d{width:70.740000px;}
.w2c{width:83.340000px;}
.w3c{width:85.356000px;}
.w29{width:88.236000px;}
.w2f{width:89.136000px;}
.w3b{width:92.160000px;}
.w3e{width:106.596000px;}
.w9{width:107.100000px;}
.wa{width:107.136000px;}
.w3{width:109.980000px;}
.w4{width:110.016000px;}
.w1e{width:112.896000px;}
.w1f{width:113.040000px;}
.w1d{width:113.076000px;}
.w34{width:113.796000px;}
.w18{width:116.280000px;}
.w17{width:116.316000px;}
.w13{width:118.836000px;}
.w15{width:118.980000px;}
.w14{width:119.016000px;}
.w38{width:123.876000px;}
.w36{width:124.776000px;}
.w3a{width:125.316000px;}
.w7{width:125.820000px;}
.w6{width:125.856000px;}
.w26{width:127.080000px;}
.w19{width:127.116000px;}
.w25{width:127.296000px;}
.w22{width:128.340000px;}
.w21{width:128.376000px;}
.w23{width:128.556000px;}
.w10{width:128.700000px;}
.w11{width:128.736000px;}
.wf{width:128.916000px;}
.wd{width:129.276000px;}
.wc{width:129.420000px;}
.wb{width:129.456000px;}
.w1b{width:129.780000px;}
.w1a{width:129.816000px;}
.we{width:131.796000px;}
.w20{width:134.136000px;}
.w35{width:135.360000px;}
.w33{width:135.396000px;}
.w24{width:140.436000px;}
.w37{width:142.956000px;}
.w5{width:146.916000px;}
.w28{width:147.096000px;}
.w32{width:169.050000px;}
.w2a{width:176.070000px;}
.w12{width:181.470000px;}
.w16{width:194.610000px;}
.w1c{width:211.350000px;}
.w2{width:226.335000px;}
.w2d{width:231.915000px;}
.w8{width:240.735000px;}
.w31{width:255.675000px;}
.w39{width:296.355000px;}
.w2b{width:348.915000px;}
.w30{width:358.275000px;}
.w27{width:369.075000px;}
.w2e{width:696.030000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x89{left:1.260000px;}
.x92{left:3.420000px;}
.x8c{left:5.400000px;}
.x90{left:7.200000px;}
.x93{left:10.440000px;}
.x8e{left:12.060000px;}
.x94{left:15.300000px;}
.x78{left:16.380000px;}
.x6c{left:18.720000px;}
.x76{left:22.140000px;}
.x9b{left:23.220000px;}
.x7a{left:24.840000px;}
.x70{left:27.180000px;}
.x9a{left:29.160000px;}
.x6a{left:30.450000px;}
.x7f{left:31.500000px;}
.x86{left:33.120000px;}
.x6e{left:36.180000px;}
.x91{left:37.260000px;}
.x2d{left:38.520000px;}
.x1c{left:39.780000px;}
.x57{left:41.445000px;}
.x4a{left:43.065000px;}
.x42{left:44.325000px;}
.x32{left:46.080000px;}
.x22{left:47.340000px;}
.x35{left:48.816000px;}
.x3b{left:50.076000px;}
.x3f{left:51.660000px;}
.x1a{left:52.920000px;}
.x5{left:54.000000px;}
.x29{left:55.116000px;}
.x53{left:56.196000px;}
.x23{left:57.636000px;}
.x9c{left:59.436000px;}
.x54{left:60.870000px;}
.x47{left:65.376000px;}
.x4f{left:68.976000px;}
.x5c{left:73.296000px;}
.x40{left:74.916000px;}
.x21{left:77.076000px;}
.x73{left:78.840000px;}
.xd{left:81.000000px;}
.x6f{left:84.096000px;}
.x7c{left:85.896000px;}
.x96{left:87.876000px;}
.x55{left:89.676000px;}
.x71{left:94.176000px;}
.x72{left:95.976000px;}
.x1b{left:97.230000px;}
.x2b{left:104.430000px;}
.x7b{left:106.785000px;}
.xe{left:108.036000px;}
.x87{left:114.510000px;}
.x9d{left:117.210000px;}
.x99{left:121.350000px;}
.x11{left:135.036000px;}
.x75{left:146.550000px;}
.x83{left:151.230000px;}
.x68{left:156.630000px;}
.xc{left:172.290000px;}
.x50{left:182.370000px;}
.x36{left:184.530000px;}
.x3c{left:186.870000px;}
.x5e{left:189.390000px;}
.x88{left:190.650000px;}
.x64{left:195.510000px;}
.xb{left:198.390000px;}
.x24{left:201.990000px;}
.x95{left:207.930000px;}
.x6{left:213.690000px;}
.x8{left:231.510000px;}
.x41{left:236.730000px;}
.x81{left:237.855000px;}
.x80{left:247.575000px;}
.x49{left:249.870000px;}
.x16{left:254.910000px;}
.x5d{left:258.150000px;}
.x82{left:259.275000px;}
.x3{left:261.210000px;}
.x56{left:266.430000px;}
.x3e{left:268.050000px;}
.x48{left:274.035000px;}
.x2a{left:275.655000px;}
.x19{left:281.595000px;}
.x15{left:285.375000px;}
.x18{left:290.775000px;}
.x10{left:293.295000px;}
.x2c{left:295.815000px;}
.x63{left:299.595000px;}
.x2{left:300.675000px;}
.x34{left:301.755000px;}
.x8a{left:306.615000px;}
.x51{left:314.535000px;}
.x7{left:316.695000px;}
.x13{left:318.495000px;}
.x5f{left:320.115000px;}
.x65{left:324.975000px;}
.x25{left:330.195000px;}
.x3a{left:333.075000px;}
.x74{left:346.575000px;}
.x97{left:351.435000px;}
.x1{left:352.695000px;}
.x43{left:357.915000px;}
.x4b{left:368.535000px;}
.x7d{left:380.055000px;}
.x58{left:381.675000px;}
.x1d{left:393.735000px;}
.x2e{left:405.075000px;}
.x84{left:413.535000px;}
.x69{left:424.335000px;}
.x8b{left:444.135000px;}
.x52{left:446.475000px;}
.x37{left:447.915000px;}
.x3d{left:449.175000px;}
.x60{left:450.615000px;}
.xa{left:451.875000px;}
.x9{left:455.325000px;}
.x26{left:458.205000px;}
.x44{left:479.085000px;}
.x4c{left:487.005000px;}
.x59{left:496.905000px;}
.x1e{left:505.905000px;}
.x2f{left:514.365000px;}
.x77{left:522.645000px;}
.x8d{left:571.245000px;}
.x6b{left:573.765000px;}
.x38{left:579.345000px;}
.x61{left:581.325000px;}
.x66{left:583.845000px;}
.x27{left:586.365000px;}
.x45{left:600.225000px;}
.x4d{left:605.445000px;}
.x79{left:608.325000px;}
.x5a{left:612.105000px;}
.x1f{left:618.225000px;}
.x30{left:623.805000px;}
.x98{left:660.750000px;}
.x6d{left:664.170000px;}
.x85{left:671.370000px;}
.xf{left:672.630000px;}
.x39{left:710.970000px;}
.x62{left:712.050000px;}
.x67{left:713.130000px;}
.x28{left:714.390000px;}
.x8f{left:716.550000px;}
.x46{left:721.410000px;}
.x4e{left:724.110000px;}
.x5b{left:727.350000px;}
.x20{left:730.410000px;}
.x31{left:733.110000px;}
.x12{left:741.390000px;}
.x7e{left:751.110000px;}
.x17{left:797.730000px;}
.x14{left:800.970000px;}
.x33{left:821.160000px;}
.x4{left:830.160000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.592000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lse{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.592000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls14{letter-spacing:0.960000pt;}
.ls17{letter-spacing:14.672640pt;}
.ls16{letter-spacing:40.912640pt;}
.lsd{letter-spacing:49.211307pt;}
.ls7{letter-spacing:57.040640pt;}
.ls6{letter-spacing:178.848000pt;}
.ws5{word-spacing:-53.120000pt;}
.wse{word-spacing:-14.240000pt;}
.ws2{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.545600pt;}
.wsb{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.688000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-1.918080pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.009387pt;}
._7{width:3.248213pt;}
._a{width:4.188587pt;}
._b{width:5.144747pt;}
._3{width:6.108800pt;}
._4{width:7.450240pt;}
._9{width:9.135360pt;}
._8{width:10.199040pt;}
._10{width:11.748480pt;}
._e{width:14.767360pt;}
._12{width:15.663573pt;}
._11{width:16.630400pt;}
._d{width:17.582720pt;}
._f{width:19.335680pt;}
._1a{width:20.781867pt;}
._15{width:21.678720pt;}
._6{width:22.576000pt;}
._5{width:23.677440pt;}
._14{width:25.090560pt;}
._20{width:26.382720pt;}
._17{width:27.601280pt;}
._16{width:28.918400pt;}
._1b{width:31.925120pt;}
._1c{width:32.934400pt;}
._18{width:43.345920pt;}
._1d{width:80.027307pt;}
._1f{width:92.006827pt;}
._c{width:178.848000pt;}
._1e{width:216.536107pt;}
._19{width:296.031787pt;}
._21{width:812.288427pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.y22a{bottom:-4.346667pt;}
.y22d{bottom:-4.320000pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:2.880000pt;}
.y14c{bottom:3.040000pt;}
.y5{bottom:3.200000pt;}
.y139{bottom:3.360000pt;}
.y15f{bottom:3.400000pt;}
.y20f{bottom:10.560000pt;}
.y213{bottom:11.040000pt;}
.y20d{bottom:18.240000pt;}
.y216{bottom:18.560000pt;}
.y212{bottom:18.720000pt;}
.y4{bottom:18.880000pt;}
.y20e{bottom:25.920000pt;}
.y210{bottom:33.600000pt;}
.y268{bottom:51.040000pt;}
.ye1{bottom:52.320000pt;}
.yc0{bottom:54.720000pt;}
.y170{bottom:55.040000pt;}
.yf2{bottom:55.840000pt;}
.y45{bottom:56.480000pt;}
.y19b{bottom:60.800000pt;}
.y1cf{bottom:61.120000pt;}
.y135{bottom:61.280000pt;}
.y229{bottom:61.760000pt;}
.y73{bottom:63.360000pt;}
.ye0{bottom:64.480000pt;}
.y9e{bottom:66.240000pt;}
.y267{bottom:66.720000pt;}
.ybf{bottom:70.080000pt;}
.y1f6{bottom:70.400000pt;}
.y16f{bottom:70.720000pt;}
.yf1{bottom:71.520000pt;}
.y44{bottom:71.840000pt;}
.y19a{bottom:76.160000pt;}
.y1ce{bottom:76.480000pt;}
.y134{bottom:76.640000pt;}
.y72{bottom:78.720000pt;}
.y289{bottom:80.640000pt;}
.y228{bottom:81.120000pt;}
.y9d{bottom:81.600000pt;}
.y266{bottom:82.080000pt;}
.ybe{bottom:85.440000pt;}
.y16e{bottom:86.080000pt;}
.yf0{bottom:86.880000pt;}
.y43{bottom:87.232000pt;}
.y1f5{bottom:89.792000pt;}
.y199{bottom:91.392000pt;}
.y1cd{bottom:92.032000pt;}
.y133{bottom:92.352000pt;}
.y71{bottom:94.112000pt;}
.y288{bottom:96.032000pt;}
.y9c{bottom:96.672000pt;}
.y265{bottom:97.472000pt;}
.ybd{bottom:100.832000pt;}
.y16d{bottom:101.152000pt;}
.yef{bottom:102.272000pt;}
.y42{bottom:102.592000pt;}
.y227{bottom:102.752000pt;}
.y198{bottom:106.752000pt;}
.y1cc{bottom:107.072000pt;}
.y132{bottom:107.712000pt;}
.y105{bottom:108.032000pt;}
.y1f4{bottom:109.152000pt;}
.y70{bottom:109.312000pt;}
.y287{bottom:111.392000pt;}
.y9b{bottom:112.352000pt;}
.y264{bottom:112.832000pt;}
.ybc{bottom:116.192000pt;}
.y16c{bottom:116.832000pt;}
.yee{bottom:117.632000pt;}
.y41{bottom:117.792000pt;}
.y226{bottom:118.112000pt;}
.y197{bottom:122.112000pt;}
.y131{bottom:122.912000pt;}
.y104{bottom:123.392000pt;}
.y6f{bottom:124.672000pt;}
.y1cb{bottom:126.432000pt;}
.y286{bottom:126.592000pt;}
.y9a{bottom:127.552000pt;}
.y263{bottom:128.032000pt;}
.y1f3{bottom:128.512000pt;}
.ybb{bottom:131.392000pt;}
.y16b{bottom:132.032000pt;}
.yed{bottom:132.992000pt;}
.y40{bottom:133.152000pt;}
.y225{bottom:133.466667pt;}
.y196{bottom:137.466667pt;}
.y130{bottom:137.946667pt;}
.y103{bottom:138.426667pt;}
.y6e{bottom:140.026667pt;}
.y285{bottom:141.946667pt;}
.y99{bottom:142.906667pt;}
.y262{bottom:143.386667pt;}
.yec{bottom:144.986667pt;}
.yba{bottom:146.746667pt;}
.y16a{bottom:147.066667pt;}
.y1f2{bottom:147.706667pt;}
.y1ca{bottom:148.026667pt;}
.y3f{bottom:148.506667pt;}
.y224{bottom:148.826667pt;}
.y6d{bottom:152.186667pt;}
.y195{bottom:152.506667pt;}
.y12f{bottom:153.626667pt;}
.y102{bottom:154.106667pt;}
.y284{bottom:157.306667pt;}
.y98{bottom:158.266667pt;}
.y261{bottom:158.746667pt;}
.yb9{bottom:162.106667pt;}
.y169{bottom:162.746667pt;}
.y1c9{bottom:163.386667pt;}
.y223{bottom:163.706667pt;}
.y3e{bottom:163.866667pt;}
.y194{bottom:168.026667pt;}
.y12e{bottom:168.986667pt;}
.y101{bottom:169.466667pt;}
.y283{bottom:172.666667pt;}
.y97{bottom:173.306667pt;}
.y260{bottom:174.106667pt;}
.yb8{bottom:177.466667pt;}
.y168{bottom:178.106667pt;}
.y1c8{bottom:178.426667pt;}
.y3d{bottom:179.226667pt;}
.y222{bottom:179.386667pt;}
.y193{bottom:183.386667pt;}
.y12d{bottom:184.346667pt;}
.y100{bottom:184.666667pt;}
.y1f1{bottom:184.826667pt;}
.y282{bottom:188.026667pt;}
.y96{bottom:188.986667pt;}
.y25f{bottom:189.466667pt;}
.yb7{bottom:192.826667pt;}
.y167{bottom:193.466667pt;}
.y1c7{bottom:194.106667pt;}
.y3c{bottom:194.426667pt;}
.y221{bottom:194.746667pt;}
.y192{bottom:198.746667pt;}
.y12c{bottom:199.386667pt;}
.yff{bottom:200.026667pt;}
.y281{bottom:203.386667pt;}
.y95{bottom:204.346667pt;}
.y25e{bottom:204.826667pt;}
.yb6{bottom:208.026667pt;}
.y166{bottom:208.826667pt;}
.y1c6{bottom:209.466667pt;}
.y3b{bottom:209.786667pt;}
.y220{bottom:210.106667pt;}
.y191{bottom:214.106667pt;}
.y12b{bottom:214.906667pt;}
.y1f0{bottom:215.066667pt;}
.yfe{bottom:215.386667pt;}
.y280{bottom:218.586667pt;}
.y94{bottom:219.546667pt;}
.y25d{bottom:220.026667pt;}
.yb5{bottom:223.386667pt;}
.y165{bottom:224.026667pt;}
.y1c5{bottom:224.506667pt;}
.y3a{bottom:225.146667pt;}
.y21f{bottom:225.466667pt;}
.yfd{bottom:227.546667pt;}
.y190{bottom:229.146667pt;}
.y12a{bottom:230.266667pt;}
.y1ef{bottom:230.746667pt;}
.y27f{bottom:233.946667pt;}
.y93{bottom:234.906667pt;}
.y25c{bottom:235.386667pt;}
.yb4{bottom:238.746667pt;}
.y164{bottom:239.386667pt;}
.y1c4{bottom:240.026667pt;}
.y39{bottom:240.506667pt;}
.y21e{bottom:240.826667pt;}
.y129{bottom:245.626667pt;}
.y1ee{bottom:246.106667pt;}
.y18f{bottom:248.506667pt;}
.y27e{bottom:249.306667pt;}
.y92{bottom:250.266667pt;}
.y25b{bottom:250.746667pt;}
.yb3{bottom:254.106667pt;}
.y163{bottom:254.746667pt;}
.y1c3{bottom:255.386667pt;}
.y38{bottom:255.866667pt;}
.y21d{bottom:256.026667pt;}
.y128{bottom:260.986667pt;}
.y1ed{bottom:261.466667pt;}
.y27d{bottom:264.666667pt;}
.y91{bottom:265.306667pt;}
.y25a{bottom:265.786667pt;}
.yb2{bottom:269.466667pt;}
.y162{bottom:270.106667pt;}
.y1c2{bottom:270.426667pt;}
.y37{bottom:271.226667pt;}
.y21c{bottom:271.386667pt;}
.y127{bottom:276.026667pt;}
.y1ec{bottom:276.826667pt;}
.y27c{bottom:280.026667pt;}
.y90{bottom:280.666667pt;}
.y259{bottom:281.466667pt;}
.yb1{bottom:284.826667pt;}
.y161{bottom:285.466667pt;}
.y36{bottom:286.426667pt;}
.y21b{bottom:286.746667pt;}
.y1c1{bottom:289.786667pt;}
.y126{bottom:291.706667pt;}
.y1eb{bottom:292.026667pt;}
.y27b{bottom:295.386667pt;}
.y8f{bottom:296.186667pt;}
.y258{bottom:296.826667pt;}
.yb0{bottom:300.026667pt;}
.y160{bottom:300.826667pt;}
.y35{bottom:301.786667pt;}
.y21a{bottom:302.106667pt;}
.y125{bottom:306.906667pt;}
.y1ea{bottom:307.386667pt;}
.y27a{bottom:310.586667pt;}
.y1c0{bottom:311.386667pt;}
.y8e{bottom:311.546667pt;}
.y257{bottom:312.026667pt;}
.yaf{bottom:315.386667pt;}
.y15e{bottom:315.706667pt;}
.y18e{bottom:316.026667pt;}
.y34{bottom:317.146667pt;}
.y219{bottom:317.506667pt;}
.y124{bottom:322.306667pt;}
.y1e9{bottom:322.786667pt;}
.y279{bottom:325.986667pt;}
.y8d{bottom:326.626667pt;}
.y1bf{bottom:326.786667pt;}
.y256{bottom:327.426667pt;}
.yae{bottom:330.786667pt;}
.y18d{bottom:331.106667pt;}
.y218{bottom:332.386667pt;}
.y33{bottom:332.546667pt;}
.y15d{bottom:335.106667pt;}
.ydf{bottom:337.506667pt;}
.y123{bottom:337.666667pt;}
.y1e8{bottom:338.146667pt;}
.y278{bottom:341.346667pt;}
.y1be{bottom:341.826667pt;}
.y8c{bottom:342.306667pt;}
.y255{bottom:342.786667pt;}
.yad{bottom:346.146667pt;}
.y18c{bottom:346.786667pt;}
.y32{bottom:347.906667pt;}
.yde{bottom:352.866667pt;}
.y122{bottom:353.026667pt;}
.y1e7{bottom:353.186667pt;}
.y277{bottom:356.706667pt;}
.y15c{bottom:356.866667pt;}
.y1bd{bottom:357.506667pt;}
.y8b{bottom:357.666667pt;}
.y254{bottom:358.146667pt;}
.yac{bottom:361.506667pt;}
.y18b{bottom:362.146667pt;}
.y31{bottom:362.946667pt;}
.y217{bottom:367.106667pt;}
.ydd{bottom:367.906667pt;}
.y121{bottom:368.066667pt;}
.y15b{bottom:372.066667pt;}
.y1e6{bottom:372.386667pt;}
.y1bc{bottom:372.866667pt;}
.y253{bottom:373.506667pt;}
.y8a{bottom:373.986667pt;}
.yab{bottom:376.866667pt;}
.y18a{bottom:377.186667pt;}
.y30{bottom:378.466667pt;}
.ydc{bottom:383.586667pt;}
.y276{bottom:387.266667pt;}
.y15a{bottom:387.426667pt;}
.y1bb{bottom:387.746667pt;}
.y252{bottom:388.866667pt;}
.y89{bottom:389.186667pt;}
.y1e5{bottom:391.746667pt;}
.yaa{bottom:392.066667pt;}
.y189{bottom:392.866667pt;}
.y2f{bottom:393.826667pt;}
.ydb{bottom:398.786667pt;}
.y120{bottom:398.946667pt;}
.y215{bottom:401.826667pt;}
.y275{bottom:402.626667pt;}
.y159{bottom:402.786667pt;}
.y251{bottom:404.066667pt;}
.y88{bottom:405.506667pt;}
.y1ba{bottom:407.106667pt;}
.ya9{bottom:407.426667pt;}
.y188{bottom:408.066667pt;}
.y2e{bottom:409.186667pt;}
.y1e4{bottom:411.106667pt;}
.yda{bottom:414.146667pt;}
.y11f{bottom:414.306667pt;}
.y274{bottom:417.986667pt;}
.y158{bottom:418.146667pt;}
.y250{bottom:419.426667pt;}
.y87{bottom:420.866667pt;}
.ya8{bottom:422.786667pt;}
.y187{bottom:423.426667pt;}
.y2d{bottom:424.546667pt;}
.y1b9{bottom:428.706667pt;}
.yd9{bottom:429.506667pt;}
.y11e{bottom:429.666667pt;}
.y1e3{bottom:430.466667pt;}
.y157{bottom:433.186667pt;}
.y273{bottom:433.346667pt;}
.y24f{bottom:434.786667pt;}
.y214{bottom:436.386667pt;}
.y86{bottom:437.186667pt;}
.ya7{bottom:438.146667pt;}
.y186{bottom:438.786667pt;}
.y2c{bottom:439.906667pt;}
.yd8{bottom:444.866667pt;}
.y11d{bottom:445.026667pt;}
.y272{bottom:448.386667pt;}
.y156{bottom:448.706667pt;}
.y6c{bottom:449.666667pt;}
.y24e{bottom:450.146667pt;}
.y1e2{bottom:452.066667pt;}
.y85{bottom:452.546667pt;}
.ya6{bottom:453.506667pt;}
.y185{bottom:454.146667pt;}
.y2b{bottom:455.106667pt;}
.y1b8{bottom:459.106667pt;}
.yd7{bottom:459.906667pt;}
.y11c{bottom:460.386667pt;}
.y155{bottom:464.066667pt;}
.y6b{bottom:465.026667pt;}
.y24d{bottom:465.506667pt;}
.y1e1{bottom:467.426667pt;}
.y84{bottom:468.386667pt;}
.ya5{bottom:468.706667pt;}
.y184{bottom:469.186667pt;}
.y2a{bottom:470.466667pt;}
.y211{bottom:471.106667pt;}
.y1b7{bottom:474.786667pt;}
.yd6{bottom:475.426667pt;}
.y11b{bottom:475.586667pt;}
.yeb{bottom:477.986667pt;}
.y271{bottom:479.266667pt;}
.y154{bottom:479.426667pt;}
.y6a{bottom:479.906667pt;}
.y24c{bottom:480.386667pt;}
.y1e0{bottom:482.786667pt;}
.y83{bottom:484.066667pt;}
.y29{bottom:485.826667pt;}
.y183{bottom:488.386667pt;}
.y1b6{bottom:490.146667pt;}
.y11a{bottom:490.946667pt;}
.yd5{bottom:491.746667pt;}
.yea{bottom:493.346667pt;}
.y270{bottom:494.626667pt;}
.y153{bottom:494.786667pt;}
.y69{bottom:495.586667pt;}
.y24b{bottom:496.066667pt;}
.y1df{bottom:497.826667pt;}
.y82{bottom:499.426667pt;}
.y28{bottom:501.186667pt;}
.y1b5{bottom:505.506667pt;}
.y20c{bottom:505.826667pt;}
.y119{bottom:506.306667pt;}
.yd4{bottom:507.746667pt;}
.ye9{bottom:508.386667pt;}
.y152{bottom:510.146667pt;}
.y68{bottom:510.946667pt;}
.y24a{bottom:511.426667pt;}
.y1de{bottom:513.506667pt;}
.y81{bottom:514.466667pt;}
.ya4{bottom:514.786667pt;}
.y27{bottom:516.226667pt;}
.y1b4{bottom:520.386667pt;}
.y118{bottom:521.666667pt;}
.yd3{bottom:523.426667pt;}
.ye8{bottom:524.066667pt;}
.y151{bottom:525.506667pt;}
.y67{bottom:526.306667pt;}
.y249{bottom:526.786667pt;}
.y1dd{bottom:528.706667pt;}
.y80{bottom:530.146667pt;}
.y26{bottom:531.906667pt;}
.y117{bottom:537.026667pt;}
.ye7{bottom:539.426667pt;}
.yd2{bottom:539.746667pt;}
.y150{bottom:540.706667pt;}
.y66{bottom:541.666667pt;}
.y248{bottom:542.146667pt;}
.y1dc{bottom:544.066667pt;}
.y7f{bottom:545.506667pt;}
.y25{bottom:547.106667pt;}
.y116{bottom:552.413333pt;}
.ye6{bottom:554.653333pt;}
.yfc{bottom:555.613333pt;}
.yd1{bottom:556.093333pt;}
.y247{bottom:557.533333pt;}
.y65{bottom:557.853333pt;}
.y20b{bottom:558.173333pt;}
.y1db{bottom:559.453333pt;}
.y7e{bottom:560.413333pt;}
.ya3{bottom:560.733333pt;}
.y1b3{bottom:561.533333pt;}
.y24{bottom:562.173333pt;}
.y115{bottom:567.613333pt;}
.ye5{bottom:570.013333pt;}
.yfb{bottom:570.973333pt;}
.y182{bottom:571.133333pt;}
.y14f{bottom:571.453333pt;}
.yd0{bottom:572.253333pt;}
.y246{bottom:572.733333pt;}
.y64{bottom:573.213333pt;}
.y20a{bottom:573.533333pt;}
.y1da{bottom:574.813333pt;}
.y7d{bottom:576.093333pt;}
.y23{bottom:577.853333pt;}
.y114{bottom:582.973333pt;}
.ye4{bottom:585.373333pt;}
.yfa{bottom:586.013333pt;}
.y14e{bottom:586.813333pt;}
.y245{bottom:588.093333pt;}
.ycf{bottom:588.253333pt;}
.y26f{bottom:588.573333pt;}
.y209{bottom:588.733333pt;}
.y63{bottom:589.533333pt;}
.y1d9{bottom:590.173333pt;}
.y7c{bottom:591.453333pt;}
.y1b2{bottom:591.773333pt;}
.y22{bottom:593.213333pt;}
.ye3{bottom:597.373333pt;}
.y113{bottom:598.333333pt;}
.yf9{bottom:601.693333pt;}
.y14d{bottom:601.853333pt;}
.y181{bottom:602.173333pt;}
.y244{bottom:603.453333pt;}
.yce{bottom:603.933333pt;}
.y208{bottom:604.093333pt;}
.y62{bottom:604.893333pt;}
.y1d8{bottom:605.533333pt;}
.y7b{bottom:606.813333pt;}
.y1b1{bottom:607.453333pt;}
.y21{bottom:608.573333pt;}
.y112{bottom:613.693333pt;}
.yf8{bottom:617.053333pt;}
.y180{bottom:617.533333pt;}
.y243{bottom:618.813333pt;}
.y207{bottom:619.133333pt;}
.ycd{bottom:619.293333pt;}
.y26e{bottom:620.253333pt;}
.y1d7{bottom:620.733333pt;}
.y14b{bottom:621.053333pt;}
.y61{bottom:621.213333pt;}
.y7a{bottom:622.173333pt;}
.y1b0{bottom:622.813333pt;}
.y20{bottom:623.933333pt;}
.y111{bottom:629.053333pt;}
.yf7{bottom:632.413333pt;}
.y17f{bottom:632.733333pt;}
.y242{bottom:634.173333pt;}
.ycc{bottom:634.653333pt;}
.y206{bottom:634.813333pt;}
.y26d{bottom:635.613333pt;}
.y1d6{bottom:635.773333pt;}
.y60{bottom:636.573333pt;}
.y79{bottom:637.533333pt;}
.y1af{bottom:638.173333pt;}
.y1f{bottom:639.133333pt;}
.y14a{bottom:642.813333pt;}
.y110{bottom:644.413333pt;}
.yf6{bottom:647.613333pt;}
.y17e{bottom:648.093333pt;}
.y241{bottom:649.533333pt;}
.ycb{bottom:649.853333pt;}
.y205{bottom:650.173333pt;}
.y1d5{bottom:651.133333pt;}
.y26c{bottom:651.773333pt;}
.y5f{bottom:652.733333pt;}
.y1ae{bottom:653.533333pt;}
.y1e{bottom:654.493333pt;}
.y149{bottom:658.173333pt;}
.y10f{bottom:659.613333pt;}
.yf5{bottom:662.973333pt;}
.y17d{bottom:663.453333pt;}
.y240{bottom:664.733333pt;}
.y204{bottom:665.533333pt;}
.yca{bottom:666.173333pt;}
.y26b{bottom:667.133333pt;}
.y5e{bottom:667.773333pt;}
.y78{bottom:668.093333pt;}
.y1ad{bottom:668.733333pt;}
.y1d{bottom:669.853333pt;}
.y1d4{bottom:670.493333pt;}
.y148{bottom:673.533333pt;}
.y10e{bottom:674.973333pt;}
.yf4{bottom:675.133333pt;}
.y17c{bottom:678.813333pt;}
.y23f{bottom:680.093333pt;}
.y203{bottom:680.733333pt;}
.yc9{bottom:681.533333pt;}
.y26a{bottom:682.493333pt;}
.y5d{bottom:683.133333pt;}
.y77{bottom:683.453333pt;}
.y1ac{bottom:683.773333pt;}
.y1c{bottom:685.213333pt;}
.y147{bottom:688.733333pt;}
.y1d3{bottom:689.853333pt;}
.y10d{bottom:690.013333pt;}
.y17b{bottom:694.173333pt;}
.y23e{bottom:695.133333pt;}
.y202{bottom:696.093333pt;}
.yc8{bottom:696.893333pt;}
.y5c{bottom:698.813333pt;}
.y1b{bottom:700.573333pt;}
.y1ab{bottom:703.133333pt;}
.y146{bottom:704.093333pt;}
.y10c{bottom:705.693333pt;}
.y17a{bottom:709.053333pt;}
.y23d{bottom:710.493333pt;}
.y201{bottom:711.133333pt;}
.yc7{bottom:712.253333pt;}
.y5b{bottom:714.173333pt;}
.y1a{bottom:715.933333pt;}
.y145{bottom:719.133333pt;}
.y10b{bottom:721.053333pt;}
.y1aa{bottom:724.733333pt;}
.y23c{bottom:726.173333pt;}
.y200{bottom:726.813333pt;}
.y179{bottom:728.413333pt;}
.yc6{bottom:728.573333pt;}
.y269{bottom:729.213333pt;}
.y5a{bottom:729.533333pt;}
.y19{bottom:731.133333pt;}
.y144{bottom:734.813333pt;}
.y10a{bottom:736.253333pt;}
.y23b{bottom:741.373333pt;}
.y1ff{bottom:742.173333pt;}
.yc5{bottom:743.773333pt;}
.ya2{bottom:744.413333pt;}
.y59{bottom:744.733333pt;}
.y18{bottom:746.493333pt;}
.y143{bottom:750.173333pt;}
.y109{bottom:751.613333pt;}
.y1a9{bottom:755.133333pt;}
.y23a{bottom:756.733333pt;}
.y1fe{bottom:757.373333pt;}
.yc4{bottom:759.133333pt;}
.y58{bottom:760.093333pt;}
.y17{bottom:761.533333pt;}
.y142{bottom:765.373333pt;}
.y108{bottom:766.973333pt;}
.y1a8{bottom:770.813333pt;}
.y239{bottom:772.093333pt;}
.y1fd{bottom:772.733333pt;}
.yc3{bottom:774.493333pt;}
.y57{bottom:775.453333pt;}
.y16{bottom:777.573333pt;}
.y141{bottom:780.773333pt;}
.y107{bottom:782.373333pt;}
.y1a7{bottom:786.213333pt;}
.y238{bottom:787.493333pt;}
.y1fc{bottom:788.133333pt;}
.yc2{bottom:790.533333pt;}
.y56{bottom:790.853333pt;}
.y15{bottom:793.253333pt;}
.y106{bottom:794.373333pt;}
.y140{bottom:796.133333pt;}
.y1a6{bottom:801.093333pt;}
.y237{bottom:802.853333pt;}
.y1fb{bottom:803.493333pt;}
.ya1{bottom:805.893333pt;}
.y55{bottom:806.213333pt;}
.y14{bottom:808.613333pt;}
.y178{bottom:811.173333pt;}
.y13f{bottom:811.493333pt;}
.y1a5{bottom:816.773333pt;}
.y236{bottom:818.213333pt;}
.y1fa{bottom:818.533333pt;}
.y54{bottom:821.413333pt;}
.y13{bottom:823.813333pt;}
.y13e{bottom:826.853333pt;}
.y1a4{bottom:832.133333pt;}
.y235{bottom:833.413333pt;}
.y53{bottom:836.773333pt;}
.y1f9{bottom:837.893333pt;}
.y12{bottom:839.173333pt;}
.y13d{bottom:842.213333pt;}
.y1a3{bottom:847.493333pt;}
.y234{bottom:848.773333pt;}
.y52{bottom:851.813333pt;}
.y76{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.y1f8{bottom:857.093333pt;}
.y13c{bottom:857.413333pt;}
.y1a2{bottom:862.533333pt;}
.y233{bottom:864.133333pt;}
.yc1{bottom:867.173333pt;}
.y51{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.y13b{bottom:872.773333pt;}
.y1f7{bottom:876.453333pt;}
.y232{bottom:879.493333pt;}
.y1a1{bottom:881.893333pt;}
.ya0{bottom:882.533333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.y13a{bottom:888.133333pt;}
.y231{bottom:894.533333pt;}
.y4f{bottom:898.213333pt;}
.ye{bottom:900.613333pt;}
.y138{bottom:903.173333pt;}
.y177{bottom:903.493333pt;}
.y4e{bottom:913.413333pt;}
.y230{bottom:913.733333pt;}
.yd{bottom:915.813333pt;}
.y176{bottom:918.853333pt;}
.y136{bottom:922.533333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:931.173333pt;}
.y22f{bottom:933.093333pt;}
.y1d2{bottom:933.893333pt;}
.y175{bottom:934.213333pt;}
.y9f{bottom:943.813333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.y1a0{bottom:949.093333pt;}
.y174{bottom:949.413333pt;}
.y22e{bottom:952.453333pt;}
.ye2{bottom:959.173333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.y1d1{bottom:964.453333pt;}
.y173{bottom:964.773333pt;}
.y22c{bottom:971.813333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.y172{bottom:979.813333pt;}
.y19f{bottom:980.133333pt;}
.y1d0{bottom:983.813333pt;}
.y49{bottom:989.893333pt;}
.y75{bottom:990.213333pt;}
.y22b{bottom:991.173333pt;}
.y19e{bottom:995.493333pt;}
.y8{bottom:996.613333pt;}
.y171{bottom:999.173333pt;}
.y74{bottom:1005.093333pt;}
.y48{bottom:1005.413333pt;}
.y19d{bottom:1010.560000pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y19c{bottom:1029.760000pt;}
.y6{bottom:1033.440000pt;}
.yf3{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h8{height:15.200000pt;}
.h9{height:15.360000pt;}
.ha{height:15.392000pt;}
.hd{height:30.560000pt;}
.hc{height:30.720000pt;}
.h7{height:38.128125pt;}
.hb{height:45.952000pt;}
.h2{height:52.108438pt;}
.h4{height:52.134375pt;}
.h5{height:53.535000pt;}
.h6{height:54.598989pt;}
.h3{height:64.500000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3d{width:62.880000pt;}
.w2c{width:74.080000pt;}
.w3c{width:75.872000pt;}
.w29{width:78.432000pt;}
.w2f{width:79.232000pt;}
.w3b{width:81.920000pt;}
.w3e{width:94.752000pt;}
.w9{width:95.200000pt;}
.wa{width:95.232000pt;}
.w3{width:97.760000pt;}
.w4{width:97.792000pt;}
.w1e{width:100.352000pt;}
.w1f{width:100.480000pt;}
.w1d{width:100.512000pt;}
.w34{width:101.152000pt;}
.w18{width:103.360000pt;}
.w17{width:103.392000pt;}
.w13{width:105.632000pt;}
.w15{width:105.760000pt;}
.w14{width:105.792000pt;}
.w38{width:110.112000pt;}
.w36{width:110.912000pt;}
.w3a{width:111.392000pt;}
.w7{width:111.840000pt;}
.w6{width:111.872000pt;}
.w26{width:112.960000pt;}
.w19{width:112.992000pt;}
.w25{width:113.152000pt;}
.w22{width:114.080000pt;}
.w21{width:114.112000pt;}
.w23{width:114.272000pt;}
.w10{width:114.400000pt;}
.w11{width:114.432000pt;}
.wf{width:114.592000pt;}
.wd{width:114.912000pt;}
.wc{width:115.040000pt;}
.wb{width:115.072000pt;}
.w1b{width:115.360000pt;}
.w1a{width:115.392000pt;}
.we{width:117.152000pt;}
.w20{width:119.232000pt;}
.w35{width:120.320000pt;}
.w33{width:120.352000pt;}
.w24{width:124.832000pt;}
.w37{width:127.072000pt;}
.w5{width:130.592000pt;}
.w28{width:130.752000pt;}
.w32{width:150.266667pt;}
.w2a{width:156.506667pt;}
.w12{width:161.306667pt;}
.w16{width:172.986667pt;}
.w1c{width:187.866667pt;}
.w2{width:201.186667pt;}
.w2d{width:206.146667pt;}
.w8{width:213.986667pt;}
.w31{width:227.266667pt;}
.w39{width:263.426667pt;}
.w2b{width:310.146667pt;}
.w30{width:318.466667pt;}
.w27{width:328.066667pt;}
.w2e{width:618.693333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x89{left:1.120000pt;}
.x92{left:3.040000pt;}
.x8c{left:4.800000pt;}
.x90{left:6.400000pt;}
.x93{left:9.280000pt;}
.x8e{left:10.720000pt;}
.x94{left:13.600000pt;}
.x78{left:14.560000pt;}
.x6c{left:16.640000pt;}
.x76{left:19.680000pt;}
.x9b{left:20.640000pt;}
.x7a{left:22.080000pt;}
.x70{left:24.160000pt;}
.x9a{left:25.920000pt;}
.x6a{left:27.066667pt;}
.x7f{left:28.000000pt;}
.x86{left:29.440000pt;}
.x6e{left:32.160000pt;}
.x91{left:33.120000pt;}
.x2d{left:34.240000pt;}
.x1c{left:35.360000pt;}
.x57{left:36.840000pt;}
.x4a{left:38.280000pt;}
.x42{left:39.400000pt;}
.x32{left:40.960000pt;}
.x22{left:42.080000pt;}
.x35{left:43.392000pt;}
.x3b{left:44.512000pt;}
.x3f{left:45.920000pt;}
.x1a{left:47.040000pt;}
.x5{left:48.000000pt;}
.x29{left:48.992000pt;}
.x53{left:49.952000pt;}
.x23{left:51.232000pt;}
.x9c{left:52.832000pt;}
.x54{left:54.106667pt;}
.x47{left:58.112000pt;}
.x4f{left:61.312000pt;}
.x5c{left:65.152000pt;}
.x40{left:66.592000pt;}
.x21{left:68.512000pt;}
.x73{left:70.080000pt;}
.xd{left:72.000000pt;}
.x6f{left:74.752000pt;}
.x7c{left:76.352000pt;}
.x96{left:78.112000pt;}
.x55{left:79.712000pt;}
.x71{left:83.712000pt;}
.x72{left:85.312000pt;}
.x1b{left:86.426667pt;}
.x2b{left:92.826667pt;}
.x7b{left:94.920000pt;}
.xe{left:96.032000pt;}
.x87{left:101.786667pt;}
.x9d{left:104.186667pt;}
.x99{left:107.866667pt;}
.x11{left:120.032000pt;}
.x75{left:130.266667pt;}
.x83{left:134.426667pt;}
.x68{left:139.226667pt;}
.xc{left:153.146667pt;}
.x50{left:162.106667pt;}
.x36{left:164.026667pt;}
.x3c{left:166.106667pt;}
.x5e{left:168.346667pt;}
.x88{left:169.466667pt;}
.x64{left:173.786667pt;}
.xb{left:176.346667pt;}
.x24{left:179.546667pt;}
.x95{left:184.826667pt;}
.x6{left:189.946667pt;}
.x8{left:205.786667pt;}
.x41{left:210.426667pt;}
.x81{left:211.426667pt;}
.x80{left:220.066667pt;}
.x49{left:222.106667pt;}
.x16{left:226.586667pt;}
.x5d{left:229.466667pt;}
.x82{left:230.466667pt;}
.x3{left:232.186667pt;}
.x56{left:236.826667pt;}
.x3e{left:238.266667pt;}
.x48{left:243.586667pt;}
.x2a{left:245.026667pt;}
.x19{left:250.306667pt;}
.x15{left:253.666667pt;}
.x18{left:258.466667pt;}
.x10{left:260.706667pt;}
.x2c{left:262.946667pt;}
.x63{left:266.306667pt;}
.x2{left:267.266667pt;}
.x34{left:268.226667pt;}
.x8a{left:272.546667pt;}
.x51{left:279.586667pt;}
.x7{left:281.506667pt;}
.x13{left:283.106667pt;}
.x5f{left:284.546667pt;}
.x65{left:288.866667pt;}
.x25{left:293.506667pt;}
.x3a{left:296.066667pt;}
.x74{left:308.066667pt;}
.x97{left:312.386667pt;}
.x1{left:313.506667pt;}
.x43{left:318.146667pt;}
.x4b{left:327.586667pt;}
.x7d{left:337.826667pt;}
.x58{left:339.266667pt;}
.x1d{left:349.986667pt;}
.x2e{left:360.066667pt;}
.x84{left:367.586667pt;}
.x69{left:377.186667pt;}
.x8b{left:394.786667pt;}
.x52{left:396.866667pt;}
.x37{left:398.146667pt;}
.x3d{left:399.266667pt;}
.x60{left:400.546667pt;}
.xa{left:401.666667pt;}
.x9{left:404.733333pt;}
.x26{left:407.293333pt;}
.x44{left:425.853333pt;}
.x4c{left:432.893333pt;}
.x59{left:441.693333pt;}
.x1e{left:449.693333pt;}
.x2f{left:457.213333pt;}
.x77{left:464.573333pt;}
.x8d{left:507.773333pt;}
.x6b{left:510.013333pt;}
.x38{left:514.973333pt;}
.x61{left:516.733333pt;}
.x66{left:518.973333pt;}
.x27{left:521.213333pt;}
.x45{left:533.533333pt;}
.x4d{left:538.173333pt;}
.x79{left:540.733333pt;}
.x5a{left:544.093333pt;}
.x1f{left:549.533333pt;}
.x30{left:554.493333pt;}
.x98{left:587.333333pt;}
.x6d{left:590.373333pt;}
.x85{left:596.773333pt;}
.xf{left:597.893333pt;}
.x39{left:631.973333pt;}
.x62{left:632.933333pt;}
.x67{left:633.893333pt;}
.x28{left:635.013333pt;}
.x8f{left:636.933333pt;}
.x46{left:641.253333pt;}
.x4e{left:643.653333pt;}
.x5b{left:646.533333pt;}
.x20{left:649.253333pt;}
.x31{left:651.653333pt;}
.x12{left:659.013333pt;}
.x7e{left:667.653333pt;}
.x17{left:709.093333pt;}
.x14{left:711.973333pt;}
.x33{left:729.920000pt;}
.x4{left:737.920000pt;}
}




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