
    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_a424789b14d9a868ede1e569.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_04619ad1a414b2fd7a2b2033.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2cb8286c32e646ea18d61c4d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_454cdb94189196159dc0d7a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925781;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_2f92e52637a4391261ed8cb0.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_163f06adf6b625c3d000780a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f84e06dcc93c121a35e7924b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_78c9eef897d7ee7fe129be0a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_dbfad6ebe278da6a97bf4a09.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_95d025a93dcd232c42b07cbb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3b5c98e9e5e592b31be14627.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-33.120000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls19{letter-spacing:-1.440000px;}
.lsa{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.432000px;}
.ls10{letter-spacing:-0.223800px;}
.ls5{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.181200px;}
.ls8{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.109200px;}
.ls25{letter-spacing:-0.108000px;}
.ls1d{letter-spacing:-0.106800px;}
.ls1c{letter-spacing:-0.053280px;}
.ls24{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.012960px;}
.ls23{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.162000px;}
.ls27{letter-spacing:0.192000px;}
.ls6{letter-spacing:0.216000px;}
.ls2a{letter-spacing:0.252000px;}
.ls17{letter-spacing:0.264000px;}
.ls18{letter-spacing:0.269280px;}
.ls3{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.311760px;}
.ls21{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.538800px;}
.lsb{letter-spacing:0.576000px;}
.ls1b{letter-spacing:0.666000px;}
.ls20{letter-spacing:0.666720px;}
.ls15{letter-spacing:2.826720px;}
.lsd{letter-spacing:5.184000px;}
.lsc{letter-spacing:6.624000px;}
.lse{letter-spacing:7.344000px;}
.ls1e{letter-spacing:11.664000px;}
.ls28{letter-spacing:12.564000px;}
.lsf{letter-spacing:15.984000px;}
.ls2f{letter-spacing:18.108000px;}
.ls26{letter-spacing:19.584000px;}
.ls2d{letter-spacing:28.224000px;}
.ls13{letter-spacing:44.784000px;}
.ls2{letter-spacing:48.384000px;}
.ls1f{letter-spacing:86.544000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1b{word-spacing:-72.000000px;}
.ws16{word-spacing:-54.000000px;}
.ws1{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws6{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.872000px;}
.ws8{word-spacing:-19.800000px;}
.wsd{word-spacing:-19.584000px;}
.wse{word-spacing:-19.296000px;}
.ws7{word-spacing:-18.576000px;}
.ws2{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.064000px;}
.ws15{word-spacing:-16.973280px;}
.ws11{word-spacing:-16.613280px;}
.ws14{word-spacing:-16.506480px;}
.ws13{word-spacing:-15.228000px;}
.ws1f{word-spacing:-15.174000px;}
.ws18{word-spacing:-15.138000px;}
.ws12{word-spacing:-15.012000px;}
.ws19{word-spacing:-14.994000px;}
.ws17{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.904000px;}
.ws10{word-spacing:-13.949520px;}
.wsb{word-spacing:-13.410720px;}
.wsc{word-spacing:-13.229520px;}
.wsa{word-spacing:-13.186920px;}
.ws1c{word-spacing:-10.821600px;}
.wsf{word-spacing:-0.072000px;}
.ws1d{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.042960px;}
._22{margin-left:-15.876000px;}
._25{margin-left:-14.815680px;}
._21{margin-left:-13.788000px;}
._1f{margin-left:-11.772000px;}
._20{margin-left:-9.828000px;}
._26{margin-left:-8.654640px;}
._1e{margin-left:-7.524000px;}
._24{margin-left:-5.868000px;}
._23{margin-left:-3.924000px;}
._0{margin-left:-1.562400px;}
._1{width:1.013040px;}
._2{width:2.326560px;}
._f{width:3.819600px;}
._11{width:4.968000px;}
._12{width:6.255120px;}
._1a{width:7.314480px;}
._a{width:9.000000px;}
._9{width:10.730400px;}
._7{width:12.096000px;}
._8{width:13.598400px;}
._10{width:15.417600px;}
._1b{width:16.970400px;}
._14{width:18.000000px;}
._31{width:19.008000px;}
._13{width:21.672000px;}
._28{width:22.824000px;}
._3{width:23.832000px;}
._c{width:25.069200px;}
._b{width:26.280000px;}
._30{width:27.307440px;}
._2c{width:28.348560px;}
._32{width:29.426400px;}
._2a{width:30.434400px;}
._29{width:31.644000px;}
._6{width:33.381360px;}
._5{width:34.416000px;}
._18{width:35.496000px;}
._19{width:36.601920px;}
._2d{width:37.814400px;}
._2e{width:38.865600px;}
._1c{width:39.888000px;}
._1d{width:41.250960px;}
._34{width:43.056000px;}
._2b{width:44.784000px;}
._27{width:46.152000px;}
._38{width:47.316000px;}
._4{width:48.384000px;}
._33{width:51.480000px;}
._e{width:52.668000px;}
._37{width:56.232000px;}
._3a{width:58.105680px;}
._39{width:59.112000px;}
._46{width:61.560000px;}
._16{width:67.176000px;}
._15{width:68.184000px;}
._17{width:69.816000px;}
._2f{width:71.460000px;}
._3c{width:74.304000px;}
._36{width:85.824000px;}
._35{width:86.904000px;}
._3b{width:92.136000px;}
._3e{width:101.452800px;}
._3d{width:102.528000px;}
._4f{width:112.149360px;}
._4e{width:113.544000px;}
._3f{width:127.728000px;}
._43{width:168.408000px;}
._48{width:171.266160px;}
._47{width:172.418400px;}
._40{width:173.520000px;}
._4c{width:214.632000px;}
._51{width:235.728000px;}
._4d{width:244.368000px;}
._4b{width:381.108000px;}
._4a{width:382.680000px;}
._50{width:627.444000px;}
._42{width:667.620000px;}
._44{width:686.844000px;}
._41{width:707.772000px;}
._d{width:844.140000px;}
._45{width:881.352000px;}
._49{width:1883.232000px;}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(15,36,62);}
.fc1{color:rgb(255,192,0);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs2{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y181{bottom:8.100000px;}
.ycf{bottom:10.620000px;}
.yd2{bottom:10.800000px;}
.y29a{bottom:10.845000px;}
.yce{bottom:10.980000px;}
.ycc{bottom:11.160000px;}
.y146{bottom:11.340000px;}
.y19d{bottom:11.520000px;}
.y145{bottom:11.700000px;}
.y279{bottom:12.240000px;}
.y1f0{bottom:12.420000px;}
.y140{bottom:12.600000px;}
.y13f{bottom:12.780000px;}
.y143{bottom:12.960000px;}
.y13e{bottom:13.140000px;}
.y142{bottom:13.320000px;}
.y1f2{bottom:13.500000px;}
.y17f{bottom:13.680000px;}
.y17d{bottom:17.280000px;}
.y1a2{bottom:22.320000px;}
.y13b{bottom:22.680000px;}
.y19f{bottom:23.400000px;}
.y293{bottom:24.525000px;}
.y19c{bottom:24.660000px;}
.y1e9{bottom:27.720000px;}
.y28e{bottom:29.880000px;}
.y29e{bottom:33.834000px;}
.y283{bottom:33.840000px;}
.y1a1{bottom:34.020000px;}
.y28a{bottom:34.065000px;}
.y13c{bottom:34.380000px;}
.y1a3{bottom:34.740000px;}
.y197{bottom:36.720000px;}
.y17c{bottom:40.860000px;}
.y1ed{bottom:44.460000px;}
.y19e{bottom:46.620000px;}
.y292{bottom:47.745000px;}
.y19a{bottom:49.320000px;}
.y176{bottom:49.650000px;}
.y28d{bottom:53.280000px;}
.y1ef{bottom:57.060000px;}
.y29d{bottom:57.234000px;}
.y27d{bottom:57.240000px;}
.y289{bottom:57.285000px;}
.y280{bottom:57.420000px;}
.y2{bottom:57.600000px;}
.y1ec{bottom:70.200000px;}
.y291{bottom:71.145000px;}
.y199{bottom:72.540000px;}
.y28c{bottom:76.500000px;}
.y1{bottom:78.336000px;}
.y285{bottom:80.460000px;}
.y282{bottom:80.490000px;}
.y27c{bottom:80.640000px;}
.y27e{bottom:80.685000px;}
.y16a{bottom:80.970000px;}
.y17a{bottom:88.380000px;}
.y290{bottom:94.365000px;}
.y16b{bottom:97.350000px;}
.y27b{bottom:103.860000px;}
.y288{bottom:103.905000px;}
.y21c{bottom:111.996000px;}
.y139{bottom:113.076000px;}
.y16c{bottom:113.760000px;}
.y179{bottom:113.835000px;}
.y13{bottom:115.056000px;}
.y1cd{bottom:121.896000px;}
.y1b2{bottom:124.056000px;}
.y264{bottom:126.216000px;}
.y210{bottom:126.936000px;}
.y296{bottom:127.080000px;}
.y287{bottom:127.305000px;}
.y29c{bottom:127.836000px;}
.yf0{bottom:128.016000px;}
.y1e7{bottom:128.736000px;}
.y16d{bottom:130.140000px;}
.y275{bottom:131.256000px;}
.y178{bottom:139.290000px;}
.y21b{bottom:143.136000px;}
.y138{bottom:144.036000px;}
.y16e{bottom:146.550000px;}
.y2c{bottom:146.736000px;}
.y68{bottom:147.276000px;}
.y12d{bottom:148.716000px;}
.y1cc{bottom:153.030000px;}
.y43{bottom:154.110000px;}
.y1b1{bottom:155.190000px;}
.yd7{bottom:155.370000px;}
.yc3{bottom:155.730000px;}
.y11b{bottom:157.350000px;}
.y12{bottom:157.530000px;}
.y20f{bottom:158.070000px;}
.y168{bottom:158.970000px;}
.yef{bottom:159.150000px;}
.y1e6{bottom:159.870000px;}
.y4e{bottom:161.130000px;}
.y269{bottom:162.210000px;}
.y16f{bottom:162.930000px;}
.y177{bottom:164.730000px;}
.y256{bottom:167.250000px;}
.y28b{bottom:173.370000px;}
.y21a{bottom:174.090000px;}
.y195{bottom:174.990000px;}
.y137{bottom:175.170000px;}
.y170{bottom:179.355000px;}
.y12c{bottom:179.850000px;}
.ye8{bottom:181.290000px;}
.y1cb{bottom:183.990000px;}
.y67{bottom:185.970000px;}
.yd6{bottom:186.330000px;}
.yc2{bottom:186.870000px;}
.y20e{bottom:189.030000px;}
.y11a{bottom:189.750000px;}
.yee{bottom:190.110000px;}
.y1e5{bottom:190.830000px;}
.y263{bottom:193.350000px;}
.y171{bottom:195.735000px;}
.y255{bottom:198.390000px;}
.ya8{bottom:198.570000px;}
.y29b{bottom:199.110000px;}
.y11{bottom:200.190000px;}
.y1b0{bottom:201.090000px;}
.y167{bottom:204.870000px;}
.y219{bottom:205.050000px;}
.y194{bottom:205.950000px;}
.y136{bottom:206.130000px;}
.y4d{bottom:207.210000px;}
.y172{bottom:212.145000px;}
.y1ca{bottom:215.130000px;}
.yd5{bottom:217.470000px;}
.yc1{bottom:217.830000px;}
.yed{bottom:221.250000px;}
.y1e4{bottom:222.690000px;}
.y262{bottom:224.310000px;}
.y66{bottom:224.490000px;}
.y12b{bottom:225.750000px;}
.ye7{bottom:227.370000px;}
.y173{bottom:228.525000px;}
.y119{bottom:228.810000px;}
.y254{bottom:229.350000px;}
.ya7{bottom:229.530000px;}
.y42{bottom:231.150000px;}
.y1af{bottom:232.050000px;}
.y20d{bottom:235.110000px;}
.y193{bottom:237.090000px;}
.y135{bottom:237.270000px;}
.y10{bottom:242.850000px;}
.y174{bottom:244.950000px;}
.y1c9{bottom:246.090000px;}
.yc0{bottom:248.970000px;}
.y166{bottom:250.950000px;}
.y218{bottom:251.130000px;}
.yec{bottom:252.210000px;}
.y4c{bottom:253.290000px;}
.y261{bottom:255.450000px;}
.y1e3{bottom:255.810000px;}
.y12a{bottom:256.890000px;}
.y106{bottom:257.250000px;}
.ye6{bottom:258.510000px;}
.y274{bottom:260.310000px;}
.y253{bottom:260.490000px;}
.ya6{bottom:260.670000px;}
.y65{bottom:263.190000px;}
.yd4{bottom:263.370000px;}
.y20c{bottom:266.250000px;}
.y192{bottom:268.050000px;}
.y134{bottom:268.230000px;}
.ybf{bottom:279.930000px;}
.yd3{bottom:281.730000px;}
.y217{bottom:282.270000px;}
.yf{bottom:285.330000px;}
.y260{bottom:286.410000px;}
.y129{bottom:287.850000px;}
.y1e2{bottom:288.750000px;}
.ye5{bottom:289.470000px;}
.y273{bottom:291.450000px;}
.y1c8{bottom:292.170000px;}
.y165{bottom:297.030000px;}
.y20b{bottom:297.210000px;}
.y41{bottom:298.290000px;}
.y191{bottom:299.190000px;}
.y4b{bottom:299.370000px;}
.y286{bottom:299.910000px;}
.y64{bottom:301.710000px;}
.y105{bottom:303.330000px;}
.yd1{bottom:306.390000px;}
.y1ae{bottom:309.810000px;}
.ya5{bottom:310.890000px;}
.ybe{bottom:311.070000px;}
.y216{bottom:313.230000px;}
.y299{bottom:317.010000px;}
.y25f{bottom:317.550000px;}
.y128{bottom:318.990000px;}
.ye4{bottom:320.610000px;}
.y1e1{bottom:321.150000px;}
.y272{bottom:322.410000px;}
.y1c7{bottom:323.310000px;}
.y252{bottom:327.495000px;}
.y164{bottom:328.215000px;}
.y20a{bottom:328.395000px;}
.y40{bottom:329.295000px;}
.y190{bottom:330.195000px;}
.yd0{bottom:331.275000px;}
.y104{bottom:334.515000px;}
.y63{bottom:340.455000px;}
.ybd{bottom:342.075000px;}
.y1ad{bottom:342.255000px;}
.y215{bottom:344.415000px;}
.y4a{bottom:345.495000px;}
.y29{bottom:350.535000px;}
.ye{bottom:351.435000px;}
.ye3{bottom:351.615000px;}
.y1e0{bottom:353.055000px;}
.y268{bottom:353.595000px;}
.y1c6{bottom:354.315000px;}
.ycd{bottom:356.115000px;}
.ya4{bottom:357.015000px;}
.y251{bottom:358.635000px;}
.y163{bottom:359.175000px;}
.y209{bottom:359.355000px;}
.yeb{bottom:360.435000px;}
.y18f{bottom:361.335000px;}
.y127{bottom:365.115000px;}
.y103{bottom:365.475000px;}
.y155{bottom:372.315000px;}
.ybc{bottom:373.215000px;}
.y1ac{bottom:374.115000px;}
.y3f{bottom:375.375000px;}
.y133{bottom:376.455000px;}
.y62{bottom:379.155000px;}
.ycb{bottom:380.775000px;}
.y2a5{bottom:382.755000px;}
.y25e{bottom:384.555000px;}
.y1df{bottom:385.995000px;}
.ya3{bottom:387.975000px;}
.y298{bottom:388.515000px;}
.y250{bottom:389.595000px;}
.y162{bottom:390.495000px;}
.y49{bottom:391.395000px;}
.y18e{bottom:392.295000px;}
.ye2{bottom:395.175000px;}
.y126{bottom:396.075000px;}
.y28{bottom:396.615000px;}
.y1c5{bottom:400.395000px;}
.y2a4{bottom:400.755000px;}
.y154{bottom:403.275000px;}
.y208{bottom:405.435000px;}
.y3e{bottom:406.515000px;}
.y132{bottom:407.595000px;}
.yd{bottom:414.795000px;}
.y25d{bottom:415.695000px;}
.y61{bottom:417.675000px;}
.ya2{bottom:419.115000px;}
.ybb{bottom:419.295000px;}
.y271{bottom:420.555000px;}
.y24f{bottom:420.735000px;}
.ye1{bottom:421.275000px;}
.y214{bottom:421.455000px;}
.y48{bottom:422.535000px;}
.y18d{bottom:423.435000px;}
.y125{bottom:427.215000px;}
.y27{bottom:427.575000px;}
.y1c4{bottom:431.355000px;}
.y153{bottom:434.415000px;}
.yca{bottom:435.135000px;}
.y161{bottom:436.215000px;}
.y207{bottom:436.395000px;}
.y3d{bottom:437.475000px;}
.y131{bottom:438.555000px;}
.y284{bottom:441.255000px;}
.y226{bottom:441.435000px;}
.y25c{bottom:446.655000px;}
.ye0{bottom:447.375000px;}
.ya1{bottom:450.075000px;}
.yba{bottom:450.255000px;}
.y200{bottom:451.335000px;}
.y1de{bottom:451.515000px;}
.y270{bottom:451.695000px;}
.y213{bottom:452.595000px;}
.y60{bottom:456.375000px;}
.y94{bottom:457.815000px;}
.y124{bottom:458.175000px;}
.y102{bottom:458.715000px;}
.y26{bottom:459.975000px;}
.y233{bottom:461.595000px;}
.y7a{bottom:461.775000px;}
.y1c3{bottom:462.495000px;}
.y152{bottom:465.375000px;}
.yc9{bottom:465.915000px;}
.y160{bottom:467.355000px;}
.y206{bottom:467.535000px;}
.y3c{bottom:468.615000px;}
.y1ab{bottom:468.795000px;}
.y18c{bottom:469.515000px;}
.y130{bottom:469.695000px;}
.y25b{bottom:477.615000px;}
.yc{bottom:477.975000px;}
.y116{bottom:478.695000px;}
.ydf{bottom:479.955000px;}
.ya0{bottom:481.215000px;}
.y1dd{bottom:482.475000px;}
.y26f{bottom:482.655000px;}
.y212{bottom:483.555000px;}
.y87{bottom:485.715000px;}
.y24e{bottom:487.695000px;}
.y123{bottom:489.315000px;}
.y101{bottom:489.675000px;}
.y25{bottom:490.935000px;}
.y79{bottom:492.735000px;}
.y1c2{bottom:493.635000px;}
.y5f{bottom:494.895000px;}
.y1ff{bottom:497.415000px;}
.y15f{bottom:498.315000px;}
.y205{bottom:498.495000px;}
.y3b{bottom:499.575000px;}
.y18b{bottom:500.475000px;}
.y93{bottom:503.715000px;}
.y297{bottom:506.415000px;}
.y232{bottom:507.495000px;}
.y2a3{bottom:508.035000px;}
.y225{bottom:508.575000px;}
.yc8{bottom:509.655000px;}
.y151{bottom:511.455000px;}
.y9f{bottom:512.175000px;}
.yb9{bottom:512.355000px;}
.y26e{bottom:513.615000px;}
.y1dc{bottom:513.795000px;}
.y1aa{bottom:514.695000px;}
.y12f{bottom:515.595000px;}
.y24d{bottom:518.835000px;}
.y100{bottom:520.815000px;}
.y240{bottom:522.255000px;}
.y24{bottom:523.155000px;}
.y78{bottom:523.875000px;}
.y122{bottom:524.235000px;}
.y115{bottom:524.595000px;}
.y5e{bottom:525.675000px;}
.yde{bottom:526.395000px;}
.y1fe{bottom:528.555000px;}
.y15e{bottom:529.455000px;}
.y204{bottom:529.635000px;}
.y3a{bottom:530.715000px;}
.y86{bottom:531.615000px;}
.yc7{bottom:535.755000px;}
.y281{bottom:535.935000px;}
.y231{bottom:538.635000px;}
.y224{bottom:539.715000px;}
.yb{bottom:541.335000px;}
.y150{bottom:542.595000px;}
.y9e{bottom:543.315000px;}
.y1db{bottom:544.575000px;}
.y25a{bottom:544.755000px;}
.y1a9{bottom:545.655000px;}
.y92{bottom:549.795000px;}
.y23{bottom:554.295000px;}
.y77{bottom:554.835000px;}
.y1c1{bottom:555.555000px;}
.y114{bottom:555.735000px;}
.y1fd{bottom:559.515000px;}
.y15d{bottom:560.415000px;}
.y39{bottom:561.675000px;}
.y85{bottom:562.755000px;}
.y5d{bottom:564.555000px;}
.y121{bottom:565.095000px;}
.yff{bottom:566.715000px;}
.y23f{bottom:568.335000px;}
.y230{bottom:569.595000px;}
.y223{bottom:570.675000px;}
.y14f{bottom:573.735000px;}
.y9d{bottom:574.275000px;}
.yb8{bottom:574.455000px;}
.y1da{bottom:575.715000px;}
.y1a8{bottom:576.615000px;}
.yc6{bottom:578.775000px;}
.y26d{bottom:580.755000px;}
.y24c{bottom:580.935000px;}
.y76{bottom:585.975000px;}
.y22{bottom:586.515000px;}
.y113{bottom:586.695000px;}
.y1fc{bottom:590.655000px;}
.y120{bottom:591.375000px;}
.y15c{bottom:591.735000px;}
.y47{bottom:592.815000px;}
.y84{bottom:593.715000px;}
.y91{bottom:595.905000px;}
.yfe{bottom:597.885000px;}
.y23e{bottom:599.325000px;}
.y22f{bottom:600.765000px;}
.y295{bottom:601.125000px;}
.y222{bottom:601.845000px;}
.y5c{bottom:603.285000px;}
.ya{bottom:604.725000px;}
.y9c{bottom:605.265000px;}
.yb7{bottom:605.445000px;}
.y203{bottom:606.705000px;}
.y259{bottom:606.885000px;}
.y38{bottom:607.785000px;}
.y26c{bottom:611.745000px;}
.y21{bottom:617.505000px;}
.y112{bottom:617.865000px;}
.y1d9{bottom:621.645000px;}
.y211{bottom:622.725000px;}
.y46{bottom:623.805000px;}
.y18a{bottom:624.705000px;}
.yc5{bottom:624.885000px;}
.yfd{bottom:629.025000px;}
.y22e{bottom:631.725000px;}
.y75{bottom:631.905000px;}
.y1c0{bottom:632.805000px;}
.y14e{bottom:635.865000px;}
.yb6{bottom:636.585000px;}
.y9b{bottom:637.665000px;}
.y202{bottom:637.845000px;}
.y37{bottom:638.745000px;}
.y83{bottom:639.825000px;}
.y5b{bottom:641.985000px;}
.y26b{bottom:642.885000px;}
.y24b{bottom:647.925000px;}
.y111{bottom:648.825000px;}
.y20{bottom:649.905000px;}
.y1d8{bottom:652.785000px;}
.ydd{bottom:653.865000px;}
.y12e{bottom:654.945000px;}
.y189{bottom:655.845000px;}
.y23d{bottom:662.685000px;}
.y22d{bottom:662.865000px;}
.y1bf{bottom:663.765000px;}
.y221{bottom:663.945000px;}
.y27f{bottom:666.465000px;}
.y1fb{bottom:667.725000px;}
.y9a{bottom:668.625000px;}
.y201{bottom:668.805000px;}
.y277{bottom:668.985000px;}
.y15b{bottom:669.345000px;}
.y36{bottom:669.885000px;}
.y82{bottom:670.965000px;}
.y26a{bottom:673.845000px;}
.yfc{bottom:674.925000px;}
.y74{bottom:677.985000px;}
.y24a{bottom:679.065000px;}
.y5a{bottom:680.505000px;}
.y1f{bottom:680.865000px;}
.y14d{bottom:681.765000px;}
.yb5{bottom:682.665000px;}
.y1d7{bottom:683.745000px;}
.y1a7{bottom:684.825000px;}
.y188{bottom:686.805000px;}
.y90{bottom:688.065000px;}
.y22c{bottom:693.825000px;}
.y9{bottom:694.005000px;}
.y110{bottom:694.905000px;}
.y23c{bottom:695.085000px;}
.y1fa{bottom:698.685000px;}
.y99{bottom:699.765000px;}
.ydc{bottom:699.945000px;}
.y35{bottom:700.845000px;}
.y15a{bottom:702.465000px;}
.y258{bottom:704.985000px;}
.y73{bottom:709.125000px;}
.y220{bottom:709.845000px;}
.y249{bottom:710.025000px;}
.y14c{bottom:712.725000px;}
.yb4{bottom:713.625000px;}
.y1d6{bottom:714.885000px;}
.y1a6{bottom:715.965000px;}
.y81{bottom:717.045000px;}
.y8f{bottom:719.025000px;}
.y59{bottom:719.205000px;}
.y22b{bottom:724.965000px;}
.y1be{bottom:725.865000px;}
.y10f{bottom:726.045000px;}
.y1e{bottom:728.205000px;}
.y1f9{bottom:729.825000px;}
.y98{bottom:730.725000px;}
.ydb{bottom:730.905000px;}
.y34{bottom:731.985000px;}
.y187{bottom:732.885000px;}
.y159{bottom:734.865000px;}
.y257{bottom:735.945000px;}
.y72{bottom:740.085000px;}
.y118{bottom:740.985000px;}
.yfb{bottom:742.065000px;}
.y294{bottom:742.245000px;}
.y14b{bottom:744.045000px;}
.yb3{bottom:744.765000px;}
.y1d5{bottom:745.845000px;}
.yea{bottom:746.925000px;}
.y80{bottom:748.005000px;}
.y22a{bottom:755.925000px;}
.y2a2{bottom:756.645000px;}
.y10e{bottom:757.005000px;}
.y1bd{bottom:757.185000px;}
.y58{bottom:757.725000px;}
.y23b{bottom:758.265000px;}
.y1f8{bottom:760.785000px;}
.y97{bottom:761.865000px;}
.yda{bottom:762.045000px;}
.y33{bottom:762.945000px;}
.y186{bottom:763.845000px;}
.y8e{bottom:765.105000px;}
.y158{bottom:765.825000px;}
.y267{bottom:767.085000px;}
.y71{bottom:771.225000px;}
.y117{bottom:771.945000px;}
.yfa{bottom:773.025000px;}
.y1d{bottom:774.285000px;}
.y14a{bottom:774.825000px;}
.yb2{bottom:775.725000px;}
.y1d4{bottom:776.985000px;}
.y248{bottom:777.165000px;}
.ye9{bottom:778.065000px;}
.y7f{bottom:779.145000px;}
.y8{bottom:785.445000px;}
.y229{bottom:787.065000px;}
.y21e{bottom:788.145000px;}
.y23a{bottom:789.405000px;}
.y1f7{bottom:792.105000px;}
.y96{bottom:792.825000px;}
.yd9{bottom:793.005000px;}
.y45{bottom:794.085000px;}
.y185{bottom:794.985000px;}
.y8d{bottom:796.245000px;}
.y57{bottom:796.425000px;}
.y157{bottom:797.145000px;}
.y266{bottom:798.045000px;}
.y70{bottom:802.185000px;}
.y1bc{bottom:802.905000px;}
.y10d{bottom:803.085000px;}
.yf9{bottom:804.165000px;}
.y1c{bottom:805.245000px;}
.y149{bottom:805.965000px;}
.yb1{bottom:806.865000px;}
.y1d3{bottom:807.945000px;}
.y247{bottom:808.125000px;}
.y32{bottom:809.025000px;}
.y228{bottom:818.025000px;}
.y239{bottom:821.625000px;}
.y95{bottom:823.785000px;}
.yd8{bottom:824.145000px;}
.y7e{bottom:825.045000px;}
.y184{bottom:825.945000px;}
.y265{bottom:829.185000px;}
.y156{bottom:832.065000px;}
.y6f{bottom:833.325000px;}
.y10c{bottom:834.045000px;}
.y1bb{bottom:834.225000px;}
.y56{bottom:835.125000px;}
.y148{bottom:837.105000px;}
.y1b{bottom:837.465000px;}
.yb0{bottom:837.825000px;}
.y1f6{bottom:838.005000px;}
.y1d2{bottom:839.085000px;}
.y246{bottom:839.265000px;}
.y31{bottom:840.165000px;}
.y8c{bottom:842.145000px;}
.y227{bottom:849.165000px;}
.yf8{bottom:850.425000px;}
.y238{bottom:852.765000px;}
.yc4{bottom:855.105000px;}
.y1a5{bottom:855.285000px;}
.y7d{bottom:856.185000px;}
.y183{bottom:857.085000px;}
.y276{bottom:860.145000px;}
.y10b{bottom:865.230000px;}
.y1a{bottom:868.650000px;}
.y17b{bottom:868.830000px;}
.yaf{bottom:869.010000px;}
.y1d1{bottom:870.090000px;}
.y245{bottom:870.270000px;}
.y44{bottom:871.170000px;}
.y169{bottom:871.380000px;}
.y55{bottom:873.690000px;}
.y2a1{bottom:874.590000px;}
.y6e{bottom:879.270000px;}
.y1ba{bottom:880.170000px;}
.y175{bottom:880.200000px;}
.y147{bottom:880.710000px;}
.yf7{bottom:881.430000px;}
.y237{bottom:883.770000px;}
.y30{bottom:886.290000px;}
.y8b{bottom:888.270000px;}
.y7{bottom:890.430000px;}
.y27a{bottom:891.870000px;}
.y10a{bottom:896.190000px;}
.yae{bottom:899.970000px;}
.y1f5{bottom:900.150000px;}
.y19{bottom:900.870000px;}
.y1d0{bottom:901.230000px;}
.y244{bottom:901.410000px;}
.y7c{bottom:902.310000px;}
.y1b9{bottom:911.130000px;}
.y21f{bottom:911.310000px;}
.y54{bottom:912.390000px;}
.y236{bottom:915.990000px;}
.y2f{bottom:917.250000px;}
.y1a4{bottom:917.430000px;}
.y144{bottom:922.470000px;}
.y6d{bottom:925.350000px;}
.yf6{bottom:927.330000px;}
.yad{bottom:930.930000px;}
.y182{bottom:931.830000px;}
.y1cf{bottom:932.190000px;}
.y7b{bottom:933.270000px;}
.y8a{bottom:934.350000px;}
.y1b8{bottom:942.270000px;}
.y1f4{bottom:943.890000px;}
.y235{bottom:947.130000px;}
.y198{bottom:947.310000px;}
.y18{bottom:948.210000px;}
.y53{bottom:950.910000px;}
.y141{bottom:951.810000px;}
.yf5{bottom:958.290000px;}
.y1eb{bottom:959.190000px;}
.yac{bottom:963.330000px;}
.y6c{bottom:964.410000px;}
.y243{bottom:968.370000px;}
.y2a0{bottom:969.270000px;}
.y1a0{bottom:971.970000px;}
.y21d{bottom:973.410000px;}
.y6{bottom:975.030000px;}
.y234{bottom:978.090000px;}
.y2e{bottom:979.350000px;}
.y89{bottom:980.430000px;}
.y13d{bottom:981.150000px;}
.y1f3{bottom:988.350000px;}
.y1b7{bottom:988.890000px;}
.yf4{bottom:989.430000px;}
.y52{bottom:989.610000px;}
.y17{bottom:994.110000px;}
.yab{bottom:994.290000px;}
.y242{bottom:999.510000px;}
.y6b{bottom:1002.930000px;}
.y109{bottom:1004.370000px;}
.y28f{bottom:1004.550000px;}
.y278{bottom:1009.770000px;}
.y13a{bottom:1010.130000px;}
.y2d{bottom:1010.310000px;}
.y1f1{bottom:1017.330000px;}
.y196{bottom:1020.030000px;}
.yf3{bottom:1020.390000px;}
.y1b6{bottom:1022.370000px;}
.y16{bottom:1025.250000px;}
.yaa{bottom:1025.430000px;}
.y88{bottom:1026.510000px;}
.y5{bottom:1026.870000px;}
.y51{bottom:1028.310000px;}
.y241{bottom:1030.470000px;}
.y11f{bottom:1031.010000px;}
.y108{bottom:1035.510000px;}
.y2b{bottom:1041.450000px;}
.y6a{bottom:1041.630000px;}
.y19b{bottom:1046.490000px;}
.y1ee{bottom:1047.750000px;}
.yf2{bottom:1051.530000px;}
.y1b5{bottom:1054.410000px;}
.ya9{bottom:1056.390000px;}
.y11e{bottom:1062.150000px;}
.y107{bottom:1066.470000px;}
.y50{bottom:1066.830000px;}
.y15{bottom:1072.410000px;}
.y4{bottom:1072.770000px;}
.y1e8{bottom:1076.730000px;}
.y69{bottom:1080.330000px;}
.yf1{bottom:1082.490000px;}
.y1b4{bottom:1085.370000px;}
.y29f{bottom:1087.170000px;}
.y2a{bottom:1087.530000px;}
.y1ce{bottom:1087.710000px;}
.y17e{bottom:1093.830000px;}
.y4f{bottom:1097.430000px;}
.y11d{bottom:1097.790000px;}
.y180{bottom:1099.410000px;}
.y1ea{bottom:1106.070000px;}
.y1b3{bottom:1117.230000px;}
.y14{bottom:1118.490000px;}
.y11c{bottom:1118.670000px;}
.y3{bottom:1118.850000px;}
.h1e{height:20.700000px;}
.hd{height:23.220000px;}
.hb{height:23.400000px;}
.he{height:23.436000px;}
.h14{height:24.660000px;}
.h21{height:24.840000px;}
.h29{height:25.920000px;}
.h1d{height:26.280000px;}
.h12{height:27.540000px;}
.h25{height:27.720000px;}
.h24{height:27.756000px;}
.h13{height:27.900000px;}
.h28{height:28.800000px;}
.h11{height:46.620000px;}
.h37{height:46.656000px;}
.h1f{height:51.120000px;}
.h1c{height:53.280000px;}
.hc{height:56.320312px;}
.h23{height:57.096000px;}
.h16{height:58.651172px;}
.ha{height:62.327813px;}
.h17{height:63.720000px;}
.h8{height:64.546875px;}
.h36{height:69.840000px;}
.h35{height:69.876000px;}
.h2{height:70.664062px;}
.h27{height:70.790625px;}
.h22{height:71.280000px;}
.h7{height:75.093750px;}
.h10{height:83.408812px;}
.h9{height:83.432812px;}
.hf{height:83.612813px;}
.h6{height:87.859687px;}
.h2e{height:93.060000px;}
.h34{height:93.096000px;}
.h38{height:93.240000px;}
.h2b{height:93.276000px;}
.h3{height:99.874688px;}
.h1b{height:102.420000px;}
.h3a{height:105.840000px;}
.h26{height:116.100000px;}
.h2a{height:116.460000px;}
.h39{height:116.496000px;}
.h20{height:123.840000px;}
.h30{height:125.100000px;}
.h1a{height:127.980000px;}
.h2d{height:129.096000px;}
.h2c{height:129.240000px;}
.h31{height:129.276000px;}
.h33{height:139.680000px;}
.h2f{height:139.896000px;}
.h5{height:142.813125px;}
.h32{height:142.956000px;}
.h19{height:153.360000px;}
.h4{height:157.460625px;}
.h18{height:178.740000px;}
.h15{height:263.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:32.400000px;}
.w9{width:59.400000px;}
.wa{width:63.180000px;}
.w1d{width:70.200000px;}
.w1a{width:73.620000px;}
.w17{width:74.520000px;}
.w14{width:88.380000px;}
.w15{width:94.716000px;}
.w21{width:95.616000px;}
.w20{width:96.300000px;}
.w1f{width:96.516000px;}
.wf{width:101.880000px;}
.wc{width:105.300000px;}
.w19{width:106.416000px;}
.w10{width:108.756000px;}
.w11{width:108.936000px;}
.w16{width:111.276000px;}
.w1c{width:112.356000px;}
.w12{width:113.616000px;}
.w1b{width:118.296000px;}
.wd{width:119.340000px;}
.we{width:132.660000px;}
.w18{width:133.056000px;}
.w5{width:133.416000px;}
.w13{width:137.196000px;}
.w4{width:153.030000px;}
.w2{width:153.210000px;}
.w3{width:161.310000px;}
.w6{width:161.850000px;}
.w7{width:177.690000px;}
.w1e{width:288.435000px;}
.w8{width:619.560000px;}
.w22{width:646.890000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:7.380000px;}
.x32{left:9.075000px;}
.x2b{left:10.800000px;}
.x33{left:12.570000px;}
.x46{left:14.580000px;}
.x41{left:15.660000px;}
.x40{left:16.920000px;}
.x30{left:18.975000px;}
.x20{left:20.340000px;}
.x49{left:22.860000px;}
.x3e{left:24.120000px;}
.x45{left:25.425000px;}
.x3d{left:26.454000px;}
.x23{left:28.620000px;}
.x2f{left:30.390000px;}
.x48{left:33.840000px;}
.x47{left:36.540000px;}
.x3b{left:37.620000px;}
.x37{left:39.465000px;}
.x1e{left:43.380000px;}
.x43{left:49.680000px;}
.x1d{left:51.294000px;}
.x29{left:55.080000px;}
.x4a{left:57.060000px;}
.x26{left:59.220000px;}
.x25{left:60.660000px;}
.x2c{left:63.000000px;}
.x21{left:65.520000px;}
.x2a{left:66.600000px;}
.x24{left:69.300000px;}
.x27{left:73.440000px;}
.x28{left:85.320000px;}
.x4f{left:90.765000px;}
.x53{left:120.276000px;}
.xb{left:127.656000px;}
.x11{left:145.656000px;}
.x3{left:154.470000px;}
.x2e{left:156.600000px;}
.x10{left:172.470000px;}
.x52{left:175.710000px;}
.x4b{left:180.750000px;}
.xa{left:182.190000px;}
.x3a{left:188.670000px;}
.x12{left:190.470000px;}
.x5{left:198.210000px;}
.x4c{left:201.990000px;}
.x16{left:208.650000px;}
.x36{left:217.290000px;}
.x7{left:219.990000px;}
.x17{left:235.650000px;}
.x31{left:240.840000px;}
.x6{left:256.935000px;}
.x1a{left:281.595000px;}
.x3f{left:311.475000px;}
.x4d{left:320.295000px;}
.x38{left:348.375000px;}
.x9{left:362.595000px;}
.x8{left:403.845000px;}
.x1f{left:414.825000px;}
.x2{left:422.925000px;}
.x4e{left:432.645000px;}
.x3c{left:457.305000px;}
.x4{left:460.005000px;}
.x39{left:466.125000px;}
.x42{left:497.265000px;}
.x34{left:503.280000px;}
.x22{left:576.690000px;}
.x1b{left:580.470000px;}
.x18{left:595.050000px;}
.x50{left:599.370000px;}
.x44{left:630.330000px;}
.x35{left:636.840000px;}
.x51{left:695.670000px;}
.x1c{left:726.300000px;}
.x14{left:734.580000px;}
.x13{left:740.520000px;}
.xf{left:746.460000px;}
.xe{left:747.540000px;}
.xd{left:753.480000px;}
.x15{left:756.540000px;}
.xc{left:759.600000px;}
.x1{left:765.540000px;}
.x2d{left:777.780000px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls19{letter-spacing:-1.280000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.161067pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.097067pt;}
.ls25{letter-spacing:-0.096000pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls24{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.011520pt;}
.ls23{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.144000pt;}
.ls27{letter-spacing:0.170667pt;}
.ls6{letter-spacing:0.192000pt;}
.ls2a{letter-spacing:0.224000pt;}
.ls17{letter-spacing:0.234667pt;}
.ls18{letter-spacing:0.239360pt;}
.ls3{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.277120pt;}
.ls21{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.478933pt;}
.lsb{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:0.592000pt;}
.ls20{letter-spacing:0.592640pt;}
.ls15{letter-spacing:2.512640pt;}
.lsd{letter-spacing:4.608000pt;}
.lsc{letter-spacing:5.888000pt;}
.lse{letter-spacing:6.528000pt;}
.ls1e{letter-spacing:10.368000pt;}
.ls28{letter-spacing:11.168000pt;}
.lsf{letter-spacing:14.208000pt;}
.ls2f{letter-spacing:16.096000pt;}
.ls26{letter-spacing:17.408000pt;}
.ls2d{letter-spacing:25.088000pt;}
.ls13{letter-spacing:39.808000pt;}
.ls2{letter-spacing:43.008000pt;}
.ls1f{letter-spacing:76.928000pt;}
.ws1b{word-spacing:-64.000000pt;}
.ws16{word-spacing:-48.000000pt;}
.ws1{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws6{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.664000pt;}
.ws8{word-spacing:-17.600000pt;}
.wsd{word-spacing:-17.408000pt;}
.wse{word-spacing:-17.152000pt;}
.ws7{word-spacing:-16.512000pt;}
.ws2{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.168000pt;}
.ws15{word-spacing:-15.087360pt;}
.ws11{word-spacing:-14.767360pt;}
.ws14{word-spacing:-14.672427pt;}
.ws13{word-spacing:-13.536000pt;}
.ws1f{word-spacing:-13.488000pt;}
.ws18{word-spacing:-13.456000pt;}
.ws12{word-spacing:-13.344000pt;}
.ws19{word-spacing:-13.328000pt;}
.ws17{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.248000pt;}
.ws10{word-spacing:-12.399573pt;}
.wsb{word-spacing:-11.920640pt;}
.wsc{word-spacing:-11.759573pt;}
.wsa{word-spacing:-11.721707pt;}
.ws1c{word-spacing:-9.619200pt;}
.wsf{word-spacing:-0.064000pt;}
.ws1d{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.038187pt;}
._22{margin-left:-14.112000pt;}
._25{margin-left:-13.169493pt;}
._21{margin-left:-12.256000pt;}
._1f{margin-left:-10.464000pt;}
._20{margin-left:-8.736000pt;}
._26{margin-left:-7.693013pt;}
._1e{margin-left:-6.688000pt;}
._24{margin-left:-5.216000pt;}
._23{margin-left:-3.488000pt;}
._0{margin-left:-1.388800pt;}
._1{width:0.900480pt;}
._2{width:2.068053pt;}
._f{width:3.395200pt;}
._11{width:4.416000pt;}
._12{width:5.560107pt;}
._1a{width:6.501760pt;}
._a{width:8.000000pt;}
._9{width:9.538133pt;}
._7{width:10.752000pt;}
._8{width:12.087467pt;}
._10{width:13.704533pt;}
._1b{width:15.084800pt;}
._14{width:16.000000pt;}
._31{width:16.896000pt;}
._13{width:19.264000pt;}
._28{width:20.288000pt;}
._3{width:21.184000pt;}
._c{width:22.283733pt;}
._b{width:23.360000pt;}
._30{width:24.273280pt;}
._2c{width:25.198720pt;}
._32{width:26.156800pt;}
._2a{width:27.052800pt;}
._29{width:28.128000pt;}
._6{width:29.672320pt;}
._5{width:30.592000pt;}
._18{width:31.552000pt;}
._19{width:32.535040pt;}
._2d{width:33.612800pt;}
._2e{width:34.547200pt;}
._1c{width:35.456000pt;}
._1d{width:36.667520pt;}
._34{width:38.272000pt;}
._2b{width:39.808000pt;}
._27{width:41.024000pt;}
._38{width:42.058667pt;}
._4{width:43.008000pt;}
._33{width:45.760000pt;}
._e{width:46.816000pt;}
._37{width:49.984000pt;}
._3a{width:51.649493pt;}
._39{width:52.544000pt;}
._46{width:54.720000pt;}
._16{width:59.712000pt;}
._15{width:60.608000pt;}
._17{width:62.058667pt;}
._2f{width:63.520000pt;}
._3c{width:66.048000pt;}
._36{width:76.288000pt;}
._35{width:77.248000pt;}
._3b{width:81.898667pt;}
._3e{width:90.180267pt;}
._3d{width:91.136000pt;}
._4f{width:99.688320pt;}
._4e{width:100.928000pt;}
._3f{width:113.536000pt;}
._43{width:149.696000pt;}
._48{width:152.236587pt;}
._47{width:153.260800pt;}
._40{width:154.240000pt;}
._4c{width:190.784000pt;}
._51{width:209.536000pt;}
._4d{width:217.216000pt;}
._4b{width:338.762667pt;}
._4a{width:340.160000pt;}
._50{width:557.728000pt;}
._42{width:593.440000pt;}
._44{width:610.528000pt;}
._41{width:629.130667pt;}
._d{width:750.346667pt;}
._45{width:783.424000pt;}
._49{width:1673.984000pt;}
.fs8{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs2{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y181{bottom:7.200000pt;}
.ycf{bottom:9.440000pt;}
.yd2{bottom:9.600000pt;}
.y29a{bottom:9.640000pt;}
.yce{bottom:9.760000pt;}
.ycc{bottom:9.920000pt;}
.y146{bottom:10.080000pt;}
.y19d{bottom:10.240000pt;}
.y145{bottom:10.400000pt;}
.y279{bottom:10.880000pt;}
.y1f0{bottom:11.040000pt;}
.y140{bottom:11.200000pt;}
.y13f{bottom:11.360000pt;}
.y143{bottom:11.520000pt;}
.y13e{bottom:11.680000pt;}
.y142{bottom:11.840000pt;}
.y1f2{bottom:12.000000pt;}
.y17f{bottom:12.160000pt;}
.y17d{bottom:15.360000pt;}
.y1a2{bottom:19.840000pt;}
.y13b{bottom:20.160000pt;}
.y19f{bottom:20.800000pt;}
.y293{bottom:21.800000pt;}
.y19c{bottom:21.920000pt;}
.y1e9{bottom:24.640000pt;}
.y28e{bottom:26.560000pt;}
.y29e{bottom:30.074667pt;}
.y283{bottom:30.080000pt;}
.y1a1{bottom:30.240000pt;}
.y28a{bottom:30.280000pt;}
.y13c{bottom:30.560000pt;}
.y1a3{bottom:30.880000pt;}
.y197{bottom:32.640000pt;}
.y17c{bottom:36.320000pt;}
.y1ed{bottom:39.520000pt;}
.y19e{bottom:41.440000pt;}
.y292{bottom:42.440000pt;}
.y19a{bottom:43.840000pt;}
.y176{bottom:44.133333pt;}
.y28d{bottom:47.360000pt;}
.y1ef{bottom:50.720000pt;}
.y29d{bottom:50.874667pt;}
.y27d{bottom:50.880000pt;}
.y289{bottom:50.920000pt;}
.y280{bottom:51.040000pt;}
.y2{bottom:51.200000pt;}
.y1ec{bottom:62.400000pt;}
.y291{bottom:63.240000pt;}
.y199{bottom:64.480000pt;}
.y28c{bottom:68.000000pt;}
.y1{bottom:69.632000pt;}
.y285{bottom:71.520000pt;}
.y282{bottom:71.546667pt;}
.y27c{bottom:71.680000pt;}
.y27e{bottom:71.720000pt;}
.y16a{bottom:71.973333pt;}
.y17a{bottom:78.560000pt;}
.y290{bottom:83.880000pt;}
.y16b{bottom:86.533333pt;}
.y27b{bottom:92.320000pt;}
.y288{bottom:92.360000pt;}
.y21c{bottom:99.552000pt;}
.y139{bottom:100.512000pt;}
.y16c{bottom:101.120000pt;}
.y179{bottom:101.186667pt;}
.y13{bottom:102.272000pt;}
.y1cd{bottom:108.352000pt;}
.y1b2{bottom:110.272000pt;}
.y264{bottom:112.192000pt;}
.y210{bottom:112.832000pt;}
.y296{bottom:112.960000pt;}
.y287{bottom:113.160000pt;}
.y29c{bottom:113.632000pt;}
.yf0{bottom:113.792000pt;}
.y1e7{bottom:114.432000pt;}
.y16d{bottom:115.680000pt;}
.y275{bottom:116.672000pt;}
.y178{bottom:123.813333pt;}
.y21b{bottom:127.232000pt;}
.y138{bottom:128.032000pt;}
.y16e{bottom:130.266667pt;}
.y2c{bottom:130.432000pt;}
.y68{bottom:130.912000pt;}
.y12d{bottom:132.192000pt;}
.y1cc{bottom:136.026667pt;}
.y43{bottom:136.986667pt;}
.y1b1{bottom:137.946667pt;}
.yd7{bottom:138.106667pt;}
.yc3{bottom:138.426667pt;}
.y11b{bottom:139.866667pt;}
.y12{bottom:140.026667pt;}
.y20f{bottom:140.506667pt;}
.y168{bottom:141.306667pt;}
.yef{bottom:141.466667pt;}
.y1e6{bottom:142.106667pt;}
.y4e{bottom:143.226667pt;}
.y269{bottom:144.186667pt;}
.y16f{bottom:144.826667pt;}
.y177{bottom:146.426667pt;}
.y256{bottom:148.666667pt;}
.y28b{bottom:154.106667pt;}
.y21a{bottom:154.746667pt;}
.y195{bottom:155.546667pt;}
.y137{bottom:155.706667pt;}
.y170{bottom:159.426667pt;}
.y12c{bottom:159.866667pt;}
.ye8{bottom:161.146667pt;}
.y1cb{bottom:163.546667pt;}
.y67{bottom:165.306667pt;}
.yd6{bottom:165.626667pt;}
.yc2{bottom:166.106667pt;}
.y20e{bottom:168.026667pt;}
.y11a{bottom:168.666667pt;}
.yee{bottom:168.986667pt;}
.y1e5{bottom:169.626667pt;}
.y263{bottom:171.866667pt;}
.y171{bottom:173.986667pt;}
.y255{bottom:176.346667pt;}
.ya8{bottom:176.506667pt;}
.y29b{bottom:176.986667pt;}
.y11{bottom:177.946667pt;}
.y1b0{bottom:178.746667pt;}
.y167{bottom:182.106667pt;}
.y219{bottom:182.266667pt;}
.y194{bottom:183.066667pt;}
.y136{bottom:183.226667pt;}
.y4d{bottom:184.186667pt;}
.y172{bottom:188.573333pt;}
.y1ca{bottom:191.226667pt;}
.yd5{bottom:193.306667pt;}
.yc1{bottom:193.626667pt;}
.yed{bottom:196.666667pt;}
.y1e4{bottom:197.946667pt;}
.y262{bottom:199.386667pt;}
.y66{bottom:199.546667pt;}
.y12b{bottom:200.666667pt;}
.ye7{bottom:202.106667pt;}
.y173{bottom:203.133333pt;}
.y119{bottom:203.386667pt;}
.y254{bottom:203.866667pt;}
.ya7{bottom:204.026667pt;}
.y42{bottom:205.466667pt;}
.y1af{bottom:206.266667pt;}
.y20d{bottom:208.986667pt;}
.y193{bottom:210.746667pt;}
.y135{bottom:210.906667pt;}
.y10{bottom:215.866667pt;}
.y174{bottom:217.733333pt;}
.y1c9{bottom:218.746667pt;}
.yc0{bottom:221.306667pt;}
.y166{bottom:223.066667pt;}
.y218{bottom:223.226667pt;}
.yec{bottom:224.186667pt;}
.y4c{bottom:225.146667pt;}
.y261{bottom:227.066667pt;}
.y1e3{bottom:227.386667pt;}
.y12a{bottom:228.346667pt;}
.y106{bottom:228.666667pt;}
.ye6{bottom:229.786667pt;}
.y274{bottom:231.386667pt;}
.y253{bottom:231.546667pt;}
.ya6{bottom:231.706667pt;}
.y65{bottom:233.946667pt;}
.yd4{bottom:234.106667pt;}
.y20c{bottom:236.666667pt;}
.y192{bottom:238.266667pt;}
.y134{bottom:238.426667pt;}
.ybf{bottom:248.826667pt;}
.yd3{bottom:250.426667pt;}
.y217{bottom:250.906667pt;}
.yf{bottom:253.626667pt;}
.y260{bottom:254.586667pt;}
.y129{bottom:255.866667pt;}
.y1e2{bottom:256.666667pt;}
.ye5{bottom:257.306667pt;}
.y273{bottom:259.066667pt;}
.y1c8{bottom:259.706667pt;}
.y165{bottom:264.026667pt;}
.y20b{bottom:264.186667pt;}
.y41{bottom:265.146667pt;}
.y191{bottom:265.946667pt;}
.y4b{bottom:266.106667pt;}
.y286{bottom:266.586667pt;}
.y64{bottom:268.186667pt;}
.y105{bottom:269.626667pt;}
.yd1{bottom:272.346667pt;}
.y1ae{bottom:275.386667pt;}
.ya5{bottom:276.346667pt;}
.ybe{bottom:276.506667pt;}
.y216{bottom:278.426667pt;}
.y299{bottom:281.786667pt;}
.y25f{bottom:282.266667pt;}
.y128{bottom:283.546667pt;}
.ye4{bottom:284.986667pt;}
.y1e1{bottom:285.466667pt;}
.y272{bottom:286.586667pt;}
.y1c7{bottom:287.386667pt;}
.y252{bottom:291.106667pt;}
.y164{bottom:291.746667pt;}
.y20a{bottom:291.906667pt;}
.y40{bottom:292.706667pt;}
.y190{bottom:293.506667pt;}
.yd0{bottom:294.466667pt;}
.y104{bottom:297.346667pt;}
.y63{bottom:302.626667pt;}
.ybd{bottom:304.066667pt;}
.y1ad{bottom:304.226667pt;}
.y215{bottom:306.146667pt;}
.y4a{bottom:307.106667pt;}
.y29{bottom:311.586667pt;}
.ye{bottom:312.386667pt;}
.ye3{bottom:312.546667pt;}
.y1e0{bottom:313.826667pt;}
.y268{bottom:314.306667pt;}
.y1c6{bottom:314.946667pt;}
.ycd{bottom:316.546667pt;}
.ya4{bottom:317.346667pt;}
.y251{bottom:318.786667pt;}
.y163{bottom:319.266667pt;}
.y209{bottom:319.426667pt;}
.yeb{bottom:320.386667pt;}
.y18f{bottom:321.186667pt;}
.y127{bottom:324.546667pt;}
.y103{bottom:324.866667pt;}
.y155{bottom:330.946667pt;}
.ybc{bottom:331.746667pt;}
.y1ac{bottom:332.546667pt;}
.y3f{bottom:333.666667pt;}
.y133{bottom:334.626667pt;}
.y62{bottom:337.026667pt;}
.ycb{bottom:338.466667pt;}
.y2a5{bottom:340.226667pt;}
.y25e{bottom:341.826667pt;}
.y1df{bottom:343.106667pt;}
.ya3{bottom:344.866667pt;}
.y298{bottom:345.346667pt;}
.y250{bottom:346.306667pt;}
.y162{bottom:347.106667pt;}
.y49{bottom:347.906667pt;}
.y18e{bottom:348.706667pt;}
.ye2{bottom:351.266667pt;}
.y126{bottom:352.066667pt;}
.y28{bottom:352.546667pt;}
.y1c5{bottom:355.906667pt;}
.y2a4{bottom:356.226667pt;}
.y154{bottom:358.466667pt;}
.y208{bottom:360.386667pt;}
.y3e{bottom:361.346667pt;}
.y132{bottom:362.306667pt;}
.yd{bottom:368.706667pt;}
.y25d{bottom:369.506667pt;}
.y61{bottom:371.266667pt;}
.ya2{bottom:372.546667pt;}
.ybb{bottom:372.706667pt;}
.y271{bottom:373.826667pt;}
.y24f{bottom:373.986667pt;}
.ye1{bottom:374.466667pt;}
.y214{bottom:374.626667pt;}
.y48{bottom:375.586667pt;}
.y18d{bottom:376.386667pt;}
.y125{bottom:379.746667pt;}
.y27{bottom:380.066667pt;}
.y1c4{bottom:383.426667pt;}
.y153{bottom:386.146667pt;}
.yca{bottom:386.786667pt;}
.y161{bottom:387.746667pt;}
.y207{bottom:387.906667pt;}
.y3d{bottom:388.866667pt;}
.y131{bottom:389.826667pt;}
.y284{bottom:392.226667pt;}
.y226{bottom:392.386667pt;}
.y25c{bottom:397.026667pt;}
.ye0{bottom:397.666667pt;}
.ya1{bottom:400.066667pt;}
.yba{bottom:400.226667pt;}
.y200{bottom:401.186667pt;}
.y1de{bottom:401.346667pt;}
.y270{bottom:401.506667pt;}
.y213{bottom:402.306667pt;}
.y60{bottom:405.666667pt;}
.y94{bottom:406.946667pt;}
.y124{bottom:407.266667pt;}
.y102{bottom:407.746667pt;}
.y26{bottom:408.866667pt;}
.y233{bottom:410.306667pt;}
.y7a{bottom:410.466667pt;}
.y1c3{bottom:411.106667pt;}
.y152{bottom:413.666667pt;}
.yc9{bottom:414.146667pt;}
.y160{bottom:415.426667pt;}
.y206{bottom:415.586667pt;}
.y3c{bottom:416.546667pt;}
.y1ab{bottom:416.706667pt;}
.y18c{bottom:417.346667pt;}
.y130{bottom:417.506667pt;}
.y25b{bottom:424.546667pt;}
.yc{bottom:424.866667pt;}
.y116{bottom:425.506667pt;}
.ydf{bottom:426.626667pt;}
.ya0{bottom:427.746667pt;}
.y1dd{bottom:428.866667pt;}
.y26f{bottom:429.026667pt;}
.y212{bottom:429.826667pt;}
.y87{bottom:431.746667pt;}
.y24e{bottom:433.506667pt;}
.y123{bottom:434.946667pt;}
.y101{bottom:435.266667pt;}
.y25{bottom:436.386667pt;}
.y79{bottom:437.986667pt;}
.y1c2{bottom:438.786667pt;}
.y5f{bottom:439.906667pt;}
.y1ff{bottom:442.146667pt;}
.y15f{bottom:442.946667pt;}
.y205{bottom:443.106667pt;}
.y3b{bottom:444.066667pt;}
.y18b{bottom:444.866667pt;}
.y93{bottom:447.746667pt;}
.y297{bottom:450.146667pt;}
.y232{bottom:451.106667pt;}
.y2a3{bottom:451.586667pt;}
.y225{bottom:452.066667pt;}
.yc8{bottom:453.026667pt;}
.y151{bottom:454.626667pt;}
.y9f{bottom:455.266667pt;}
.yb9{bottom:455.426667pt;}
.y26e{bottom:456.546667pt;}
.y1dc{bottom:456.706667pt;}
.y1aa{bottom:457.506667pt;}
.y12f{bottom:458.306667pt;}
.y24d{bottom:461.186667pt;}
.y100{bottom:462.946667pt;}
.y240{bottom:464.226667pt;}
.y24{bottom:465.026667pt;}
.y78{bottom:465.666667pt;}
.y122{bottom:465.986667pt;}
.y115{bottom:466.306667pt;}
.y5e{bottom:467.266667pt;}
.yde{bottom:467.906667pt;}
.y1fe{bottom:469.826667pt;}
.y15e{bottom:470.626667pt;}
.y204{bottom:470.786667pt;}
.y3a{bottom:471.746667pt;}
.y86{bottom:472.546667pt;}
.yc7{bottom:476.226667pt;}
.y281{bottom:476.386667pt;}
.y231{bottom:478.786667pt;}
.y224{bottom:479.746667pt;}
.yb{bottom:481.186667pt;}
.y150{bottom:482.306667pt;}
.y9e{bottom:482.946667pt;}
.y1db{bottom:484.066667pt;}
.y25a{bottom:484.226667pt;}
.y1a9{bottom:485.026667pt;}
.y92{bottom:488.706667pt;}
.y23{bottom:492.706667pt;}
.y77{bottom:493.186667pt;}
.y1c1{bottom:493.826667pt;}
.y114{bottom:493.986667pt;}
.y1fd{bottom:497.346667pt;}
.y15d{bottom:498.146667pt;}
.y39{bottom:499.266667pt;}
.y85{bottom:500.226667pt;}
.y5d{bottom:501.826667pt;}
.y121{bottom:502.306667pt;}
.yff{bottom:503.746667pt;}
.y23f{bottom:505.186667pt;}
.y230{bottom:506.306667pt;}
.y223{bottom:507.266667pt;}
.y14f{bottom:509.986667pt;}
.y9d{bottom:510.466667pt;}
.yb8{bottom:510.626667pt;}
.y1da{bottom:511.746667pt;}
.y1a8{bottom:512.546667pt;}
.yc6{bottom:514.466667pt;}
.y26d{bottom:516.226667pt;}
.y24c{bottom:516.386667pt;}
.y76{bottom:520.866667pt;}
.y22{bottom:521.346667pt;}
.y113{bottom:521.506667pt;}
.y1fc{bottom:525.026667pt;}
.y120{bottom:525.666667pt;}
.y15c{bottom:525.986667pt;}
.y47{bottom:526.946667pt;}
.y84{bottom:527.746667pt;}
.y91{bottom:529.693333pt;}
.yfe{bottom:531.453333pt;}
.y23e{bottom:532.733333pt;}
.y22f{bottom:534.013333pt;}
.y295{bottom:534.333333pt;}
.y222{bottom:534.973333pt;}
.y5c{bottom:536.253333pt;}
.ya{bottom:537.533333pt;}
.y9c{bottom:538.013333pt;}
.yb7{bottom:538.173333pt;}
.y203{bottom:539.293333pt;}
.y259{bottom:539.453333pt;}
.y38{bottom:540.253333pt;}
.y26c{bottom:543.773333pt;}
.y21{bottom:548.893333pt;}
.y112{bottom:549.213333pt;}
.y1d9{bottom:552.573333pt;}
.y211{bottom:553.533333pt;}
.y46{bottom:554.493333pt;}
.y18a{bottom:555.293333pt;}
.yc5{bottom:555.453333pt;}
.yfd{bottom:559.133333pt;}
.y22e{bottom:561.533333pt;}
.y75{bottom:561.693333pt;}
.y1c0{bottom:562.493333pt;}
.y14e{bottom:565.213333pt;}
.yb6{bottom:565.853333pt;}
.y9b{bottom:566.813333pt;}
.y202{bottom:566.973333pt;}
.y37{bottom:567.773333pt;}
.y83{bottom:568.733333pt;}
.y5b{bottom:570.653333pt;}
.y26b{bottom:571.453333pt;}
.y24b{bottom:575.933333pt;}
.y111{bottom:576.733333pt;}
.y20{bottom:577.693333pt;}
.y1d8{bottom:580.253333pt;}
.ydd{bottom:581.213333pt;}
.y12e{bottom:582.173333pt;}
.y189{bottom:582.973333pt;}
.y23d{bottom:589.053333pt;}
.y22d{bottom:589.213333pt;}
.y1bf{bottom:590.013333pt;}
.y221{bottom:590.173333pt;}
.y27f{bottom:592.413333pt;}
.y1fb{bottom:593.533333pt;}
.y9a{bottom:594.333333pt;}
.y201{bottom:594.493333pt;}
.y277{bottom:594.653333pt;}
.y15b{bottom:594.973333pt;}
.y36{bottom:595.453333pt;}
.y82{bottom:596.413333pt;}
.y26a{bottom:598.973333pt;}
.yfc{bottom:599.933333pt;}
.y74{bottom:602.653333pt;}
.y24a{bottom:603.613333pt;}
.y5a{bottom:604.893333pt;}
.y1f{bottom:605.213333pt;}
.y14d{bottom:606.013333pt;}
.yb5{bottom:606.813333pt;}
.y1d7{bottom:607.773333pt;}
.y1a7{bottom:608.733333pt;}
.y188{bottom:610.493333pt;}
.y90{bottom:611.613333pt;}
.y22c{bottom:616.733333pt;}
.y9{bottom:616.893333pt;}
.y110{bottom:617.693333pt;}
.y23c{bottom:617.853333pt;}
.y1fa{bottom:621.053333pt;}
.y99{bottom:622.013333pt;}
.ydc{bottom:622.173333pt;}
.y35{bottom:622.973333pt;}
.y15a{bottom:624.413333pt;}
.y258{bottom:626.653333pt;}
.y73{bottom:630.333333pt;}
.y220{bottom:630.973333pt;}
.y249{bottom:631.133333pt;}
.y14c{bottom:633.533333pt;}
.yb4{bottom:634.333333pt;}
.y1d6{bottom:635.453333pt;}
.y1a6{bottom:636.413333pt;}
.y81{bottom:637.373333pt;}
.y8f{bottom:639.133333pt;}
.y59{bottom:639.293333pt;}
.y22b{bottom:644.413333pt;}
.y1be{bottom:645.213333pt;}
.y10f{bottom:645.373333pt;}
.y1e{bottom:647.293333pt;}
.y1f9{bottom:648.733333pt;}
.y98{bottom:649.533333pt;}
.ydb{bottom:649.693333pt;}
.y34{bottom:650.653333pt;}
.y187{bottom:651.453333pt;}
.y159{bottom:653.213333pt;}
.y257{bottom:654.173333pt;}
.y72{bottom:657.853333pt;}
.y118{bottom:658.653333pt;}
.yfb{bottom:659.613333pt;}
.y294{bottom:659.773333pt;}
.y14b{bottom:661.373333pt;}
.yb3{bottom:662.013333pt;}
.y1d5{bottom:662.973333pt;}
.yea{bottom:663.933333pt;}
.y80{bottom:664.893333pt;}
.y22a{bottom:671.933333pt;}
.y2a2{bottom:672.573333pt;}
.y10e{bottom:672.893333pt;}
.y1bd{bottom:673.053333pt;}
.y58{bottom:673.533333pt;}
.y23b{bottom:674.013333pt;}
.y1f8{bottom:676.253333pt;}
.y97{bottom:677.213333pt;}
.yda{bottom:677.373333pt;}
.y33{bottom:678.173333pt;}
.y186{bottom:678.973333pt;}
.y8e{bottom:680.093333pt;}
.y158{bottom:680.733333pt;}
.y267{bottom:681.853333pt;}
.y71{bottom:685.533333pt;}
.y117{bottom:686.173333pt;}
.yfa{bottom:687.133333pt;}
.y1d{bottom:688.253333pt;}
.y14a{bottom:688.733333pt;}
.yb2{bottom:689.533333pt;}
.y1d4{bottom:690.653333pt;}
.y248{bottom:690.813333pt;}
.ye9{bottom:691.613333pt;}
.y7f{bottom:692.573333pt;}
.y8{bottom:698.173333pt;}
.y229{bottom:699.613333pt;}
.y21e{bottom:700.573333pt;}
.y23a{bottom:701.693333pt;}
.y1f7{bottom:704.093333pt;}
.y96{bottom:704.733333pt;}
.yd9{bottom:704.893333pt;}
.y45{bottom:705.853333pt;}
.y185{bottom:706.653333pt;}
.y8d{bottom:707.773333pt;}
.y57{bottom:707.933333pt;}
.y157{bottom:708.573333pt;}
.y266{bottom:709.373333pt;}
.y70{bottom:713.053333pt;}
.y1bc{bottom:713.693333pt;}
.y10d{bottom:713.853333pt;}
.yf9{bottom:714.813333pt;}
.y1c{bottom:715.773333pt;}
.y149{bottom:716.413333pt;}
.yb1{bottom:717.213333pt;}
.y1d3{bottom:718.173333pt;}
.y247{bottom:718.333333pt;}
.y32{bottom:719.133333pt;}
.y228{bottom:727.133333pt;}
.y239{bottom:730.333333pt;}
.y95{bottom:732.253333pt;}
.yd8{bottom:732.573333pt;}
.y7e{bottom:733.373333pt;}
.y184{bottom:734.173333pt;}
.y265{bottom:737.053333pt;}
.y156{bottom:739.613333pt;}
.y6f{bottom:740.733333pt;}
.y10c{bottom:741.373333pt;}
.y1bb{bottom:741.533333pt;}
.y56{bottom:742.333333pt;}
.y148{bottom:744.093333pt;}
.y1b{bottom:744.413333pt;}
.yb0{bottom:744.733333pt;}
.y1f6{bottom:744.893333pt;}
.y1d2{bottom:745.853333pt;}
.y246{bottom:746.013333pt;}
.y31{bottom:746.813333pt;}
.y8c{bottom:748.573333pt;}
.y227{bottom:754.813333pt;}
.yf8{bottom:755.933333pt;}
.y238{bottom:758.013333pt;}
.yc4{bottom:760.093333pt;}
.y1a5{bottom:760.253333pt;}
.y7d{bottom:761.053333pt;}
.y183{bottom:761.853333pt;}
.y276{bottom:764.573333pt;}
.y10b{bottom:769.093333pt;}
.y1a{bottom:772.133333pt;}
.y17b{bottom:772.293333pt;}
.yaf{bottom:772.453333pt;}
.y1d1{bottom:773.413333pt;}
.y245{bottom:773.573333pt;}
.y44{bottom:774.373333pt;}
.y169{bottom:774.560000pt;}
.y55{bottom:776.613333pt;}
.y2a1{bottom:777.413333pt;}
.y6e{bottom:781.573333pt;}
.y1ba{bottom:782.373333pt;}
.y175{bottom:782.400000pt;}
.y147{bottom:782.853333pt;}
.yf7{bottom:783.493333pt;}
.y237{bottom:785.573333pt;}
.y30{bottom:787.813333pt;}
.y8b{bottom:789.573333pt;}
.y7{bottom:791.493333pt;}
.y27a{bottom:792.773333pt;}
.y10a{bottom:796.613333pt;}
.yae{bottom:799.973333pt;}
.y1f5{bottom:800.133333pt;}
.y19{bottom:800.773333pt;}
.y1d0{bottom:801.093333pt;}
.y244{bottom:801.253333pt;}
.y7c{bottom:802.053333pt;}
.y1b9{bottom:809.893333pt;}
.y21f{bottom:810.053333pt;}
.y54{bottom:811.013333pt;}
.y236{bottom:814.213333pt;}
.y2f{bottom:815.333333pt;}
.y1a4{bottom:815.493333pt;}
.y144{bottom:819.973333pt;}
.y6d{bottom:822.533333pt;}
.yf6{bottom:824.293333pt;}
.yad{bottom:827.493333pt;}
.y182{bottom:828.293333pt;}
.y1cf{bottom:828.613333pt;}
.y7b{bottom:829.573333pt;}
.y8a{bottom:830.533333pt;}
.y1b8{bottom:837.573333pt;}
.y1f4{bottom:839.013333pt;}
.y235{bottom:841.893333pt;}
.y198{bottom:842.053333pt;}
.y18{bottom:842.853333pt;}
.y53{bottom:845.253333pt;}
.y141{bottom:846.053333pt;}
.yf5{bottom:851.813333pt;}
.y1eb{bottom:852.613333pt;}
.yac{bottom:856.293333pt;}
.y6c{bottom:857.253333pt;}
.y243{bottom:860.773333pt;}
.y2a0{bottom:861.573333pt;}
.y1a0{bottom:863.973333pt;}
.y21d{bottom:865.253333pt;}
.y6{bottom:866.693333pt;}
.y234{bottom:869.413333pt;}
.y2e{bottom:870.533333pt;}
.y89{bottom:871.493333pt;}
.y13d{bottom:872.133333pt;}
.y1f3{bottom:878.533333pt;}
.y1b7{bottom:879.013333pt;}
.yf4{bottom:879.493333pt;}
.y52{bottom:879.653333pt;}
.y17{bottom:883.653333pt;}
.yab{bottom:883.813333pt;}
.y242{bottom:888.453333pt;}
.y6b{bottom:891.493333pt;}
.y109{bottom:892.773333pt;}
.y28f{bottom:892.933333pt;}
.y278{bottom:897.573333pt;}
.y13a{bottom:897.893333pt;}
.y2d{bottom:898.053333pt;}
.y1f1{bottom:904.293333pt;}
.y196{bottom:906.693333pt;}
.yf3{bottom:907.013333pt;}
.y1b6{bottom:908.773333pt;}
.y16{bottom:911.333333pt;}
.yaa{bottom:911.493333pt;}
.y88{bottom:912.453333pt;}
.y5{bottom:912.773333pt;}
.y51{bottom:914.053333pt;}
.y241{bottom:915.973333pt;}
.y11f{bottom:916.453333pt;}
.y108{bottom:920.453333pt;}
.y2b{bottom:925.733333pt;}
.y6a{bottom:925.893333pt;}
.y19b{bottom:930.213333pt;}
.y1ee{bottom:931.333333pt;}
.yf2{bottom:934.693333pt;}
.y1b5{bottom:937.253333pt;}
.ya9{bottom:939.013333pt;}
.y11e{bottom:944.133333pt;}
.y107{bottom:947.973333pt;}
.y50{bottom:948.293333pt;}
.y15{bottom:953.253333pt;}
.y4{bottom:953.573333pt;}
.y1e8{bottom:957.093333pt;}
.y69{bottom:960.293333pt;}
.yf1{bottom:962.213333pt;}
.y1b4{bottom:964.773333pt;}
.y29f{bottom:966.373333pt;}
.y2a{bottom:966.693333pt;}
.y1ce{bottom:966.853333pt;}
.y17e{bottom:972.293333pt;}
.y4f{bottom:975.493333pt;}
.y11d{bottom:975.813333pt;}
.y180{bottom:977.253333pt;}
.y1ea{bottom:983.173333pt;}
.y1b3{bottom:993.093333pt;}
.y14{bottom:994.213333pt;}
.y11c{bottom:994.373333pt;}
.y3{bottom:994.533333pt;}
.h1e{height:18.400000pt;}
.hd{height:20.640000pt;}
.hb{height:20.800000pt;}
.he{height:20.832000pt;}
.h14{height:21.920000pt;}
.h21{height:22.080000pt;}
.h29{height:23.040000pt;}
.h1d{height:23.360000pt;}
.h12{height:24.480000pt;}
.h25{height:24.640000pt;}
.h24{height:24.672000pt;}
.h13{height:24.800000pt;}
.h28{height:25.600000pt;}
.h11{height:41.440000pt;}
.h37{height:41.472000pt;}
.h1f{height:45.440000pt;}
.h1c{height:47.360000pt;}
.hc{height:50.062500pt;}
.h23{height:50.752000pt;}
.h16{height:52.134375pt;}
.ha{height:55.402500pt;}
.h17{height:56.640000pt;}
.h8{height:57.375000pt;}
.h36{height:62.080000pt;}
.h35{height:62.112000pt;}
.h2{height:62.812500pt;}
.h27{height:62.925000pt;}
.h22{height:63.360000pt;}
.h7{height:66.750000pt;}
.h10{height:74.141167pt;}
.h9{height:74.162500pt;}
.hf{height:74.322500pt;}
.h6{height:78.097500pt;}
.h2e{height:82.720000pt;}
.h34{height:82.752000pt;}
.h38{height:82.880000pt;}
.h2b{height:82.912000pt;}
.h3{height:88.777500pt;}
.h1b{height:91.040000pt;}
.h3a{height:94.080000pt;}
.h26{height:103.200000pt;}
.h2a{height:103.520000pt;}
.h39{height:103.552000pt;}
.h20{height:110.080000pt;}
.h30{height:111.200000pt;}
.h1a{height:113.760000pt;}
.h2d{height:114.752000pt;}
.h2c{height:114.880000pt;}
.h31{height:114.912000pt;}
.h33{height:124.160000pt;}
.h2f{height:124.352000pt;}
.h5{height:126.945000pt;}
.h32{height:127.072000pt;}
.h19{height:136.320000pt;}
.h4{height:139.965000pt;}
.h18{height:158.880000pt;}
.h15{height:234.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:28.800000pt;}
.w9{width:52.800000pt;}
.wa{width:56.160000pt;}
.w1d{width:62.400000pt;}
.w1a{width:65.440000pt;}
.w17{width:66.240000pt;}
.w14{width:78.560000pt;}
.w15{width:84.192000pt;}
.w21{width:84.992000pt;}
.w20{width:85.600000pt;}
.w1f{width:85.792000pt;}
.wf{width:90.560000pt;}
.wc{width:93.600000pt;}
.w19{width:94.592000pt;}
.w10{width:96.672000pt;}
.w11{width:96.832000pt;}
.w16{width:98.912000pt;}
.w1c{width:99.872000pt;}
.w12{width:100.992000pt;}
.w1b{width:105.152000pt;}
.wd{width:106.080000pt;}
.we{width:117.920000pt;}
.w18{width:118.272000pt;}
.w5{width:118.592000pt;}
.w13{width:121.952000pt;}
.w4{width:136.026667pt;}
.w2{width:136.186667pt;}
.w3{width:143.386667pt;}
.w6{width:143.866667pt;}
.w7{width:157.946667pt;}
.w1e{width:256.386667pt;}
.w8{width:550.720000pt;}
.w22{width:575.013333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:6.560000pt;}
.x32{left:8.066667pt;}
.x2b{left:9.600000pt;}
.x33{left:11.173333pt;}
.x46{left:12.960000pt;}
.x41{left:13.920000pt;}
.x40{left:15.040000pt;}
.x30{left:16.866667pt;}
.x20{left:18.080000pt;}
.x49{left:20.320000pt;}
.x3e{left:21.440000pt;}
.x45{left:22.600000pt;}
.x3d{left:23.514667pt;}
.x23{left:25.440000pt;}
.x2f{left:27.013333pt;}
.x48{left:30.080000pt;}
.x47{left:32.480000pt;}
.x3b{left:33.440000pt;}
.x37{left:35.080000pt;}
.x1e{left:38.560000pt;}
.x43{left:44.160000pt;}
.x1d{left:45.594667pt;}
.x29{left:48.960000pt;}
.x4a{left:50.720000pt;}
.x26{left:52.640000pt;}
.x25{left:53.920000pt;}
.x2c{left:56.000000pt;}
.x21{left:58.240000pt;}
.x2a{left:59.200000pt;}
.x24{left:61.600000pt;}
.x27{left:65.280000pt;}
.x28{left:75.840000pt;}
.x4f{left:80.680000pt;}
.x53{left:106.912000pt;}
.xb{left:113.472000pt;}
.x11{left:129.472000pt;}
.x3{left:137.306667pt;}
.x2e{left:139.200000pt;}
.x10{left:153.306667pt;}
.x52{left:156.186667pt;}
.x4b{left:160.666667pt;}
.xa{left:161.946667pt;}
.x3a{left:167.706667pt;}
.x12{left:169.306667pt;}
.x5{left:176.186667pt;}
.x4c{left:179.546667pt;}
.x16{left:185.466667pt;}
.x36{left:193.146667pt;}
.x7{left:195.546667pt;}
.x17{left:209.466667pt;}
.x31{left:214.080000pt;}
.x6{left:228.386667pt;}
.x1a{left:250.306667pt;}
.x3f{left:276.866667pt;}
.x4d{left:284.706667pt;}
.x38{left:309.666667pt;}
.x9{left:322.306667pt;}
.x8{left:358.973333pt;}
.x1f{left:368.733333pt;}
.x2{left:375.933333pt;}
.x4e{left:384.573333pt;}
.x3c{left:406.493333pt;}
.x4{left:408.893333pt;}
.x39{left:414.333333pt;}
.x42{left:442.013333pt;}
.x34{left:447.360000pt;}
.x22{left:512.613333pt;}
.x1b{left:515.973333pt;}
.x18{left:528.933333pt;}
.x50{left:532.773333pt;}
.x44{left:560.293333pt;}
.x35{left:566.080000pt;}
.x51{left:618.373333pt;}
.x1c{left:645.600000pt;}
.x14{left:652.960000pt;}
.x13{left:658.240000pt;}
.xf{left:663.520000pt;}
.xe{left:664.480000pt;}
.xd{left:669.760000pt;}
.x15{left:672.480000pt;}
.xc{left:675.200000pt;}
.x1{left:680.480000pt;}
.x2d{left:691.360000pt;}
}




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