
    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_aa0ad940404a4df220ac9b3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e4cd0645b2fcb54b5a7c1171.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_048a595d56351fd111079cd1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;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_3b65f3e39e3728eb114ee5e5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_8d86b7dcbf3243f80059d6ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_21c9dabc8ec98bf45076b356.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_703e5c62f7d1d559e4fe8fbb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9a786abb087fb07bd1dbd0e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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:ff9;src:url('chunks/assets/font_85c6bf584b9957b26899ab93.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_315ccaf2a86f6681d2537023.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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:ffb;src:url('chunks/assets/font_cc914b10cf0f496ca008cd5f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4a03f976c35518c2619532f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.875000;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:ffd;src:url('chunks/assets/font_185297df9203be4e4c2dbdce.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.401855;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:ffe;src:url('chunks/assets/font_5d452d62b0098838c890978c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.202148;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:fff;src:url('chunks/assets/font_0a20d4dc830f5d4afd15c94d.woff2')format("woff");}.fff{font-family:fff;line-height:1.208008;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);}
.v4{vertical-align:-60.480000px;}
.v7{vertical-align:-14.400000px;}
.v9{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v8{vertical-align:17.280000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.va{vertical-align:48.240000px;}
.v5{vertical-align:54.720000px;}
.v6{vertical-align:57.600000px;}
.vc{vertical-align:69.120000px;}
.v2{vertical-align:79.200000px;}
.ls9{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.363000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.282000px;}
.ls26{letter-spacing:-0.216000px;}
.ls2{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.106800px;}
.ls1f{letter-spacing:-0.072000px;}
.ls18{letter-spacing:-0.069600px;}
.ls17{letter-spacing:-0.058320px;}
.ls14{letter-spacing:-0.032400px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.040320px;}
.ls4{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.112200px;}
.ls11{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.174000px;}
.ls5{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.lsd{letter-spacing:0.256200px;}
.ls1e{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.269400px;}
.ls15{letter-spacing:0.357000px;}
.lsc{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.990000px;}
.ls22{letter-spacing:1.440000px;}
.ls21{letter-spacing:2.016000px;}
.ls1c{letter-spacing:2.801520px;}
.ls1{letter-spacing:8.784000px;}
.ls27{letter-spacing:9.360000px;}
.ls1d{letter-spacing:15.480000px;}
.ls13{letter-spacing:22.500000px;}
.ls8{letter-spacing:25.344000px;}
.lsf{letter-spacing:36.840000px;}
.ls6{letter-spacing:37.440000px;}
.lsa{letter-spacing:51.240000px;}
.lsb{letter-spacing:145.440000px;}
.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;}
}
.ws2{word-spacing:-72.000000px;}
.ws1d{word-spacing:-56.376000px;}
.ws1c{word-spacing:-55.824000px;}
.ws24{word-spacing:-52.344000px;}
.ws1b{word-spacing:-51.624000px;}
.ws23{word-spacing:-50.688000px;}
.ws19{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1f{word-spacing:-17.928000px;}
.ws29{word-spacing:-17.856000px;}
.ws2a{word-spacing:-17.784000px;}
.ws1a{word-spacing:-17.712000px;}
.ws22{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.272000px;}
.ws20{word-spacing:-15.300000px;}
.wse{word-spacing:-15.226440px;}
.ws21{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.075600px;}
.wsd{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.351904px;}
.ws26{word-spacing:-14.319360px;}
.ws13{word-spacing:-13.862760px;}
.ws18{word-spacing:-13.617960px;}
.ws11{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.473360px;}
.ws15{word-spacing:-13.447440px;}
.ws17{word-spacing:-13.436160px;}
.ws14{word-spacing:-13.142760px;}
.wsf{word-spacing:-13.050000px;}
.ws4{word-spacing:-12.329400px;}
.ws16{word-spacing:-8.786880px;}
.ws1{word-spacing:0.000000px;}
.ws1e{word-spacing:7.488000px;}
.ws7{word-spacing:200.100000px;}
.wsa{word-spacing:218.100000px;}
.ws25{word-spacing:302.473200px;}
.ws28{word-spacing:307.037760px;}
.wsb{word-spacing:477.300000px;}
.ws6{word-spacing:524.964000px;}
.wsc{word-spacing:525.084000px;}
.ws9{word-spacing:606.324000px;}
._6{margin-left:-5.431680px;}
._7{margin-left:-4.173120px;}
._8{margin-left:-2.808720px;}
._0{margin-left:-1.008000px;}
._1{width:1.152000px;}
._3{width:2.202720px;}
._5{width:3.785520px;}
._b{width:11.621280px;}
._9{width:18.480000px;}
._a{width:84.672000px;}
._2{width:87.120000px;}
._4{width:1214.796000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs4{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs9{font-size:63.504000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:102.240000px;}
.fs6{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y12f{bottom:2.880000px;}
.y135{bottom:3.060000px;}
.yd6{bottom:3.600000px;}
.y5{bottom:3.780000px;}
.y151{bottom:3.960000px;}
.y13b{bottom:4.140000px;}
.y13f{bottom:4.320000px;}
.y133{bottom:5.040000px;}
.y141{bottom:5.220000px;}
.y2{bottom:5.760000px;}
.yf1{bottom:5.940000px;}
.yd3{bottom:6.300000px;}
.y129{bottom:7.200000px;}
.y126{bottom:7.380000px;}
.yde{bottom:9.360000px;}
.y12d{bottom:10.440000px;}
.y137{bottom:11.520000px;}
.y128{bottom:12.060000px;}
.yd7{bottom:12.600000px;}
.y14b{bottom:12.960000px;}
.y11f{bottom:13.005000px;}
.y121{bottom:13.680000px;}
.y131{bottom:13.710000px;}
.y13d{bottom:14.940000px;}
.y12e{bottom:17.820000px;}
.y139{bottom:19.080000px;}
.y4{bottom:20.520000px;}
.y124{bottom:21.060000px;}
.y134{bottom:21.270000px;}
.yd5{bottom:21.600000px;}
.y150{bottom:21.960000px;}
.ybc{bottom:25.095000px;}
.yb9{bottom:25.125000px;}
.yb6{bottom:25.200000px;}
.yd0{bottom:25.230000px;}
.y1d0{bottom:26.745000px;}
.y127{bottom:30.060000px;}
.y1a6{bottom:30.600000px;}
.yd9{bottom:30.960000px;}
.ydc{bottom:31.860000px;}
.y184{bottom:39.600000px;}
.y1cf{bottom:44.025000px;}
.ybb{bottom:44.895000px;}
.yb8{bottom:44.925000px;}
.yb5{bottom:45.000000px;}
.ycf{bottom:45.030000px;}
.y1a5{bottom:48.600000px;}
.y1d3{bottom:53.925000px;}
.y198{bottom:57.600000px;}
.y1ce{bottom:62.790000px;}
.y1a9{bottom:66.600000px;}
.y1d2{bottom:71.250000px;}
.y1a7{bottom:75.600000px;}
.y1cd{bottom:80.070000px;}
.y1d1{bottom:88.530000px;}
.y1b6{bottom:93.600000px;}
.y1cc{bottom:103.350000px;}
.y1cb{bottom:120.630000px;}
.y17{bottom:134.280000px;}
.y1bb{bottom:138.960000px;}
.y52{bottom:139.320000px;}
.y170{bottom:143.460000px;}
.y51{bottom:144.540000px;}
.y226{bottom:155.880000px;}
.y35{bottom:162.720000px;}
.y8a{bottom:165.060000px;}
.y16{bottom:165.240000px;}
.y1ba{bottom:170.100000px;}
.y89{bottom:170.280000px;}
.y23a{bottom:172.080000px;}
.y6e{bottom:174.060000px;}
.y16f{bottom:174.600000px;}
.y50{bottom:176.580000px;}
.y6d{bottom:179.280000px;}
.y225{bottom:187.020000px;}
.y10c{bottom:190.980000px;}
.y34{bottom:193.680000px;}
.y10b{bottom:196.200000px;}
.y15{bottom:196.380000px;}
.y88{bottom:200.010000px;}
.y1b9{bottom:201.090000px;}
.ya7{bottom:202.530000px;}
.y239{bottom:203.250000px;}
.y87{bottom:205.230000px;}
.y16e{bottom:205.590000px;}
.yb3{bottom:205.950000px;}
.y6c{bottom:209.010000px;}
.y1c9{bottom:211.170000px;}
.y172{bottom:211.530000px;}
.y180{bottom:216.930000px;}
.y74{bottom:218.010000px;}
.yba{bottom:220.140000px;}
.y23d{bottom:222.150000px;}
.y33{bottom:224.850000px;}
.y11a{bottom:225.930000px;}
.y54{bottom:226.110000px;}
.y14d{bottom:227.010000px;}
.y14{bottom:227.370000px;}
.y10a{bottom:228.450000px;}
.yb2{bottom:230.250000px;}
.y119{bottom:231.150000px;}
.y1fb{bottom:231.510000px;}
.y1b8{bottom:232.230000px;}
.y238{bottom:234.210000px;}
.y6b{bottom:234.930000px;}
.y16d{bottom:236.730000px;}
.y1a3{bottom:236.910000px;}
.y86{bottom:237.450000px;}
.y6a{bottom:240.150000px;}
.y17f{bottom:242.850000px;}
.y14e{bottom:245.730000px;}
.y17e{bottom:248.070000px;}
.y72{bottom:249.150000px;}
.y23c{bottom:253.110000px;}
.y32{bottom:255.810000px;}
.y73{bottom:255.990000px;}
.y4f{bottom:257.250000px;}
.y13{bottom:258.510000px;}
.y118{bottom:260.850000px;}
.y1fa{bottom:262.470000px;}
.y1b7{bottom:263.190000px;}
.ya6{bottom:263.370000px;}
.y14a{bottom:265.170000px;}
.y237{bottom:265.350000px;}
.y117{bottom:266.070000px;}
.y16c{bottom:267.690000px;}
.y1a2{bottom:268.050000px;}
.y187{bottom:268.590000px;}
.y69{bottom:269.850000px;}
.y212{bottom:276.510000px;}
.y17d{bottom:277.590000px;}
.y71{bottom:280.110000px;}
.y1b5{bottom:281.010000px;}
.y14c{bottom:283.890000px;}
.y224{bottom:285.150000px;}
.y174{bottom:286.230000px;}
.y31{bottom:286.950000px;}
.y4e{bottom:288.210000px;}
.y12{bottom:289.470000px;}
.ycd{bottom:291.630000px;}
.y23b{bottom:293.250000px;}
.ya5{bottom:294.510000px;}
.y1f9{bottom:294.870000px;}
.y68{bottom:295.590000px;}
.y236{bottom:296.310000px;}
.yf4{bottom:297.750000px;}
.y173{bottom:298.290000px;}
.y16b{bottom:298.830000px;}
.y67{bottom:300.810000px;}
.y1a1{bottom:300.990000px;}
.y17c{bottom:303.510000px;}
.y149{bottom:304.230000px;}
.y211{bottom:307.470000px;}
.y17b{bottom:308.730000px;}
.y70{bottom:311.250000px;}
.y85{bottom:314.130000px;}
.y1a0{bottom:314.850000px;}
.y223{bottom:316.290000px;}
.yf3{bottom:316.830000px;}
.y30{bottom:317.910000px;}
.yb1{bottom:318.630000px;}
.y4d{bottom:319.350000px;}
.y186{bottom:320.430000px;}
.y11{bottom:320.610000px;}
.y116{bottom:321.510000px;}
.ycb{bottom:322.590000px;}
.ya4{bottom:325.290000px;}
.y185{bottom:325.650000px;}
.y1f8{bottom:326.010000px;}
.y1e8{bottom:326.910000px;}
.y235{bottom:327.450000px;}
.ycc{bottom:329.430000px;}
.y16a{bottom:329.610000px;}
.yb7{bottom:332.820000px;}
.y66{bottom:333.030000px;}
.y148{bottom:336.270000px;}
.y171{bottom:337.350000px;}
.y17a{bottom:338.430000px;}
.y210{bottom:338.610000px;}
.yf2{bottom:340.050000px;}
.y6f{bottom:342.210000px;}
.yb0{bottom:342.930000px;}
.y84{bottom:345.090000px;}
.y222{bottom:347.250000px;}
.y115{bottom:347.430000px;}
.y2f{bottom:349.050000px;}
.y4c{bottom:350.310000px;}
.y1c8{bottom:351.390000px;}
.y114{bottom:352.650000px;}
.yca{bottom:353.730000px;}
.y1f7{bottom:356.970000px;}
.ya2{bottom:357.690000px;}
.y1e7{bottom:357.870000px;}
.y234{bottom:358.410000px;}
.y19f{bottom:358.770000px;}
.y169{bottom:362.190000px;}
.y109{bottom:364.350000px;}
.ya3{bottom:364.530000px;}
.yf0{bottom:364.710000px;}
.y10{bottom:369.570000px;}
.y65{bottom:373.350000px;}
.y83{bottom:376.230000px;}
.y221{bottom:378.390000px;}
.y2e{bottom:380.010000px;}
.y4b{bottom:381.450000px;}
.y113{bottom:382.350000px;}
.y147{bottom:382.530000px;}
.y183{bottom:384.510000px;}
.yc9{bottom:384.690000px;}
.y1f6{bottom:388.110000px;}
.y1e6{bottom:388.830000px;}
.y233{bottom:389.550000px;}
.y19e{bottom:389.910000px;}
.ya1{bottom:390.090000px;}
.y168{bottom:393.150000px;}
.y108{bottom:395.310000px;}
.y20f{bottom:400.710000px;}
.yef{bottom:401.430000px;}
.y1b4{bottom:401.970000px;}
.y64{bottom:404.310000px;}
.y82{bottom:407.190000px;}
.y112{bottom:408.090000px;}
.y220{bottom:409.350000px;}
.y2d{bottom:411.150000px;}
.y4a{bottom:412.410000px;}
.y111{bottom:413.310000px;}
.y1c7{bottom:413.490000px;}
.y146{bottom:413.670000px;}
.yaf{bottom:415.830000px;}
.y1f5{bottom:419.070000px;}
.y232{bottom:420.510000px;}
.y19d{bottom:420.870000px;}
.ya0{bottom:421.230000px;}
.y167{bottom:424.290000px;}
.y179{bottom:425.010000px;}
.y106{bottom:426.450000px;}
.y20e{bottom:431.490000px;}
.y107{bottom:433.290000px;}
.y63{bottom:435.450000px;}
.yf{bottom:436.755000px;}
.y81{bottom:438.375000px;}
.y21f{bottom:440.355000px;}
.y2c{bottom:442.155000px;}
.y49{bottom:443.595000px;}
.y145{bottom:444.675000px;}
.y110{bottom:445.575000px;}
.yae{bottom:446.835000px;}
.yee{bottom:447.735000px;}
.y1b3{bottom:448.455000px;}
.y1f4{bottom:450.075000px;}
.y178{bottom:450.975000px;}
.y182{bottom:451.155000px;}
.y231{bottom:451.695000px;}
.y19c{bottom:451.875000px;}
.y9f{bottom:452.235000px;}
.y1e5{bottom:452.415000px;}
.y166{bottom:455.295000px;}
.y177{bottom:456.195000px;}
.y105{bottom:457.455000px;}
.y20d{bottom:464.115000px;}
.y62{bottom:466.455000px;}
.ye{bottom:467.715000px;}
.y80{bottom:469.335000px;}
.y2b{bottom:473.295000px;}
.y48{bottom:474.555000px;}
.y1c6{bottom:475.635000px;}
.y144{bottom:475.815000px;}
.yad{bottom:477.975000px;}
.yed{bottom:478.875000px;}
.y1b2{bottom:479.415000px;}
.y1f3{bottom:482.475000px;}
.y230{bottom:482.655000px;}
.y19b{bottom:483.015000px;}
.y1e4{bottom:483.195000px;}
.y9e{bottom:483.375000px;}
.y165{bottom:486.435000px;}
.y176{bottom:488.235000px;}
.y104{bottom:488.595000px;}
.y21e{bottom:489.495000px;}
.y20c{bottom:495.075000px;}
.y143{bottom:496.155000px;}
.y61{bottom:497.595000px;}
.yd{bottom:498.855000px;}
.y7f{bottom:500.475000px;}
.y2a{bottom:504.255000px;}
.y47{bottom:505.695000px;}
.yac{bottom:508.935000px;}
.yec{bottom:509.835000px;}
.y1b1{bottom:510.555000px;}
.y1f2{bottom:513.435000px;}
.y22f{bottom:513.615000px;}
.y19a{bottom:513.975000px;}
.y142{bottom:514.155000px;}
.y9d{bottom:514.335000px;}
.y1c5{bottom:515.775000px;}
.y164{bottom:517.395000px;}
.y103{bottom:519.555000px;}
.y20b{bottom:526.215000px;}
.y60{bottom:528.555000px;}
.yc{bottom:529.815000px;}
.y140{bottom:530.715000px;}
.y7e{bottom:531.435000px;}
.y29{bottom:535.395000px;}
.y46{bottom:536.655000px;}
.yab{bottom:540.075000px;}
.yea{bottom:540.975000px;}
.y1b0{bottom:541.515000px;}
.y22e{bottom:544.755000px;}
.y199{bottom:545.115000px;}
.y9c{bottom:545.475000px;}
.y1f1{bottom:545.835000px;}
.y1e3{bottom:546.735000px;}
.yeb{bottom:547.815000px;}
.y163{bottom:548.535000px;}
.y102{bottom:550.695000px;}
.y13c{bottom:552.315000px;}
.y21d{bottom:556.455000px;}
.y20a{bottom:557.175000px;}
.y5f{bottom:559.695000px;}
.yb{bottom:560.955000px;}
.y7d{bottom:562.575000px;}
.y197{bottom:562.935000px;}
.y1c4{bottom:564.735000px;}
.y28{bottom:566.355000px;}
.y45{bottom:567.615000px;}
.yaa{bottom:571.035000px;}
.ye9{bottom:571.935000px;}
.y1af{bottom:572.655000px;}
.y13e{bottom:573.555000px;}
.y22d{bottom:575.715000px;}
.y9b{bottom:576.435000px;}
.y1f0{bottom:576.795000px;}
.y1e2{bottom:577.695000px;}
.y162{bottom:579.495000px;}
.y101{bottom:581.655000px;}
.y21c{bottom:587.595000px;}
.y209{bottom:588.315000px;}
.y5e{bottom:590.655000px;}
.y7c{bottom:593.535000px;}
.y1c3{bottom:595.875000px;}
.y27{bottom:597.495000px;}
.y43{bottom:598.755000px;}
.yc8{bottom:602.175000px;}
.ye8{bottom:603.075000px;}
.y1ae{bottom:603.615000px;}
.y44{bottom:605.595000px;}
.y22c{bottom:606.855000px;}
.y9a{bottom:607.575000px;}
.y1ef{bottom:609.375000px;}
.ya{bottom:609.915000px;}
.y1e1{bottom:610.095000px;}
.y161{bottom:610.455000px;}
.y13a{bottom:610.815000px;}
.y100{bottom:612.615000px;}
.ya9{bottom:617.655000px;}
.y21b{bottom:618.555000px;}
.y208{bottom:619.095000px;}
.y5c{bottom:621.615000px;}
.y7b{bottom:624.675000px;}
.y1c2{bottom:626.835000px;}
.y136{bottom:628.095000px;}
.y5d{bottom:628.455000px;}
.y42{bottom:629.715000px;}
.yb4{bottom:631.800000px;}
.yc7{bottom:633.135000px;}
.ye7{bottom:634.035000px;}
.y1ad{bottom:634.755000px;}
.y196{bottom:636.015000px;}
.y22b{bottom:637.815000px;}
.y99{bottom:638.535000px;}
.y1ee{bottom:640.335000px;}
.y9{bottom:641.055000px;}
.y1e0{bottom:641.235000px;}
.ya8{bottom:641.955000px;}
.y160{bottom:642.855000px;}
.yff{bottom:643.755000px;}
.y138{bottom:645.375000px;}
.y26{bottom:646.455000px;}
.y21a{bottom:649.515000px;}
.y207{bottom:651.675000px;}
.y5b{bottom:652.755000px;}
.y79{bottom:655.455000px;}
.y1c0{bottom:657.975000px;}
.y41{bottom:660.855000px;}
.y7a{bottom:662.295000px;}
.y130{bottom:662.475000px;}
.yc6{bottom:664.275000px;}
.y1c1{bottom:664.815000px;}
.ye6{bottom:665.175000px;}
.y1ac{bottom:665.715000px;}
.y22a{bottom:668.955000px;}
.y98{bottom:669.675000px;}
.y1ed{bottom:671.475000px;}
.y1df{bottom:672.195000px;}
.y15f{bottom:673.995000px;}
.yfe{bottom:674.745000px;}
.y132{bottom:679.785000px;}
.y219{bottom:682.125000px;}
.y206{bottom:682.485000px;}
.y5a{bottom:683.745000px;}
.y195{bottom:685.005000px;}
.y78{bottom:687.885000px;}
.y1bf{bottom:688.965000px;}
.y40{bottom:691.845000px;}
.yc5{bottom:695.265000px;}
.ye5{bottom:696.165000px;}
.y229{bottom:699.945000px;}
.y97{bottom:700.665000px;}
.y12c{bottom:702.465000px;}
.y1de{bottom:704.625000px;}
.y15e{bottom:704.805000px;}
.yfd{bottom:705.885000px;}
.y8{bottom:708.045000px;}
.y218{bottom:712.905000px;}
.y25{bottom:713.625000px;}
.y59{bottom:714.885000px;}
.y194{bottom:718.305000px;}
.y77{bottom:720.285000px;}
.y1ab{bottom:720.825000px;}
.y3f{bottom:722.985000px;}
.yc4{bottom:726.405000px;}
.ye4{bottom:727.305000px;}
.y228{bottom:731.085000px;}
.y96{bottom:731.805000px;}
.y1ec{bottom:733.605000px;}
.y1dd{bottom:735.765000px;}
.yfc{bottom:736.845000px;}
.y15d{bottom:737.385000px;}
.y1be{bottom:738.105000px;}
.y7{bottom:739.185000px;}
.y53{bottom:740.985000px;}
.y24{bottom:744.585000px;}
.y217{bottom:745.485000px;}
.y58{bottom:745.845000px;}
.y205{bottom:747.465000px;}
.y12b{bottom:747.645000px;}
.y76{bottom:752.505000px;}
.y175{bottom:752.685000px;}
.y3e{bottom:753.945000px;}
.y193{bottom:755.025000px;}
.yc3{bottom:757.365000px;}
.ye3{bottom:758.265000px;}
.y227{bottom:762.045000px;}
.y95{bottom:762.585000px;}
.y1eb{bottom:764.565000px;}
.y1dc{bottom:766.725000px;}
.yfb{bottom:767.985000px;}
.y15c{bottom:768.345000px;}
.y1aa{bottom:769.785000px;}
.y23{bottom:775.545000px;}
.y216{bottom:776.445000px;}
.y57{bottom:776.985000px;}
.y204{bottom:778.245000px;}
.y12a{bottom:781.845000px;}
.y3d{bottom:785.085000px;}
.yc2{bottom:788.505000px;}
.ye2{bottom:789.405000px;}
.y192{bottom:791.745000px;}
.y94{bottom:795.165000px;}
.y1db{bottom:797.865000px;}
.yfa{bottom:798.945000px;}
.y15b{bottom:799.485000px;}
.y6{bottom:802.185000px;}
.y1bd{bottom:802.545000px;}
.y215{bottom:807.405000px;}
.y22{bottom:807.945000px;}
.y123{bottom:809.745000px;}
.y203{bottom:810.825000px;}
.y1ea{bottom:811.185000px;}
.y56{bottom:814.785000px;}
.y3c{bottom:816.045000px;}
.y1ca{bottom:816.660000px;}
.yc1{bottom:819.465000px;}
.ye1{bottom:820.365000px;}
.y93{bottom:826.125000px;}
.y1bc{bottom:827.025000px;}
.y1da{bottom:828.825000px;}
.yf9{bottom:830.085000px;}
.y15a{bottom:830.445000px;}
.y1e9{bottom:835.485000px;}
.y125{bottom:837.465000px;}
.y21{bottom:839.085000px;}
.y191{bottom:840.705000px;}
.y202{bottom:841.785000px;}
.y10f{bottom:845.925000px;}
.y3b{bottom:847.185000px;}
.yc0{bottom:850.605000px;}
.ye0{bottom:851.505000px;}
.y214{bottom:855.465000px;}
.y92{bottom:858.525000px;}
.y1d9{bottom:859.785000px;}
.yf8{bottom:861.045000px;}
.y159{bottom:861.585000px;}
.y75{bottom:865.185000px;}
.y20{bottom:870.045000px;}
.y201{bottom:872.745000px;}
.y3a{bottom:878.145000px;}
.y213{bottom:879.585000px;}
.ybf{bottom:881.565000px;}
.ydf{bottom:882.465000px;}
.y122{bottom:885.345000px;}
.y190{bottom:886.965000px;}
.y91{bottom:889.485000px;}
.yf7{bottom:892.185000px;}
.y158{bottom:892.545000px;}
.y1f{bottom:901.185000px;}
.ydd{bottom:901.545000px;}
.y200{bottom:905.145000px;}
.y11e{bottom:905.685000px;}
.y39{bottom:909.285000px;}
.y18f{bottom:918.150000px;}
.y90{bottom:921.930000px;}
.yf6{bottom:923.190000px;}
.y1d8{bottom:923.370000px;}
.y157{bottom:923.730000px;}
.y120{bottom:924.450000px;}
.y1a8{bottom:927.150000px;}
.ybe{bottom:928.230000px;}
.y1e{bottom:932.190000px;}
.ydb{bottom:933.450000px;}
.y1ff{bottom:936.330000px;}
.y181{bottom:939.030000px;}
.y38{bottom:940.290000px;}
.yce{bottom:942.300000px;}
.y11d{bottom:945.870000px;}
.y18e{bottom:949.110000px;}
.ybd{bottom:952.530000px;}
.y8f{bottom:952.890000px;}
.yf5{bottom:954.330000px;}
.y156{bottom:954.690000px;}
.y1d{bottom:963.330000px;}
.y1fe{bottom:967.290000px;}
.y10e{bottom:970.170000px;}
.y37{bottom:971.430000px;}
.yda{bottom:971.790000px;}
.y11c{bottom:978.990000px;}
.y18d{bottom:980.250000px;}
.y8e{bottom:985.290000px;}
.y1d7{bottom:985.470000px;}
.y1c{bottom:994.290000px;}
.y1fd{bottom:998.430000px;}
.y155{bottom:1003.830000px;}
.yd8{bottom:1008.510000px;}
.y18c{bottom:1011.210000px;}
.y1d6{bottom:1016.250000px;}
.y8d{bottom:1016.430000px;}
.y1a4{bottom:1018.230000px;}
.y36{bottom:1020.390000px;}
.y1b{bottom:1025.430000px;}
.y18b{bottom:1028.850000px;}
.y1fc{bottom:1038.390000px;}
.yd4{bottom:1045.230000px;}
.y8c{bottom:1047.390000px;}
.y1d5{bottom:1048.830000px;}
.y18a{bottom:1052.070000px;}
.y1a{bottom:1056.390000px;}
.y153{bottom:1058.730000px;}
.y10d{bottom:1063.230000px;}
.y189{bottom:1075.290000px;}
.y154{bottom:1077.450000px;}
.y8b{bottom:1078.530000px;}
.yd2{bottom:1083.570000px;}
.y19{bottom:1087.530000px;}
.y55{bottom:1094.370000px;}
.y1d4{bottom:1095.450000px;}
.y14f{bottom:1097.070000px;}
.y188{bottom:1098.510000px;}
.y152{bottom:1115.790000px;}
.y18{bottom:1118.490000px;}
.yd1{bottom:1121.190000px;}
.y11b{bottom:1125.330000px;}
.y3{bottom:1223.640000px;}
.y1{bottom:1240.380000px;}
.h29{height:14.940000px;}
.h27{height:15.156000px;}
.h2b{height:17.820000px;}
.h1a{height:18.000000px;}
.h1f{height:18.036000px;}
.h2c{height:19.080000px;}
.h26{height:19.260000px;}
.h2d{height:19.440000px;}
.h2{height:22.500000px;}
.h12{height:23.580000px;}
.h22{height:25.380000px;}
.h23{height:25.560000px;}
.h18{height:29.736000px;}
.h24{height:29.880000px;}
.h28{height:32.220000px;}
.hb{height:35.332031px;}
.h14{height:36.000000px;}
.h25{height:36.576000px;}
.h2e{height:36.720000px;}
.h1d{height:36.756000px;}
.hc{height:38.158594px;}
.h20{height:38.160000px;}
.h2a{height:39.060000px;}
.h9{height:47.344922px;}
.h5{height:52.136719px;}
.h21{height:53.100000px;}
.he{height:53.573906px;}
.h32{height:54.036000px;}
.h39{height:54.596250px;}
.hd{height:58.651172px;}
.h3f{height:59.343750px;}
.h33{height:59.383125px;}
.h1e{height:59.439023px;}
.h1b{height:61.189805px;}
.h1c{height:62.211094px;}
.h3b{height:63.019687px;}
.h3d{height:63.162914px;}
.h6{height:64.546875px;}
.h34{height:65.010937px;}
.h15{height:65.884219px;}
.h19{height:67.824844px;}
.h10{height:68.760000px;}
.h13{height:68.956875px;}
.ha{height:70.606406px;}
.h3{height:70.664062px;}
.h8{height:71.613281px;}
.hf{height:71.824219px;}
.h35{height:72.000000px;}
.h16{height:72.720000px;}
.h7{height:74.004654px;}
.h17{height:74.340000px;}
.h4{height:74.953125px;}
.h37{height:90.000000px;}
.h3e{height:104.686172px;}
.h38{height:108.000000px;}
.h31{height:118.904063px;}
.h30{height:121.654687px;}
.h2f{height:125.171719px;}
.h36{height:126.104063px;}
.h3c{height:132.139687px;}
.h11{height:150.813281px;}
.h3a{height:163.440000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2e{width:49.680000px;}
.w13{width:50.580000px;}
.w1a{width:54.540000px;}
.w15{width:54.900000px;}
.w31{width:57.780000px;}
.w21{width:86.580000px;}
.w22{width:86.616000px;}
.w20{width:86.796000px;}
.w23{width:88.380000px;}
.w18{width:88.740000px;}
.w24{width:88.776000px;}
.w17{width:88.920000px;}
.w12{width:90.936000px;}
.w6{width:92.736000px;}
.w9{width:92.880000px;}
.w1c{width:95.760000px;}
.w11{width:97.200000px;}
.w16{width:97.236000px;}
.w19{width:101.556000px;}
.w29{width:104.580000px;}
.w7{width:104.760000px;}
.wa{width:105.876000px;}
.w5{width:106.020000px;}
.w8{width:106.956000px;}
.w2f{width:115.380000px;}
.wd{width:122.796000px;}
.we{width:123.840000px;}
.wf{width:124.416000px;}
.w10{width:125.496000px;}
.w26{width:137.160000px;}
.w1b{width:169.410000px;}
.w14{width:170.130000px;}
.w1d{width:174.090000px;}
.w1e{width:175.710000px;}
.w1f{width:177.870000px;}
.w25{width:178.950000px;}
.w2{width:212.250000px;}
.w30{width:218.550000px;}
.w27{width:222.735000px;}
.w2c{width:229.170000px;}
.wb{width:247.350000px;}
.wc{width:250.275000px;}
.w2d{width:254.235000px;}
.w2a{width:254.775000px;}
.w2b{width:279.570000px;}
.w28{width:280.110000px;}
.w32{width:283.755000px;}
.w33{width:292.170000px;}
.w4{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x80{left:2.880000px;}
.x55{left:4.500000px;}
.x37{left:6.840000px;}
.x34{left:8.100000px;}
.x5d{left:10.800000px;}
.x61{left:14.580000px;}
.x2{left:26.274000px;}
.x5b{left:29.340000px;}
.x63{left:36.180000px;}
.x4f{left:54.000000px;}
.x54{left:55.440000px;}
.x53{left:58.500000px;}
.x67{left:64.125000px;}
.x57{left:65.700000px;}
.x6a{left:68.040000px;}
.x56{left:78.480000px;}
.x3e{left:102.645000px;}
.x3f{left:103.710000px;}
.x59{left:114.876000px;}
.x4{left:119.520000px;}
.x7d{left:125.856000px;}
.x1{left:127.656000px;}
.x81{left:128.736000px;}
.x65{left:129.816000px;}
.xd{left:132.515987px;}
.x2e{left:137.375987px;}
.x33{left:139.356000px;}
.x15{left:140.435987px;}
.x7{left:154.469987px;}
.x22{left:159.944987px;}
.xe{left:173.729973px;}
.x26{left:174.884987px;}
.x90{left:176.369987px;}
.x32{left:178.409987px;}
.xf{left:179.849987px;}
.x9{left:181.649987px;}
.x8b{left:187.590000px;}
.x9a{left:191.549987px;}
.x3d{left:196.590000px;}
.x20{left:199.109987px;}
.x1e{left:202.349987px;}
.x5a{left:204.330000px;}
.x64{left:210.089987px;}
.x6{left:212.805000px;}
.x14{left:219.629987px;}
.x58{left:220.709987px;}
.x3c{left:225.749987px;}
.x66{left:227.730000px;}
.x12{left:228.989973px;}
.x6f{left:232.589973px;}
.x13{left:235.109987px;}
.x99{left:236.909973px;}
.x87{left:242.490000px;}
.x70{left:244.829987px;}
.x35{left:246.090000px;}
.x10{left:247.529973px;}
.x96{left:249.689987px;}
.x11{left:253.649987px;}
.x4b{left:257.789973px;}
.x8d{left:262.469987px;}
.x7e{left:263.730000px;}
.x45{left:265.349973px;}
.x4c{left:270.029987px;}
.x46{left:277.589987px;}
.x7c{left:296.534987px;}
.x5c{left:306.615000px;}
.x29{left:310.244987px;}
.x6b{left:315.255000px;}
.x4d{left:317.235000px;}
.x40{left:320.115000px;}
.x30{left:325.544987px;}
.x94{left:329.759987px;}
.x6e{left:332.174973px;}
.x27{left:334.259987px;}
.x85{left:335.774987px;}
.x83{left:337.214987px;}
.x23{left:338.759987px;}
.x3{left:339.915000px;}
.x28{left:341.924987px;}
.x2f{left:345.029987px;}
.x5e{left:361.875000px;}
.x4e{left:367.815000px;}
.x8a{left:369.254987px;}
.xc{left:370.514987px;}
.x8e{left:385.094973px;}
.x75{left:388.694973px;}
.x84{left:390.314987px;}
.x3a{left:396.974973px;}
.x76{left:400.934987px;}
.x68{left:404.175000px;}
.x3b{left:409.214987px;}
.x72{left:415.694987px;}
.x79{left:421.094973px;}
.x1f{left:431.354987px;}
.x7a{left:433.334987px;}
.x91{left:439.349987px;}
.x43{left:441.434973px;}
.x36{left:446.655000px;}
.x92{left:451.769987px;}
.x44{left:453.674987px;}
.x73{left:456.914973px;}
.x1c{left:458.354973px;}
.x88{left:462.135000px;}
.x1d{left:464.474987px;}
.x74{left:469.154987px;}
.x24{left:472.754987px;}
.x7f{left:487.185000px;}
.x82{left:490.245000px;}
.x6c{left:491.505000px;}
.x47{left:496.364973px;}
.x1a{left:498.704973px;}
.x2a{left:501.299987px;}
.x1b{left:504.824987px;}
.x77{left:507.524973px;}
.x48{left:508.604987px;}
.x71{left:511.844987px;}
.x31{left:516.629987px;}
.x78{left:519.764987px;}
.x5f{left:532.005000px;}
.x50{left:537.945000px;}
.x5{left:552.165000px;}
.x38{left:554.325000px;}
.x41{left:571.065000px;}
.x69{left:582.225000px;}
.x60{left:587.265000px;}
.x51{left:593.565000px;}
.x21{left:598.424987px;}
.x2b{left:601.484987px;}
.x42{left:610.304987px;}
.x18{left:613.184973px;}
.x2c{left:615.164973px;}
.x19{left:619.304987px;}
.x2d{left:627.404987px;}
.x97{left:631.184973px;}
.x98{left:643.424987px;}
.x39{left:647.925000px;}
.x25{left:651.569987px;}
.x6d{left:671.190000px;}
.xa{left:674.969973px;}
.xb{left:681.089987px;}
.x62{left:689.550000px;}
.x52{left:691.530000px;}
.x7b{left:704.489987px;}
.x93{left:709.409987px;}
.x49{left:711.869973px;}
.x89{left:717.450000px;}
.x86{left:720.150000px;}
.x4a{left:724.109987px;}
.x16{left:733.649973px;}
.x17{left:739.769987px;}
.x95{left:762.809987px;}
.x8f{left:764.429987px;}
.x8{left:765.509987px;}
.x8c{left:793.589987px;}
@media print{
.v4{vertical-align:-53.760000pt;}
.v7{vertical-align:-12.800000pt;}
.v9{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v8{vertical-align:15.360000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.va{vertical-align:42.880000pt;}
.v5{vertical-align:48.640000pt;}
.v6{vertical-align:51.200000pt;}
.vc{vertical-align:61.440000pt;}
.v2{vertical-align:70.400000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.322667pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.250667pt;}
.ls26{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls18{letter-spacing:-0.061867pt;}
.ls17{letter-spacing:-0.051840pt;}
.ls14{letter-spacing:-0.028800pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.035840pt;}
.ls4{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.099733pt;}
.ls11{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.lsd{letter-spacing:0.227733pt;}
.ls1e{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.239467pt;}
.ls15{letter-spacing:0.317333pt;}
.lsc{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.880000pt;}
.ls22{letter-spacing:1.280000pt;}
.ls21{letter-spacing:1.792000pt;}
.ls1c{letter-spacing:2.490240pt;}
.ls1{letter-spacing:7.808000pt;}
.ls27{letter-spacing:8.320000pt;}
.ls1d{letter-spacing:13.760000pt;}
.ls13{letter-spacing:20.000000pt;}
.ls8{letter-spacing:22.528000pt;}
.lsf{letter-spacing:32.746667pt;}
.ls6{letter-spacing:33.280000pt;}
.lsa{letter-spacing:45.546667pt;}
.lsb{letter-spacing:129.280000pt;}
.ws2{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-50.112000pt;}
.ws1c{word-spacing:-49.621333pt;}
.ws24{word-spacing:-46.528000pt;}
.ws1b{word-spacing:-45.888000pt;}
.ws23{word-spacing:-45.056000pt;}
.ws19{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1f{word-spacing:-15.936000pt;}
.ws29{word-spacing:-15.872000pt;}
.ws2a{word-spacing:-15.808000pt;}
.ws1a{word-spacing:-15.744000pt;}
.ws22{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.464000pt;}
.ws20{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.534613pt;}
.ws21{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.400533pt;}
.wsd{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.ws27{word-spacing:-12.757248pt;}
.ws26{word-spacing:-12.728320pt;}
.ws13{word-spacing:-12.322453pt;}
.ws18{word-spacing:-12.104853pt;}
.ws11{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.976320pt;}
.ws15{word-spacing:-11.953280pt;}
.ws17{word-spacing:-11.943253pt;}
.ws14{word-spacing:-11.682453pt;}
.wsf{word-spacing:-11.600000pt;}
.ws4{word-spacing:-10.959467pt;}
.ws16{word-spacing:-7.810560pt;}
.ws1{word-spacing:0.000000pt;}
.ws1e{word-spacing:6.656000pt;}
.ws7{word-spacing:177.866667pt;}
.wsa{word-spacing:193.866667pt;}
.ws25{word-spacing:268.865067pt;}
.ws28{word-spacing:272.922453pt;}
.wsb{word-spacing:424.266667pt;}
.ws6{word-spacing:466.634667pt;}
.wsc{word-spacing:466.741333pt;}
.ws9{word-spacing:538.954667pt;}
._6{margin-left:-4.828160pt;}
._7{margin-left:-3.709440pt;}
._8{margin-left:-2.496640pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.024000pt;}
._3{width:1.957973pt;}
._5{width:3.364907pt;}
._b{width:10.330027pt;}
._9{width:16.426667pt;}
._a{width:75.264000pt;}
._2{width:77.440000pt;}
._4{width:1079.818667pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs4{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs9{font-size:56.448000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:90.880000pt;}
.fs6{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y12f{bottom:2.560000pt;}
.y135{bottom:2.720000pt;}
.yd6{bottom:3.200000pt;}
.y5{bottom:3.360000pt;}
.y151{bottom:3.520000pt;}
.y13b{bottom:3.680000pt;}
.y13f{bottom:3.840000pt;}
.y133{bottom:4.480000pt;}
.y141{bottom:4.640000pt;}
.y2{bottom:5.120000pt;}
.yf1{bottom:5.280000pt;}
.yd3{bottom:5.600000pt;}
.y129{bottom:6.400000pt;}
.y126{bottom:6.560000pt;}
.yde{bottom:8.320000pt;}
.y12d{bottom:9.280000pt;}
.y137{bottom:10.240000pt;}
.y128{bottom:10.720000pt;}
.yd7{bottom:11.200000pt;}
.y14b{bottom:11.520000pt;}
.y11f{bottom:11.560000pt;}
.y121{bottom:12.160000pt;}
.y131{bottom:12.186667pt;}
.y13d{bottom:13.280000pt;}
.y12e{bottom:15.840000pt;}
.y139{bottom:16.960000pt;}
.y4{bottom:18.240000pt;}
.y124{bottom:18.720000pt;}
.y134{bottom:18.906667pt;}
.yd5{bottom:19.200000pt;}
.y150{bottom:19.520000pt;}
.ybc{bottom:22.306667pt;}
.yb9{bottom:22.333333pt;}
.yb6{bottom:22.400000pt;}
.yd0{bottom:22.426667pt;}
.y1d0{bottom:23.773333pt;}
.y127{bottom:26.720000pt;}
.y1a6{bottom:27.200000pt;}
.yd9{bottom:27.520000pt;}
.ydc{bottom:28.320000pt;}
.y184{bottom:35.200000pt;}
.y1cf{bottom:39.133333pt;}
.ybb{bottom:39.906667pt;}
.yb8{bottom:39.933333pt;}
.yb5{bottom:40.000000pt;}
.ycf{bottom:40.026667pt;}
.y1a5{bottom:43.200000pt;}
.y1d3{bottom:47.933333pt;}
.y198{bottom:51.200000pt;}
.y1ce{bottom:55.813333pt;}
.y1a9{bottom:59.200000pt;}
.y1d2{bottom:63.333333pt;}
.y1a7{bottom:67.200000pt;}
.y1cd{bottom:71.173333pt;}
.y1d1{bottom:78.693333pt;}
.y1b6{bottom:83.200000pt;}
.y1cc{bottom:91.866667pt;}
.y1cb{bottom:107.226667pt;}
.y17{bottom:119.360000pt;}
.y1bb{bottom:123.520000pt;}
.y52{bottom:123.840000pt;}
.y170{bottom:127.520000pt;}
.y51{bottom:128.480000pt;}
.y226{bottom:138.560000pt;}
.y35{bottom:144.640000pt;}
.y8a{bottom:146.720000pt;}
.y16{bottom:146.880000pt;}
.y1ba{bottom:151.200000pt;}
.y89{bottom:151.360000pt;}
.y23a{bottom:152.960000pt;}
.y6e{bottom:154.720000pt;}
.y16f{bottom:155.200000pt;}
.y50{bottom:156.960000pt;}
.y6d{bottom:159.360000pt;}
.y225{bottom:166.240000pt;}
.y10c{bottom:169.760000pt;}
.y34{bottom:172.160000pt;}
.y10b{bottom:174.400000pt;}
.y15{bottom:174.560000pt;}
.y88{bottom:177.786667pt;}
.y1b9{bottom:178.746667pt;}
.ya7{bottom:180.026667pt;}
.y239{bottom:180.666667pt;}
.y87{bottom:182.426667pt;}
.y16e{bottom:182.746667pt;}
.yb3{bottom:183.066667pt;}
.y6c{bottom:185.786667pt;}
.y1c9{bottom:187.706667pt;}
.y172{bottom:188.026667pt;}
.y180{bottom:192.826667pt;}
.y74{bottom:193.786667pt;}
.yba{bottom:195.680000pt;}
.y23d{bottom:197.466667pt;}
.y33{bottom:199.866667pt;}
.y11a{bottom:200.826667pt;}
.y54{bottom:200.986667pt;}
.y14d{bottom:201.786667pt;}
.y14{bottom:202.106667pt;}
.y10a{bottom:203.066667pt;}
.yb2{bottom:204.666667pt;}
.y119{bottom:205.466667pt;}
.y1fb{bottom:205.786667pt;}
.y1b8{bottom:206.426667pt;}
.y238{bottom:208.186667pt;}
.y6b{bottom:208.826667pt;}
.y16d{bottom:210.426667pt;}
.y1a3{bottom:210.586667pt;}
.y86{bottom:211.066667pt;}
.y6a{bottom:213.466667pt;}
.y17f{bottom:215.866667pt;}
.y14e{bottom:218.426667pt;}
.y17e{bottom:220.506667pt;}
.y72{bottom:221.466667pt;}
.y23c{bottom:224.986667pt;}
.y32{bottom:227.386667pt;}
.y73{bottom:227.546667pt;}
.y4f{bottom:228.666667pt;}
.y13{bottom:229.786667pt;}
.y118{bottom:231.866667pt;}
.y1fa{bottom:233.306667pt;}
.y1b7{bottom:233.946667pt;}
.ya6{bottom:234.106667pt;}
.y14a{bottom:235.706667pt;}
.y237{bottom:235.866667pt;}
.y117{bottom:236.506667pt;}
.y16c{bottom:237.946667pt;}
.y1a2{bottom:238.266667pt;}
.y187{bottom:238.746667pt;}
.y69{bottom:239.866667pt;}
.y212{bottom:245.786667pt;}
.y17d{bottom:246.746667pt;}
.y71{bottom:248.986667pt;}
.y1b5{bottom:249.786667pt;}
.y14c{bottom:252.346667pt;}
.y224{bottom:253.466667pt;}
.y174{bottom:254.426667pt;}
.y31{bottom:255.066667pt;}
.y4e{bottom:256.186667pt;}
.y12{bottom:257.306667pt;}
.ycd{bottom:259.226667pt;}
.y23b{bottom:260.666667pt;}
.ya5{bottom:261.786667pt;}
.y1f9{bottom:262.106667pt;}
.y68{bottom:262.746667pt;}
.y236{bottom:263.386667pt;}
.yf4{bottom:264.666667pt;}
.y173{bottom:265.146667pt;}
.y16b{bottom:265.626667pt;}
.y67{bottom:267.386667pt;}
.y1a1{bottom:267.546667pt;}
.y17c{bottom:269.786667pt;}
.y149{bottom:270.426667pt;}
.y211{bottom:273.306667pt;}
.y17b{bottom:274.426667pt;}
.y70{bottom:276.666667pt;}
.y85{bottom:279.226667pt;}
.y1a0{bottom:279.866667pt;}
.y223{bottom:281.146667pt;}
.yf3{bottom:281.626667pt;}
.y30{bottom:282.586667pt;}
.yb1{bottom:283.226667pt;}
.y4d{bottom:283.866667pt;}
.y186{bottom:284.826667pt;}
.y11{bottom:284.986667pt;}
.y116{bottom:285.786667pt;}
.ycb{bottom:286.746667pt;}
.ya4{bottom:289.146667pt;}
.y185{bottom:289.466667pt;}
.y1f8{bottom:289.786667pt;}
.y1e8{bottom:290.586667pt;}
.y235{bottom:291.066667pt;}
.ycc{bottom:292.826667pt;}
.y16a{bottom:292.986667pt;}
.yb7{bottom:295.840000pt;}
.y66{bottom:296.026667pt;}
.y148{bottom:298.906667pt;}
.y171{bottom:299.866667pt;}
.y17a{bottom:300.826667pt;}
.y210{bottom:300.986667pt;}
.yf2{bottom:302.266667pt;}
.y6f{bottom:304.186667pt;}
.yb0{bottom:304.826667pt;}
.y84{bottom:306.746667pt;}
.y222{bottom:308.666667pt;}
.y115{bottom:308.826667pt;}
.y2f{bottom:310.266667pt;}
.y4c{bottom:311.386667pt;}
.y1c8{bottom:312.346667pt;}
.y114{bottom:313.466667pt;}
.yca{bottom:314.426667pt;}
.y1f7{bottom:317.306667pt;}
.ya2{bottom:317.946667pt;}
.y1e7{bottom:318.106667pt;}
.y234{bottom:318.586667pt;}
.y19f{bottom:318.906667pt;}
.y169{bottom:321.946667pt;}
.y109{bottom:323.866667pt;}
.ya3{bottom:324.026667pt;}
.yf0{bottom:324.186667pt;}
.y10{bottom:328.506667pt;}
.y65{bottom:331.866667pt;}
.y83{bottom:334.426667pt;}
.y221{bottom:336.346667pt;}
.y2e{bottom:337.786667pt;}
.y4b{bottom:339.066667pt;}
.y113{bottom:339.866667pt;}
.y147{bottom:340.026667pt;}
.y183{bottom:341.786667pt;}
.yc9{bottom:341.946667pt;}
.y1f6{bottom:344.986667pt;}
.y1e6{bottom:345.626667pt;}
.y233{bottom:346.266667pt;}
.y19e{bottom:346.586667pt;}
.ya1{bottom:346.746667pt;}
.y168{bottom:349.466667pt;}
.y108{bottom:351.386667pt;}
.y20f{bottom:356.186667pt;}
.yef{bottom:356.826667pt;}
.y1b4{bottom:357.306667pt;}
.y64{bottom:359.386667pt;}
.y82{bottom:361.946667pt;}
.y112{bottom:362.746667pt;}
.y220{bottom:363.866667pt;}
.y2d{bottom:365.466667pt;}
.y4a{bottom:366.586667pt;}
.y111{bottom:367.386667pt;}
.y1c7{bottom:367.546667pt;}
.y146{bottom:367.706667pt;}
.yaf{bottom:369.626667pt;}
.y1f5{bottom:372.506667pt;}
.y232{bottom:373.786667pt;}
.y19d{bottom:374.106667pt;}
.ya0{bottom:374.426667pt;}
.y167{bottom:377.146667pt;}
.y179{bottom:377.786667pt;}
.y106{bottom:379.066667pt;}
.y20e{bottom:383.546667pt;}
.y107{bottom:385.146667pt;}
.y63{bottom:387.066667pt;}
.yf{bottom:388.226667pt;}
.y81{bottom:389.666667pt;}
.y21f{bottom:391.426667pt;}
.y2c{bottom:393.026667pt;}
.y49{bottom:394.306667pt;}
.y145{bottom:395.266667pt;}
.y110{bottom:396.066667pt;}
.yae{bottom:397.186667pt;}
.yee{bottom:397.986667pt;}
.y1b3{bottom:398.626667pt;}
.y1f4{bottom:400.066667pt;}
.y178{bottom:400.866667pt;}
.y182{bottom:401.026667pt;}
.y231{bottom:401.506667pt;}
.y19c{bottom:401.666667pt;}
.y9f{bottom:401.986667pt;}
.y1e5{bottom:402.146667pt;}
.y166{bottom:404.706667pt;}
.y177{bottom:405.506667pt;}
.y105{bottom:406.626667pt;}
.y20d{bottom:412.546667pt;}
.y62{bottom:414.626667pt;}
.ye{bottom:415.746667pt;}
.y80{bottom:417.186667pt;}
.y2b{bottom:420.706667pt;}
.y48{bottom:421.826667pt;}
.y1c6{bottom:422.786667pt;}
.y144{bottom:422.946667pt;}
.yad{bottom:424.866667pt;}
.yed{bottom:425.666667pt;}
.y1b2{bottom:426.146667pt;}
.y1f3{bottom:428.866667pt;}
.y230{bottom:429.026667pt;}
.y19b{bottom:429.346667pt;}
.y1e4{bottom:429.506667pt;}
.y9e{bottom:429.666667pt;}
.y165{bottom:432.386667pt;}
.y176{bottom:433.986667pt;}
.y104{bottom:434.306667pt;}
.y21e{bottom:435.106667pt;}
.y20c{bottom:440.066667pt;}
.y143{bottom:441.026667pt;}
.y61{bottom:442.306667pt;}
.yd{bottom:443.426667pt;}
.y7f{bottom:444.866667pt;}
.y2a{bottom:448.226667pt;}
.y47{bottom:449.506667pt;}
.yac{bottom:452.386667pt;}
.yec{bottom:453.186667pt;}
.y1b1{bottom:453.826667pt;}
.y1f2{bottom:456.386667pt;}
.y22f{bottom:456.546667pt;}
.y19a{bottom:456.866667pt;}
.y142{bottom:457.026667pt;}
.y9d{bottom:457.186667pt;}
.y1c5{bottom:458.466667pt;}
.y164{bottom:459.906667pt;}
.y103{bottom:461.826667pt;}
.y20b{bottom:467.746667pt;}
.y60{bottom:469.826667pt;}
.yc{bottom:470.946667pt;}
.y140{bottom:471.746667pt;}
.y7e{bottom:472.386667pt;}
.y29{bottom:475.906667pt;}
.y46{bottom:477.026667pt;}
.yab{bottom:480.066667pt;}
.yea{bottom:480.866667pt;}
.y1b0{bottom:481.346667pt;}
.y22e{bottom:484.226667pt;}
.y199{bottom:484.546667pt;}
.y9c{bottom:484.866667pt;}
.y1f1{bottom:485.186667pt;}
.y1e3{bottom:485.986667pt;}
.yeb{bottom:486.946667pt;}
.y163{bottom:487.586667pt;}
.y102{bottom:489.506667pt;}
.y13c{bottom:490.946667pt;}
.y21d{bottom:494.626667pt;}
.y20a{bottom:495.266667pt;}
.y5f{bottom:497.506667pt;}
.yb{bottom:498.626667pt;}
.y7d{bottom:500.066667pt;}
.y197{bottom:500.386667pt;}
.y1c4{bottom:501.986667pt;}
.y28{bottom:503.426667pt;}
.y45{bottom:504.546667pt;}
.yaa{bottom:507.586667pt;}
.ye9{bottom:508.386667pt;}
.y1af{bottom:509.026667pt;}
.y13e{bottom:509.826667pt;}
.y22d{bottom:511.746667pt;}
.y9b{bottom:512.386667pt;}
.y1f0{bottom:512.706667pt;}
.y1e2{bottom:513.506667pt;}
.y162{bottom:515.106667pt;}
.y101{bottom:517.026667pt;}
.y21c{bottom:522.306667pt;}
.y209{bottom:522.946667pt;}
.y5e{bottom:525.026667pt;}
.y7c{bottom:527.586667pt;}
.y1c3{bottom:529.666667pt;}
.y27{bottom:531.106667pt;}
.y43{bottom:532.226667pt;}
.yc8{bottom:535.266667pt;}
.ye8{bottom:536.066667pt;}
.y1ae{bottom:536.546667pt;}
.y44{bottom:538.306667pt;}
.y22c{bottom:539.426667pt;}
.y9a{bottom:540.066667pt;}
.y1ef{bottom:541.666667pt;}
.ya{bottom:542.146667pt;}
.y1e1{bottom:542.306667pt;}
.y161{bottom:542.626667pt;}
.y13a{bottom:542.946667pt;}
.y100{bottom:544.546667pt;}
.ya9{bottom:549.026667pt;}
.y21b{bottom:549.826667pt;}
.y208{bottom:550.306667pt;}
.y5c{bottom:552.546667pt;}
.y7b{bottom:555.266667pt;}
.y1c2{bottom:557.186667pt;}
.y136{bottom:558.306667pt;}
.y5d{bottom:558.626667pt;}
.y42{bottom:559.746667pt;}
.yb4{bottom:561.600000pt;}
.yc7{bottom:562.786667pt;}
.ye7{bottom:563.586667pt;}
.y1ad{bottom:564.226667pt;}
.y196{bottom:565.346667pt;}
.y22b{bottom:566.946667pt;}
.y99{bottom:567.586667pt;}
.y1ee{bottom:569.186667pt;}
.y9{bottom:569.826667pt;}
.y1e0{bottom:569.986667pt;}
.ya8{bottom:570.626667pt;}
.y160{bottom:571.426667pt;}
.yff{bottom:572.226667pt;}
.y138{bottom:573.666667pt;}
.y26{bottom:574.626667pt;}
.y21a{bottom:577.346667pt;}
.y207{bottom:579.266667pt;}
.y5b{bottom:580.226667pt;}
.y79{bottom:582.626667pt;}
.y1c0{bottom:584.866667pt;}
.y41{bottom:587.426667pt;}
.y7a{bottom:588.706667pt;}
.y130{bottom:588.866667pt;}
.yc6{bottom:590.466667pt;}
.y1c1{bottom:590.946667pt;}
.ye6{bottom:591.266667pt;}
.y1ac{bottom:591.746667pt;}
.y22a{bottom:594.626667pt;}
.y98{bottom:595.266667pt;}
.y1ed{bottom:596.866667pt;}
.y1df{bottom:597.506667pt;}
.y15f{bottom:599.106667pt;}
.yfe{bottom:599.773333pt;}
.y132{bottom:604.253333pt;}
.y219{bottom:606.333333pt;}
.y206{bottom:606.653333pt;}
.y5a{bottom:607.773333pt;}
.y195{bottom:608.893333pt;}
.y78{bottom:611.453333pt;}
.y1bf{bottom:612.413333pt;}
.y40{bottom:614.973333pt;}
.yc5{bottom:618.013333pt;}
.ye5{bottom:618.813333pt;}
.y229{bottom:622.173333pt;}
.y97{bottom:622.813333pt;}
.y12c{bottom:624.413333pt;}
.y1de{bottom:626.333333pt;}
.y15e{bottom:626.493333pt;}
.yfd{bottom:627.453333pt;}
.y8{bottom:629.373333pt;}
.y218{bottom:633.693333pt;}
.y25{bottom:634.333333pt;}
.y59{bottom:635.453333pt;}
.y194{bottom:638.493333pt;}
.y77{bottom:640.253333pt;}
.y1ab{bottom:640.733333pt;}
.y3f{bottom:642.653333pt;}
.yc4{bottom:645.693333pt;}
.ye4{bottom:646.493333pt;}
.y228{bottom:649.853333pt;}
.y96{bottom:650.493333pt;}
.y1ec{bottom:652.093333pt;}
.y1dd{bottom:654.013333pt;}
.yfc{bottom:654.973333pt;}
.y15d{bottom:655.453333pt;}
.y1be{bottom:656.093333pt;}
.y7{bottom:657.053333pt;}
.y53{bottom:658.653333pt;}
.y24{bottom:661.853333pt;}
.y217{bottom:662.653333pt;}
.y58{bottom:662.973333pt;}
.y205{bottom:664.413333pt;}
.y12b{bottom:664.573333pt;}
.y76{bottom:668.893333pt;}
.y175{bottom:669.053333pt;}
.y3e{bottom:670.173333pt;}
.y193{bottom:671.133333pt;}
.yc3{bottom:673.213333pt;}
.ye3{bottom:674.013333pt;}
.y227{bottom:677.373333pt;}
.y95{bottom:677.853333pt;}
.y1eb{bottom:679.613333pt;}
.y1dc{bottom:681.533333pt;}
.yfb{bottom:682.653333pt;}
.y15c{bottom:682.973333pt;}
.y1aa{bottom:684.253333pt;}
.y23{bottom:689.373333pt;}
.y216{bottom:690.173333pt;}
.y57{bottom:690.653333pt;}
.y204{bottom:691.773333pt;}
.y12a{bottom:694.973333pt;}
.y3d{bottom:697.853333pt;}
.yc2{bottom:700.893333pt;}
.ye2{bottom:701.693333pt;}
.y192{bottom:703.773333pt;}
.y94{bottom:706.813333pt;}
.y1db{bottom:709.213333pt;}
.yfa{bottom:710.173333pt;}
.y15b{bottom:710.653333pt;}
.y6{bottom:713.053333pt;}
.y1bd{bottom:713.373333pt;}
.y215{bottom:717.693333pt;}
.y22{bottom:718.173333pt;}
.y123{bottom:719.773333pt;}
.y203{bottom:720.733333pt;}
.y1ea{bottom:721.053333pt;}
.y56{bottom:724.253333pt;}
.y3c{bottom:725.373333pt;}
.y1ca{bottom:725.920000pt;}
.yc1{bottom:728.413333pt;}
.ye1{bottom:729.213333pt;}
.y93{bottom:734.333333pt;}
.y1bc{bottom:735.133333pt;}
.y1da{bottom:736.733333pt;}
.yf9{bottom:737.853333pt;}
.y15a{bottom:738.173333pt;}
.y1e9{bottom:742.653333pt;}
.y125{bottom:744.413333pt;}
.y21{bottom:745.853333pt;}
.y191{bottom:747.293333pt;}
.y202{bottom:748.253333pt;}
.y10f{bottom:751.933333pt;}
.y3b{bottom:753.053333pt;}
.yc0{bottom:756.093333pt;}
.ye0{bottom:756.893333pt;}
.y214{bottom:760.413333pt;}
.y92{bottom:763.133333pt;}
.y1d9{bottom:764.253333pt;}
.yf8{bottom:765.373333pt;}
.y159{bottom:765.853333pt;}
.y75{bottom:769.053333pt;}
.y20{bottom:773.373333pt;}
.y201{bottom:775.773333pt;}
.y3a{bottom:780.573333pt;}
.y213{bottom:781.853333pt;}
.ybf{bottom:783.613333pt;}
.ydf{bottom:784.413333pt;}
.y122{bottom:786.973333pt;}
.y190{bottom:788.413333pt;}
.y91{bottom:790.653333pt;}
.yf7{bottom:793.053333pt;}
.y158{bottom:793.373333pt;}
.y1f{bottom:801.053333pt;}
.ydd{bottom:801.373333pt;}
.y200{bottom:804.573333pt;}
.y11e{bottom:805.053333pt;}
.y39{bottom:808.253333pt;}
.y18f{bottom:816.133333pt;}
.y90{bottom:819.493333pt;}
.yf6{bottom:820.613333pt;}
.y1d8{bottom:820.773333pt;}
.y157{bottom:821.093333pt;}
.y120{bottom:821.733333pt;}
.y1a8{bottom:824.133333pt;}
.ybe{bottom:825.093333pt;}
.y1e{bottom:828.613333pt;}
.ydb{bottom:829.733333pt;}
.y1ff{bottom:832.293333pt;}
.y181{bottom:834.693333pt;}
.y38{bottom:835.813333pt;}
.yce{bottom:837.600000pt;}
.y11d{bottom:840.773333pt;}
.y18e{bottom:843.653333pt;}
.ybd{bottom:846.693333pt;}
.y8f{bottom:847.013333pt;}
.yf5{bottom:848.293333pt;}
.y156{bottom:848.613333pt;}
.y1d{bottom:856.293333pt;}
.y1fe{bottom:859.813333pt;}
.y10e{bottom:862.373333pt;}
.y37{bottom:863.493333pt;}
.yda{bottom:863.813333pt;}
.y11c{bottom:870.213333pt;}
.y18d{bottom:871.333333pt;}
.y8e{bottom:875.813333pt;}
.y1d7{bottom:875.973333pt;}
.y1c{bottom:883.813333pt;}
.y1fd{bottom:887.493333pt;}
.y155{bottom:892.293333pt;}
.yd8{bottom:896.453333pt;}
.y18c{bottom:898.853333pt;}
.y1d6{bottom:903.333333pt;}
.y8d{bottom:903.493333pt;}
.y1a4{bottom:905.093333pt;}
.y36{bottom:907.013333pt;}
.y1b{bottom:911.493333pt;}
.y18b{bottom:914.533333pt;}
.y1fc{bottom:923.013333pt;}
.yd4{bottom:929.093333pt;}
.y8c{bottom:931.013333pt;}
.y1d5{bottom:932.293333pt;}
.y18a{bottom:935.173333pt;}
.y1a{bottom:939.013333pt;}
.y153{bottom:941.093333pt;}
.y10d{bottom:945.093333pt;}
.y189{bottom:955.813333pt;}
.y154{bottom:957.733333pt;}
.y8b{bottom:958.693333pt;}
.yd2{bottom:963.173333pt;}
.y19{bottom:966.693333pt;}
.y55{bottom:972.773333pt;}
.y1d4{bottom:973.733333pt;}
.y14f{bottom:975.173333pt;}
.y188{bottom:976.453333pt;}
.y152{bottom:991.813333pt;}
.y18{bottom:994.213333pt;}
.yd1{bottom:996.613333pt;}
.y11b{bottom:1000.293333pt;}
.y3{bottom:1087.680000pt;}
.y1{bottom:1102.560000pt;}
.h29{height:13.280000pt;}
.h27{height:13.472000pt;}
.h2b{height:15.840000pt;}
.h1a{height:16.000000pt;}
.h1f{height:16.032000pt;}
.h2c{height:16.960000pt;}
.h26{height:17.120000pt;}
.h2d{height:17.280000pt;}
.h2{height:20.000000pt;}
.h12{height:20.960000pt;}
.h22{height:22.560000pt;}
.h23{height:22.720000pt;}
.h18{height:26.432000pt;}
.h24{height:26.560000pt;}
.h28{height:28.640000pt;}
.hb{height:31.406250pt;}
.h14{height:32.000000pt;}
.h25{height:32.512000pt;}
.h2e{height:32.640000pt;}
.h1d{height:32.672000pt;}
.hc{height:33.918750pt;}
.h20{height:33.920000pt;}
.h2a{height:34.720000pt;}
.h9{height:42.084375pt;}
.h5{height:46.343750pt;}
.h21{height:47.200000pt;}
.he{height:47.621250pt;}
.h32{height:48.032000pt;}
.h39{height:48.530000pt;}
.hd{height:52.134375pt;}
.h3f{height:52.750000pt;}
.h33{height:52.785000pt;}
.h1e{height:52.834688pt;}
.h1b{height:54.390938pt;}
.h1c{height:55.298750pt;}
.h3b{height:56.017500pt;}
.h3d{height:56.144813pt;}
.h6{height:57.375000pt;}
.h34{height:57.787500pt;}
.h15{height:58.563750pt;}
.h19{height:60.288750pt;}
.h10{height:61.120000pt;}
.h13{height:61.295000pt;}
.ha{height:62.761250pt;}
.h3{height:62.812500pt;}
.h8{height:63.656250pt;}
.hf{height:63.843750pt;}
.h35{height:64.000000pt;}
.h16{height:64.640000pt;}
.h7{height:65.781915pt;}
.h17{height:66.080000pt;}
.h4{height:66.625000pt;}
.h37{height:80.000000pt;}
.h3e{height:93.054375pt;}
.h38{height:96.000000pt;}
.h31{height:105.692500pt;}
.h30{height:108.137500pt;}
.h2f{height:111.263750pt;}
.h36{height:112.092500pt;}
.h3c{height:117.457500pt;}
.h11{height:134.056250pt;}
.h3a{height:145.280000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2e{width:44.160000pt;}
.w13{width:44.960000pt;}
.w1a{width:48.480000pt;}
.w15{width:48.800000pt;}
.w31{width:51.360000pt;}
.w21{width:76.960000pt;}
.w22{width:76.992000pt;}
.w20{width:77.152000pt;}
.w23{width:78.560000pt;}
.w18{width:78.880000pt;}
.w24{width:78.912000pt;}
.w17{width:79.040000pt;}
.w12{width:80.832000pt;}
.w6{width:82.432000pt;}
.w9{width:82.560000pt;}
.w1c{width:85.120000pt;}
.w11{width:86.400000pt;}
.w16{width:86.432000pt;}
.w19{width:90.272000pt;}
.w29{width:92.960000pt;}
.w7{width:93.120000pt;}
.wa{width:94.112000pt;}
.w5{width:94.240000pt;}
.w8{width:95.072000pt;}
.w2f{width:102.560000pt;}
.wd{width:109.152000pt;}
.we{width:110.080000pt;}
.wf{width:110.592000pt;}
.w10{width:111.552000pt;}
.w26{width:121.920000pt;}
.w1b{width:150.586667pt;}
.w14{width:151.226667pt;}
.w1d{width:154.746667pt;}
.w1e{width:156.186667pt;}
.w1f{width:158.106667pt;}
.w25{width:159.066667pt;}
.w2{width:188.666667pt;}
.w30{width:194.266667pt;}
.w27{width:197.986667pt;}
.w2c{width:203.706667pt;}
.wb{width:219.866667pt;}
.wc{width:222.466667pt;}
.w2d{width:225.986667pt;}
.w2a{width:226.466667pt;}
.w2b{width:248.506667pt;}
.w28{width:248.986667pt;}
.w32{width:252.226667pt;}
.w33{width:259.706667pt;}
.w4{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x80{left:2.560000pt;}
.x55{left:4.000000pt;}
.x37{left:6.080000pt;}
.x34{left:7.200000pt;}
.x5d{left:9.600000pt;}
.x61{left:12.960000pt;}
.x2{left:23.354667pt;}
.x5b{left:26.080000pt;}
.x63{left:32.160000pt;}
.x4f{left:48.000000pt;}
.x54{left:49.280000pt;}
.x53{left:52.000000pt;}
.x67{left:57.000000pt;}
.x57{left:58.400000pt;}
.x6a{left:60.480000pt;}
.x56{left:69.760000pt;}
.x3e{left:91.240000pt;}
.x3f{left:92.186667pt;}
.x59{left:102.112000pt;}
.x4{left:106.240000pt;}
.x7d{left:111.872000pt;}
.x1{left:113.472000pt;}
.x81{left:114.432000pt;}
.x65{left:115.392000pt;}
.xd{left:117.791988pt;}
.x2e{left:122.111988pt;}
.x33{left:123.872000pt;}
.x15{left:124.831988pt;}
.x7{left:137.306655pt;}
.x22{left:142.173322pt;}
.xe{left:154.426643pt;}
.x26{left:155.453322pt;}
.x90{left:156.773322pt;}
.x32{left:158.586655pt;}
.xf{left:159.866655pt;}
.x9{left:161.466655pt;}
.x8b{left:166.746667pt;}
.x9a{left:170.266655pt;}
.x3d{left:174.746667pt;}
.x20{left:176.986655pt;}
.x1e{left:179.866655pt;}
.x5a{left:181.626667pt;}
.x64{left:186.746655pt;}
.x6{left:189.160000pt;}
.x14{left:195.226655pt;}
.x58{left:196.186655pt;}
.x3c{left:200.666655pt;}
.x66{left:202.426667pt;}
.x12{left:203.546643pt;}
.x6f{left:206.746643pt;}
.x13{left:208.986655pt;}
.x99{left:210.586643pt;}
.x87{left:215.546667pt;}
.x70{left:217.626655pt;}
.x35{left:218.746667pt;}
.x10{left:220.026643pt;}
.x96{left:221.946655pt;}
.x11{left:225.466655pt;}
.x4b{left:229.146643pt;}
.x8d{left:233.306655pt;}
.x7e{left:234.426667pt;}
.x45{left:235.866643pt;}
.x4c{left:240.026655pt;}
.x46{left:246.746655pt;}
.x7c{left:263.586655pt;}
.x5c{left:272.546667pt;}
.x29{left:275.773322pt;}
.x6b{left:280.226667pt;}
.x4d{left:281.986667pt;}
.x40{left:284.546667pt;}
.x30{left:289.373322pt;}
.x94{left:293.119988pt;}
.x6e{left:295.266643pt;}
.x27{left:297.119988pt;}
.x85{left:298.466655pt;}
.x83{left:299.746655pt;}
.x23{left:301.119988pt;}
.x3{left:302.146667pt;}
.x28{left:303.933322pt;}
.x2f{left:306.693322pt;}
.x5e{left:321.666667pt;}
.x4e{left:326.946667pt;}
.x8a{left:328.226655pt;}
.xc{left:329.346655pt;}
.x8e{left:342.306643pt;}
.x75{left:345.506643pt;}
.x84{left:346.946655pt;}
.x3a{left:352.866643pt;}
.x76{left:356.386655pt;}
.x68{left:359.266667pt;}
.x3b{left:363.746655pt;}
.x72{left:369.506655pt;}
.x79{left:374.306643pt;}
.x1f{left:383.426655pt;}
.x7a{left:385.186655pt;}
.x91{left:390.533322pt;}
.x43{left:392.386643pt;}
.x36{left:397.026667pt;}
.x92{left:401.573322pt;}
.x44{left:403.266655pt;}
.x73{left:406.146643pt;}
.x1c{left:407.426643pt;}
.x88{left:410.786667pt;}
.x1d{left:412.866655pt;}
.x74{left:417.026655pt;}
.x24{left:420.226655pt;}
.x7f{left:433.053333pt;}
.x82{left:435.773333pt;}
.x6c{left:436.893333pt;}
.x47{left:441.213310pt;}
.x1a{left:443.293310pt;}
.x2a{left:445.599988pt;}
.x1b{left:448.733322pt;}
.x77{left:451.133310pt;}
.x48{left:452.093322pt;}
.x71{left:454.973322pt;}
.x31{left:459.226655pt;}
.x78{left:462.013322pt;}
.x5f{left:472.893333pt;}
.x50{left:478.173333pt;}
.x5{left:490.813333pt;}
.x38{left:492.733333pt;}
.x41{left:507.613333pt;}
.x69{left:517.533333pt;}
.x60{left:522.013333pt;}
.x51{left:527.613333pt;}
.x21{left:531.933322pt;}
.x2b{left:534.653322pt;}
.x42{left:542.493322pt;}
.x18{left:545.053310pt;}
.x2c{left:546.813310pt;}
.x19{left:550.493322pt;}
.x2d{left:557.693322pt;}
.x97{left:561.053310pt;}
.x98{left:571.933322pt;}
.x39{left:575.933333pt;}
.x25{left:579.173322pt;}
.x6d{left:596.613333pt;}
.xa{left:599.973310pt;}
.xb{left:605.413322pt;}
.x62{left:612.933333pt;}
.x52{left:614.693333pt;}
.x7b{left:626.213322pt;}
.x93{left:630.586655pt;}
.x49{left:632.773310pt;}
.x89{left:637.733333pt;}
.x86{left:640.133333pt;}
.x4a{left:643.653322pt;}
.x16{left:652.133310pt;}
.x17{left:657.573322pt;}
.x95{left:678.053322pt;}
.x8f{left:679.493322pt;}
.x8{left:680.453322pt;}
.x8c{left:705.413322pt;}
}




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