
    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_de1e20917b2b8dad3ecab2b6.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8c87f9e3b36e1782dda70243.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_732c8f59495b2960974b1ae7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_d50d15a994f4232dc0daa958.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_8aa95953199bbb137809a3a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_3e90a60508497341bd31cf5f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_699f3019f508dde769c0775f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_aaa4da60ccc04a69d9995bad.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_aa7a6cefb64f443b9cd6ffb0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_446d783c5a32661bc85b4b5b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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_ff6d33b05f163531ba88aa53.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7d7ca67fbb3fb09007e9208a.woff2')format("woff");}.fff{font-family:fff;line-height:1.063477;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:ff10;src:url('chunks/assets/font_444eeface18692124831c652.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.063477;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:ff11;src:url('chunks/assets/font_10ff2a33fc95efb376df1933.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.929688;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:ff12;src:url('chunks/assets/font_1c4d116da01e1a18d39c2611.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.030273;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;}
.m2{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);}
.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:-19.440000px;}
.v2{vertical-align:-14.400000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.400000px;}
.v5{vertical-align:19.440000px;}
.v1{vertical-align:23.760000px;}
.ls2d{letter-spacing:-0.864000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.648000px;}
.ls13{letter-spacing:-0.576000px;}
.ls9{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.276000px;}
.ls27{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls21{letter-spacing:-0.126000px;}
.ls3{letter-spacing:-0.072000px;}
.ls1d{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.097200px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.174240px;}
.ls2b{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.274800px;}
.ls6{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.318240px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.382320px;}
.ls22{letter-spacing:2.801520px;}
.ls29{letter-spacing:3.893520px;}
.ls28{letter-spacing:4.030320px;}
.ls2a{letter-spacing:4.054320px;}
.ls25{letter-spacing:4.619520px;}
.ls2c{letter-spacing:4.637520px;}
.ls26{letter-spacing:21.412800px;}
.ls1a{letter-spacing:23.381280px;}
.ls23{letter-spacing:25.499520px;}
.ls24{letter-spacing:27.832320px;}
.ls17{letter-spacing:33.264000px;}
.ls11{letter-spacing:34.973280px;}
.lsb{letter-spacing:38.573280px;}
.ls1b{letter-spacing:40.464000px;}
.ls16{letter-spacing:43.541280px;}
.ls20{letter-spacing:44.784000px;}
.ls1e{letter-spacing:54.864000px;}
.lse{letter-spacing:90.869760px;}
.lsd{letter-spacing:145.565760px;}
.lsc{letter-spacing:200.285760px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,112,192),0 0.015em rgb(0,112,192),0.015em 0 rgb(0,112,192),0 -0.015em  rgb(0,112,192);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,112,192);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-95.760000px;}
.ws1f{word-spacing:-74.292720px;}
.ws1e{word-spacing:-74.052720px;}
.ws15{word-spacing:-72.000000px;}
.ws1d{word-spacing:-68.652720px;}
.ws1a{word-spacing:-51.120000px;}
.ws0{word-spacing:-37.913760px;}
.ws1c{word-spacing:-35.936640px;}
.wsb{word-spacing:-27.174240px;}
.ws20{word-spacing:-25.020000px;}
.ws21{word-spacing:-23.418720px;}
.ws11{word-spacing:-19.135440px;}
.ws10{word-spacing:-19.038240px;}
.ws13{word-spacing:-16.632000px;}
.ws22{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.488000px;}
.ws4{word-spacing:-16.416000px;}
.wsd{word-spacing:-16.344000px;}
.ws2{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.200000px;}
.wsc{word-spacing:-16.128000px;}
.wse{word-spacing:-16.056000px;}
.wsa{word-spacing:-15.912000px;}
.ws9{word-spacing:-15.768000px;}
.wsf{word-spacing:-15.696000px;}
.ws18{word-spacing:-15.552000px;}
.ws8{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.970240px;}
.ws7{word-spacing:-13.780560px;}
.ws12{word-spacing:-13.505760px;}
.ws14{word-spacing:-12.186000px;}
.ws19{word-spacing:-12.078000px;}
.ws16{word-spacing:-10.626240px;}
.ws17{word-spacing:-0.072000px;}
.ws23{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-14.820000px;}
._d{margin-left:-13.668000px;}
._e{margin-left:-12.588000px;}
._9{margin-left:-11.292480px;}
._b{margin-left:-10.241040px;}
._a{margin-left:-9.144000px;}
._5{margin-left:-7.662960px;}
._6{margin-left:-5.414400px;}
._3{margin-left:-3.949200px;}
._2{margin-left:-2.470320px;}
._7{margin-left:-1.242240px;}
._0{width:1.434240px;}
._1{width:3.057600px;}
._10{width:4.236480px;}
._11{width:18.504000px;}
._4{width:85.386240px;}
._8{width:848.028000px;}
._12{width:1405.740000px;}
._f{width:2160.708000px;}
.fc7{color:rgb(5,99,193);}
.fc5{color:rgb(46,116,181);}
.fc3{color:rgb(68,114,196);}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc8{color:rgb(31,31,31);}
.fc6{color:rgb(68,84,106);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fsb{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsd{font-size:90.000000px;}
.fsa{font-size:95.760000px;}
.fsc{font-size:100.938894px;}
.fs4{font-size:120.240000px;}
.fs2{font-size:167.760000px;}
.y58{bottom:-14.580000px;}
.y0{bottom:0.000000px;}
.y1f1{bottom:0.360000px;}
.y174{bottom:2.160000px;}
.y269{bottom:4.140000px;}
.y5e{bottom:4.860000px;}
.y3e{bottom:5.040000px;}
.y2{bottom:5.400000px;}
.y3c{bottom:6.660000px;}
.y268{bottom:7.020000px;}
.y33{bottom:7.920000px;}
.yc7{bottom:9.540000px;}
.y50{bottom:11.520000px;}
.y5a{bottom:13.680000px;}
.y38{bottom:14.400000px;}
.y4b{bottom:14.760000px;}
.y4e{bottom:14.940000px;}
.y2a{bottom:15.840000px;}
.y41{bottom:16.020000px;}
.y8{bottom:17.100000px;}
.y257{bottom:17.460000px;}
.y5{bottom:17.640000px;}
.y47{bottom:18.000000px;}
.y30{bottom:18.180000px;}
.y18{bottom:18.360000px;}
.y224{bottom:18.405000px;}
.y21e{bottom:18.534000px;}
.y13{bottom:18.540000px;}
.y16{bottom:18.570000px;}
.y179{bottom:18.585000px;}
.y25f{bottom:18.720000px;}
.y52{bottom:19.305000px;}
.y22c{bottom:19.440000px;}
.y35{bottom:19.620000px;}
.y2e{bottom:19.800000px;}
.y56{bottom:19.845000px;}
.y17b{bottom:20.025000px;}
.y11{bottom:20.340000px;}
.y14b{bottom:20.880000px;}
.y49{bottom:21.060000px;}
.y2c{bottom:21.240000px;}
.y54{bottom:21.285000px;}
.y14e{bottom:23.040000px;}
.y3d{bottom:24.660000px;}
.y251{bottom:25.380000px;}
.y32{bottom:26.100000px;}
.y24e{bottom:26.280000px;}
.y60{bottom:26.820000px;}
.y62{bottom:27.000000px;}
.y29{bottom:30.600000px;}
.y37{bottom:30.645000px;}
.y24d{bottom:31.140000px;}
.y201{bottom:31.320000px;}
.yc6{bottom:31.500000px;}
.y17f{bottom:31.530000px;}
.y178{bottom:31.545000px;}
.y22b{bottom:32.400000px;}
.y23a{bottom:32.760000px;}
.y17a{bottom:32.985000px;}
.y144{bottom:33.480000px;}
.y17e{bottom:33.510000px;}
.y140{bottom:34.560000px;}
.y223{bottom:34.965000px;}
.y21d{bottom:35.094000px;}
.y13c{bottom:35.100000px;}
.y271{bottom:35.130000px;}
.y7{bottom:35.460000px;}
.y13e{bottom:36.180000px;}
.y221{bottom:36.945000px;}
.y14a{bottom:37.440000px;}
.y259{bottom:38.340000px;}
.y2b{bottom:39.420000px;}
.y14d{bottom:39.600000px;}
.y34{bottom:39.780000px;}
.y3a{bottom:39.825000px;}
.y2d{bottom:39.960000px;}
.y48{bottom:40.680000px;}
.y44{bottom:40.860000px;}
.y53{bottom:40.905000px;}
.y256{bottom:41.220000px;}
.y3f{bottom:41.400000px;}
.y42{bottom:41.580000px;}
.y55{bottom:41.625000px;}
.y25a{bottom:42.300000px;}
.y261{bottom:42.480000px;}
.y4c{bottom:44.280000px;}
.y31{bottom:44.460000px;}
.y39{bottom:44.505000px;}
.y262{bottom:45.000000px;}
.y258{bottom:45.180000px;}
.y239{bottom:45.720000px;}
.y18f{bottom:46.485000px;}
.y190{bottom:47.565000px;}
.y21c{bottom:47.874000px;}
.y270{bottom:47.910000px;}
.y222{bottom:47.925000px;}
.y148{bottom:48.060000px;}
.y220{bottom:49.905000px;}
.y143{bottom:50.040000px;}
.y149{bottom:50.400000px;}
.y13f{bottom:51.120000px;}
.y14c{bottom:52.560000px;}
.y6{bottom:53.820000px;}
.y9{bottom:57.816000px;}
.y142{bottom:62.820000px;}
.y13b{bottom:63.000000px;}
.y13d{bottom:64.080000px;}
.y4{bottom:74.916000px;}
.y22{bottom:79.416000px;}
.y119{bottom:99.036000px;}
.y29d{bottom:99.216000px;}
.y118{bottom:104.256000px;}
.y29c{bottom:104.436000px;}
.y152{bottom:107.136000px;}
.y196{bottom:108.936000px;}
.y24c{bottom:112.536000px;}
.y1ed{bottom:113.076000px;}
.y21b{bottom:115.236000px;}
.y117{bottom:117.396000px;}
.y29b{bottom:118.476000px;}
.ya0{bottom:119.196000px;}
.y116{bottom:122.616000px;}
.y1ce{bottom:122.796000px;}
.y16a{bottom:125.676000px;}
.y151{bottom:130.716000px;}
.y195{bottom:133.596000px;}
.y1f4{bottom:133.956000px;}
.y115{bottom:136.656000px;}
.y1ec{bottom:136.836000px;}
.y24b{bottom:137.376000px;}
.y21a{bottom:138.996000px;}
.y25d{bottom:139.680000px;}
.y253{bottom:139.725000px;}
.y9f{bottom:142.956000px;}
.y5b{bottom:144.216000px;}
.y1b7{bottom:144.756000px;}
.y1cd{bottom:146.556000px;}
.ye1{bottom:147.096000px;}
.y169{bottom:149.256000px;}
.y1f3{bottom:151.050000px;}
.y26a{bottom:156.270000px;}
.y237{bottom:157.170000px;}
.y194{bottom:158.250000px;}
.y1eb{bottom:160.590000px;}
.y59{bottom:162.210000px;}
.y219{bottom:162.750000px;}
.y25c{bottom:163.440000px;}
.y252{bottom:163.485000px;}
.y130{bottom:166.530000px;}
.y9e{bottom:166.710000px;}
.y1cc{bottom:170.310000px;}
.ye0{bottom:170.850000px;}
.y168{bottom:173.010000px;}
.y24a{bottom:174.090000px;}
.y1b6{bottom:180.570000px;}
.y236{bottom:180.930000px;}
.y193{bottom:182.910000px;}
.yf4{bottom:183.990000px;}
.y1ea{bottom:184.350000px;}
.y218{bottom:186.330000px;}
.y267{bottom:187.770000px;}
.y12f{bottom:190.290000px;}
.y9d{bottom:190.470000px;}
.y289{bottom:198.210000px;}
.y21{bottom:200.550000px;}
.y207{bottom:202.350000px;}
.y1b5{bottom:204.150000px;}
.y235{bottom:204.510000px;}
.y1cb{bottom:205.950000px;}
.ydf{bottom:206.490000px;}
.y114{bottom:207.390000px;}
.y192{bottom:207.570000px;}
.yf3{bottom:207.750000px;}
.y167{bottom:208.650000px;}
.y249{bottom:209.730000px;}
.y9c{bottom:214.050000px;}
.y20{bottom:218.550000px;}
.y1e9{bottom:219.810000px;}
.y57{bottom:221.610000px;}
.y217{bottom:222.150000px;}
.y150{bottom:225.930000px;}
.y206{bottom:226.110000px;}
.y1b4{bottom:227.910000px;}
.y234{bottom:228.270000px;}
.y1ca{bottom:229.710000px;}
.yde{bottom:230.250000px;}
.y113{bottom:231.150000px;}
.yf2{bottom:231.510000px;}
.y166{bottom:232.410000px;}
.y12e{bottom:232.950000px;}
.y9b{bottom:237.810000px;}
.y191{bottom:244.470000px;}
.y248{bottom:245.550000px;}
.y216{bottom:245.910000px;}
.y13a{bottom:249.690000px;}
.y205{bottom:249.870000px;}
.y1b3{bottom:251.670000px;}
.y233{bottom:252.030000px;}
.y1c9{bottom:253.290000px;}
.ydd{bottom:254.010000px;}
.y1f{bottom:254.730000px;}
.yf1{bottom:255.090000px;}
.yc3{bottom:255.450000px;}
.y165{bottom:256.170000px;}
.y9a{bottom:261.570000px;}
.y1e8{bottom:269.130000px;}
.y139{bottom:273.270000px;}
.y204{bottom:273.450000px;}
.y232{bottom:275.790000px;}
.y1c8{bottom:277.050000px;}
.ydc{bottom:277.590000px;}
.y209{bottom:279.390000px;}
.y12d{bottom:280.650000px;}
.y51{bottom:281.190000px;}
.y215{bottom:281.595000px;}
.y99{bottom:285.375000px;}
.y1b2{bottom:287.355000px;}
.y112{bottom:290.595000px;}
.yf0{bottom:290.955000px;}
.yc2{bottom:291.135000px;}
.y164{bottom:291.855000px;}
.y1e{bottom:292.935000px;}
.y1e7{bottom:293.835000px;}
.y138{bottom:297.075000px;}
.y203{bottom:297.255000px;}
.y1c7{bottom:300.855000px;}
.ydb{bottom:301.395000px;}
.y12c{bottom:304.455000px;}
.y214{bottom:305.355000px;}
.yef{bottom:308.055000px;}
.y98{bottom:308.955000px;}
.y1b1{bottom:311.115000px;}
.y231{bottom:311.475000px;}
.y29a{bottom:314.175000px;}
.yc1{bottom:314.895000px;}
.y163{bottom:315.615000px;}
.y247{bottom:316.695000px;}
.y1e6{bottom:318.495000px;}
.y14f{bottom:321.015000px;}
.yda{bottom:325.155000px;}
.y111{bottom:326.235000px;}
.y12b{bottom:328.215000px;}
.y213{bottom:328.935000px;}
.y1d{bottom:329.295000px;}
.y97{bottom:332.715000px;}
.y137{bottom:332.895000px;}
.y1b0{bottom:334.875000px;}
.y230{bottom:335.235000px;}
.y1c6{bottom:336.495000px;}
.y147{bottom:338.115000px;}
.yc0{bottom:338.475000px;}
.y246{bottom:340.455000px;}
.y4f{bottom:340.815000px;}
.y202{bottom:344.775000px;}
.y266{bottom:348.015000px;}
.yd9{bottom:348.915000px;}
.y299{bottom:349.815000px;}
.y110{bottom:349.995000px;}
.y212{bottom:353.595000px;}
.y1e5{bottom:355.395000px;}
.y136{bottom:356.475000px;}
.y1af{bottom:358.635000px;}
.y22f{bottom:358.815000px;}
.y176{bottom:360.795000px;}
.y200{bottom:361.875000px;}
.y12a{bottom:363.855000px;}
.y245{bottom:364.035000px;}
.y1c{bottom:367.455000px;}
.y1c5{bottom:372.315000px;}
.y135{bottom:373.575000px;}
.y10f{bottom:373.755000px;}
.y96{bottom:375.015000px;}
.y211{bottom:378.255000px;}
.ybf{bottom:380.775000px;}
.y1ae{bottom:382.215000px;}
.yd8{bottom:384.555000px;}
.y129{bottom:387.615000px;}
.y1e4{bottom:391.035000px;}
.y22e{bottom:394.635000px;}
.y1c4{bottom:395.895000px;}
.y10e{bottom:397.335000px;}
.y244{bottom:399.855000px;}
.y4d{bottom:400.395000px;}
.y210{bottom:403.095000px;}
.y1b{bottom:403.815000px;}
.y1ad{bottom:405.795000px;}
.y288{bottom:406.155000px;}
.yd7{bottom:408.315000px;}
.y95{bottom:410.295000px;}
.y128{bottom:411.375000px;}
.y1e3{bottom:414.795000px;}
.y22d{bottom:418.215000px;}
.y175{bottom:420.195000px;}
.y298{bottom:420.915000px;}
.y183{bottom:421.095000px;}
.y243{bottom:423.615000px;}
.y20f{bottom:426.675000px;}
.ybe{bottom:428.115000px;}
.y1ac{bottom:430.635000px;}
.y1c3{bottom:431.715000px;}
.yd6{bottom:432.075000px;}
.y127{bottom:434.955000px;}
.y173{bottom:437.295000px;}
.y22a{bottom:438.375000px;}
.y1e2{bottom:438.555000px;}
.y1a{bottom:439.995000px;}
.y94{bottom:441.435000px;}
.y287{bottom:441.795000px;}
.y297{bottom:444.675000px;}
.y242{bottom:447.195000px;}
.y10d{bottom:447.555000px;}
.ybd{bottom:451.695000px;}
.y1ab{bottom:454.215000px;}
.y1c2{bottom:455.475000px;}
.yd5{bottom:455.655000px;}
.y182{bottom:456.915000px;}
.y126{bottom:458.715000px;}
.y4a{bottom:459.975000px;}
.y20e{bottom:463.395000px;}
.y286{bottom:466.455000px;}
.y93{bottom:472.575000px;}
.y1e1{bottom:474.195000px;}
.ybc{bottom:475.455000px;}
.y19{bottom:476.355000px;}
.y1c1{bottom:479.055000px;}
.yd4{bottom:479.415000px;}
.y181{bottom:480.495000px;}
.y1f2{bottom:481.755000px;}
.y241{bottom:483.015000px;}
.y20d{bottom:487.155000px;}
.y296{bottom:487.335000px;}
.y10c{bottom:487.695000px;}
.y1aa{bottom:491.115000px;}
.y125{bottom:494.355000px;}
.y1e0{bottom:497.955000px;}
.ybb{bottom:499.215000px;}
.yd3{bottom:503.175000px;}
.y285{bottom:503.355000px;}
.y92{bottom:503.895000px;}
.y240{bottom:506.595000px;}
.y10b{bottom:511.455000px;}
.y17{bottom:512.715000px;}
.y1f0{bottom:513.255000px;}
.y1a9{bottom:514.695000px;}
.y180{bottom:516.315000px;}
.y124{bottom:518.115000px;}
.y46{bottom:519.555000px;}
.yd2{bottom:520.275000px;}
.y1c0{bottom:521.715000px;}
.yba{bottom:522.795000px;}
.y265{bottom:527.295000px;}
.y23f{bottom:530.355000px;}
.y272{bottom:533.235000px;}
.y17d{bottom:533.415000px;}
.y91{bottom:535.035000px;}
.y18e{bottom:536.835000px;}
.y284{bottom:538.815000px;}
.yb9{bottom:546.555000px;}
.y10a{bottom:547.275000px;}
.y15{bottom:548.895000px;}
.y1a8{bottom:550.335000px;}
.y264{bottom:550.875000px;}
.y1df{bottom:557.355000px;}
.y123{bottom:560.775000px;}
.y18d{bottom:561.495000px;}
.y7e{bottom:563.115000px;}
.y283{bottom:563.475000px;}
.y90{bottom:566.385000px;}
.y1bf{bottom:569.445000px;}
.y20c{bottom:570.165000px;}
.yb8{bottom:570.345000px;}
.y109{bottom:570.885000px;}
.y23e{bottom:573.045000px;}
.y1a7{bottom:575.025000px;}
.y45{bottom:578.985000px;}
.y1de{bottom:581.145000px;}
.y14{bottom:585.285000px;}
.y18c{bottom:586.185000px;}
.y263{bottom:586.545000px;}
.y20b{bottom:590.325000px;}
.y1be{bottom:593.025000px;}
.y172{bottom:593.205000px;}
.yb7{bottom:594.105000px;}
.y295{bottom:594.465000px;}
.y8f{bottom:597.525000px;}
.y7d{bottom:598.785000px;}
.y1a6{bottom:599.685000px;}
.y282{bottom:600.405000px;}
.y146{bottom:601.665000px;}
.y1dd{bottom:604.725000px;}
.y25b{bottom:605.625000px;}
.y108{bottom:606.705000px;}
.y122{bottom:608.505000px;}
.yb6{bottom:617.685000px;}
.y1bd{bottom:617.865000px;}
.y294{bottom:618.225000px;}
.y23d{bottom:620.745000px;}
.y7c{bottom:622.545000px;}
.y18b{bottom:623.085000px;}
.y12{bottom:623.445000px;}
.y281{bottom:624.165000px;}
.y1a5{bottom:624.525000px;}
.y145{bottom:625.425000px;}
.y1dc{bottom:628.485000px;}
.y8e{bottom:628.665000px;}
.y171{bottom:628.845000px;}
.y107{bottom:630.285000px;}
.y121{bottom:632.265000px;}
.y43{bottom:638.565000px;}
.yb5{bottom:641.445000px;}
.y141{bottom:642.525000px;}
.y23c{bottom:644.505000px;}
.y280{bottom:647.745000px;}
.y1a4{bottom:648.285000px;}
.y170{bottom:652.605000px;}
.y7b{bottom:658.185000px;}
.y18a{bottom:658.725000px;}
.y10{bottom:659.805000px;}
.y8d{bottom:659.985000px;}
.y293{bottom:660.885000px;}
.y1db{bottom:664.305000px;}
.yb4{bottom:665.205000px;}
.y106{bottom:666.105000px;}
.y1a3{bottom:671.865000px;}
.y120{bottom:674.925000px;}
.y16f{bottom:676.365000px;}
.y260{bottom:676.725000px;}
.y1bc{bottom:678.345000px;}
.y23b{bottom:680.145000px;}
.y7a{bottom:681.945000px;}
.y189{bottom:683.385000px;}
.yb3{bottom:688.965000px;}
.y105{bottom:689.865000px;}
.y27f{bottom:690.405000px;}
.y8c{bottom:691.125000px;}
.y229{bottom:696.705000px;}
.y238{bottom:697.245000px;}
.y40{bottom:698.145000px;}
.y1da{bottom:699.945000px;}
.y79{bottom:705.705000px;}
.y188{bottom:708.045000px;}
.y1a2{bottom:708.585000px;}
.y16e{bottom:712.005000px;}
.yb2{bottom:712.545000px;}
.y104{bottom:713.445000px;}
.yf{bottom:716.505000px;}
.y228{bottom:720.465000px;}
.y1bb{bottom:721.005000px;}
.y8b{bottom:722.445000px;}
.y1d9{bottom:723.705000px;}
.y1ff{bottom:724.605000px;}
.y78{bottom:729.465000px;}
.y11f{bottom:730.005000px;}
.y1a1{bottom:732.345000px;}
.y292{bottom:733.245000px;}
.yb1{bottom:736.305000px;}
.y27e{bottom:738.105000px;}
.y227{bottom:744.225000px;}
.y187{bottom:744.765000px;}
.ye{bottom:744.945000px;}
.y1d8{bottom:747.285000px;}
.yee{bottom:747.825000px;}
.y1fe{bottom:748.185000px;}
.y103{bottom:749.265000px;}
.y25e{bottom:750.345000px;}
.y8a{bottom:753.585000px;}
.y3b{bottom:757.725000px;}
.y291{bottom:757.905000px;}
.y1ef{bottom:759.525000px;}
.yb0{bottom:760.065000px;}
.y27d{bottom:761.865000px;}
.y77{bottom:765.105000px;}
.y1a0{bottom:767.985000px;}
.yed{bottom:771.405000px;}
.y6c{bottom:771.945000px;}
.y102{bottom:772.845000px;}
.y1fd{bottom:773.025000px;}
.y1ba{bottom:775.905000px;}
.y162{bottom:776.985000px;}
.y226{bottom:779.865000px;}
.y186{bottom:780.405000px;}
.y11e{bottom:783.105000px;}
.yaf{bottom:783.825000px;}
.y89{bottom:784.725000px;}
.y27c{bottom:785.625000px;}
.y76{bottom:788.865000px;}
.y6b{bottom:789.765000px;}
.y290{bottom:794.625000px;}
.y1ee{bottom:795.165000px;}
.yd{bottom:796.245000px;}
.y1fc{bottom:797.685000px;}
.y161{bottom:800.745000px;}
.y19f{bottom:803.625000px;}
.y185{bottom:804.165000px;}
.yec{bottom:807.225000px;}
.yae{bottom:807.405000px;}
.y101{bottom:808.665000px;}
.y27b{bottom:809.385000px;}
.y6a{bottom:811.725000px;}
.y88{bottom:816.045000px;}
.y36{bottom:817.305000px;}
.y17c{bottom:817.665000px;}
.y28f{bottom:818.385000px;}
.y11d{bottom:818.925000px;}
.y134{bottom:820.725000px;}
.y184{bottom:821.265000px;}
.y1fb{bottom:822.345000px;}
.y160{bottom:824.325000px;}
.y75{bottom:824.505000px;}
.y1d7{bottom:825.765000px;}
.y1b9{bottom:826.125000px;}
.y225{bottom:827.385000px;}
.y19e{bottom:828.285000px;}
.yeb{bottom:830.805000px;}
.yad{bottom:831.165000px;}
.y100{bottom:832.425000px;}
.y69{bottom:833.685000px;}
.y177{bottom:834.765000px;}
.y28d{bottom:842.145000px;}
.y11c{bottom:842.685000px;}
.y20a{bottom:843.045000px;}
.y133{bottom:844.305000px;}
.y21f{bottom:844.485000px;}
.y87{bottom:847.185000px;}
.yc{bottom:847.590000px;}
.y28e{bottom:848.130000px;}
.y74{bottom:848.310000px;}
.y15f{bottom:849.210000px;}
.y27a{bottom:851.910000px;}
.y1b8{bottom:852.810000px;}
.y19d{bottom:853.170000px;}
.yea{bottom:854.610000px;}
.yac{bottom:854.970000px;}
.y68{bottom:855.690000px;}
.y1fa{bottom:859.110000px;}
.y208{bottom:860.190000px;}
.y26f{bottom:864.510000px;}
.y28c{bottom:865.770000px;}
.y11b{bottom:866.310000px;}
.yff{bottom:868.110000px;}
.y255{bottom:868.650000px;}
.y73{bottom:872.070000px;}
.y15e{bottom:872.790000px;}
.y1d6{bottom:873.510000px;}
.y19c{bottom:876.750000px;}
.y2f{bottom:876.930000px;}
.y67{bottom:877.650000px;}
.ye9{bottom:878.370000px;}
.y86{bottom:878.550000px;}
.yab{bottom:878.730000px;}
.y26e{bottom:888.090000px;}
.y1f9{bottom:894.750000px;}
.y72{bottom:895.650000px;}
.y1d5{bottom:897.270000px;}
.y15d{bottom:897.630000px;}
.yb{bottom:898.890000px;}
.y66{bottom:899.610000px;}
.y279{bottom:899.790000px;}
.y28b{bottom:901.410000px;}
.ye8{bottom:902.130000px;}
.yaa{bottom:902.310000px;}
.yfe{bottom:903.750000px;}
.y85{bottom:909.690000px;}
.y19b{bottom:913.470000px;}
.y16d{bottom:914.010000px;}
.y1f8{bottom:918.510000px;}
.y71{bottom:919.410000px;}
.y15c{bottom:921.210000px;}
.y65{bottom:921.570000px;}
.ycc{bottom:921.930000px;}
.y278{bottom:923.370000px;}
.y26d{bottom:923.730000px;}
.ye7{bottom:925.710000px;}
.ya9{bottom:926.070000px;}
.yfd{bottom:927.510000px;}
.y28a{bottom:928.050000px;}
.y28{bottom:936.330000px;}
.y16c{bottom:937.770000px;}
.ya{bottom:938.850000px;}
.ycb{bottom:939.750000px;}
.y1d4{bottom:940.110000px;}
.y84{bottom:940.830000px;}
.y254{bottom:942.630000px;}
.y64{bottom:943.530000px;}
.y15b{bottom:944.970000px;}
.y277{bottom:947.130000px;}
.y26c{bottom:948.390000px;}
.y19a{bottom:949.290000px;}
.ye6{bottom:949.470000px;}
.ya8{bottom:949.830000px;}
.y1f7{bottom:954.330000px;}
.y70{bottom:955.230000px;}
.y16b{bottom:961.530000px;}
.y1d3{bottom:962.070000px;}
.yca{bottom:962.430000px;}
.yfc{bottom:963.330000px;}
.y63{bottom:965.490000px;}
.yd1{bottom:966.390000px;}
.y15a{bottom:968.550000px;}
.y276{bottom:970.890000px;}
.y83{bottom:972.150000px;}
.y11a{bottom:973.230000px;}
.ya7{bottom:973.410000px;}
.y1f6{bottom:977.910000px;}
.y6f{bottom:978.810000px;}
.y1d2{bottom:984.210000px;}
.y199{bottom:984.930000px;}
.yc9{bottom:985.290000px;}
.yfb{bottom:986.910000px;}
.yd0{bottom:990.150000px;}
.y250{bottom:990.510000px;}
.y159{bottom:993.390000px;}
.ya6{bottom:997.170000px;}
.y132{bottom:998.970000px;}
.y1f5{bottom:1001.670000px;}
.y6e{bottom:1002.570000px;}
.y82{bottom:1003.290000px;}
.y275{bottom:1006.530000px;}
.yc8{bottom:1007.970000px;}
.ye5{bottom:1008.870000px;}
.y61{bottom:1009.410000px;}
.yfa{bottom:1010.670000px;}
.ycf{bottom:1013.730000px;}
.y27{bottom:1014.630000px;}
.y158{bottom:1017.150000px;}
.y198{bottom:1020.570000px;}
.ya5{bottom:1020.930000px;}
.y131{bottom:1022.730000px;}
.y6d{bottom:1026.330000px;}
.y1d1{bottom:1027.050000px;}
.y274{bottom:1030.290000px;}
.yc5{bottom:1030.650000px;}
.ye4{bottom:1032.630000px;}
.y81{bottom:1034.610000px;}
.yce{bottom:1037.490000px;}
.y26{bottom:1038.210000px;}
.y157{bottom:1040.730000px;}
.y197{bottom:1044.330000px;}
.ya4{bottom:1044.690000px;}
.yf9{bottom:1046.310000px;}
.y1d0{bottom:1049.010000px;}
.y5f{bottom:1053.510000px;}
.ye3{bottom:1056.390000px;}
.y24f{bottom:1057.650000px;}
.y25{bottom:1061.970000px;}
.y156{bottom:1064.310000px;}
.y80{bottom:1065.750000px;}
.ya3{bottom:1068.270000px;}
.yf8{bottom:1070.070000px;}
.y1cf{bottom:1070.970000px;}
.y273{bottom:1072.950000px;}
.ycd{bottom:1073.310000px;}
.ye2{bottom:1079.970000px;}
.yc4{bottom:1080.150000px;}
.y24{bottom:1085.730000px;}
.y155{bottom:1088.970000px;}
.ya2{bottom:1092.030000px;}
.yf6{bottom:1093.830000px;}
.y7f{bottom:1096.890000px;}
.y5d{bottom:1098.150000px;}
.yf7{bottom:1099.770000px;}
.y154{bottom:1113.810000px;}
.ya1{bottom:1115.790000px;}
.y23{bottom:1128.030000px;}
.yf5{bottom:1136.520000px;}
.y153{bottom:1138.500000px;}
.y26b{bottom:1139.400000px;}
.y5c{bottom:1139.580000px;}
.y3{bottom:1170.180000px;}
.y1{bottom:1187.280000px;}
.h16{height:21.960000px;}
.h1a{height:21.996000px;}
.h2{height:22.500000px;}
.h33{height:31.500000px;}
.hc{height:35.460000px;}
.ha{height:35.640000px;}
.hb{height:35.676000px;}
.h46{height:35.820000px;}
.h9{height:37.440000px;}
.hd{height:37.476000px;}
.h25{height:38.671172px;}
.h40{height:42.480000px;}
.h1e{height:43.453125px;}
.h17{height:43.920000px;}
.h18{height:44.100000px;}
.h21{height:47.980898px;}
.h1c{height:48.600000px;}
.h23{height:51.416016px;}
.h3c{height:54.000000px;}
.h19{height:54.386719px;}
.h4b{height:55.019531px;}
.h6{height:56.900391px;}
.h13{height:58.680000px;}
.h14{height:58.716000px;}
.hf{height:58.860000px;}
.h15{height:58.896000px;}
.h43{height:59.436000px;}
.h12{height:59.439023px;}
.h48{height:59.580000px;}
.h47{height:62.100000px;}
.h42{height:62.280000px;}
.h11{height:65.884219px;}
.h10{height:67.824844px;}
.h4{height:68.220000px;}
.h7{height:68.554688px;}
.h3{height:71.613281px;}
.h2d{height:71.740898px;}
.h26{height:71.824219px;}
.h5{height:73.722656px;}
.h22{height:75.093750px;}
.h24{height:80.208984px;}
.h3d{height:80.703984px;}
.h3f{height:85.068618px;}
.h20{height:87.695156px;}
.h44{height:93.867188px;}
.h3e{height:100.143984px;}
.he{height:114.486328px;}
.h1b{height:125.171719px;}
.h2c{height:137.196000px;}
.h8{height:159.732422px;}
.h4a{height:160.230000px;}
.h49{height:160.560000px;}
.h45{height:180.540000px;}
.h41{height:180.570000px;}
.h4d{height:189.390000px;}
.h32{height:227.550000px;}
.h37{height:234.000000px;}
.h3a{height:239.790000px;}
.h2a{height:245.010000px;}
.h39{height:252.570000px;}
.h29{height:253.110000px;}
.h31{height:256.890000px;}
.h28{height:261.030000px;}
.h2f{height:265.710000px;}
.h4c{height:295.410000px;}
.h36{height:296.490000px;}
.h2e{height:321.915000px;}
.h34{height:330.690000px;}
.h30{height:335.415000px;}
.h35{height:344.190000px;}
.h3b{height:364.170000px;}
.h38{height:367.410000px;}
.h1f{height:421.050000px;}
.h2b{height:425.730000px;}
.h1d{height:427.575000px;}
.h27{height:428.430000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:41.796000px;}
.w6{width:101.556000px;}
.w1d{width:142.416000px;}
.w1e{width:142.956000px;}
.we{width:144.036000px;}
.w10{width:144.396000px;}
.w11{width:144.540000px;}
.wf{width:144.576000px;}
.w20{width:146.520000px;}
.w1f{width:146.736000px;}
.w14{width:169.230000px;}
.w12{width:169.770000px;}
.w2e{width:175.170000px;}
.w2f{width:175.350000px;}
.w2b{width:175.530000px;}
.w2c{width:176.070000px;}
.wb{width:220.890000px;}
.w30{width:221.070000px;}
.w2d{width:221.430000px;}
.w23{width:230.070000px;}
.w31{width:231.915000px;}
.wd{width:234.210000px;}
.w32{width:239.790000px;}
.w1a{width:240.330000px;}
.w19{width:240.375000px;}
.w3{width:240.690000px;}
.w4{width:240.870000px;}
.w2{width:240.915000px;}
.w22{width:241.230000px;}
.w1b{width:241.590000px;}
.w33{width:250.590000px;}
.wc{width:266.430000px;}
.w26{width:337.395000px;}
.w29{width:359.895000px;}
.w24{width:360.435000px;}
.w21{width:361.155000px;}
.w28{width:362.415000px;}
.w25{width:362.595000px;}
.w9{width:367.815000px;}
.w8{width:367.995000px;}
.w27{width:385.635000px;}
.w15{width:551.265000px;}
.w13{width:551.625000px;}
.w7{width:688.605000px;}
.w16{width:722.310000px;}
.w34{width:723.030000px;}
.w18{width:726.990000px;}
.w2a{width:730.410000px;}
.w1c{width:738.150000px;}
.w17{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x55{left:10.440000px;}
.x5d{left:12.096000px;}
.x45{left:24.480000px;}
.x53{left:37.440000px;}
.x37{left:39.996000px;}
.x36{left:65.010000px;}
.x4e{left:73.800000px;}
.xd{left:75.060000px;}
.x1{left:84.960000px;}
.x6{left:90.030000px;}
.x46{left:97.920000px;}
.x24{left:111.995987px;}
.xe{left:117.576000px;}
.x3{left:120.240000px;}
.x33{left:122.970000px;}
.x22{left:124.235973px;}
.x60{left:128.010000px;}
.x23{left:130.355987px;}
.x18{left:137.514000px;}
.x25{left:138.995987px;}
.x2d{left:140.790000px;}
.x32{left:143.145000px;}
.x30{left:145.290000px;}
.x5b{left:149.795987px;}
.x13{left:156.954000px;}
.x52{left:160.050000px;}
.x14{left:165.954000px;}
.x63{left:171.389987px;}
.x5e{left:173.370000px;}
.xf{left:178.419000px;}
.x1a{left:182.919000px;}
.x7{left:186.510000px;}
.x12{left:188.139000px;}
.xa{left:191.189987px;}
.x3a{left:192.989987px;}
.x26{left:196.589973px;}
.x15{left:198.759000px;}
.x16{left:202.359000px;}
.x27{left:203.609987px;}
.x43{left:205.950000px;}
.x56{left:210.495000px;}
.x59{left:211.575000px;}
.x17{left:221.079000px;}
.x19{left:223.239000px;}
.x2e{left:227.370000px;}
.x1b{left:228.990000px;}
.x2a{left:230.835000px;}
.x2b{left:231.885000px;}
.x38{left:233.130000px;}
.x4f{left:234.795000px;}
.x3f{left:238.755000px;}
.x5{left:241.245000px;}
.x58{left:242.505000px;}
.x1f{left:255.630000px;}
.x5a{left:259.635000px;}
.x5f{left:276.195000px;}
.x62{left:281.729987px;}
.x28{left:301.034987px;}
.x3b{left:315.974987px;}
.x2{left:325.875000px;}
.x49{left:335.415000px;}
.x10{left:339.375000px;}
.x50{left:340.455000px;}
.x3c{left:347.115000px;}
.x35{left:349.275000px;}
.x39{left:351.255000px;}
.x4c{left:352.335000px;}
.x47{left:356.835000px;}
.x48{left:359.355000px;}
.x40{left:361.155000px;}
.x2f{left:370.335000px;}
.x1c{left:373.575000px;}
.x4b{left:384.735000px;}
.x4a{left:422.355000px;}
.x61{left:426.854987px;}
.x9{left:434.774987px;}
.x34{left:446.115000px;}
.x4d{left:447.375000px;}
.xb{left:452.955000px;}
.x51{left:495.825000px;}
.x3d{left:504.105000px;}
.x54{left:511.665000px;}
.x1d{left:517.965000px;}
.x57{left:556.665000px;}
.x4{left:566.565000px;}
.x44{left:584.385000px;}
.x11{left:606.525000px;}
.x41{left:625.470000px;}
.x42{left:629.970000px;}
.x3e{left:637.890000px;}
.x1e{left:662.505000px;}
.x31{left:663.585000px;}
.x20{left:699.450000px;}
.x29{left:716.730000px;}
.x2c{left:721.230000px;}
.x5c{left:730.950000px;}
.x21{left:787.829987px;}
.xc{left:796.289987px;}
@media print{
.v4{vertical-align:-17.280000pt;}
.v2{vertical-align:-12.800000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.800000pt;}
.v5{vertical-align:17.280000pt;}
.v1{vertical-align:21.120000pt;}
.ls2d{letter-spacing:-0.768000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.576000pt;}
.ls13{letter-spacing:-0.512000pt;}
.ls9{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.245333pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls21{letter-spacing:-0.112000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls1d{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.086400pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.154880pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.244267pt;}
.ls6{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.282880pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.339840pt;}
.ls22{letter-spacing:2.490240pt;}
.ls29{letter-spacing:3.460907pt;}
.ls28{letter-spacing:3.582507pt;}
.ls2a{letter-spacing:3.603840pt;}
.ls25{letter-spacing:4.106240pt;}
.ls2c{letter-spacing:4.122240pt;}
.ls26{letter-spacing:19.033600pt;}
.ls1a{letter-spacing:20.783360pt;}
.ls23{letter-spacing:22.666240pt;}
.ls24{letter-spacing:24.739840pt;}
.ls17{letter-spacing:29.568000pt;}
.ls11{letter-spacing:31.087360pt;}
.lsb{letter-spacing:34.287360pt;}
.ls1b{letter-spacing:35.968000pt;}
.ls16{letter-spacing:38.703360pt;}
.ls20{letter-spacing:39.808000pt;}
.ls1e{letter-spacing:48.768000pt;}
.lse{letter-spacing:80.773120pt;}
.lsd{letter-spacing:129.391787pt;}
.lsc{letter-spacing:178.031787pt;}
.ws1b{word-spacing:-85.120000pt;}
.ws1f{word-spacing:-66.037973pt;}
.ws1e{word-spacing:-65.824640pt;}
.ws15{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-61.024640pt;}
.ws1a{word-spacing:-45.440000pt;}
.ws0{word-spacing:-33.701120pt;}
.ws1c{word-spacing:-31.943680pt;}
.wsb{word-spacing:-24.154880pt;}
.ws20{word-spacing:-22.240000pt;}
.ws21{word-spacing:-20.816640pt;}
.ws11{word-spacing:-17.009280pt;}
.ws10{word-spacing:-16.922880pt;}
.ws13{word-spacing:-14.784000pt;}
.ws22{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.656000pt;}
.ws4{word-spacing:-14.592000pt;}
.wsd{word-spacing:-14.528000pt;}
.ws2{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.400000pt;}
.wsc{word-spacing:-14.336000pt;}
.wse{word-spacing:-14.272000pt;}
.wsa{word-spacing:-14.144000pt;}
.ws9{word-spacing:-14.016000pt;}
.wsf{word-spacing:-13.952000pt;}
.ws18{word-spacing:-13.824000pt;}
.ws8{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.306880pt;}
.ws7{word-spacing:-12.249387pt;}
.ws12{word-spacing:-12.005120pt;}
.ws14{word-spacing:-10.832000pt;}
.ws19{word-spacing:-10.736000pt;}
.ws16{word-spacing:-9.445547pt;}
.ws17{word-spacing:-0.064000pt;}
.ws23{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-13.173333pt;}
._d{margin-left:-12.149333pt;}
._e{margin-left:-11.189333pt;}
._9{margin-left:-10.037760pt;}
._b{margin-left:-9.103147pt;}
._a{margin-left:-8.128000pt;}
._5{margin-left:-6.811520pt;}
._6{margin-left:-4.812800pt;}
._3{margin-left:-3.510400pt;}
._2{margin-left:-2.195840pt;}
._7{margin-left:-1.104213pt;}
._0{width:1.274880pt;}
._1{width:2.717867pt;}
._10{width:3.765760pt;}
._11{width:16.448000pt;}
._4{width:75.898880pt;}
._8{width:753.802667pt;}
._12{width:1249.546667pt;}
._f{width:1920.629333pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fsb{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsd{font-size:80.000000pt;}
.fsa{font-size:85.120000pt;}
.fsc{font-size:89.723461pt;}
.fs4{font-size:106.880000pt;}
.fs2{font-size:149.120000pt;}
.y58{bottom:-12.960000pt;}
.y0{bottom:0.000000pt;}
.y1f1{bottom:0.320000pt;}
.y174{bottom:1.920000pt;}
.y269{bottom:3.680000pt;}
.y5e{bottom:4.320000pt;}
.y3e{bottom:4.480000pt;}
.y2{bottom:4.800000pt;}
.y3c{bottom:5.920000pt;}
.y268{bottom:6.240000pt;}
.y33{bottom:7.040000pt;}
.yc7{bottom:8.480000pt;}
.y50{bottom:10.240000pt;}
.y5a{bottom:12.160000pt;}
.y38{bottom:12.800000pt;}
.y4b{bottom:13.120000pt;}
.y4e{bottom:13.280000pt;}
.y2a{bottom:14.080000pt;}
.y41{bottom:14.240000pt;}
.y8{bottom:15.200000pt;}
.y257{bottom:15.520000pt;}
.y5{bottom:15.680000pt;}
.y47{bottom:16.000000pt;}
.y30{bottom:16.160000pt;}
.y18{bottom:16.320000pt;}
.y224{bottom:16.360000pt;}
.y21e{bottom:16.474667pt;}
.y13{bottom:16.480000pt;}
.y16{bottom:16.506667pt;}
.y179{bottom:16.520000pt;}
.y25f{bottom:16.640000pt;}
.y52{bottom:17.160000pt;}
.y22c{bottom:17.280000pt;}
.y35{bottom:17.440000pt;}
.y2e{bottom:17.600000pt;}
.y56{bottom:17.640000pt;}
.y17b{bottom:17.800000pt;}
.y11{bottom:18.080000pt;}
.y14b{bottom:18.560000pt;}
.y49{bottom:18.720000pt;}
.y2c{bottom:18.880000pt;}
.y54{bottom:18.920000pt;}
.y14e{bottom:20.480000pt;}
.y3d{bottom:21.920000pt;}
.y251{bottom:22.560000pt;}
.y32{bottom:23.200000pt;}
.y24e{bottom:23.360000pt;}
.y60{bottom:23.840000pt;}
.y62{bottom:24.000000pt;}
.y29{bottom:27.200000pt;}
.y37{bottom:27.240000pt;}
.y24d{bottom:27.680000pt;}
.y201{bottom:27.840000pt;}
.yc6{bottom:28.000000pt;}
.y17f{bottom:28.026667pt;}
.y178{bottom:28.040000pt;}
.y22b{bottom:28.800000pt;}
.y23a{bottom:29.120000pt;}
.y17a{bottom:29.320000pt;}
.y144{bottom:29.760000pt;}
.y17e{bottom:29.786667pt;}
.y140{bottom:30.720000pt;}
.y223{bottom:31.080000pt;}
.y21d{bottom:31.194667pt;}
.y13c{bottom:31.200000pt;}
.y271{bottom:31.226667pt;}
.y7{bottom:31.520000pt;}
.y13e{bottom:32.160000pt;}
.y221{bottom:32.840000pt;}
.y14a{bottom:33.280000pt;}
.y259{bottom:34.080000pt;}
.y2b{bottom:35.040000pt;}
.y14d{bottom:35.200000pt;}
.y34{bottom:35.360000pt;}
.y3a{bottom:35.400000pt;}
.y2d{bottom:35.520000pt;}
.y48{bottom:36.160000pt;}
.y44{bottom:36.320000pt;}
.y53{bottom:36.360000pt;}
.y256{bottom:36.640000pt;}
.y3f{bottom:36.800000pt;}
.y42{bottom:36.960000pt;}
.y55{bottom:37.000000pt;}
.y25a{bottom:37.600000pt;}
.y261{bottom:37.760000pt;}
.y4c{bottom:39.360000pt;}
.y31{bottom:39.520000pt;}
.y39{bottom:39.560000pt;}
.y262{bottom:40.000000pt;}
.y258{bottom:40.160000pt;}
.y239{bottom:40.640000pt;}
.y18f{bottom:41.320000pt;}
.y190{bottom:42.280000pt;}
.y21c{bottom:42.554667pt;}
.y270{bottom:42.586667pt;}
.y222{bottom:42.600000pt;}
.y148{bottom:42.720000pt;}
.y220{bottom:44.360000pt;}
.y143{bottom:44.480000pt;}
.y149{bottom:44.800000pt;}
.y13f{bottom:45.440000pt;}
.y14c{bottom:46.720000pt;}
.y6{bottom:47.840000pt;}
.y9{bottom:51.392000pt;}
.y142{bottom:55.840000pt;}
.y13b{bottom:56.000000pt;}
.y13d{bottom:56.960000pt;}
.y4{bottom:66.592000pt;}
.y22{bottom:70.592000pt;}
.y119{bottom:88.032000pt;}
.y29d{bottom:88.192000pt;}
.y118{bottom:92.672000pt;}
.y29c{bottom:92.832000pt;}
.y152{bottom:95.232000pt;}
.y196{bottom:96.832000pt;}
.y24c{bottom:100.032000pt;}
.y1ed{bottom:100.512000pt;}
.y21b{bottom:102.432000pt;}
.y117{bottom:104.352000pt;}
.y29b{bottom:105.312000pt;}
.ya0{bottom:105.952000pt;}
.y116{bottom:108.992000pt;}
.y1ce{bottom:109.152000pt;}
.y16a{bottom:111.712000pt;}
.y151{bottom:116.192000pt;}
.y195{bottom:118.752000pt;}
.y1f4{bottom:119.072000pt;}
.y115{bottom:121.472000pt;}
.y1ec{bottom:121.632000pt;}
.y24b{bottom:122.112000pt;}
.y21a{bottom:123.552000pt;}
.y25d{bottom:124.160000pt;}
.y253{bottom:124.200000pt;}
.y9f{bottom:127.072000pt;}
.y5b{bottom:128.192000pt;}
.y1b7{bottom:128.672000pt;}
.y1cd{bottom:130.272000pt;}
.ye1{bottom:130.752000pt;}
.y169{bottom:132.672000pt;}
.y1f3{bottom:134.266667pt;}
.y26a{bottom:138.906667pt;}
.y237{bottom:139.706667pt;}
.y194{bottom:140.666667pt;}
.y1eb{bottom:142.746667pt;}
.y59{bottom:144.186667pt;}
.y219{bottom:144.666667pt;}
.y25c{bottom:145.280000pt;}
.y252{bottom:145.320000pt;}
.y130{bottom:148.026667pt;}
.y9e{bottom:148.186667pt;}
.y1cc{bottom:151.386667pt;}
.ye0{bottom:151.866667pt;}
.y168{bottom:153.786667pt;}
.y24a{bottom:154.746667pt;}
.y1b6{bottom:160.506667pt;}
.y236{bottom:160.826667pt;}
.y193{bottom:162.586667pt;}
.yf4{bottom:163.546667pt;}
.y1ea{bottom:163.866667pt;}
.y218{bottom:165.626667pt;}
.y267{bottom:166.906667pt;}
.y12f{bottom:169.146667pt;}
.y9d{bottom:169.306667pt;}
.y289{bottom:176.186667pt;}
.y21{bottom:178.266667pt;}
.y207{bottom:179.866667pt;}
.y1b5{bottom:181.466667pt;}
.y235{bottom:181.786667pt;}
.y1cb{bottom:183.066667pt;}
.ydf{bottom:183.546667pt;}
.y114{bottom:184.346667pt;}
.y192{bottom:184.506667pt;}
.yf3{bottom:184.666667pt;}
.y167{bottom:185.466667pt;}
.y249{bottom:186.426667pt;}
.y9c{bottom:190.266667pt;}
.y20{bottom:194.266667pt;}
.y1e9{bottom:195.386667pt;}
.y57{bottom:196.986667pt;}
.y217{bottom:197.466667pt;}
.y150{bottom:200.826667pt;}
.y206{bottom:200.986667pt;}
.y1b4{bottom:202.586667pt;}
.y234{bottom:202.906667pt;}
.y1ca{bottom:204.186667pt;}
.yde{bottom:204.666667pt;}
.y113{bottom:205.466667pt;}
.yf2{bottom:205.786667pt;}
.y166{bottom:206.586667pt;}
.y12e{bottom:207.066667pt;}
.y9b{bottom:211.386667pt;}
.y191{bottom:217.306667pt;}
.y248{bottom:218.266667pt;}
.y216{bottom:218.586667pt;}
.y13a{bottom:221.946667pt;}
.y205{bottom:222.106667pt;}
.y1b3{bottom:223.706667pt;}
.y233{bottom:224.026667pt;}
.y1c9{bottom:225.146667pt;}
.ydd{bottom:225.786667pt;}
.y1f{bottom:226.426667pt;}
.yf1{bottom:226.746667pt;}
.yc3{bottom:227.066667pt;}
.y165{bottom:227.706667pt;}
.y9a{bottom:232.506667pt;}
.y1e8{bottom:239.226667pt;}
.y139{bottom:242.906667pt;}
.y204{bottom:243.066667pt;}
.y232{bottom:245.146667pt;}
.y1c8{bottom:246.266667pt;}
.ydc{bottom:246.746667pt;}
.y209{bottom:248.346667pt;}
.y12d{bottom:249.466667pt;}
.y51{bottom:249.946667pt;}
.y215{bottom:250.306667pt;}
.y99{bottom:253.666667pt;}
.y1b2{bottom:255.426667pt;}
.y112{bottom:258.306667pt;}
.yf0{bottom:258.626667pt;}
.yc2{bottom:258.786667pt;}
.y164{bottom:259.426667pt;}
.y1e{bottom:260.386667pt;}
.y1e7{bottom:261.186667pt;}
.y138{bottom:264.066667pt;}
.y203{bottom:264.226667pt;}
.y1c7{bottom:267.426667pt;}
.ydb{bottom:267.906667pt;}
.y12c{bottom:270.626667pt;}
.y214{bottom:271.426667pt;}
.yef{bottom:273.826667pt;}
.y98{bottom:274.626667pt;}
.y1b1{bottom:276.546667pt;}
.y231{bottom:276.866667pt;}
.y29a{bottom:279.266667pt;}
.yc1{bottom:279.906667pt;}
.y163{bottom:280.546667pt;}
.y247{bottom:281.506667pt;}
.y1e6{bottom:283.106667pt;}
.y14f{bottom:285.346667pt;}
.yda{bottom:289.026667pt;}
.y111{bottom:289.986667pt;}
.y12b{bottom:291.746667pt;}
.y213{bottom:292.386667pt;}
.y1d{bottom:292.706667pt;}
.y97{bottom:295.746667pt;}
.y137{bottom:295.906667pt;}
.y1b0{bottom:297.666667pt;}
.y230{bottom:297.986667pt;}
.y1c6{bottom:299.106667pt;}
.y147{bottom:300.546667pt;}
.yc0{bottom:300.866667pt;}
.y246{bottom:302.626667pt;}
.y4f{bottom:302.946667pt;}
.y202{bottom:306.466667pt;}
.y266{bottom:309.346667pt;}
.yd9{bottom:310.146667pt;}
.y299{bottom:310.946667pt;}
.y110{bottom:311.106667pt;}
.y212{bottom:314.306667pt;}
.y1e5{bottom:315.906667pt;}
.y136{bottom:316.866667pt;}
.y1af{bottom:318.786667pt;}
.y22f{bottom:318.946667pt;}
.y176{bottom:320.706667pt;}
.y200{bottom:321.666667pt;}
.y12a{bottom:323.426667pt;}
.y245{bottom:323.586667pt;}
.y1c{bottom:326.626667pt;}
.y1c5{bottom:330.946667pt;}
.y135{bottom:332.066667pt;}
.y10f{bottom:332.226667pt;}
.y96{bottom:333.346667pt;}
.y211{bottom:336.226667pt;}
.ybf{bottom:338.466667pt;}
.y1ae{bottom:339.746667pt;}
.yd8{bottom:341.826667pt;}
.y129{bottom:344.546667pt;}
.y1e4{bottom:347.586667pt;}
.y22e{bottom:350.786667pt;}
.y1c4{bottom:351.906667pt;}
.y10e{bottom:353.186667pt;}
.y244{bottom:355.426667pt;}
.y4d{bottom:355.906667pt;}
.y210{bottom:358.306667pt;}
.y1b{bottom:358.946667pt;}
.y1ad{bottom:360.706667pt;}
.y288{bottom:361.026667pt;}
.yd7{bottom:362.946667pt;}
.y95{bottom:364.706667pt;}
.y128{bottom:365.666667pt;}
.y1e3{bottom:368.706667pt;}
.y22d{bottom:371.746667pt;}
.y175{bottom:373.506667pt;}
.y298{bottom:374.146667pt;}
.y183{bottom:374.306667pt;}
.y243{bottom:376.546667pt;}
.y20f{bottom:379.266667pt;}
.ybe{bottom:380.546667pt;}
.y1ac{bottom:382.786667pt;}
.y1c3{bottom:383.746667pt;}
.yd6{bottom:384.066667pt;}
.y127{bottom:386.626667pt;}
.y173{bottom:388.706667pt;}
.y22a{bottom:389.666667pt;}
.y1e2{bottom:389.826667pt;}
.y1a{bottom:391.106667pt;}
.y94{bottom:392.386667pt;}
.y287{bottom:392.706667pt;}
.y297{bottom:395.266667pt;}
.y242{bottom:397.506667pt;}
.y10d{bottom:397.826667pt;}
.ybd{bottom:401.506667pt;}
.y1ab{bottom:403.746667pt;}
.y1c2{bottom:404.866667pt;}
.yd5{bottom:405.026667pt;}
.y182{bottom:406.146667pt;}
.y126{bottom:407.746667pt;}
.y4a{bottom:408.866667pt;}
.y20e{bottom:411.906667pt;}
.y286{bottom:414.626667pt;}
.y93{bottom:420.066667pt;}
.y1e1{bottom:421.506667pt;}
.ybc{bottom:422.626667pt;}
.y19{bottom:423.426667pt;}
.y1c1{bottom:425.826667pt;}
.yd4{bottom:426.146667pt;}
.y181{bottom:427.106667pt;}
.y1f2{bottom:428.226667pt;}
.y241{bottom:429.346667pt;}
.y20d{bottom:433.026667pt;}
.y296{bottom:433.186667pt;}
.y10c{bottom:433.506667pt;}
.y1aa{bottom:436.546667pt;}
.y125{bottom:439.426667pt;}
.y1e0{bottom:442.626667pt;}
.ybb{bottom:443.746667pt;}
.yd3{bottom:447.266667pt;}
.y285{bottom:447.426667pt;}
.y92{bottom:447.906667pt;}
.y240{bottom:450.306667pt;}
.y10b{bottom:454.626667pt;}
.y17{bottom:455.746667pt;}
.y1f0{bottom:456.226667pt;}
.y1a9{bottom:457.506667pt;}
.y180{bottom:458.946667pt;}
.y124{bottom:460.546667pt;}
.y46{bottom:461.826667pt;}
.yd2{bottom:462.466667pt;}
.y1c0{bottom:463.746667pt;}
.yba{bottom:464.706667pt;}
.y265{bottom:468.706667pt;}
.y23f{bottom:471.426667pt;}
.y272{bottom:473.986667pt;}
.y17d{bottom:474.146667pt;}
.y91{bottom:475.586667pt;}
.y18e{bottom:477.186667pt;}
.y284{bottom:478.946667pt;}
.yb9{bottom:485.826667pt;}
.y10a{bottom:486.466667pt;}
.y15{bottom:487.906667pt;}
.y1a8{bottom:489.186667pt;}
.y264{bottom:489.666667pt;}
.y1df{bottom:495.426667pt;}
.y123{bottom:498.466667pt;}
.y18d{bottom:499.106667pt;}
.y7e{bottom:500.546667pt;}
.y283{bottom:500.866667pt;}
.y90{bottom:503.453333pt;}
.y1bf{bottom:506.173333pt;}
.y20c{bottom:506.813333pt;}
.yb8{bottom:506.973333pt;}
.y109{bottom:507.453333pt;}
.y23e{bottom:509.373333pt;}
.y1a7{bottom:511.133333pt;}
.y45{bottom:514.653333pt;}
.y1de{bottom:516.573333pt;}
.y14{bottom:520.253333pt;}
.y18c{bottom:521.053333pt;}
.y263{bottom:521.373333pt;}
.y20b{bottom:524.733333pt;}
.y1be{bottom:527.133333pt;}
.y172{bottom:527.293333pt;}
.yb7{bottom:528.093333pt;}
.y295{bottom:528.413333pt;}
.y8f{bottom:531.133333pt;}
.y7d{bottom:532.253333pt;}
.y1a6{bottom:533.053333pt;}
.y282{bottom:533.693333pt;}
.y146{bottom:534.813333pt;}
.y1dd{bottom:537.533333pt;}
.y25b{bottom:538.333333pt;}
.y108{bottom:539.293333pt;}
.y122{bottom:540.893333pt;}
.yb6{bottom:549.053333pt;}
.y1bd{bottom:549.213333pt;}
.y294{bottom:549.533333pt;}
.y23d{bottom:551.773333pt;}
.y7c{bottom:553.373333pt;}
.y18b{bottom:553.853333pt;}
.y12{bottom:554.173333pt;}
.y281{bottom:554.813333pt;}
.y1a5{bottom:555.133333pt;}
.y145{bottom:555.933333pt;}
.y1dc{bottom:558.653333pt;}
.y8e{bottom:558.813333pt;}
.y171{bottom:558.973333pt;}
.y107{bottom:560.253333pt;}
.y121{bottom:562.013333pt;}
.y43{bottom:567.613333pt;}
.yb5{bottom:570.173333pt;}
.y141{bottom:571.133333pt;}
.y23c{bottom:572.893333pt;}
.y280{bottom:575.773333pt;}
.y1a4{bottom:576.253333pt;}
.y170{bottom:580.093333pt;}
.y7b{bottom:585.053333pt;}
.y18a{bottom:585.533333pt;}
.y10{bottom:586.493333pt;}
.y8d{bottom:586.653333pt;}
.y293{bottom:587.453333pt;}
.y1db{bottom:590.493333pt;}
.yb4{bottom:591.293333pt;}
.y106{bottom:592.093333pt;}
.y1a3{bottom:597.213333pt;}
.y120{bottom:599.933333pt;}
.y16f{bottom:601.213333pt;}
.y260{bottom:601.533333pt;}
.y1bc{bottom:602.973333pt;}
.y23b{bottom:604.573333pt;}
.y7a{bottom:606.173333pt;}
.y189{bottom:607.453333pt;}
.yb3{bottom:612.413333pt;}
.y105{bottom:613.213333pt;}
.y27f{bottom:613.693333pt;}
.y8c{bottom:614.333333pt;}
.y229{bottom:619.293333pt;}
.y238{bottom:619.773333pt;}
.y40{bottom:620.573333pt;}
.y1da{bottom:622.173333pt;}
.y79{bottom:627.293333pt;}
.y188{bottom:629.373333pt;}
.y1a2{bottom:629.853333pt;}
.y16e{bottom:632.893333pt;}
.yb2{bottom:633.373333pt;}
.y104{bottom:634.173333pt;}
.yf{bottom:636.893333pt;}
.y228{bottom:640.413333pt;}
.y1bb{bottom:640.893333pt;}
.y8b{bottom:642.173333pt;}
.y1d9{bottom:643.293333pt;}
.y1ff{bottom:644.093333pt;}
.y78{bottom:648.413333pt;}
.y11f{bottom:648.893333pt;}
.y1a1{bottom:650.973333pt;}
.y292{bottom:651.773333pt;}
.yb1{bottom:654.493333pt;}
.y27e{bottom:656.093333pt;}
.y227{bottom:661.533333pt;}
.y187{bottom:662.013333pt;}
.ye{bottom:662.173333pt;}
.y1d8{bottom:664.253333pt;}
.yee{bottom:664.733333pt;}
.y1fe{bottom:665.053333pt;}
.y103{bottom:666.013333pt;}
.y25e{bottom:666.973333pt;}
.y8a{bottom:669.853333pt;}
.y3b{bottom:673.533333pt;}
.y291{bottom:673.693333pt;}
.y1ef{bottom:675.133333pt;}
.yb0{bottom:675.613333pt;}
.y27d{bottom:677.213333pt;}
.y77{bottom:680.093333pt;}
.y1a0{bottom:682.653333pt;}
.yed{bottom:685.693333pt;}
.y6c{bottom:686.173333pt;}
.y102{bottom:686.973333pt;}
.y1fd{bottom:687.133333pt;}
.y1ba{bottom:689.693333pt;}
.y162{bottom:690.653333pt;}
.y226{bottom:693.213333pt;}
.y186{bottom:693.693333pt;}
.y11e{bottom:696.093333pt;}
.yaf{bottom:696.733333pt;}
.y89{bottom:697.533333pt;}
.y27c{bottom:698.333333pt;}
.y76{bottom:701.213333pt;}
.y6b{bottom:702.013333pt;}
.y290{bottom:706.333333pt;}
.y1ee{bottom:706.813333pt;}
.yd{bottom:707.773333pt;}
.y1fc{bottom:709.053333pt;}
.y161{bottom:711.773333pt;}
.y19f{bottom:714.333333pt;}
.y185{bottom:714.813333pt;}
.yec{bottom:717.533333pt;}
.yae{bottom:717.693333pt;}
.y101{bottom:718.813333pt;}
.y27b{bottom:719.453333pt;}
.y6a{bottom:721.533333pt;}
.y88{bottom:725.373333pt;}
.y36{bottom:726.493333pt;}
.y17c{bottom:726.813333pt;}
.y28f{bottom:727.453333pt;}
.y11d{bottom:727.933333pt;}
.y134{bottom:729.533333pt;}
.y184{bottom:730.013333pt;}
.y1fb{bottom:730.973333pt;}
.y160{bottom:732.733333pt;}
.y75{bottom:732.893333pt;}
.y1d7{bottom:734.013333pt;}
.y1b9{bottom:734.333333pt;}
.y225{bottom:735.453333pt;}
.y19e{bottom:736.253333pt;}
.yeb{bottom:738.493333pt;}
.yad{bottom:738.813333pt;}
.y100{bottom:739.933333pt;}
.y69{bottom:741.053333pt;}
.y177{bottom:742.013333pt;}
.y28d{bottom:748.573333pt;}
.y11c{bottom:749.053333pt;}
.y20a{bottom:749.373333pt;}
.y133{bottom:750.493333pt;}
.y21f{bottom:750.653333pt;}
.y87{bottom:753.053333pt;}
.yc{bottom:753.413333pt;}
.y28e{bottom:753.893333pt;}
.y74{bottom:754.053333pt;}
.y15f{bottom:754.853333pt;}
.y27a{bottom:757.253333pt;}
.y1b8{bottom:758.053333pt;}
.y19d{bottom:758.373333pt;}
.yea{bottom:759.653333pt;}
.yac{bottom:759.973333pt;}
.y68{bottom:760.613333pt;}
.y1fa{bottom:763.653333pt;}
.y208{bottom:764.613333pt;}
.y26f{bottom:768.453333pt;}
.y28c{bottom:769.573333pt;}
.y11b{bottom:770.053333pt;}
.yff{bottom:771.653333pt;}
.y255{bottom:772.133333pt;}
.y73{bottom:775.173333pt;}
.y15e{bottom:775.813333pt;}
.y1d6{bottom:776.453333pt;}
.y19c{bottom:779.333333pt;}
.y2f{bottom:779.493333pt;}
.y67{bottom:780.133333pt;}
.ye9{bottom:780.773333pt;}
.y86{bottom:780.933333pt;}
.yab{bottom:781.093333pt;}
.y26e{bottom:789.413333pt;}
.y1f9{bottom:795.333333pt;}
.y72{bottom:796.133333pt;}
.y1d5{bottom:797.573333pt;}
.y15d{bottom:797.893333pt;}
.yb{bottom:799.013333pt;}
.y66{bottom:799.653333pt;}
.y279{bottom:799.813333pt;}
.y28b{bottom:801.253333pt;}
.ye8{bottom:801.893333pt;}
.yaa{bottom:802.053333pt;}
.yfe{bottom:803.333333pt;}
.y85{bottom:808.613333pt;}
.y19b{bottom:811.973333pt;}
.y16d{bottom:812.453333pt;}
.y1f8{bottom:816.453333pt;}
.y71{bottom:817.253333pt;}
.y15c{bottom:818.853333pt;}
.y65{bottom:819.173333pt;}
.ycc{bottom:819.493333pt;}
.y278{bottom:820.773333pt;}
.y26d{bottom:821.093333pt;}
.ye7{bottom:822.853333pt;}
.ya9{bottom:823.173333pt;}
.yfd{bottom:824.453333pt;}
.y28a{bottom:824.933333pt;}
.y28{bottom:832.293333pt;}
.y16c{bottom:833.573333pt;}
.ya{bottom:834.533333pt;}
.ycb{bottom:835.333333pt;}
.y1d4{bottom:835.653333pt;}
.y84{bottom:836.293333pt;}
.y254{bottom:837.893333pt;}
.y64{bottom:838.693333pt;}
.y15b{bottom:839.973333pt;}
.y277{bottom:841.893333pt;}
.y26c{bottom:843.013333pt;}
.y19a{bottom:843.813333pt;}
.ye6{bottom:843.973333pt;}
.ya8{bottom:844.293333pt;}
.y1f7{bottom:848.293333pt;}
.y70{bottom:849.093333pt;}
.y16b{bottom:854.693333pt;}
.y1d3{bottom:855.173333pt;}
.yca{bottom:855.493333pt;}
.yfc{bottom:856.293333pt;}
.y63{bottom:858.213333pt;}
.yd1{bottom:859.013333pt;}
.y15a{bottom:860.933333pt;}
.y276{bottom:863.013333pt;}
.y83{bottom:864.133333pt;}
.y11a{bottom:865.093333pt;}
.ya7{bottom:865.253333pt;}
.y1f6{bottom:869.253333pt;}
.y6f{bottom:870.053333pt;}
.y1d2{bottom:874.853333pt;}
.y199{bottom:875.493333pt;}
.yc9{bottom:875.813333pt;}
.yfb{bottom:877.253333pt;}
.yd0{bottom:880.133333pt;}
.y250{bottom:880.453333pt;}
.y159{bottom:883.013333pt;}
.ya6{bottom:886.373333pt;}
.y132{bottom:887.973333pt;}
.y1f5{bottom:890.373333pt;}
.y6e{bottom:891.173333pt;}
.y82{bottom:891.813333pt;}
.y275{bottom:894.693333pt;}
.yc8{bottom:895.973333pt;}
.ye5{bottom:896.773333pt;}
.y61{bottom:897.253333pt;}
.yfa{bottom:898.373333pt;}
.ycf{bottom:901.093333pt;}
.y27{bottom:901.893333pt;}
.y158{bottom:904.133333pt;}
.y198{bottom:907.173333pt;}
.ya5{bottom:907.493333pt;}
.y131{bottom:909.093333pt;}
.y6d{bottom:912.293333pt;}
.y1d1{bottom:912.933333pt;}
.y274{bottom:915.813333pt;}
.yc5{bottom:916.133333pt;}
.ye4{bottom:917.893333pt;}
.y81{bottom:919.653333pt;}
.yce{bottom:922.213333pt;}
.y26{bottom:922.853333pt;}
.y157{bottom:925.093333pt;}
.y197{bottom:928.293333pt;}
.ya4{bottom:928.613333pt;}
.yf9{bottom:930.053333pt;}
.y1d0{bottom:932.453333pt;}
.y5f{bottom:936.453333pt;}
.ye3{bottom:939.013333pt;}
.y24f{bottom:940.133333pt;}
.y25{bottom:943.973333pt;}
.y156{bottom:946.053333pt;}
.y80{bottom:947.333333pt;}
.ya3{bottom:949.573333pt;}
.yf8{bottom:951.173333pt;}
.y1cf{bottom:951.973333pt;}
.y273{bottom:953.733333pt;}
.ycd{bottom:954.053333pt;}
.ye2{bottom:959.973333pt;}
.yc4{bottom:960.133333pt;}
.y24{bottom:965.093333pt;}
.y155{bottom:967.973333pt;}
.ya2{bottom:970.693333pt;}
.yf6{bottom:972.293333pt;}
.y7f{bottom:975.013333pt;}
.y5d{bottom:976.133333pt;}
.yf7{bottom:977.573333pt;}
.y154{bottom:990.053333pt;}
.ya1{bottom:991.813333pt;}
.y23{bottom:1002.693333pt;}
.yf5{bottom:1010.240000pt;}
.y153{bottom:1012.000000pt;}
.y26b{bottom:1012.800000pt;}
.y5c{bottom:1012.960000pt;}
.y3{bottom:1040.160000pt;}
.y1{bottom:1055.360000pt;}
.h16{height:19.520000pt;}
.h1a{height:19.552000pt;}
.h2{height:20.000000pt;}
.h33{height:28.000000pt;}
.hc{height:31.520000pt;}
.ha{height:31.680000pt;}
.hb{height:31.712000pt;}
.h46{height:31.840000pt;}
.h9{height:33.280000pt;}
.hd{height:33.312000pt;}
.h25{height:34.374375pt;}
.h40{height:37.760000pt;}
.h1e{height:38.625000pt;}
.h17{height:39.040000pt;}
.h18{height:39.200000pt;}
.h21{height:42.649687pt;}
.h1c{height:43.200000pt;}
.h23{height:45.703125pt;}
.h3c{height:48.000000pt;}
.h19{height:48.343750pt;}
.h4b{height:48.906250pt;}
.h6{height:50.578125pt;}
.h13{height:52.160000pt;}
.h14{height:52.192000pt;}
.hf{height:52.320000pt;}
.h15{height:52.352000pt;}
.h43{height:52.832000pt;}
.h12{height:52.834688pt;}
.h48{height:52.960000pt;}
.h47{height:55.200000pt;}
.h42{height:55.360000pt;}
.h11{height:58.563750pt;}
.h10{height:60.288750pt;}
.h4{height:60.640000pt;}
.h7{height:60.937500pt;}
.h3{height:63.656250pt;}
.h2d{height:63.769687pt;}
.h26{height:63.843750pt;}
.h5{height:65.531250pt;}
.h22{height:66.750000pt;}
.h24{height:71.296875pt;}
.h3d{height:71.736875pt;}
.h3f{height:75.616550pt;}
.h20{height:77.951250pt;}
.h44{height:83.437500pt;}
.h3e{height:89.016875pt;}
.he{height:101.765625pt;}
.h1b{height:111.263750pt;}
.h2c{height:121.952000pt;}
.h8{height:141.984375pt;}
.h4a{height:142.426667pt;}
.h49{height:142.720000pt;}
.h45{height:160.480000pt;}
.h41{height:160.506667pt;}
.h4d{height:168.346667pt;}
.h32{height:202.266667pt;}
.h37{height:208.000000pt;}
.h3a{height:213.146667pt;}
.h2a{height:217.786667pt;}
.h39{height:224.506667pt;}
.h29{height:224.986667pt;}
.h31{height:228.346667pt;}
.h28{height:232.026667pt;}
.h2f{height:236.186667pt;}
.h4c{height:262.586667pt;}
.h36{height:263.546667pt;}
.h2e{height:286.146667pt;}
.h34{height:293.946667pt;}
.h30{height:298.146667pt;}
.h35{height:305.946667pt;}
.h3b{height:323.706667pt;}
.h38{height:326.586667pt;}
.h1f{height:374.266667pt;}
.h2b{height:378.426667pt;}
.h1d{height:380.066667pt;}
.h27{height:380.826667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:37.152000pt;}
.w6{width:90.272000pt;}
.w1d{width:126.592000pt;}
.w1e{width:127.072000pt;}
.we{width:128.032000pt;}
.w10{width:128.352000pt;}
.w11{width:128.480000pt;}
.wf{width:128.512000pt;}
.w20{width:130.240000pt;}
.w1f{width:130.432000pt;}
.w14{width:150.426667pt;}
.w12{width:150.906667pt;}
.w2e{width:155.706667pt;}
.w2f{width:155.866667pt;}
.w2b{width:156.026667pt;}
.w2c{width:156.506667pt;}
.wb{width:196.346667pt;}
.w30{width:196.506667pt;}
.w2d{width:196.826667pt;}
.w23{width:204.506667pt;}
.w31{width:206.146667pt;}
.wd{width:208.186667pt;}
.w32{width:213.146667pt;}
.w1a{width:213.626667pt;}
.w19{width:213.666667pt;}
.w3{width:213.946667pt;}
.w4{width:214.106667pt;}
.w2{width:214.146667pt;}
.w22{width:214.426667pt;}
.w1b{width:214.746667pt;}
.w33{width:222.746667pt;}
.wc{width:236.826667pt;}
.w26{width:299.906667pt;}
.w29{width:319.906667pt;}
.w24{width:320.386667pt;}
.w21{width:321.026667pt;}
.w28{width:322.146667pt;}
.w25{width:322.306667pt;}
.w9{width:326.946667pt;}
.w8{width:327.106667pt;}
.w27{width:342.786667pt;}
.w15{width:490.013333pt;}
.w13{width:490.333333pt;}
.w7{width:612.093333pt;}
.w16{width:642.053333pt;}
.w34{width:642.693333pt;}
.w18{width:646.213333pt;}
.w2a{width:649.253333pt;}
.w1c{width:656.133333pt;}
.w17{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x55{left:9.280000pt;}
.x5d{left:10.752000pt;}
.x45{left:21.760000pt;}
.x53{left:33.280000pt;}
.x37{left:35.552000pt;}
.x36{left:57.786667pt;}
.x4e{left:65.600000pt;}
.xd{left:66.720000pt;}
.x1{left:75.520000pt;}
.x6{left:80.026667pt;}
.x46{left:87.040000pt;}
.x24{left:99.551988pt;}
.xe{left:104.512000pt;}
.x3{left:106.880000pt;}
.x33{left:109.306667pt;}
.x22{left:110.431976pt;}
.x60{left:113.786667pt;}
.x23{left:115.871988pt;}
.x18{left:122.234667pt;}
.x25{left:123.551988pt;}
.x2d{left:125.146667pt;}
.x32{left:127.240000pt;}
.x30{left:129.146667pt;}
.x5b{left:133.151988pt;}
.x13{left:139.514667pt;}
.x52{left:142.266667pt;}
.x14{left:147.514667pt;}
.x63{left:152.346655pt;}
.x5e{left:154.106667pt;}
.xf{left:158.594667pt;}
.x1a{left:162.594667pt;}
.x7{left:165.786667pt;}
.x12{left:167.234667pt;}
.xa{left:169.946655pt;}
.x3a{left:171.546655pt;}
.x26{left:174.746643pt;}
.x15{left:176.674667pt;}
.x16{left:179.874667pt;}
.x27{left:180.986655pt;}
.x43{left:183.066667pt;}
.x56{left:187.106667pt;}
.x59{left:188.066667pt;}
.x17{left:196.514667pt;}
.x19{left:198.434667pt;}
.x2e{left:202.106667pt;}
.x1b{left:203.546667pt;}
.x2a{left:205.186667pt;}
.x2b{left:206.120000pt;}
.x38{left:207.226667pt;}
.x4f{left:208.706667pt;}
.x3f{left:212.226667pt;}
.x5{left:214.440000pt;}
.x58{left:215.560000pt;}
.x1f{left:227.226667pt;}
.x5a{left:230.786667pt;}
.x5f{left:245.506667pt;}
.x62{left:250.426655pt;}
.x28{left:267.586655pt;}
.x3b{left:280.866655pt;}
.x2{left:289.666667pt;}
.x49{left:298.146667pt;}
.x10{left:301.666667pt;}
.x50{left:302.626667pt;}
.x3c{left:308.546667pt;}
.x35{left:310.466667pt;}
.x39{left:312.226667pt;}
.x4c{left:313.186667pt;}
.x47{left:317.186667pt;}
.x48{left:319.426667pt;}
.x40{left:321.026667pt;}
.x2f{left:329.186667pt;}
.x1c{left:332.066667pt;}
.x4b{left:341.986667pt;}
.x4a{left:375.426667pt;}
.x61{left:379.426655pt;}
.x9{left:386.466655pt;}
.x34{left:396.546667pt;}
.x4d{left:397.666667pt;}
.xb{left:402.626667pt;}
.x51{left:440.733333pt;}
.x3d{left:448.093333pt;}
.x54{left:454.813333pt;}
.x1d{left:460.413333pt;}
.x57{left:494.813333pt;}
.x4{left:503.613333pt;}
.x44{left:519.453333pt;}
.x11{left:539.133333pt;}
.x41{left:555.973333pt;}
.x42{left:559.973333pt;}
.x3e{left:567.013333pt;}
.x1e{left:588.893333pt;}
.x31{left:589.853333pt;}
.x20{left:621.733333pt;}
.x29{left:637.093333pt;}
.x2c{left:641.093333pt;}
.x5c{left:649.733333pt;}
.x21{left:700.293322pt;}
.xc{left:707.813322pt;}
}




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