
    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_7f34cb06f4abfa85e73e4045.woff')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_e1e5e77603579d511aba2153.woff')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_330f9760b7cfbb9188e3f282.woff')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_b8c7199508e1088c1f356520.woff')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_77b4878bed0c9d6884bcf005.woff')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_aa788a4d648bab7105939ffb.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2efa75f2f75e480ae930fc38.woff')format("woff");}.ff7{font-family:ff7;line-height:0.730469;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_0fbab03c4dae9558a2014523.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_de3229fcca62b23455c8bdef.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b9e26239891eaab8722f18dc.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c0c96f23b437c828dda750c6.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910645;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_e351407f54ce04753929030f.woff')format("woff");}.ffc{font-family:ffc;line-height:0.693359;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_3a1d36646d2e21ce917a7e6c.woff')format("woff");}.ffd{font-family:ffd;line-height:0.706543;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m2{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);}
.v3{vertical-align:-68.400000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.lse{letter-spacing:-3.600000px;}
.ls15{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.223800px;}
.ls17{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.017280px;}
.ls7{letter-spacing:-0.008640px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.150000px;}
.ls5{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.lsc{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.440000px;}
.ls11{letter-spacing:5.040000px;}
.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;}
}
.ws14{word-spacing:-72.000000px;}
.ws2{word-spacing:-19.457280px;}
.ws5{word-spacing:-19.431360px;}
.ws4{word-spacing:-19.422720px;}
.wsc{word-spacing:-18.792000px;}
.wsd{word-spacing:-18.216000px;}
.wse{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.wsb{word-spacing:-18.036000px;}
.ws6{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws11{word-spacing:-13.608000px;}
.wsf{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.ws13{word-spacing:-11.836200px;}
.ws3{word-spacing:0.000000px;}
.wsa{word-spacing:290.184000px;}
._2a{margin-left:-81.180000px;}
._22{margin-left:-60.480000px;}
._6{margin-left:-5.256000px;}
._7{margin-left:-3.490320px;}
._11{margin-left:-2.341680px;}
._4{margin-left:-1.341600px;}
._0{width:1.015920px;}
._1{width:2.551200px;}
._e{width:3.744000px;}
._5{width:4.944240px;}
._b{width:6.408000px;}
._c{width:7.727760px;}
._d{width:9.136800px;}
._1b{width:10.204080px;}
._12{width:11.304000px;}
._1d{width:12.528000px;}
._1e{width:13.558560px;}
._19{width:14.616000px;}
._8{width:16.056000px;}
._24{width:17.298000px;}
._a{width:19.008000px;}
._1c{width:20.008080px;}
._14{width:21.744000px;}
._23{width:22.824000px;}
._15{width:23.836080px;}
._20{width:25.128000px;}
._1a{width:26.136000px;}
._f{width:27.864000px;}
._10{width:29.027280px;}
._13{width:30.242640px;}
._9{width:32.328000px;}
._1f{width:33.912000px;}
._16{width:35.928000px;}
._28{width:37.001760px;}
._17{width:38.232000px;}
._18{width:39.921840px;}
._2e{width:42.282000px;}
._27{width:43.848000px;}
._21{width:45.101520px;}
._26{width:51.408000px;}
._25{width:52.434000px;}
._29{width:68.925600px;}
._2d{width:113.346000px;}
._2c{width:115.884000px;}
._2b{width:123.498000px;}
._2{width:532.260000px;}
._3{width:1523.177520px;}
.fc4{color:transparent;}
.fc3{color:rgb(31,73,125);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fsb{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs8{font-size:75.893905px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y72{bottom:4.140000px;}
.y7d{bottom:4.485000px;}
.y9f{bottom:4.491000px;}
.y76{bottom:4.500000px;}
.y205{bottom:5.925000px;}
.y108{bottom:7.365000px;}
.y10f{bottom:7.371000px;}
.y112{bottom:7.380000px;}
.y11f{bottom:7.395000px;}
.y10d{bottom:7.545000px;}
.y146{bottom:7.551000px;}
.y136{bottom:7.560000px;}
.y164{bottom:7.575000px;}
.y124{bottom:7.605000px;}
.y15c{bottom:7.920000px;}
.y167{bottom:10.080000px;}
.y1af{bottom:10.260000px;}
.y95{bottom:12.600000px;}
.ya4{bottom:12.780000px;}
.ya2{bottom:14.925000px;}
.y128{bottom:17.820000px;}
.y12d{bottom:18.000000px;}
.y106{bottom:19.245000px;}
.y134{bottom:19.260000px;}
.y10e{bottom:19.425000px;}
.y113{bottom:19.440000px;}
.y16b{bottom:19.800000px;}
.y1e4{bottom:20.355000px;}
.y204{bottom:21.765000px;}
.y81{bottom:25.185000px;}
.y75{bottom:25.200000px;}
.y7c{bottom:25.230000px;}
.y1ae{bottom:26.280000px;}
.y12b{bottom:29.880000px;}
.y125{bottom:29.925000px;}
.y1da{bottom:30.420000px;}
.y107{bottom:31.125000px;}
.y127{bottom:31.140000px;}
.y10c{bottom:31.305000px;}
.y111{bottom:31.320000px;}
.y11e{bottom:31.335000px;}
.y123{bottom:31.365000px;}
.y10a{bottom:31.485000px;}
.ya1{bottom:35.625000px;}
.y1e3{bottom:36.015000px;}
.y203{bottom:37.425000px;}
.y7{bottom:39.276000px;}
.y1ad{bottom:41.760000px;}
.y13f{bottom:43.200000px;}
.y143{bottom:43.545000px;}
.y16a{bottom:43.560000px;}
.y80{bottom:45.885000px;}
.y74{bottom:45.900000px;}
.y7b{bottom:45.930000px;}
.y1d9{bottom:46.260000px;}
.y1ce{bottom:51.105000px;}
.y1e2{bottom:51.495000px;}
.y163{bottom:52.215000px;}
.y202{bottom:52.905000px;}
.y145{bottom:55.065000px;}
.y12a{bottom:55.080000px;}
.y11d{bottom:55.095000px;}
.y122{bottom:55.125000px;}
.y13c{bottom:55.455000px;}
.y132{bottom:56.175000px;}
.ya0{bottom:56.325000px;}
.y7e{bottom:56.370000px;}
.y1ac{bottom:57.240000px;}
.ydd{bottom:58.290000px;}
.y6{bottom:58.536000px;}
.y1bd{bottom:59.745000px;}
.y1d8{bottom:61.920000px;}
.y120{bottom:65.520000px;}
.y9e{bottom:66.585000px;}
.y9b{bottom:66.600000px;}
.y7a{bottom:66.630000px;}
.y1cd{bottom:66.765000px;}
.y1e1{bottom:66.975000px;}
.y142{bottom:67.305000px;}
.y148{bottom:67.320000px;}
.y201{bottom:68.385000px;}
.y1ab{bottom:72.720000px;}
.y162{bottom:72.915000px;}
.y1bc{bottom:75.765000px;}
.ydc{bottom:76.830000px;}
.y1d7{bottom:77.400000px;}
.y13e{bottom:78.840000px;}
.y11c{bottom:78.855000px;}
.y13a{bottom:79.200000px;}
.ydb{bottom:79.590000px;}
.y130{bottom:79.920000px;}
.y1cc{bottom:82.290000px;}
.y1e0{bottom:82.635000px;}
.y200{bottom:83.865000px;}
.y9a{bottom:87.300000px;}
.y79{bottom:87.330000px;}
.y1aa{bottom:88.425000px;}
.y141{bottom:91.245000px;}
.y1bb{bottom:91.290000px;}
.y1d6{bottom:92.880000px;}
.ye1{bottom:93.210000px;}
.y161{bottom:93.615000px;}
.y1cb{bottom:97.770000px;}
.y1df{bottom:98.115000px;}
.yda{bottom:98.355000px;}
.y1ff{bottom:99.525000px;}
.y194{bottom:102.030000px;}
.y11a{bottom:102.600000px;}
.y139{bottom:102.960000px;}
.y12f{bottom:103.860000px;}
.y1a9{bottom:103.905000px;}
.y199{bottom:105.015000px;}
.y1ba{bottom:106.770000px;}
.y99{bottom:108.000000px;}
.y78{bottom:108.030000px;}
.y1d5{bottom:108.360000px;}
.ye0{bottom:111.750000px;}
.y1ca{bottom:113.430000px;}
.y1de{bottom:113.595000px;}
.y160{bottom:114.315000px;}
.y1fe{bottom:115.005000px;}
.yd9{bottom:116.895000px;}
.y1a8{bottom:119.385000px;}
.y193{bottom:121.290000px;}
.y1b9{bottom:122.250000px;}
.y1d4{bottom:124.020000px;}
.y119{bottom:126.540000px;}
.y198{bottom:126.615000px;}
.y98{bottom:128.700000px;}
.y1c9{bottom:128.910000px;}
.y109{bottom:128.925000px;}
.y1dd{bottom:129.075000px;}
.ydf{bottom:130.500000px;}
.y1fd{bottom:130.530000px;}
.y2d{bottom:131.436000px;}
.y83{bottom:132.516000px;}
.y140{bottom:134.505000px;}
.y1a7{bottom:134.865000px;}
.y15e{bottom:135.000000px;}
.y192{bottom:135.330000px;}
.yd8{bottom:135.615000px;}
.ybc{bottom:135.936000px;}
.y2c{bottom:136.656000px;}
.y1b8{bottom:137.910000px;}
.y1d3{bottom:139.500000px;}
.y197{bottom:142.095000px;}
.y9d{bottom:142.245000px;}
.y1c8{bottom:144.390000px;}
.y1dc{bottom:144.735000px;}
.y1e5{bottom:145.125000px;}
.y1fc{bottom:146.010000px;}
.yde{bottom:149.040000px;}
.y191{bottom:149.190000px;}
.y97{bottom:149.400000px;}
.yaf{bottom:149.430000px;}
.y172{bottom:149.796000px;}
.y2b{bottom:150.330000px;}
.y1a6{bottom:150.525000px;}
.y59{bottom:151.230000px;}
.ycd{bottom:151.590000px;}
.y82{bottom:153.210000px;}
.y1b7{bottom:153.390000px;}
.y10b{bottom:153.405000px;}
.yd7{bottom:154.155000px;}
.y1d2{bottom:154.980000px;}
.ybb{bottom:156.630000px;}
.y196{bottom:157.755000px;}
.y181{bottom:158.250000px;}
.y1c7{bottom:159.870000px;}
.y1fb{bottom:161.670000px;}
.y190{bottom:163.230000px;}
.y1a5{bottom:166.005000px;}
.y1b6{bottom:168.870000px;}
.y225{bottom:169.590000px;}
.yab{bottom:170.100000px;}
.yae{bottom:170.130000px;}
.y1d1{bottom:170.460000px;}
.y171{bottom:170.490000px;}
.y58{bottom:171.930000px;}
.ycc{bottom:172.290000px;}
.y195{bottom:173.235000px;}
.y1c6{bottom:175.530000px;}
.y1fa{bottom:177.150000px;}
.y18f{bottom:177.270000px;}
.yba{bottom:177.330000px;}
.y1a4{bottom:181.485000px;}
.y2a{bottom:183.630000px;}
.y1b5{bottom:184.350000px;}
.yd0{bottom:184.395000px;}
.y1d0{bottom:186.120000px;}
.y7f{bottom:188.145000px;}
.y224{bottom:190.290000px;}
.yaa{bottom:190.800000px;}
.yad{bottom:190.830000px;}
.y1c5{bottom:191.010000px;}
.y170{bottom:191.190000px;}
.y57{bottom:192.630000px;}
.ycb{bottom:192.810000px;}
.y1b0{bottom:196.245000px;}
.y180{bottom:196.950000px;}
.y1a3{bottom:196.965000px;}
.yb9{bottom:198.030000px;}
.y117{bottom:199.620000px;}
.y1b4{bottom:200.010000px;}
.y105{bottom:201.825000px;}
.y29{bottom:204.330000px;}
.y1c4{bottom:206.490000px;}
.y144{bottom:206.685000px;}
.y1f9{bottom:208.110000px;}
.ycf{bottom:208.155000px;}
.y19d{bottom:208.230000px;}
.y18e{bottom:210.090000px;}
.y223{bottom:210.990000px;}
.ya9{bottom:211.545000px;}
.y16f{bottom:211.890000px;}
.y1a2{bottom:212.625000px;}
.y56{bottom:213.330000px;}
.yca{bottom:213.510000px;}
.y1b3{bottom:215.490000px;}
.yb8{bottom:218.730000px;}
.y18a{bottom:221.790000px;}
.y1c3{bottom:221.970000px;}
.y19c{bottom:222.090000px;}
.y116{bottom:223.425000px;}
.y1f8{bottom:223.590000px;}
.y28{bottom:225.030000px;}
.y18d{bottom:225.570000px;}
.y9c{bottom:225.945000px;}
.y1a1{bottom:228.105000px;}
.yd6{bottom:229.110000px;}
.y1b2{bottom:230.970000px;}
.y222{bottom:231.690000px;}
.ya8{bottom:232.245000px;}
.y16e{bottom:232.590000px;}
.y55{bottom:234.030000px;}
.yc9{bottom:234.210000px;}
.y17f{bottom:235.650000px;}
.y19b{bottom:236.130000px;}
.y1c2{bottom:237.630000px;}
.y1f7{bottom:239.250000px;}
.yb7{bottom:239.430000px;}
.y18c{bottom:241.230000px;}
.y1a0{bottom:243.585000px;}
.y27{bottom:245.730000px;}
.y1b1{bottom:246.450000px;}
.y189{bottom:246.630000px;}
.yd5{bottom:247.830000px;}
.y19a{bottom:250.170000px;}
.y77{bottom:250.965000px;}
.y1c1{bottom:253.110000px;}
.y16d{bottom:253.290000px;}
.ye4{bottom:254.265000px;}
.y54{bottom:254.730000px;}
.yc8{bottom:254.910000px;}
.y18b{bottom:256.710000px;}
.y19f{bottom:259.065000px;}
.yb6{bottom:260.130000px;}
.yd4{bottom:266.370000px;}
.y26{bottom:266.430000px;}
.y1c0{bottom:268.590000px;}
.y104{bottom:269.130000px;}
.y1f6{bottom:270.210000px;}
.y221{bottom:270.390000px;}
.ye3{bottom:272.985000px;}
.y16c{bottom:274.035000px;}
.y17e{bottom:274.395000px;}
.y53{bottom:275.475000px;}
.yc7{bottom:275.655000px;}
.y13b{bottom:278.880000px;}
.y138{bottom:278.895000px;}
.yb5{bottom:280.875000px;}
.y1bf{bottom:284.070000px;}
.yd3{bottom:285.090000px;}
.y1f5{bottom:285.690000px;}
.y25{bottom:287.175000px;}
.y220{bottom:291.135000px;}
.ye2{bottom:291.525000px;}
.y52{bottom:296.175000px;}
.yc6{bottom:296.355000px;}
.y1be{bottom:299.730000px;}
.y1f4{bottom:301.350000px;}
.yb4{bottom:301.575000px;}
.y103{bottom:306.615000px;}
.y24{bottom:307.875000px;}
.y169{bottom:308.955000px;}
.y96{bottom:309.495000px;}
.y21f{bottom:311.835000px;}
.y188{bottom:312.090000px;}
.y17d{bottom:313.095000px;}
.y185{bottom:314.070000px;}
.y1f3{bottom:316.830000px;}
.y51{bottom:316.875000px;}
.yd2{bottom:320.730000px;}
.yb3{bottom:322.275000px;}
.y102{bottom:327.315000px;}
.y187{bottom:327.750000px;}
.y184{bottom:328.110000px;}
.y23{bottom:328.575000px;}
.y1f2{bottom:332.310000px;}
.y21e{bottom:332.535000px;}
.y168{bottom:333.615000px;}
.yc5{bottom:334.875000px;}
.y50{bottom:337.575000px;}
.yd1{bottom:339.270000px;}
.y183{bottom:342.150000px;}
.yb2{bottom:342.975000px;}
.y186{bottom:343.230000px;}
.y1f1{bottom:347.790000px;}
.y101{bottom:348.015000px;}
.y22{bottom:349.275000px;}
.y13d{bottom:351.075000px;}
.y17c{bottom:351.795000px;}
.y4f{bottom:358.275000px;}
.y1f0{bottom:363.450000px;}
.yb1{bottom:363.675000px;}
.y100{bottom:368.715000px;}
.y21{bottom:369.975000px;}
.y21d{bottom:371.235000px;}
.yc4{bottom:375.555000px;}
.y73{bottom:375.915000px;}
.y1ef{bottom:378.930000px;}
.y4e{bottom:378.975000px;}
.y15f{bottom:381.840000px;}
.y15d{bottom:381.855000px;}
.yb0{bottom:384.375000px;}
.yff{bottom:389.415000px;}
.y17b{bottom:390.495000px;}
.y20{bottom:390.675000px;}
.y21c{bottom:391.935000px;}
.y1ee{bottom:394.410000px;}
.y4d{bottom:399.675000px;}
.yc3{bottom:409.755000px;}
.yce{bottom:409.860000px;}
.y1ed{bottom:409.890000px;}
.yfe{bottom:410.115000px;}
.y1f{bottom:411.375000px;}
.y166{bottom:411.555000px;}
.y21b{bottom:412.635000px;}
.yac{bottom:419.295000px;}
.y4c{bottom:420.195000px;}
.y1ec{bottom:425.580000px;}
.y17a{bottom:429.195000px;}
.yfd{bottom:430.815000px;}
.y1e{bottom:432.075000px;}
.y71{bottom:438.735000px;}
.y4b{bottom:440.895000px;}
.y1eb{bottom:441.060000px;}
.y131{bottom:447.000000px;}
.y12e{bottom:447.015000px;}
.y21a{bottom:451.335000px;}
.yfc{bottom:451.515000px;}
.y1d{bottom:452.775000px;}
.y1ea{bottom:456.540000px;}
.y165{bottom:459.795000px;}
.y4a{bottom:461.595000px;}
.y182{bottom:463.500000px;}
.y179{bottom:463.575000px;}
.y219{bottom:471.855000px;}
.y1e9{bottom:472.020000px;}
.yfb{bottom:472.215000px;}
.y1c{bottom:473.475000px;}
.y70{bottom:473.835000px;}
.y94{bottom:475.815000px;}
.y49{bottom:482.295000px;}
.y1e8{bottom:487.680000px;}
.yfa{bottom:492.915000px;}
.y1b{bottom:494.175000px;}
.y137{bottom:495.435000px;}
.y48{bottom:502.995000px;}
.y1e7{bottom:503.160000px;}
.y15b{bottom:508.215000px;}
.y238{bottom:509.295000px;}
.y218{bottom:510.555000px;}
.y6f{bottom:512.535000px;}
.yf9{bottom:513.615000px;}
.y1a{bottom:514.875000px;}
.y1e6{bottom:518.640000px;}
.y47{bottom:523.695000px;}
.y217{bottom:531.255000px;}
.y93{bottom:533.055000px;}
.y6e{bottom:533.235000px;}
.y15a{bottom:533.775000px;}
.yf8{bottom:534.315000px;}
.y19{bottom:535.575000px;}
.y135{bottom:543.675000px;}
.y46{bottom:544.395000px;}
.y237{bottom:547.995000px;}
.y6d{bottom:553.935000px;}
.yf7{bottom:555.015000px;}
.y18{bottom:556.305000px;}
.y45{bottom:565.125000px;}
.y133{bottom:568.365000px;}
.y236{bottom:568.725000px;}
.y216{bottom:569.985000px;}
.y92{bottom:571.965000px;}
.y6c{bottom:574.665000px;}
.yf6{bottom:575.745000px;}
.y17{bottom:577.005000px;}
.y159{bottom:577.365000px;}
.y44{bottom:585.825000px;}
.y215{bottom:590.685000px;}
.y91{bottom:592.665000px;}
.y6b{bottom:595.365000px;}
.yf5{bottom:596.445000px;}
.y16{bottom:597.705000px;}
.y1cf{bottom:600.945000px;}
.y43{bottom:606.525000px;}
.y235{bottom:607.425000px;}
.y90{bottom:613.365000px;}
.y6a{bottom:615.885000px;}
.y115{bottom:616.785000px;}
.yf4{bottom:617.145000px;}
.ya7{bottom:627.045000px;}
.y42{bottom:627.225000px;}
.y234{bottom:628.125000px;}
.y214{bottom:629.385000px;}
.y158{bottom:633.705000px;}
.y8f{bottom:633.885000px;}
.y15{bottom:636.045000px;}
.y69{bottom:636.585000px;}
.y41{bottom:647.925000px;}
.y213{bottom:650.085000px;}
.y157{bottom:654.405000px;}
.y8e{bottom:654.585000px;}
.yf3{bottom:655.665000px;}
.y68{bottom:657.285000px;}
.y12c{bottom:665.025000px;}
.y233{bottom:666.645000px;}
.y40{bottom:668.625000px;}
.y212{bottom:670.785000px;}
.y156{bottom:675.105000px;}
.y8d{bottom:675.285000px;}
.y14{bottom:676.545000px;}
.y67{bottom:677.985000px;}
.y232{bottom:687.885000px;}
.y3f{bottom:689.325000px;}
.yf2{bottom:692.565000px;}
.y155{bottom:695.805000px;}
.y8c{bottom:695.985000px;}
.y66{bottom:698.685000px;}
.y211{bottom:709.485000px;}
.y3e{bottom:710.025000px;}
.y129{bottom:713.445000px;}
.yf1{bottom:713.985000px;}
.y154{bottom:716.505000px;}
.y8b{bottom:716.685000px;}
.y13{bottom:717.765000px;}
.y231{bottom:726.585000px;}
.y210{bottom:730.185000px;}
.y3d{bottom:730.725000px;}
.yf0{bottom:735.405000px;}
.y153{bottom:737.205000px;}
.y65{bottom:737.385000px;}
.y12{bottom:741.705000px;}
.y230{bottom:747.285000px;}
.y3c{bottom:751.425000px;}
.yef{bottom:756.825000px;}
.y152{bottom:757.905000px;}
.y64{bottom:758.085000px;}
.y19e{bottom:759.705000px;}
.y10{bottom:764.385000px;}
.y22f{bottom:767.985000px;}
.y20f{bottom:768.885000px;}
.y11{bottom:771.945000px;}
.y3b{bottom:772.125000px;}
.yee{bottom:778.425000px;}
.y151{bottom:778.605000px;}
.y63{bottom:778.785000px;}
.y126{bottom:785.625000px;}
.y20e{bottom:789.585000px;}
.y3a{bottom:792.825000px;}
.y150{bottom:799.305000px;}
.y62{bottom:799.485000px;}
.yed{bottom:799.845000px;}
.yf{bottom:806.145000px;}
.y22e{bottom:806.685000px;}
.y39{bottom:813.525000px;}
.y14f{bottom:820.005000px;}
.y61{bottom:820.185000px;}
.yec{bottom:821.265000px;}
.y22d{bottom:827.385000px;}
.y20d{bottom:828.285000px;}
.ye{bottom:829.005000px;}
.y121{bottom:833.865000px;}
.yc2{bottom:837.285000px;}
.y14e{bottom:840.750000px;}
.y60{bottom:840.930000px;}
.yeb{bottom:842.730000px;}
.y20c{bottom:849.030000px;}
.y38{bottom:852.090000px;}
.y1db{bottom:856.395000px;}
.yc1{bottom:858.030000px;}
.y14d{bottom:861.450000px;}
.y5f{bottom:861.630000px;}
.yea{bottom:864.150000px;}
.y22c{bottom:866.130000px;}
.yd{bottom:870.810000px;}
.y178{bottom:871.530000px;}
.ya6{bottom:876.210000px;}
.yc0{bottom:878.730000px;}
.y14c{bottom:882.150000px;}
.y5e{bottom:882.330000px;}
.ye9{bottom:885.570000px;}
.y22b{bottom:886.830000px;}
.y20b{bottom:887.730000px;}
.y37{bottom:892.050000px;}
.yc{bottom:893.490000px;}
.ybf{bottom:899.430000px;}
.y14b{bottom:902.850000px;}
.y8a{bottom:903.030000px;}
.y11b{bottom:906.075000px;}
.y118{bottom:906.090000px;}
.ye8{bottom:906.990000px;}
.y22a{bottom:907.530000px;}
.y20a{bottom:908.430000px;}
.y36{bottom:909.330000px;}
.y177{bottom:910.230000px;}
.ybe{bottom:920.130000px;}
.y5d{bottom:920.850000px;}
.y89{bottom:923.730000px;}
.y35{bottom:926.430000px;}
.ye7{bottom:928.590000px;}
.yb{bottom:937.230000px;}
.ybd{bottom:940.830000px;}
.y14a{bottom:941.370000px;}
.y88{bottom:944.430000px;}
.y229{bottom:946.230000px;}
.y209{bottom:947.130000px;}
.y176{bottom:948.930000px;}
.ye6{bottom:950.010000px;}
.y5c{bottom:961.530000px;}
.y34{bottom:962.430000px;}
.y87{bottom:965.130000px;}
.y228{bottom:966.930000px;}
.y208{bottom:967.830000px;}
.y147{bottom:978.270000px;}
.y5b{bottom:982.230000px;}
.y33{bottom:983.130000px;}
.ye5{bottom:984.930000px;}
.y86{bottom:985.830000px;}
.y175{bottom:987.630000px;}
.ya{bottom:989.790000px;}
.y5a{bottom:1002.930000px;}
.y227{bottom:1005.630000px;}
.y85{bottom:1006.530000px;}
.ya5{bottom:1021.830000px;}
.y32{bottom:1023.630000px;}
.y9{bottom:1024.170000px;}
.y174{bottom:1026.330000px;}
.y207{bottom:1027.230000px;}
.y31{bottom:1044.330000px;}
.y84{bottom:1045.050000px;}
.y226{bottom:1047.030000px;}
.y114{bottom:1049.730000px;}
.y149{bottom:1050.450000px;}
.y173{bottom:1064.850000px;}
.y30{bottom:1065.030000px;}
.y206{bottom:1065.750000px;}
.y110{bottom:1074.210000px;}
.y8{bottom:1076.730000px;}
.ya3{bottom:1084.650000px;}
.y2f{bottom:1085.730000px;}
.y2e{bottom:1106.430000px;}
.y5{bottom:1126.080000px;}
.y4{bottom:1143.720000px;}
.y3{bottom:1160.820000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1195.380000px;}
.h14{height:20.685000px;}
.h27{height:20.700000px;}
.h26{height:20.722500px;}
.h2f{height:23.745000px;}
.h2d{height:23.751000px;}
.h42{height:23.790000px;}
.h47{height:23.925000px;}
.h39{height:23.970000px;}
.h43{height:24.825000px;}
.h12{height:27.945000px;}
.h45{height:28.785000px;}
.h1b{height:37.065000px;}
.h1f{height:37.290000px;}
.hc{height:37.494141px;}
.h6{height:41.756133px;}
.h4{height:45.184219px;}
.h28{height:47.505000px;}
.h29{height:47.511000px;}
.h2a{height:47.520000px;}
.h2c{height:47.685000px;}
.h36{height:47.700000px;}
.h2e{height:47.730000px;}
.h4a{height:48.616875px;}
.h17{height:50.027344px;}
.h11{height:52.695866px;}
.h49{height:52.998047px;}
.h5{height:53.640000px;}
.h13{height:58.621992px;}
.h2{height:58.651172px;}
.h3{height:60.226875px;}
.h16{height:62.085000px;}
.h19{height:62.091000px;}
.h1a{height:62.100000px;}
.h24{height:65.010937px;}
.h52{height:70.628906px;}
.h10{height:70.664062px;}
.h25{height:70.805391px;}
.h3c{height:71.445000px;}
.h3f{height:71.451000px;}
.h35{height:71.460000px;}
.h3e{height:71.481000px;}
.h34{height:71.482500px;}
.h41{height:71.490000px;}
.h46{height:72.165000px;}
.h2b{height:72.171000px;}
.h15{height:72.562500px;}
.h51{height:74.704922px;}
.h9{height:76.317188px;}
.hd{height:77.531484px;}
.hf{height:78.367500px;}
.he{height:82.635820px;}
.h8{height:82.676953px;}
.h1e{height:82.791000px;}
.h1d{height:82.821000px;}
.ha{height:83.238047px;}
.h3b{height:95.205000px;}
.h7{height:121.179375px;}
.h18{height:124.221000px;}
.h33{height:142.905000px;}
.h31{height:142.911000px;}
.h32{height:142.920000px;}
.h3d{height:143.662500px;}
.h40{height:143.670000px;}
.h20{height:144.885000px;}
.h44{height:151.200000px;}
.h1c{height:165.585000px;}
.h3a{height:167.400000px;}
.h37{height:168.870000px;}
.h38{height:168.885000px;}
.h4f{height:174.060000px;}
.h22{height:207.030000px;}
.h4e{height:225.900000px;}
.h21{height:248.415000px;}
.h4b{height:278.850000px;}
.h4c{height:315.570000px;}
.h4d{height:359.895000px;}
.h48{height:403.560000px;}
.h23{height:423.000000px;}
.h30{height:432.210000px;}
.h50{height:533.955000px;}
.hb{height:1262.864960px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:91.461000px;}
.wd{width:93.411000px;}
.w2{width:125.460000px;}
.wb{width:144.921000px;}
.w6{width:159.825000px;}
.w5{width:159.831000px;}
.w7{width:159.840000px;}
.w12{width:165.975000px;}
.we{width:165.981000px;}
.w13{width:165.990000px;}
.w9{width:170.475000px;}
.w1a{width:194.985000px;}
.w19{width:207.405000px;}
.w1b{width:222.555000px;}
.w18{width:235.665000px;}
.w1c{width:253.830000px;}
.w17{width:262.635000px;}
.w14{width:268.401000px;}
.w16{width:367.260000px;}
.w15{width:367.275000px;}
.wf{width:377.490000px;}
.w10{width:377.505000px;}
.wc{width:382.920000px;}
.w8{width:465.015000px;}
.w4{width:475.830000px;}
.w3{width:892.957500px;}
.wa{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.560000px;}
.x2b{left:9.531000px;}
.x6a{left:10.785000px;}
.x50{left:12.231000px;}
.x51{left:15.291000px;}
.x54{left:17.451000px;}
.x1b{left:19.290000px;}
.x20{left:20.871000px;}
.x1a{left:22.530000px;}
.x1e{left:25.050000px;}
.x17{left:27.570000px;}
.x28{left:30.405000px;}
.x56{left:32.040000px;}
.x2a{left:33.105000px;}
.x26{left:35.445000px;}
.x2c{left:37.605000px;}
.x49{left:40.665000px;}
.x1c{left:42.150000px;}
.x18{left:45.030000px;}
.x29{left:46.965000px;}
.x16{left:48.405000px;}
.x2{left:50.399998px;}
.x52{left:53.985000px;}
.x2d{left:56.325000px;}
.x21{left:58.845000px;}
.x2e{left:60.285000px;}
.x4d{left:65.190000px;}
.x4a{left:70.590000px;}
.x6c{left:77.760000px;}
.x22{left:79.905000px;}
.x4b{left:83.010000px;}
.x6d{left:89.280000px;}
.x1f{left:98.850000px;}
.x47{left:106.590000px;}
.x1d{left:116.670000px;}
.x1{left:127.656000px;}
.x4c{left:131.250000px;}
.x12{left:133.056000px;}
.x48{left:134.865000px;}
.x6f{left:136.296000px;}
.x4{left:141.516000px;}
.x13{left:148.896000px;}
.x19{left:152.850000px;}
.xe{left:159.510000px;}
.xd{left:180.750000px;}
.x23{left:189.030000px;}
.x25{left:190.290000px;}
.x15{left:199.290000px;}
.x30{left:204.150000px;}
.xc{left:205.950000px;}
.x46{left:229.005000px;}
.x7{left:242.490000px;}
.x44{left:252.930000px;}
.x14{left:256.530000px;}
.x40{left:274.244987px;}
.x3f{left:277.844987px;}
.x43{left:282.809987px;}
.x42{left:287.744987px;}
.x5{left:289.110000px;}
.x4e{left:295.095000px;}
.x67{left:296.354987px;}
.x24{left:299.415000px;}
.x41{left:301.064987px;}
.x68{left:307.334987px;}
.x6b{left:314.715000px;}
.x6{left:317.775000px;}
.x53{left:326.055000px;}
.x65{left:340.889987px;}
.x11{left:343.695000px;}
.x5c{left:348.809987px;}
.x66{left:350.429987px;}
.x5d{left:353.849987px;}
.x64{left:358.529987px;}
.x5b{left:360.149987px;}
.x32{left:365.144987px;}
.x9{left:369.615000px;}
.x8{left:387.615000px;}
.x31{left:393.224987px;}
.x33{left:394.919987px;}
.x3d{left:396.179987px;}
.x55{left:397.515000px;}
.x5e{left:398.549987px;}
.x34{left:411.659987px;}
.x3e{left:421.199987px;}
.x62{left:447.404987px;}
.x5a{left:452.594987px;}
.x59{left:454.574987px;}
.x63{left:455.684987px;}
.x3{left:457.275000px;}
.x58{left:462.494987px;}
.x61{left:494.429987px;}
.x60{left:495.509987px;}
.x5f{left:510.449987px;}
.x35{left:519.449987px;}
.x36{left:527.189987px;}
.x3a{left:529.349987px;}
.x37{left:532.229987px;}
.x38{left:536.549987px;}
.xa{left:538.102500px;}
.x3b{left:539.969987px;}
.xb{left:544.965000px;}
.x3c{left:549.329987px;}
.x69{left:553.260000px;}
.x39{left:559.409987px;}
.x6e{left:598.980000px;}
.x45{left:612.660000px;}
.xf{left:645.045000px;}
.x10{left:649.545000px;}
.x4f{left:673.320000px;}
.x2f{left:748.590000px;}
.x57{left:752.010000px;}
@media print{
.v3{vertical-align:-60.800000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.lse{letter-spacing:-3.200000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.198933pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:-0.007680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.133333pt;}
.ls5{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls11{letter-spacing:4.480000pt;}
.ws14{word-spacing:-64.000000pt;}
.ws2{word-spacing:-17.295360pt;}
.ws5{word-spacing:-17.272320pt;}
.ws4{word-spacing:-17.264640pt;}
.wsc{word-spacing:-16.704000pt;}
.wsd{word-spacing:-16.192000pt;}
.wse{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.wsb{word-spacing:-16.032000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws11{word-spacing:-12.096000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.ws13{word-spacing:-10.521067pt;}
.ws3{word-spacing:0.000000pt;}
.wsa{word-spacing:257.941333pt;}
._2a{margin-left:-72.160000pt;}
._22{margin-left:-53.760000pt;}
._6{margin-left:-4.672000pt;}
._7{margin-left:-3.102507pt;}
._11{margin-left:-2.081493pt;}
._4{margin-left:-1.192533pt;}
._0{width:0.903040pt;}
._1{width:2.267733pt;}
._e{width:3.328000pt;}
._5{width:4.394880pt;}
._b{width:5.696000pt;}
._c{width:6.869120pt;}
._d{width:8.121600pt;}
._1b{width:9.070293pt;}
._12{width:10.048000pt;}
._1d{width:11.136000pt;}
._1e{width:12.052053pt;}
._19{width:12.992000pt;}
._8{width:14.272000pt;}
._24{width:15.376000pt;}
._a{width:16.896000pt;}
._1c{width:17.784960pt;}
._14{width:19.328000pt;}
._23{width:20.288000pt;}
._15{width:21.187627pt;}
._20{width:22.336000pt;}
._1a{width:23.232000pt;}
._f{width:24.768000pt;}
._10{width:25.802027pt;}
._13{width:26.882347pt;}
._9{width:28.736000pt;}
._1f{width:30.144000pt;}
._16{width:31.936000pt;}
._28{width:32.890453pt;}
._17{width:33.984000pt;}
._18{width:35.486080pt;}
._2e{width:37.584000pt;}
._27{width:38.976000pt;}
._21{width:40.090240pt;}
._26{width:45.696000pt;}
._25{width:46.608000pt;}
._29{width:61.267200pt;}
._2d{width:100.752000pt;}
._2c{width:103.008000pt;}
._2b{width:109.776000pt;}
._2{width:473.120000pt;}
._3{width:1353.935573pt;}
.fs9{font-size:34.560000pt;}
.fsb{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs8{font-size:67.461249pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:3.680000pt;}
.y7d{bottom:3.986667pt;}
.y9f{bottom:3.992000pt;}
.y76{bottom:4.000000pt;}
.y205{bottom:5.266667pt;}
.y108{bottom:6.546667pt;}
.y10f{bottom:6.552000pt;}
.y112{bottom:6.560000pt;}
.y11f{bottom:6.573333pt;}
.y10d{bottom:6.706667pt;}
.y146{bottom:6.712000pt;}
.y136{bottom:6.720000pt;}
.y164{bottom:6.733333pt;}
.y124{bottom:6.760000pt;}
.y15c{bottom:7.040000pt;}
.y167{bottom:8.960000pt;}
.y1af{bottom:9.120000pt;}
.y95{bottom:11.200000pt;}
.ya4{bottom:11.360000pt;}
.ya2{bottom:13.266667pt;}
.y128{bottom:15.840000pt;}
.y12d{bottom:16.000000pt;}
.y106{bottom:17.106667pt;}
.y134{bottom:17.120000pt;}
.y10e{bottom:17.266667pt;}
.y113{bottom:17.280000pt;}
.y16b{bottom:17.600000pt;}
.y1e4{bottom:18.093333pt;}
.y204{bottom:19.346667pt;}
.y81{bottom:22.386667pt;}
.y75{bottom:22.400000pt;}
.y7c{bottom:22.426667pt;}
.y1ae{bottom:23.360000pt;}
.y12b{bottom:26.560000pt;}
.y125{bottom:26.600000pt;}
.y1da{bottom:27.040000pt;}
.y107{bottom:27.666667pt;}
.y127{bottom:27.680000pt;}
.y10c{bottom:27.826667pt;}
.y111{bottom:27.840000pt;}
.y11e{bottom:27.853333pt;}
.y123{bottom:27.880000pt;}
.y10a{bottom:27.986667pt;}
.ya1{bottom:31.666667pt;}
.y1e3{bottom:32.013333pt;}
.y203{bottom:33.266667pt;}
.y7{bottom:34.912000pt;}
.y1ad{bottom:37.120000pt;}
.y13f{bottom:38.400000pt;}
.y143{bottom:38.706667pt;}
.y16a{bottom:38.720000pt;}
.y80{bottom:40.786667pt;}
.y74{bottom:40.800000pt;}
.y7b{bottom:40.826667pt;}
.y1d9{bottom:41.120000pt;}
.y1ce{bottom:45.426667pt;}
.y1e2{bottom:45.773333pt;}
.y163{bottom:46.413333pt;}
.y202{bottom:47.026667pt;}
.y145{bottom:48.946667pt;}
.y12a{bottom:48.960000pt;}
.y11d{bottom:48.973333pt;}
.y122{bottom:49.000000pt;}
.y13c{bottom:49.293333pt;}
.y132{bottom:49.933333pt;}
.ya0{bottom:50.066667pt;}
.y7e{bottom:50.106667pt;}
.y1ac{bottom:50.880000pt;}
.ydd{bottom:51.813333pt;}
.y6{bottom:52.032000pt;}
.y1bd{bottom:53.106667pt;}
.y1d8{bottom:55.040000pt;}
.y120{bottom:58.240000pt;}
.y9e{bottom:59.186667pt;}
.y9b{bottom:59.200000pt;}
.y7a{bottom:59.226667pt;}
.y1cd{bottom:59.346667pt;}
.y1e1{bottom:59.533333pt;}
.y142{bottom:59.826667pt;}
.y148{bottom:59.840000pt;}
.y201{bottom:60.786667pt;}
.y1ab{bottom:64.640000pt;}
.y162{bottom:64.813333pt;}
.y1bc{bottom:67.346667pt;}
.ydc{bottom:68.293333pt;}
.y1d7{bottom:68.800000pt;}
.y13e{bottom:70.080000pt;}
.y11c{bottom:70.093333pt;}
.y13a{bottom:70.400000pt;}
.ydb{bottom:70.746667pt;}
.y130{bottom:71.040000pt;}
.y1cc{bottom:73.146667pt;}
.y1e0{bottom:73.453333pt;}
.y200{bottom:74.546667pt;}
.y9a{bottom:77.600000pt;}
.y79{bottom:77.626667pt;}
.y1aa{bottom:78.600000pt;}
.y141{bottom:81.106667pt;}
.y1bb{bottom:81.146667pt;}
.y1d6{bottom:82.560000pt;}
.ye1{bottom:82.853333pt;}
.y161{bottom:83.213333pt;}
.y1cb{bottom:86.906667pt;}
.y1df{bottom:87.213333pt;}
.yda{bottom:87.426667pt;}
.y1ff{bottom:88.466667pt;}
.y194{bottom:90.693333pt;}
.y11a{bottom:91.200000pt;}
.y139{bottom:91.520000pt;}
.y12f{bottom:92.320000pt;}
.y1a9{bottom:92.360000pt;}
.y199{bottom:93.346667pt;}
.y1ba{bottom:94.906667pt;}
.y99{bottom:96.000000pt;}
.y78{bottom:96.026667pt;}
.y1d5{bottom:96.320000pt;}
.ye0{bottom:99.333333pt;}
.y1ca{bottom:100.826667pt;}
.y1de{bottom:100.973333pt;}
.y160{bottom:101.613333pt;}
.y1fe{bottom:102.226667pt;}
.yd9{bottom:103.906667pt;}
.y1a8{bottom:106.120000pt;}
.y193{bottom:107.813333pt;}
.y1b9{bottom:108.666667pt;}
.y1d4{bottom:110.240000pt;}
.y119{bottom:112.480000pt;}
.y198{bottom:112.546667pt;}
.y98{bottom:114.400000pt;}
.y1c9{bottom:114.586667pt;}
.y109{bottom:114.600000pt;}
.y1dd{bottom:114.733333pt;}
.ydf{bottom:116.000000pt;}
.y1fd{bottom:116.026667pt;}
.y2d{bottom:116.832000pt;}
.y83{bottom:117.792000pt;}
.y140{bottom:119.560000pt;}
.y1a7{bottom:119.880000pt;}
.y15e{bottom:120.000000pt;}
.y192{bottom:120.293333pt;}
.yd8{bottom:120.546667pt;}
.ybc{bottom:120.832000pt;}
.y2c{bottom:121.472000pt;}
.y1b8{bottom:122.586667pt;}
.y1d3{bottom:124.000000pt;}
.y197{bottom:126.306667pt;}
.y9d{bottom:126.440000pt;}
.y1c8{bottom:128.346667pt;}
.y1dc{bottom:128.653333pt;}
.y1e5{bottom:129.000000pt;}
.y1fc{bottom:129.786667pt;}
.yde{bottom:132.480000pt;}
.y191{bottom:132.613333pt;}
.y97{bottom:132.800000pt;}
.yaf{bottom:132.826667pt;}
.y172{bottom:133.152000pt;}
.y2b{bottom:133.626667pt;}
.y1a6{bottom:133.800000pt;}
.y59{bottom:134.426667pt;}
.ycd{bottom:134.746667pt;}
.y82{bottom:136.186667pt;}
.y1b7{bottom:136.346667pt;}
.y10b{bottom:136.360000pt;}
.yd7{bottom:137.026667pt;}
.y1d2{bottom:137.760000pt;}
.ybb{bottom:139.226667pt;}
.y196{bottom:140.226667pt;}
.y181{bottom:140.666667pt;}
.y1c7{bottom:142.106667pt;}
.y1fb{bottom:143.706667pt;}
.y190{bottom:145.093333pt;}
.y1a5{bottom:147.560000pt;}
.y1b6{bottom:150.106667pt;}
.y225{bottom:150.746667pt;}
.yab{bottom:151.200000pt;}
.yae{bottom:151.226667pt;}
.y1d1{bottom:151.520000pt;}
.y171{bottom:151.546667pt;}
.y58{bottom:152.826667pt;}
.ycc{bottom:153.146667pt;}
.y195{bottom:153.986667pt;}
.y1c6{bottom:156.026667pt;}
.y1fa{bottom:157.466667pt;}
.y18f{bottom:157.573333pt;}
.yba{bottom:157.626667pt;}
.y1a4{bottom:161.320000pt;}
.y2a{bottom:163.226667pt;}
.y1b5{bottom:163.866667pt;}
.yd0{bottom:163.906667pt;}
.y1d0{bottom:165.440000pt;}
.y7f{bottom:167.240000pt;}
.y224{bottom:169.146667pt;}
.yaa{bottom:169.600000pt;}
.yad{bottom:169.626667pt;}
.y1c5{bottom:169.786667pt;}
.y170{bottom:169.946667pt;}
.y57{bottom:171.226667pt;}
.ycb{bottom:171.386667pt;}
.y1b0{bottom:174.440000pt;}
.y180{bottom:175.066667pt;}
.y1a3{bottom:175.080000pt;}
.yb9{bottom:176.026667pt;}
.y117{bottom:177.440000pt;}
.y1b4{bottom:177.786667pt;}
.y105{bottom:179.400000pt;}
.y29{bottom:181.626667pt;}
.y1c4{bottom:183.546667pt;}
.y144{bottom:183.720000pt;}
.y1f9{bottom:184.986667pt;}
.ycf{bottom:185.026667pt;}
.y19d{bottom:185.093333pt;}
.y18e{bottom:186.746667pt;}
.y223{bottom:187.546667pt;}
.ya9{bottom:188.040000pt;}
.y16f{bottom:188.346667pt;}
.y1a2{bottom:189.000000pt;}
.y56{bottom:189.626667pt;}
.yca{bottom:189.786667pt;}
.y1b3{bottom:191.546667pt;}
.yb8{bottom:194.426667pt;}
.y18a{bottom:197.146667pt;}
.y1c3{bottom:197.306667pt;}
.y19c{bottom:197.413333pt;}
.y116{bottom:198.600000pt;}
.y1f8{bottom:198.746667pt;}
.y28{bottom:200.026667pt;}
.y18d{bottom:200.506667pt;}
.y9c{bottom:200.840000pt;}
.y1a1{bottom:202.760000pt;}
.yd6{bottom:203.653333pt;}
.y1b2{bottom:205.306667pt;}
.y222{bottom:205.946667pt;}
.ya8{bottom:206.440000pt;}
.y16e{bottom:206.746667pt;}
.y55{bottom:208.026667pt;}
.yc9{bottom:208.186667pt;}
.y17f{bottom:209.466667pt;}
.y19b{bottom:209.893333pt;}
.y1c2{bottom:211.226667pt;}
.y1f7{bottom:212.666667pt;}
.yb7{bottom:212.826667pt;}
.y18c{bottom:214.426667pt;}
.y1a0{bottom:216.520000pt;}
.y27{bottom:218.426667pt;}
.y1b1{bottom:219.066667pt;}
.y189{bottom:219.226667pt;}
.yd5{bottom:220.293333pt;}
.y19a{bottom:222.373333pt;}
.y77{bottom:223.080000pt;}
.y1c1{bottom:224.986667pt;}
.y16d{bottom:225.146667pt;}
.ye4{bottom:226.013333pt;}
.y54{bottom:226.426667pt;}
.yc8{bottom:226.586667pt;}
.y18b{bottom:228.186667pt;}
.y19f{bottom:230.280000pt;}
.yb6{bottom:231.226667pt;}
.yd4{bottom:236.773333pt;}
.y26{bottom:236.826667pt;}
.y1c0{bottom:238.746667pt;}
.y104{bottom:239.226667pt;}
.y1f6{bottom:240.186667pt;}
.y221{bottom:240.346667pt;}
.ye3{bottom:242.653333pt;}
.y16c{bottom:243.586667pt;}
.y17e{bottom:243.906667pt;}
.y53{bottom:244.866667pt;}
.yc7{bottom:245.026667pt;}
.y13b{bottom:247.893333pt;}
.y138{bottom:247.906667pt;}
.yb5{bottom:249.666667pt;}
.y1bf{bottom:252.506667pt;}
.yd3{bottom:253.413333pt;}
.y1f5{bottom:253.946667pt;}
.y25{bottom:255.266667pt;}
.y220{bottom:258.786667pt;}
.ye2{bottom:259.133333pt;}
.y52{bottom:263.266667pt;}
.yc6{bottom:263.426667pt;}
.y1be{bottom:266.426667pt;}
.y1f4{bottom:267.866667pt;}
.yb4{bottom:268.066667pt;}
.y103{bottom:272.546667pt;}
.y24{bottom:273.666667pt;}
.y169{bottom:274.626667pt;}
.y96{bottom:275.106667pt;}
.y21f{bottom:277.186667pt;}
.y188{bottom:277.413333pt;}
.y17d{bottom:278.306667pt;}
.y185{bottom:279.173333pt;}
.y1f3{bottom:281.626667pt;}
.y51{bottom:281.666667pt;}
.yd2{bottom:285.093333pt;}
.yb3{bottom:286.466667pt;}
.y102{bottom:290.946667pt;}
.y187{bottom:291.333333pt;}
.y184{bottom:291.653333pt;}
.y23{bottom:292.066667pt;}
.y1f2{bottom:295.386667pt;}
.y21e{bottom:295.586667pt;}
.y168{bottom:296.546667pt;}
.yc5{bottom:297.666667pt;}
.y50{bottom:300.066667pt;}
.yd1{bottom:301.573333pt;}
.y183{bottom:304.133333pt;}
.yb2{bottom:304.866667pt;}
.y186{bottom:305.093333pt;}
.y1f1{bottom:309.146667pt;}
.y101{bottom:309.346667pt;}
.y22{bottom:310.466667pt;}
.y13d{bottom:312.066667pt;}
.y17c{bottom:312.706667pt;}
.y4f{bottom:318.466667pt;}
.y1f0{bottom:323.066667pt;}
.yb1{bottom:323.266667pt;}
.y100{bottom:327.746667pt;}
.y21{bottom:328.866667pt;}
.y21d{bottom:329.986667pt;}
.yc4{bottom:333.826667pt;}
.y73{bottom:334.146667pt;}
.y1ef{bottom:336.826667pt;}
.y4e{bottom:336.866667pt;}
.y15f{bottom:339.413333pt;}
.y15d{bottom:339.426667pt;}
.yb0{bottom:341.666667pt;}
.yff{bottom:346.146667pt;}
.y17b{bottom:347.106667pt;}
.y20{bottom:347.266667pt;}
.y21c{bottom:348.386667pt;}
.y1ee{bottom:350.586667pt;}
.y4d{bottom:355.266667pt;}
.yc3{bottom:364.226667pt;}
.yce{bottom:364.320000pt;}
.y1ed{bottom:364.346667pt;}
.yfe{bottom:364.546667pt;}
.y1f{bottom:365.666667pt;}
.y166{bottom:365.826667pt;}
.y21b{bottom:366.786667pt;}
.yac{bottom:372.706667pt;}
.y4c{bottom:373.506667pt;}
.y1ec{bottom:378.293333pt;}
.y17a{bottom:381.506667pt;}
.yfd{bottom:382.946667pt;}
.y1e{bottom:384.066667pt;}
.y71{bottom:389.986667pt;}
.y4b{bottom:391.906667pt;}
.y1eb{bottom:392.053333pt;}
.y131{bottom:397.333333pt;}
.y12e{bottom:397.346667pt;}
.y21a{bottom:401.186667pt;}
.yfc{bottom:401.346667pt;}
.y1d{bottom:402.466667pt;}
.y1ea{bottom:405.813333pt;}
.y165{bottom:408.706667pt;}
.y4a{bottom:410.306667pt;}
.y182{bottom:412.000000pt;}
.y179{bottom:412.066667pt;}
.y219{bottom:419.426667pt;}
.y1e9{bottom:419.573333pt;}
.yfb{bottom:419.746667pt;}
.y1c{bottom:420.866667pt;}
.y70{bottom:421.186667pt;}
.y94{bottom:422.946667pt;}
.y49{bottom:428.706667pt;}
.y1e8{bottom:433.493333pt;}
.yfa{bottom:438.146667pt;}
.y1b{bottom:439.266667pt;}
.y137{bottom:440.386667pt;}
.y48{bottom:447.106667pt;}
.y1e7{bottom:447.253333pt;}
.y15b{bottom:451.746667pt;}
.y238{bottom:452.706667pt;}
.y218{bottom:453.826667pt;}
.y6f{bottom:455.586667pt;}
.yf9{bottom:456.546667pt;}
.y1a{bottom:457.666667pt;}
.y1e6{bottom:461.013333pt;}
.y47{bottom:465.506667pt;}
.y217{bottom:472.226667pt;}
.y93{bottom:473.826667pt;}
.y6e{bottom:473.986667pt;}
.y15a{bottom:474.466667pt;}
.yf8{bottom:474.946667pt;}
.y19{bottom:476.066667pt;}
.y135{bottom:483.266667pt;}
.y46{bottom:483.906667pt;}
.y237{bottom:487.106667pt;}
.y6d{bottom:492.386667pt;}
.yf7{bottom:493.346667pt;}
.y18{bottom:494.493333pt;}
.y45{bottom:502.333333pt;}
.y133{bottom:505.213333pt;}
.y236{bottom:505.533333pt;}
.y216{bottom:506.653333pt;}
.y92{bottom:508.413333pt;}
.y6c{bottom:510.813333pt;}
.yf6{bottom:511.773333pt;}
.y17{bottom:512.893333pt;}
.y159{bottom:513.213333pt;}
.y44{bottom:520.733333pt;}
.y215{bottom:525.053333pt;}
.y91{bottom:526.813333pt;}
.y6b{bottom:529.213333pt;}
.yf5{bottom:530.173333pt;}
.y16{bottom:531.293333pt;}
.y1cf{bottom:534.173333pt;}
.y43{bottom:539.133333pt;}
.y235{bottom:539.933333pt;}
.y90{bottom:545.213333pt;}
.y6a{bottom:547.453333pt;}
.y115{bottom:548.253333pt;}
.yf4{bottom:548.573333pt;}
.ya7{bottom:557.373333pt;}
.y42{bottom:557.533333pt;}
.y234{bottom:558.333333pt;}
.y214{bottom:559.453333pt;}
.y158{bottom:563.293333pt;}
.y8f{bottom:563.453333pt;}
.y15{bottom:565.373333pt;}
.y69{bottom:565.853333pt;}
.y41{bottom:575.933333pt;}
.y213{bottom:577.853333pt;}
.y157{bottom:581.693333pt;}
.y8e{bottom:581.853333pt;}
.yf3{bottom:582.813333pt;}
.y68{bottom:584.253333pt;}
.y12c{bottom:591.133333pt;}
.y233{bottom:592.573333pt;}
.y40{bottom:594.333333pt;}
.y212{bottom:596.253333pt;}
.y156{bottom:600.093333pt;}
.y8d{bottom:600.253333pt;}
.y14{bottom:601.373333pt;}
.y67{bottom:602.653333pt;}
.y232{bottom:611.453333pt;}
.y3f{bottom:612.733333pt;}
.yf2{bottom:615.613333pt;}
.y155{bottom:618.493333pt;}
.y8c{bottom:618.653333pt;}
.y66{bottom:621.053333pt;}
.y211{bottom:630.653333pt;}
.y3e{bottom:631.133333pt;}
.y129{bottom:634.173333pt;}
.yf1{bottom:634.653333pt;}
.y154{bottom:636.893333pt;}
.y8b{bottom:637.053333pt;}
.y13{bottom:638.013333pt;}
.y231{bottom:645.853333pt;}
.y210{bottom:649.053333pt;}
.y3d{bottom:649.533333pt;}
.yf0{bottom:653.693333pt;}
.y153{bottom:655.293333pt;}
.y65{bottom:655.453333pt;}
.y12{bottom:659.293333pt;}
.y230{bottom:664.253333pt;}
.y3c{bottom:667.933333pt;}
.yef{bottom:672.733333pt;}
.y152{bottom:673.693333pt;}
.y64{bottom:673.853333pt;}
.y19e{bottom:675.293333pt;}
.y10{bottom:679.453333pt;}
.y22f{bottom:682.653333pt;}
.y20f{bottom:683.453333pt;}
.y11{bottom:686.173333pt;}
.y3b{bottom:686.333333pt;}
.yee{bottom:691.933333pt;}
.y151{bottom:692.093333pt;}
.y63{bottom:692.253333pt;}
.y126{bottom:698.333333pt;}
.y20e{bottom:701.853333pt;}
.y3a{bottom:704.733333pt;}
.y150{bottom:710.493333pt;}
.y62{bottom:710.653333pt;}
.yed{bottom:710.973333pt;}
.yf{bottom:716.573333pt;}
.y22e{bottom:717.053333pt;}
.y39{bottom:723.133333pt;}
.y14f{bottom:728.893333pt;}
.y61{bottom:729.053333pt;}
.yec{bottom:730.013333pt;}
.y22d{bottom:735.453333pt;}
.y20d{bottom:736.253333pt;}
.ye{bottom:736.893333pt;}
.y121{bottom:741.213333pt;}
.yc2{bottom:744.253333pt;}
.y14e{bottom:747.333333pt;}
.y60{bottom:747.493333pt;}
.yeb{bottom:749.093333pt;}
.y20c{bottom:754.693333pt;}
.y38{bottom:757.413333pt;}
.y1db{bottom:761.240000pt;}
.yc1{bottom:762.693333pt;}
.y14d{bottom:765.733333pt;}
.y5f{bottom:765.893333pt;}
.yea{bottom:768.133333pt;}
.y22c{bottom:769.893333pt;}
.yd{bottom:774.053333pt;}
.y178{bottom:774.693333pt;}
.ya6{bottom:778.853333pt;}
.yc0{bottom:781.093333pt;}
.y14c{bottom:784.133333pt;}
.y5e{bottom:784.293333pt;}
.ye9{bottom:787.173333pt;}
.y22b{bottom:788.293333pt;}
.y20b{bottom:789.093333pt;}
.y37{bottom:792.933333pt;}
.yc{bottom:794.213333pt;}
.ybf{bottom:799.493333pt;}
.y14b{bottom:802.533333pt;}
.y8a{bottom:802.693333pt;}
.y11b{bottom:805.400000pt;}
.y118{bottom:805.413333pt;}
.ye8{bottom:806.213333pt;}
.y22a{bottom:806.693333pt;}
.y20a{bottom:807.493333pt;}
.y36{bottom:808.293333pt;}
.y177{bottom:809.093333pt;}
.ybe{bottom:817.893333pt;}
.y5d{bottom:818.533333pt;}
.y89{bottom:821.093333pt;}
.y35{bottom:823.493333pt;}
.ye7{bottom:825.413333pt;}
.yb{bottom:833.093333pt;}
.ybd{bottom:836.293333pt;}
.y14a{bottom:836.773333pt;}
.y88{bottom:839.493333pt;}
.y229{bottom:841.093333pt;}
.y209{bottom:841.893333pt;}
.y176{bottom:843.493333pt;}
.ye6{bottom:844.453333pt;}
.y5c{bottom:854.693333pt;}
.y34{bottom:855.493333pt;}
.y87{bottom:857.893333pt;}
.y228{bottom:859.493333pt;}
.y208{bottom:860.293333pt;}
.y147{bottom:869.573333pt;}
.y5b{bottom:873.093333pt;}
.y33{bottom:873.893333pt;}
.ye5{bottom:875.493333pt;}
.y86{bottom:876.293333pt;}
.y175{bottom:877.893333pt;}
.ya{bottom:879.813333pt;}
.y5a{bottom:891.493333pt;}
.y227{bottom:893.893333pt;}
.y85{bottom:894.693333pt;}
.ya5{bottom:908.293333pt;}
.y32{bottom:909.893333pt;}
.y9{bottom:910.373333pt;}
.y174{bottom:912.293333pt;}
.y207{bottom:913.093333pt;}
.y31{bottom:928.293333pt;}
.y84{bottom:928.933333pt;}
.y226{bottom:930.693333pt;}
.y114{bottom:933.093333pt;}
.y149{bottom:933.733333pt;}
.y173{bottom:946.533333pt;}
.y30{bottom:946.693333pt;}
.y206{bottom:947.333333pt;}
.y110{bottom:954.853333pt;}
.y8{bottom:957.093333pt;}
.ya3{bottom:964.133333pt;}
.y2f{bottom:965.093333pt;}
.y2e{bottom:983.493333pt;}
.y5{bottom:1000.960000pt;}
.y4{bottom:1016.640000pt;}
.y3{bottom:1031.840000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1062.560000pt;}
.h14{height:18.386667pt;}
.h27{height:18.400000pt;}
.h26{height:18.420000pt;}
.h2f{height:21.106667pt;}
.h2d{height:21.112000pt;}
.h42{height:21.146667pt;}
.h47{height:21.266667pt;}
.h39{height:21.306667pt;}
.h43{height:22.066667pt;}
.h12{height:24.840000pt;}
.h45{height:25.586667pt;}
.h1b{height:32.946667pt;}
.h1f{height:33.146667pt;}
.hc{height:33.328125pt;}
.h6{height:37.116563pt;}
.h4{height:40.163750pt;}
.h28{height:42.226667pt;}
.h29{height:42.232000pt;}
.h2a{height:42.240000pt;}
.h2c{height:42.386667pt;}
.h36{height:42.400000pt;}
.h2e{height:42.426667pt;}
.h4a{height:43.215000pt;}
.h17{height:44.468750pt;}
.h11{height:46.840769pt;}
.h49{height:47.109375pt;}
.h5{height:47.680000pt;}
.h13{height:52.108438pt;}
.h2{height:52.134375pt;}
.h3{height:53.535000pt;}
.h16{height:55.186667pt;}
.h19{height:55.192000pt;}
.h1a{height:55.200000pt;}
.h24{height:57.787500pt;}
.h52{height:62.781250pt;}
.h10{height:62.812500pt;}
.h25{height:62.938125pt;}
.h3c{height:63.506667pt;}
.h3f{height:63.512000pt;}
.h35{height:63.520000pt;}
.h3e{height:63.538667pt;}
.h34{height:63.540000pt;}
.h41{height:63.546667pt;}
.h46{height:64.146667pt;}
.h2b{height:64.152000pt;}
.h15{height:64.500000pt;}
.h51{height:66.404375pt;}
.h9{height:67.837500pt;}
.hd{height:68.916875pt;}
.hf{height:69.660000pt;}
.he{height:73.454062pt;}
.h8{height:73.490625pt;}
.h1e{height:73.592000pt;}
.h1d{height:73.618667pt;}
.ha{height:73.989375pt;}
.h3b{height:84.626667pt;}
.h7{height:107.715000pt;}
.h18{height:110.418667pt;}
.h33{height:127.026667pt;}
.h31{height:127.032000pt;}
.h32{height:127.040000pt;}
.h3d{height:127.700000pt;}
.h40{height:127.706667pt;}
.h20{height:128.786667pt;}
.h44{height:134.400000pt;}
.h1c{height:147.186667pt;}
.h3a{height:148.800000pt;}
.h37{height:150.106667pt;}
.h38{height:150.120000pt;}
.h4f{height:154.720000pt;}
.h22{height:184.026667pt;}
.h4e{height:200.800000pt;}
.h21{height:220.813333pt;}
.h4b{height:247.866667pt;}
.h4c{height:280.506667pt;}
.h4d{height:319.906667pt;}
.h48{height:358.720000pt;}
.h23{height:376.000000pt;}
.h30{height:384.186667pt;}
.h50{height:474.626667pt;}
.hb{height:1122.546631pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:81.298667pt;}
.wd{width:83.032000pt;}
.w2{width:111.520000pt;}
.wb{width:128.818667pt;}
.w6{width:142.066667pt;}
.w5{width:142.072000pt;}
.w7{width:142.080000pt;}
.w12{width:147.533333pt;}
.we{width:147.538667pt;}
.w13{width:147.546667pt;}
.w9{width:151.533333pt;}
.w1a{width:173.320000pt;}
.w19{width:184.360000pt;}
.w1b{width:197.826667pt;}
.w18{width:209.480000pt;}
.w1c{width:225.626667pt;}
.w17{width:233.453333pt;}
.w14{width:238.578667pt;}
.w16{width:326.453333pt;}
.w15{width:326.466667pt;}
.wf{width:335.546667pt;}
.w10{width:335.560000pt;}
.wc{width:340.373333pt;}
.w8{width:413.346667pt;}
.w4{width:422.960000pt;}
.w3{width:793.740000pt;}
.wa{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.720000pt;}
.x2b{left:8.472000pt;}
.x6a{left:9.586667pt;}
.x50{left:10.872000pt;}
.x51{left:13.592000pt;}
.x54{left:15.512000pt;}
.x1b{left:17.146667pt;}
.x20{left:18.552000pt;}
.x1a{left:20.026667pt;}
.x1e{left:22.266667pt;}
.x17{left:24.506667pt;}
.x28{left:27.026667pt;}
.x56{left:28.480000pt;}
.x2a{left:29.426667pt;}
.x26{left:31.506667pt;}
.x2c{left:33.426667pt;}
.x49{left:36.146667pt;}
.x1c{left:37.466667pt;}
.x18{left:40.026667pt;}
.x29{left:41.746667pt;}
.x16{left:43.026667pt;}
.x2{left:44.799998pt;}
.x52{left:47.986667pt;}
.x2d{left:50.066667pt;}
.x21{left:52.306667pt;}
.x2e{left:53.586667pt;}
.x4d{left:57.946667pt;}
.x4a{left:62.746667pt;}
.x6c{left:69.120000pt;}
.x22{left:71.026667pt;}
.x4b{left:73.786667pt;}
.x6d{left:79.360000pt;}
.x1f{left:87.866667pt;}
.x47{left:94.746667pt;}
.x1d{left:103.706667pt;}
.x1{left:113.472000pt;}
.x4c{left:116.666667pt;}
.x12{left:118.272000pt;}
.x48{left:119.880000pt;}
.x6f{left:121.152000pt;}
.x4{left:125.792000pt;}
.x13{left:132.352000pt;}
.x19{left:135.866667pt;}
.xe{left:141.786667pt;}
.xd{left:160.666667pt;}
.x23{left:168.026667pt;}
.x25{left:169.146667pt;}
.x15{left:177.146667pt;}
.x30{left:181.466667pt;}
.xc{left:183.066667pt;}
.x46{left:203.560000pt;}
.x7{left:215.546667pt;}
.x44{left:224.826667pt;}
.x14{left:228.026667pt;}
.x40{left:243.773322pt;}
.x3f{left:246.973322pt;}
.x43{left:251.386655pt;}
.x42{left:255.773322pt;}
.x5{left:256.986667pt;}
.x4e{left:262.306667pt;}
.x67{left:263.426655pt;}
.x24{left:266.146667pt;}
.x41{left:267.613322pt;}
.x68{left:273.186655pt;}
.x6b{left:279.746667pt;}
.x6{left:282.466667pt;}
.x53{left:289.826667pt;}
.x65{left:303.013322pt;}
.x11{left:305.506667pt;}
.x5c{left:310.053322pt;}
.x66{left:311.493322pt;}
.x5d{left:314.533322pt;}
.x64{left:318.693322pt;}
.x5b{left:320.133322pt;}
.x32{left:324.573322pt;}
.x9{left:328.546667pt;}
.x8{left:344.546667pt;}
.x31{left:349.533322pt;}
.x33{left:351.039988pt;}
.x3d{left:352.159988pt;}
.x55{left:353.346667pt;}
.x5e{left:354.266655pt;}
.x34{left:365.919988pt;}
.x3e{left:374.399988pt;}
.x62{left:397.693322pt;}
.x5a{left:402.306655pt;}
.x59{left:404.066655pt;}
.x63{left:405.053322pt;}
.x3{left:406.466667pt;}
.x58{left:411.106655pt;}
.x61{left:439.493322pt;}
.x60{left:440.453322pt;}
.x5f{left:453.733322pt;}
.x35{left:461.733322pt;}
.x36{left:468.613322pt;}
.x3a{left:470.533322pt;}
.x37{left:473.093322pt;}
.x38{left:476.933322pt;}
.xa{left:478.313333pt;}
.x3b{left:479.973322pt;}
.xb{left:484.413333pt;}
.x3c{left:488.293322pt;}
.x69{left:491.786667pt;}
.x39{left:497.253322pt;}
.x6e{left:532.426667pt;}
.x45{left:544.586667pt;}
.xf{left:573.373333pt;}
.x10{left:577.373333pt;}
.x4f{left:598.506667pt;}
.x2f{left:665.413333pt;}
.x57{left:668.453333pt;}
}




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