
    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_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e40fc80b2a41c669d729db18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_c5821bb7fbb40885b0d0b5f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_300010ed21826f0e8977e9c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_76b7a99c73764d7926bb4441.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.727539;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_92887a736c1efa543d545781.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_97664673e5c011fd92ea5620.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.872559;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_f1508570aa07f48aaa06e37b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_282d142d967536dbc7f5e6cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_21a456f66d67648a148c8b6c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_07ce489183355d9e55dd4580.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933105;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_444ca8a39b6de1790b028302.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9d3559eaaec59341d6467aa3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_6ba065eb56043e442beef26c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.982910;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_833c19cd5e95c43d8af95965.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.768555;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.480000px;}
.v2{vertical-align:30.240000px;}
.ls18{letter-spacing:-1.758000px;}
.ls9{letter-spacing:-1.632000px;}
.ls38{letter-spacing:-1.422000px;}
.ls2a{letter-spacing:-1.236000px;}
.lsd{letter-spacing:-1.158000px;}
.ls8{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.846000px;}
.lsa{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.804000px;}
.lsf{letter-spacing:-0.786000px;}
.ls36{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.708000px;}
.ls4{letter-spacing:-0.672000px;}
.ls16{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.642000px;}
.ls15{letter-spacing:-0.606000px;}
.ls30{letter-spacing:-0.570000px;}
.ls1d{letter-spacing:-0.481200px;}
.ls35{letter-spacing:-0.472200px;}
.ls32{letter-spacing:-0.463800px;}
.ls39{letter-spacing:-0.423600px;}
.ls37{letter-spacing:-0.406200px;}
.lsc{letter-spacing:-0.382800px;}
.ls25{letter-spacing:-0.368400px;}
.ls33{letter-spacing:-0.348600px;}
.ls17{letter-spacing:-0.313800px;}
.ls24{letter-spacing:-0.291000px;}
.ls5{letter-spacing:-0.219000px;}
.ls12{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.169800px;}
.ls1a{letter-spacing:-0.078000px;}
.lsb{letter-spacing:-0.075000px;}
.ls7{letter-spacing:-0.060600px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.109440px;}
.ls2e{letter-spacing:0.132480px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.161280px;}
.ls28{letter-spacing:0.236400px;}
.ls19{letter-spacing:0.374400px;}
.ls2d{letter-spacing:0.512400px;}
.ls31{letter-spacing:0.526800px;}
.ls29{letter-spacing:0.584400px;}
.ls26{letter-spacing:0.587400px;}
.ls2c{letter-spacing:0.587520px;}
.ls6{letter-spacing:0.612000px;}
.ls2b{letter-spacing:0.699840px;}
.ls1f{letter-spacing:0.731520px;}
.ls27{letter-spacing:0.843840px;}
.ls2{letter-spacing:0.875520px;}
.ls13{letter-spacing:1.392000px;}
.ls2f{letter-spacing:5.189760px;}
.ls34{letter-spacing:8.069760px;}
.ls1c{letter-spacing:10.949760px;}
.ls1b{letter-spacing:15.269760px;}
.ls21{letter-spacing:43.827840px;}
.ls22{letter-spacing:68.307840px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1d{word-spacing:-66.240000px;}
.ws0{word-spacing:-60.480000px;}
.ws1a{word-spacing:-54.720000px;}
.ws8{word-spacing:-46.762440px;}
.ws4{word-spacing:-24.624000px;}
.ws5{word-spacing:-21.997440px;}
.ws6{word-spacing:-21.061440px;}
.ws1f{word-spacing:-15.497040px;}
.ws1e{word-spacing:-15.482640px;}
.wsf{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.892240px;}
.wse{word-spacing:-14.754240px;}
.ws21{word-spacing:-14.621640px;}
.ws20{word-spacing:-14.506440px;}
.ws18{word-spacing:-14.489040px;}
.ws13{word-spacing:-14.322240px;}
.ws1{word-spacing:-13.789440px;}
.ws3{word-spacing:-13.728840px;}
.wsc{word-spacing:-13.668480px;}
.ws2{word-spacing:-13.570440px;}
.ws22{word-spacing:-13.548240px;}
.ws10{word-spacing:-13.498680px;}
.ws14{word-spacing:-13.354680px;}
.ws23{word-spacing:-13.244880px;}
.ws11{word-spacing:-13.062480px;}
.ws19{word-spacing:-12.864480px;}
.wsd{word-spacing:-12.822480px;}
.ws16{word-spacing:-12.741120px;}
.ws1b{word-spacing:-12.438720px;}
.wsa{word-spacing:-12.366720px;}
.ws1c{word-spacing:-12.075720px;}
.ws12{word-spacing:-12.036480px;}
.ws9{word-spacing:-11.983920px;}
.wsb{word-spacing:-11.724720px;}
.ws15{word-spacing:-10.608720px;}
.ws7{word-spacing:0.000000px;}
._f{margin-left:-2.604480px;}
._0{margin-left:-1.419360px;}
._1{width:1.040640px;}
._2{width:2.118720px;}
._6{width:4.026240px;}
._5{width:5.454240px;}
._4{width:6.531840px;}
._b{width:8.189280px;}
._d{width:9.858240px;}
._e{width:11.789760px;}
._17{width:12.816480px;}
._c{width:14.704800px;}
._a{width:16.208640px;}
._9{width:18.204480px;}
._8{width:19.897920px;}
._7{width:21.164160px;}
._12{width:23.042880px;}
._13{width:24.481920px;}
._18{width:26.086080px;}
._10{width:27.518400px;}
._11{width:28.574880px;}
._14{width:29.812800px;}
._24{width:30.852000px;}
._1c{width:32.339520px;}
._1a{width:34.201440px;}
._19{width:35.400480px;}
._15{width:36.408960px;}
._16{width:39.592800px;}
._26{width:41.587200px;}
._27{width:43.227840px;}
._33{width:45.198720px;}
._1f{width:46.289760px;}
._30{width:47.696160px;}
._3{width:48.939360px;}
._28{width:50.605920px;}
._20{width:51.819840px;}
._1d{width:53.274240px;}
._37{width:55.099680px;}
._36{width:56.689920px;}
._21{width:61.392480px;}
._2e{width:62.651040px;}
._23{width:64.234560px;}
._2f{width:66.040320px;}
._22{width:68.048640px;}
._35{width:74.415840px;}
._34{width:76.006080px;}
._2d{width:77.132160px;}
._29{width:81.780000px;}
._38{width:85.719840px;}
._1e{width:86.840640px;}
._2a{width:89.226240px;}
._32{width:105.712320px;}
._31{width:136.629120px;}
._2c{width:168.457440px;}
._25{width:332.514000px;}
._2b{width:338.877600px;}
._1b{width:596.580000px;}
.fc4{color:rgb(0,112,192);}
.fc5{color:transparent;}
.fc1{color:rgb(79,98,40);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(95,95,95);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:47.520000px;}
.fs9{font-size:54.720000px;}
.fs3{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.fs2{font-size:168.480000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:3.960000px;}
.y167{bottom:6.474000px;}
.yc4{bottom:6.480000px;}
.yd1{bottom:6.525000px;}
.yc2{bottom:7.920000px;}
.y1b6{bottom:8.274000px;}
.y1b3{bottom:8.280000px;}
.y1af{bottom:8.640000px;}
.y46{bottom:9.360000px;}
.y45{bottom:12.600000px;}
.y10d{bottom:12.630000px;}
.ydf{bottom:12.645000px;}
.y1d6{bottom:12.960000px;}
.yc5{bottom:16.200000px;}
.y54{bottom:19.470000px;}
.y1d{bottom:20.520000px;}
.y53{bottom:20.550000px;}
.y197{bottom:21.600000px;}
.y33{bottom:21.960000px;}
.y2c{bottom:22.320000px;}
.y69{bottom:22.350000px;}
.y104{bottom:23.040000px;}
.y1b{bottom:23.760000px;}
.yc1{bottom:24.480000px;}
.y1b5{bottom:25.914000px;}
.yc3{bottom:25.920000px;}
.y1c6{bottom:25.950000px;}
.yd0{bottom:25.965000px;}
.y1ae{bottom:26.280000px;}
.y1c2{bottom:26.325000px;}
.y166{bottom:26.634000px;}
.yb{bottom:27.720000px;}
.y222{bottom:28.800000px;}
.y1d5{bottom:29.160000px;}
.ydd{bottom:29.205000px;}
.y1d4{bottom:29.520000px;}
.yde{bottom:29.565000px;}
.y1dd{bottom:30.594000px;}
.yf7{bottom:30.600000px;}
.y10c{bottom:30.630000px;}
.y1e1{bottom:30.645000px;}
.y44{bottom:32.760000px;}
.y1e{bottom:37.800000px;}
.y103{bottom:39.600000px;}
.y2b{bottom:40.680000px;}
.y68{bottom:40.710000px;}
.ycf{bottom:42.885000px;}
.y1c5{bottom:43.950000px;}
.y1b1{bottom:44.280000px;}
.y1b4{bottom:44.319000px;}
.y1bc{bottom:44.325000px;}
.ydc{bottom:46.125000px;}
.y165{bottom:46.839000px;}
.y1dc{bottom:48.594000px;}
.yf6{bottom:48.600000px;}
.y10b{bottom:48.630000px;}
.y196{bottom:48.645000px;}
.y1d9{bottom:48.954000px;}
.y220{bottom:51.480000px;}
.y51{bottom:54.360000px;}
.y1a{bottom:54.720000px;}
.y102{bottom:56.160000px;}
.y4a{bottom:57.636000px;}
.y3{bottom:57.996000px;}
.y67{bottom:58.710000px;}
.y2a{bottom:59.040000px;}
.y32{bottom:59.400000px;}
.yd8{bottom:59.445000px;}
.yce{bottom:61.965000px;}
.y1c4{bottom:62.310000px;}
.ydb{bottom:62.325000px;}
.yfa{bottom:66.600000px;}
.y10a{bottom:66.630000px;}
.y1db{bottom:66.639000px;}
.y211{bottom:66.645000px;}
.y164{bottom:66.999000px;}
.y100{bottom:69.165000px;}
.y21f{bottom:69.480000px;}
.y101{bottom:72.765000px;}
.y50{bottom:73.800000px;}
.y49{bottom:74.196000px;}
.ya{bottom:75.960000px;}
.yd7{bottom:76.005000px;}
.y66{bottom:77.070000px;}
.y29{bottom:77.400000px;}
.ycd{bottom:78.885000px;}
.y2{bottom:79.236000px;}
.yf9{bottom:84.600000px;}
.yfc{bottom:84.630000px;}
.y227{bottom:84.645000px;}
.y1d8{bottom:84.999000px;}
.y163{bottom:87.159000px;}
.yff{bottom:88.965000px;}
.y48{bottom:90.396000px;}
.y4f{bottom:93.285000px;}
.y71{bottom:95.070000px;}
.yd6{bottom:95.085000px;}
.y65{bottom:95.430000px;}
.ycc{bottom:95.445000px;}
.y28{bottom:95.760000px;}
.y1ac{bottom:95.799000px;}
.y4d{bottom:95.805000px;}
.y31{bottom:96.840000px;}
.yda{bottom:97.965000px;}
.y233{bottom:102.600000px;}
.y109{bottom:102.630000px;}
.y226{bottom:102.645000px;}
.y85{bottom:106.956000px;}
.y162{bottom:107.319000px;}
.y42{bottom:110.196000px;}
.y194{bottom:110.556000px;}
.ybf{bottom:110.916000px;}
.y23d{bottom:111.630000px;}
.yd5{bottom:112.005000px;}
.y64{bottom:113.790000px;}
.y1ab{bottom:113.799000px;}
.y4c{bottom:113.805000px;}
.y27{bottom:114.165000px;}
.ycb{bottom:114.525000px;}
.yd9{bottom:114.885000px;}
.y237{bottom:115.956000px;}
.y25e{bottom:120.276000px;}
.y108{bottom:120.630000px;}
.y129{bottom:120.636000px;}
.y225{bottom:120.645000px;}
.y1d7{bottom:121.716000px;}
.y84{bottom:123.516000px;}
.y14b{bottom:123.876000px;}
.y9{bottom:124.245000px;}
.y24c{bottom:126.396000px;}
.y291{bottom:127.116000px;}
.y161{bottom:127.479000px;}
.y1b7{bottom:128.196000px;}
.y41{bottom:128.556000px;}
.y18{bottom:129.645000px;}
.y4e{bottom:130.725000px;}
.yd4{bottom:131.085000px;}
.y14a{bottom:131.436000px;}
.yca{bottom:131.445000px;}
.y26{bottom:132.165000px;}
.y63{bottom:132.180000px;}
.y70{bottom:132.540000px;}
.y1f9{bottom:132.876000px;}
.y30{bottom:134.325000px;}
.y40{bottom:136.116000px;}
.y21c{bottom:137.556000px;}
.y232{bottom:138.630000px;}
.y224{bottom:138.645000px;}
.y107{bottom:138.675000px;}
.y25d{bottom:140.436000px;}
.y128{bottom:140.796000px;}
.y1aa{bottom:140.799000px;}
.y149{bottom:142.236000px;}
.y83{bottom:143.676000px;}
.y1a8{bottom:145.116000px;}
.y290{bottom:145.476000px;}
.y155{bottom:146.196000px;}
.y24b{bottom:146.556000px;}
.y3f{bottom:146.916000px;}
.y160{bottom:147.639000px;}
.yb2{bottom:147.996000px;}
.yc9{bottom:148.035000px;}
.y277{bottom:149.076000px;}
.y1df{bottom:149.115000px;}
.y17f{bottom:149.796000px;}
.y25{bottom:150.525000px;}
.y62{bottom:150.540000px;}
.y231{bottom:156.630000px;}
.y223{bottom:156.645000px;}
.y106{bottom:156.675000px;}
.ybe{bottom:156.990000px;}
.y21b{bottom:157.710000px;}
.y1ee{bottom:158.070000px;}
.y17e{bottom:160.230000px;}
.y17{bottom:161.325000px;}
.yfd{bottom:162.030000px;}
.y82{bottom:163.830000px;}
.yd3{bottom:164.235000px;}
.y3e{bottom:165.270000px;}
.y24a{bottom:166.710000px;}
.yc8{bottom:167.115000px;}
.y15f{bottom:167.829000px;}
.yb1{bottom:168.150000px;}
.y24{bottom:168.885000px;}
.y61{bottom:168.900000px;}
.y276{bottom:169.230000px;}
.y6f{bottom:169.980000px;}
.y2f{bottom:171.765000px;}
.y8{bottom:172.125000px;}
.y3d{bottom:172.830000px;}
.yc6{bottom:173.910000px;}
.y230{bottom:174.630000px;}
.y21a{bottom:177.870000px;}
.y25c{bottom:178.590000px;}
.y16{bottom:178.605000px;}
.y127{bottom:178.950000px;}
.y206{bottom:182.595000px;}
.yd2{bottom:183.315000px;}
.y3c{bottom:183.675000px;}
.y81{bottom:184.035000px;}
.y193{bottom:185.475000px;}
.y249{bottom:186.915000px;}
.y23{bottom:187.245000px;}
.y60{bottom:187.260000px;}
.y1f4{bottom:187.635000px;}
.yb0{bottom:187.995000px;}
.y15e{bottom:188.349000px;}
.y275{bottom:189.435000px;}
.y17d{bottom:191.595000px;}
.y22f{bottom:192.630000px;}
.y1a9{bottom:194.829000px;}
.y15{bottom:195.885000px;}
.y25b{bottom:198.795000px;}
.y126{bottom:199.155000px;}
.yc7{bottom:200.235000px;}
.y28f{bottom:200.595000px;}
.y3b{bottom:201.675000px;}
.y80{bottom:204.195000px;}
.y5f{bottom:205.260000px;}
.y22{bottom:205.605000px;}
.y1f3{bottom:205.635000px;}
.y248{bottom:206.715000px;}
.y6e{bottom:207.420000px;}
.y236{bottom:207.795000px;}
.yaf{bottom:208.155000px;}
.y15d{bottom:208.509000px;}
.y1b2{bottom:208.875000px;}
.y2e{bottom:209.565000px;}
.y22e{bottom:210.630000px;}
.y1da{bottom:212.475000px;}
.y1f8{bottom:212.835000px;}
.y14{bottom:213.165000px;}
.y1ba{bottom:214.995000px;}
.y219{bottom:216.075000px;}
.y125{bottom:219.315000px;}
.y3a{bottom:220.035000px;}
.y7{bottom:220.365000px;}
.y205{bottom:220.755000px;}
.y192{bottom:223.275000px;}
.y5e{bottom:223.620000px;}
.y1f2{bottom:223.635000px;}
.y21{bottom:223.965000px;}
.y7f{bottom:224.355000px;}
.yfb{bottom:225.075000px;}
.y247{bottom:226.875000px;}
.y39{bottom:227.595000px;}
.yae{bottom:228.315000px;}
.y22d{bottom:228.630000px;}
.y15c{bottom:228.669000px;}
.y23a{bottom:228.675000px;}
.y17c{bottom:229.035000px;}
.y28e{bottom:229.755000px;}
.y13{bottom:230.115000px;}
.y200{bottom:231.540000px;}
.y1b9{bottom:231.555000px;}
.y218{bottom:236.235000px;}
.y25a{bottom:236.955000px;}
.y38{bottom:238.395000px;}
.y124{bottom:239.475000px;}
.y204{bottom:240.915000px;}
.y1f1{bottom:241.635000px;}
.y5d{bottom:241.980000px;}
.y20{bottom:242.355000px;}
.y19e{bottom:243.075000px;}
.y6d{bottom:244.860000px;}
.y148{bottom:246.315000px;}
.y22c{bottom:246.660000px;}
.y239{bottom:246.675000px;}
.y246{bottom:247.035000px;}
.y12{bottom:247.395000px;}
.y274{bottom:247.755000px;}
.yad{bottom:248.475000px;}
.y15b{bottom:248.829000px;}
.y1ff{bottom:249.540000px;}
.y235{bottom:253.875000px;}
.y1b0{bottom:254.595000px;}
.y37{bottom:256.755000px;}
.y259{bottom:257.115000px;}
.y28d{bottom:258.915000px;}
.y123{bottom:259.635000px;}
.y5c{bottom:260.385000px;}
.y191{bottom:261.075000px;}
.y7e{bottom:262.515000px;}
.y22b{bottom:264.660000px;}
.y11{bottom:264.675000px;}
.y146{bottom:266.475000px;}
.y1d3{bottom:267.195000px;}
.y1fe{bottom:267.540000px;}
.y1f7{bottom:267.555000px;}
.y6{bottom:268.635000px;}
.y15a{bottom:268.989000px;}
.y147{bottom:274.035000px;}
.y217{bottom:274.395000px;}
.y36{bottom:275.115000px;}
.y5b{bottom:278.745000px;}
.y122{bottom:279.795000px;}
.y190{bottom:281.235000px;}
.y10{bottom:281.955000px;}
.y6c{bottom:282.345000px;}
.y22a{bottom:282.660000px;}
.y35{bottom:282.675000px;}
.y245{bottom:285.195000px;}
.y273{bottom:285.915000px;}
.yac{bottom:286.635000px;}
.y19d{bottom:288.075000px;}
.y159{bottom:289.194000px;}
.y34{bottom:293.115000px;}
.y1fd{bottom:294.540000px;}
.y258{bottom:295.275000px;}
.y1f0{bottom:295.680000px;}
.y5a{bottom:297.105000px;}
.yf{bottom:299.235000px;}
.y121{bottom:299.955000px;}
.y229{bottom:300.660000px;}
.y18f{bottom:301.395000px;}
.y7d{bottom:302.475000px;}
.y17b{bottom:304.635000px;}
.y244{bottom:305.355000px;}
.y272{bottom:306.075000px;}
.y145{bottom:306.795000px;}
.y158{bottom:309.354000px;}
.y216{bottom:311.865000px;}
.y19c{bottom:315.075000px;}
.y59{bottom:315.465000px;}
.ye{bottom:316.155000px;}
.y5{bottom:316.875000px;}
.y234{bottom:316.905000px;}
.y1ad{bottom:318.345000px;}
.y228{bottom:318.660000px;}
.y1d2{bottom:318.705000px;}
.y6b{bottom:320.145000px;}
.y18e{bottom:321.585000px;}
.y1f{bottom:322.305000px;}
.y7c{bottom:322.665000px;}
.y1ef{bottom:322.680000px;}
.yab{bottom:324.825000px;}
.y243{bottom:325.545000px;}
.y28c{bottom:326.265000px;}
.y144{bottom:326.985000px;}
.y157{bottom:329.514000px;}
.yd{bottom:333.435000px;}
.y58{bottom:333.465000px;}
.yf8{bottom:333.825000px;}
.y257{bottom:335.625000px;}
.y207{bottom:337.065000px;}
.y120{bottom:340.305000px;}
.y18d{bottom:341.745000px;}
.y19b{bottom:342.105000px;}
.y7b{bottom:342.825000px;}
.y271{bottom:344.265000px;}
.yaa{bottom:344.985000px;}
.y242{bottom:345.705000px;}
.y1d1{bottom:346.065000px;}
.y28b{bottom:346.425000px;}
.y143{bottom:347.145000px;}
.y156{bottom:350.034000px;}
.yc{bottom:350.715000px;}
.y57{bottom:351.825000px;}
.y6a{bottom:357.585000px;}
.y11f{bottom:360.465000px;}
.y18c{bottom:361.905000px;}
.y7a{bottom:362.985000px;}
.y1a7{bottom:364.065000px;}
.y1d0{bottom:364.425000px;}
.ya9{bottom:365.145000px;}
.y241{bottom:365.865000px;}
.y142{bottom:367.305000px;}
.y19a{bottom:369.105000px;}
.y56{bottom:370.185000px;}
.y256{bottom:373.785000px;}
.y1f6{bottom:377.385000px;}
.y11e{bottom:380.625000px;}
.y18b{bottom:382.065000px;}
.y79{bottom:383.145000px;}
.y270{bottom:384.585000px;}
.ya8{bottom:385.305000px;}
.y240{bottom:386.025000px;}
.y141{bottom:387.465000px;}
.yc0{bottom:390.705000px;}
.y215{bottom:391.785000px;}
.y255{bottom:393.945000px;}
.y199{bottom:396.105000px;}
.y1cf{bottom:401.145000px;}
.y18a{bottom:402.225000px;}
.y78{bottom:403.305000px;}
.y28a{bottom:404.745000px;}
.ya7{bottom:405.465000px;}
.y23f{bottom:406.185000px;}
.y140{bottom:407.625000px;}
.y254{bottom:414.105000px;}
.y11d{bottom:418.785000px;}
.y1ce{bottom:421.305000px;}
.y189{bottom:422.385000px;}
.y26f{bottom:422.745000px;}
.y77{bottom:423.465000px;}
.y289{bottom:424.905000px;}
.ya6{bottom:425.625000px;}
.y13f{bottom:427.785000px;}
.y1a6{bottom:432.105000px;}
.y11c{bottom:438.990000px;}
.ybd{bottom:441.150000px;}
.y1cd{bottom:441.510000px;}
.yf5{bottom:442.590000px;}
.y26e{bottom:442.950000px;}
.y76{bottom:443.670000px;}
.y23e{bottom:444.390000px;}
.ya5{bottom:445.830000px;}
.y214{bottom:446.550000px;}
.y13e{bottom:447.990000px;}
.y1f5{bottom:450.150000px;}
.y253{bottom:452.310000px;}
.y11b{bottom:458.790000px;}
.y1cc{bottom:461.670000px;}
.y288{bottom:463.110000px;}
.y75{bottom:463.830000px;}
.ya4{bottom:465.990000px;}
.ybc{bottom:468.150000px;}
.y252{bottom:472.470000px;}
.y11a{bottom:478.950000px;}
.y203{bottom:480.030000px;}
.y188{bottom:480.750000px;}
.y26d{bottom:481.110000px;}
.y1cb{bottom:481.830000px;}
.y287{bottom:482.910000px;}
.y74{bottom:483.990000px;}
.ya3{bottom:486.150000px;}
.y13d{bottom:488.310000px;}
.y251{bottom:492.630000px;}
.y119{bottom:499.110000px;}
.y187{bottom:500.910000px;}
.y1ca{bottom:501.990000px;}
.y17a{bottom:504.150000px;}
.y1ed{bottom:504.870000px;}
.y1fc{bottom:505.230000px;}
.ya2{bottom:506.310000px;}
.y23c{bottom:507.030000px;}
.y13c{bottom:508.470000px;}
.y154{bottom:513.510000px;}
.yf4{bottom:515.310000px;}
.y118{bottom:519.270000px;}
.y186{bottom:521.070000px;}
.y73{bottom:522.150000px;}
.y179{bottom:524.310000px;}
.ya1{bottom:526.470000px;}
.y13b{bottom:528.630000px;}
.y250{bottom:530.790000px;}
.y20c{bottom:533.310000px;}
.y26c{bottom:539.070000px;}
.y117{bottom:539.430000px;}
.y185{bottom:541.230000px;}
.y72{bottom:542.310000px;}
.y178{bottom:544.470000px;}
.ya0{bottom:546.630000px;}
.y13a{bottom:548.790000px;}
.y24f{bottom:550.950000px;}
.yf3{bottom:556.350000px;}
.y55{bottom:557.790000px;}
.y153{bottom:558.870000px;}
.y26b{bottom:559.230000px;}
.y116{bottom:559.590000px;}
.y20b{bottom:560.310000px;}
.y184{bottom:561.390000px;}
.y1c9{bottom:562.500000px;}
.y177{bottom:564.660000px;}
.y9f{bottom:566.820000px;}
.y139{bottom:568.980000px;}
.y213{bottom:574.380000px;}
.y202{bottom:577.980000px;}
.y1c{bottom:578.700000px;}
.y286{bottom:579.420000px;}
.y115{bottom:579.780000px;}
.y183{bottom:581.580000px;}
.y1c8{bottom:582.660000px;}
.y1a5{bottom:584.100000px;}
.y176{bottom:584.820000px;}
.y9e{bottom:586.980000px;}
.y20a{bottom:587.310000px;}
.y24e{bottom:589.140000px;}
.y1ec{bottom:590.580000px;}
.yf2{bottom:592.380000px;}
.y152{bottom:596.700000px;}
.y26a{bottom:597.420000px;}
.y285{bottom:599.580000px;}
.y114{bottom:599.940000px;}
.y182{bottom:601.740000px;}
.y1c7{bottom:602.820000px;}
.y175{bottom:604.980000px;}
.y9d{bottom:607.140000px;}
.y24d{bottom:608.940000px;}
.y198{bottom:609.300000px;}
.y1eb{bottom:610.020000px;}
.y209{bottom:614.340000px;}
.y151{bottom:616.860000px;}
.y269{bottom:617.580000px;}
.y113{bottom:620.100000px;}
.y174{bottom:625.140000px;}
.y9c{bottom:626.940000px;}
.y19{bottom:630.180000px;}
.yf1{bottom:630.540000px;}
.y150{bottom:637.020000px;}
.y284{bottom:637.740000px;}
.y181{bottom:639.180000px;}
.y112{bottom:640.260000px;}
.y208{bottom:641.340000px;}
.ybb{bottom:644.940000px;}
.y138{bottom:647.100000px;}
.y1ea{bottom:648.180000px;}
.yf0{bottom:650.700000px;}
.y268{bottom:655.740000px;}
.y14f{bottom:657.180000px;}
.y283{bottom:657.900000px;}
.y111{bottom:660.420000px;}
.y1a4{bottom:664.380000px;}
.y9b{bottom:665.100000px;}
.y1b8{bottom:665.460000px;}
.y137{bottom:667.260000px;}
.y1e9{bottom:668.340000px;}
.yef{bottom:670.860000px;}
.y180{bottom:672.660000px;}
.y267{bottom:675.900000px;}
.y14e{bottom:677.340000px;}
.y282{bottom:678.060000px;}
.y9a{bottom:685.260000px;}
.y136{bottom:687.420000px;}
.y23b{bottom:687.780000px;}
.y1e8{bottom:688.500000px;}
.yee{bottom:691.050000px;}
.y14d{bottom:697.530000px;}
.y110{bottom:697.890000px;}
.y173{bottom:703.290000px;}
.y99{bottom:705.450000px;}
.y135{bottom:707.610000px;}
.y1e7{bottom:708.690000px;}
.yed{bottom:711.210000px;}
.y266{bottom:714.090000px;}
.y281{bottom:716.250000px;}
.y4{bottom:719.130000px;}
.y212{bottom:719.850000px;}
.y10f{bottom:723.090000px;}
.y172{bottom:723.450000px;}
.y98{bottom:725.610000px;}
.y134{bottom:727.770000px;}
.y1e6{bottom:728.850000px;}
.yec{bottom:731.370000px;}
.y265{bottom:734.250000px;}
.y14c{bottom:734.970000px;}
.y280{bottom:736.410000px;}
.y171{bottom:743.610000px;}
.y97{bottom:745.770000px;}
.y1c3{bottom:747.210000px;}
.y133{bottom:747.930000px;}
.y1e5{bottom:749.010000px;}
.yeb{bottom:751.530000px;}
.y170{bottom:763.770000px;}
.y96{bottom:765.930000px;}
.y132{bottom:768.090000px;}
.y264{bottom:772.410000px;}
.y1a3{bottom:773.850000px;}
.y210{bottom:774.570000px;}
.y201{bottom:778.170000px;}
.y16f{bottom:783.930000px;}
.y95{bottom:786.090000px;}
.y1e4{bottom:786.450000px;}
.y131{bottom:788.250000px;}
.yea{bottom:789.690000px;}
.y263{bottom:792.570000px;}
.y1c1{bottom:792.930000px;}
.y27f{bottom:794.730000px;}
.y16e{bottom:804.090000px;}
.y94{bottom:806.250000px;}
.y130{bottom:808.410000px;}
.ye9{bottom:809.850000px;}
.y1a2{bottom:810.570000px;}
.y1de{bottom:811.650000px;}
.y16d{bottom:824.295000px;}
.yba{bottom:826.455000px;}
.ye8{bottom:830.055000px;}
.y262{bottom:830.775000px;}
.y10e{bottom:831.855000px;}
.y27e{bottom:832.935000px;}
.y1c0{bottom:838.695000px;}
.y93{bottom:844.455000px;}
.yb9{bottom:846.615000px;}
.y1a1{bottom:847.335000px;}
.ye7{bottom:850.215000px;}
.y238{bottom:850.575000px;}
.y1fb{bottom:850.935000px;}
.y27d{bottom:853.095000px;}
.y92{bottom:864.615000px;}
.y20f{bottom:865.335000px;}
.y1e3{bottom:866.415000px;}
.yb8{bottom:866.775000px;}
.ye6{bottom:870.375000px;}
.y261{bottom:871.095000px;}
.y1bf{bottom:884.415000px;}
.y91{bottom:884.775000px;}
.yb7{bottom:886.935000px;}
.ye5{bottom:890.535000px;}
.y27c{bottom:891.255000px;}
.y1a0{bottom:902.055000px;}
.y90{bottom:904.935000px;}
.y12f{bottom:907.095000px;}
.y260{bottom:909.255000px;}
.ye4{bottom:910.695000px;}
.y1e2{bottom:921.135000px;}
.y8f{bottom:925.095000px;}
.y12e{bottom:927.255000px;}
.y25f{bottom:929.415000px;}
.ye3{bottom:930.855000px;}
.y20e{bottom:938.055000px;}
.y105{bottom:940.575000px;}
.y52{bottom:942.015000px;}
.y16c{bottom:943.095000px;}
.y8e{bottom:945.285000px;}
.y1fa{bottom:946.005000px;}
.y12d{bottom:947.445000px;}
.y1be{bottom:948.165000px;}
.y27b{bottom:949.605000px;}
.ye2{bottom:951.045000px;}
.y19f{bottom:956.805000px;}
.y16b{bottom:963.285000px;}
.y8d{bottom:965.445000px;}
.y12c{bottom:967.605000px;}
.y27a{bottom:969.765000px;}
.y20d{bottom:974.805000px;}
.y16a{bottom:983.445000px;}
.y8c{bottom:985.605000px;}
.y12b{bottom:987.765000px;}
.ye1{bottom:988.485000px;}
.y4b{bottom:993.525000px;}
.y1bd{bottom:993.885000px;}
.y169{bottom:1003.605000px;}
.yb6{bottom:1005.765000px;}
.y12a{bottom:1007.925000px;}
.yfe{bottom:1012.605000px;}
.y8b{bottom:1023.765000px;}
.yb5{bottom:1025.925000px;}
.y279{bottom:1028.085000px;}
.y195{bottom:1029.525000px;}
.y221{bottom:1036.725000px;}
.y1bb{bottom:1039.605000px;}
.y8a{bottom:1043.925000px;}
.yb4{bottom:1046.085000px;}
.y1e0{bottom:1048.605000px;}
.y89{bottom:1064.085000px;}
.yb3{bottom:1065.885000px;}
.y21e{bottom:1077.810000px;}
.y1{bottom:1083.570000px;}
.y88{bottom:1083.930000px;}
.y278{bottom:1086.090000px;}
.y87{bottom:1104.090000px;}
.y21d{bottom:1104.810000px;}
.y86{bottom:1124.250000px;}
.ye0{bottom:1125.690000px;}
.y168{bottom:1131.810000px;}
.y47{bottom:1144.050000px;}
.y43{bottom:1160.610000px;}
.h26{height:22.320000px;}
.h10{height:34.001016px;}
.h1e{height:36.000000px;}
.h2e{height:36.036000px;}
.h25{height:36.519609px;}
.h1c{height:41.760000px;}
.h7{height:44.031094px;}
.h24{height:44.032500px;}
.h6{height:44.178750px;}
.h31{height:45.000000px;}
.h35{height:45.036000px;}
.h17{height:45.127969px;}
.h36{height:46.476000px;}
.h16{height:47.853281px;}
.h12{height:48.276000px;}
.he{height:49.878281px;}
.h13{height:50.068125px;}
.ha{height:51.480000px;}
.h19{height:51.516000px;}
.hd{height:52.890469px;}
.h29{height:53.302500px;}
.h2d{height:54.000000px;}
.h2c{height:54.036000px;}
.h3{height:54.628594px;}
.h28{height:57.071250px;}
.h1b{height:57.927656px;}
.h14{height:61.804687px;}
.h11{height:62.163910px;}
.h2f{height:63.000000px;}
.h32{height:63.036000px;}
.h3e{height:68.400000px;}
.hb{height:70.475625px;}
.h1f{height:72.000000px;}
.h2a{height:72.036000px;}
.h2{height:75.093750px;}
.h9{height:78.626953px;}
.h34{height:81.036000px;}
.h8{height:88.956000px;}
.h38{height:90.036000px;}
.h21{height:104.796000px;}
.h3d{height:105.156000px;}
.h23{height:108.000000px;}
.h20{height:108.036000px;}
.h5{height:123.069375px;}
.h40{height:126.036000px;}
.h37{height:144.756000px;}
.h18{height:146.196000px;}
.h42{height:162.075000px;}
.h15{height:175.719375px;}
.h43{height:180.030000px;}
.h22{height:180.075000px;}
.h1d{height:216.075000px;}
.h30{height:218.235000px;}
.hc{height:256.395000px;}
.h41{height:270.075000px;}
.h39{height:308.985000px;}
.h3f{height:342.075000px;}
.h3b{height:344.985000px;}
.h3a{height:346.065000px;}
.h4{height:364.425000px;}
.h27{height:366.585000px;}
.h1a{height:384.225000px;}
.h2b{height:419.505000px;}
.h33{height:455.190000px;}
.h3c{height:691.740000px;}
.hf{height:1262.879925px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:86.076000px;}
.w7{width:104.832000px;}
.w13{width:126.432000px;}
.w1f{width:135.072000px;}
.w22{width:136.872000px;}
.w18{width:145.872000px;}
.we{width:148.752000px;}
.wb{width:149.796000px;}
.wa{width:150.555000px;}
.wf{width:156.315000px;}
.w9{width:160.275000px;}
.w1d{width:162.075000px;}
.w20{width:168.915000px;}
.w10{width:169.635000px;}
.wd{width:176.835000px;}
.wc{width:190.185000px;}
.w14{width:198.795000px;}
.w1b{width:200.955000px;}
.w19{width:201.315000px;}
.w16{width:207.435000px;}
.w3{width:212.835000px;}
.w25{width:238.065000px;}
.w24{width:270.465000px;}
.w11{width:283.785000px;}
.w12{width:284.145000px;}
.w1a{width:307.590000px;}
.w15{width:313.710000px;}
.w17{width:320.910000px;}
.w1c{width:327.390000px;}
.w21{width:339.990000px;}
.w1e{width:350.430000px;}
.w2{width:465.330000px;}
.w23{width:509.250000px;}
.w5{width:567.255000px;}
.w8{width:627.015000px;}
.w4{width:678.165000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x33{left:4.680000px;}
.x4{left:7.920000px;}
.x24{left:9.720000px;}
.x57{left:10.800000px;}
.x1d{left:11.880000px;}
.x4e{left:14.760000px;}
.x3b{left:18.036000px;}
.x41{left:19.476000px;}
.x10{left:20.880000px;}
.x55{left:21.996000px;}
.xd{left:23.400000px;}
.x3d{left:24.840000px;}
.x19{left:26.676000px;}
.x20{left:28.440000px;}
.x8{left:30.240000px;}
.x18{left:33.120000px;}
.x42{left:37.479000px;}
.x32{left:39.600000px;}
.x61{left:40.719000px;}
.x4f{left:41.760000px;}
.x60{left:44.679000px;}
.x1e{left:48.279000px;}
.xa{left:49.680000px;}
.x22{left:51.840000px;}
.x6{left:57.960000px;}
.x15{left:60.870000px;}
.x7{left:61.920000px;}
.x40{left:63.399000px;}
.x58{left:66.285000px;}
.x62{left:68.439000px;}
.x9{left:70.920000px;}
.xe{left:72.360000px;}
.xb{left:78.840000px;}
.x3e{left:81.765000px;}
.x5e{left:99.765000px;}
.x4a{left:107.310000px;}
.xc{left:109.830000px;}
.x44{left:114.150000px;}
.x4b{left:115.590000px;}
.xf{left:118.110000px;}
.x3{left:119.556000px;}
.x45{left:122.430000px;}
.x54{left:123.876000px;}
.x3a{left:126.396000px;}
.x2{left:127.476000px;}
.x51{left:128.910000px;}
.x13{left:132.516000px;}
.x52{left:137.550000px;}
.x1a{left:138.672000px;}
.x4d{left:143.712000px;}
.x53{left:145.872000px;}
.x2e{left:146.952000px;}
.x5a{left:153.435000px;}
.x46{left:158.115000px;}
.x37{left:160.635000px;}
.x31{left:162.435000px;}
.x2f{left:164.955000px;}
.x26{left:169.995000px;}
.x30{left:176.835000px;}
.x2c{left:179.715000px;}
.x2d{left:185.115000px;}
.x5d{left:196.635000px;}
.x11{left:204.915000px;}
.x14{left:205.995000px;}
.x34{left:222.555000px;}
.x2b{left:237.705000px;}
.x1b{left:245.985000px;}
.x3c{left:253.545000px;}
.x27{left:255.345000px;}
.x56{left:259.665000px;}
.x5c{left:260.745000px;}
.x48{left:265.065000px;}
.x1f{left:280.905000px;}
.x4c{left:283.785000px;}
.x43{left:285.585000px;}
.x28{left:297.465000px;}
.x5b{left:326.310000px;}
.x12{left:343.590000px;}
.x47{left:345.750000px;}
.x16{left:368.775000px;}
.x39{left:378.150000px;}
.x50{left:416.340000px;}
.x59{left:429.300000px;}
.x21{left:432.180000px;}
.x29{left:446.940000px;}
.x3f{left:453.060000px;}
.x49{left:467.100000px;}
.x5f{left:531.930000px;}
.x35{left:533.010000px;}
.x36{left:538.410000px;}
.x23{left:583.050000px;}
.x5{left:584.895000px;}
.x2a{left:603.975000px;}
.x38{left:679.965000px;}
.x25{left:690.045000px;}
.x1c{left:701.205000px;}
.x17{left:774.330000px;}
.x1{left:807.810000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.426667pt;}
.v2{vertical-align:26.880000pt;}
.ls18{letter-spacing:-1.562667pt;}
.ls9{letter-spacing:-1.450667pt;}
.ls38{letter-spacing:-1.264000pt;}
.ls2a{letter-spacing:-1.098667pt;}
.lsd{letter-spacing:-1.029333pt;}
.ls8{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.752000pt;}
.lsa{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.714667pt;}
.lsf{letter-spacing:-0.698667pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.629333pt;}
.ls4{letter-spacing:-0.597333pt;}
.ls16{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.570667pt;}
.ls15{letter-spacing:-0.538667pt;}
.ls30{letter-spacing:-0.506667pt;}
.ls1d{letter-spacing:-0.427733pt;}
.ls35{letter-spacing:-0.419733pt;}
.ls32{letter-spacing:-0.412267pt;}
.ls39{letter-spacing:-0.376533pt;}
.ls37{letter-spacing:-0.361067pt;}
.lsc{letter-spacing:-0.340267pt;}
.ls25{letter-spacing:-0.327467pt;}
.ls33{letter-spacing:-0.309867pt;}
.ls17{letter-spacing:-0.278933pt;}
.ls24{letter-spacing:-0.258667pt;}
.ls5{letter-spacing:-0.194667pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.150933pt;}
.ls1a{letter-spacing:-0.069333pt;}
.lsb{letter-spacing:-0.066667pt;}
.ls7{letter-spacing:-0.053867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.097280pt;}
.ls2e{letter-spacing:0.117760pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.143360pt;}
.ls28{letter-spacing:0.210133pt;}
.ls19{letter-spacing:0.332800pt;}
.ls2d{letter-spacing:0.455467pt;}
.ls31{letter-spacing:0.468267pt;}
.ls29{letter-spacing:0.519467pt;}
.ls26{letter-spacing:0.522133pt;}
.ls2c{letter-spacing:0.522240pt;}
.ls6{letter-spacing:0.544000pt;}
.ls2b{letter-spacing:0.622080pt;}
.ls1f{letter-spacing:0.650240pt;}
.ls27{letter-spacing:0.750080pt;}
.ls2{letter-spacing:0.778240pt;}
.ls13{letter-spacing:1.237333pt;}
.ls2f{letter-spacing:4.613120pt;}
.ls34{letter-spacing:7.173120pt;}
.ls1c{letter-spacing:9.733120pt;}
.ls1b{letter-spacing:13.573120pt;}
.ls21{letter-spacing:38.958080pt;}
.ls22{letter-spacing:60.718080pt;}
.ws1d{word-spacing:-58.880000pt;}
.ws0{word-spacing:-53.760000pt;}
.ws1a{word-spacing:-48.640000pt;}
.ws8{word-spacing:-41.566613pt;}
.ws4{word-spacing:-21.888000pt;}
.ws5{word-spacing:-19.553280pt;}
.ws6{word-spacing:-18.721280pt;}
.ws1f{word-spacing:-13.775147pt;}
.ws1e{word-spacing:-13.762347pt;}
.wsf{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.237547pt;}
.wse{word-spacing:-13.114880pt;}
.ws21{word-spacing:-12.997013pt;}
.ws20{word-spacing:-12.894613pt;}
.ws18{word-spacing:-12.879147pt;}
.ws13{word-spacing:-12.730880pt;}
.ws1{word-spacing:-12.257280pt;}
.ws3{word-spacing:-12.203413pt;}
.wsc{word-spacing:-12.149760pt;}
.ws2{word-spacing:-12.062613pt;}
.ws22{word-spacing:-12.042880pt;}
.ws10{word-spacing:-11.998827pt;}
.ws14{word-spacing:-11.870827pt;}
.ws23{word-spacing:-11.773227pt;}
.ws11{word-spacing:-11.611093pt;}
.ws19{word-spacing:-11.435093pt;}
.wsd{word-spacing:-11.397760pt;}
.ws16{word-spacing:-11.325440pt;}
.ws1b{word-spacing:-11.056640pt;}
.wsa{word-spacing:-10.992640pt;}
.ws1c{word-spacing:-10.733973pt;}
.ws12{word-spacing:-10.699093pt;}
.ws9{word-spacing:-10.652373pt;}
.wsb{word-spacing:-10.421973pt;}
.ws15{word-spacing:-9.429973pt;}
.ws7{word-spacing:0.000000pt;}
._f{margin-left:-2.315093pt;}
._0{margin-left:-1.261653pt;}
._1{width:0.925013pt;}
._2{width:1.883307pt;}
._6{width:3.578880pt;}
._5{width:4.848213pt;}
._4{width:5.806080pt;}
._b{width:7.279360pt;}
._d{width:8.762880pt;}
._e{width:10.479787pt;}
._17{width:11.392427pt;}
._c{width:13.070933pt;}
._a{width:14.407680pt;}
._9{width:16.181760pt;}
._8{width:17.687040pt;}
._7{width:18.812587pt;}
._12{width:20.482560pt;}
._13{width:21.761707pt;}
._18{width:23.187627pt;}
._10{width:24.460800pt;}
._11{width:25.399893pt;}
._14{width:26.500267pt;}
._24{width:27.424000pt;}
._1c{width:28.746240pt;}
._1a{width:30.401280pt;}
._19{width:31.467093pt;}
._15{width:32.363520pt;}
._16{width:35.193600pt;}
._26{width:36.966400pt;}
._27{width:38.424747pt;}
._33{width:40.176640pt;}
._1f{width:41.146453pt;}
._30{width:42.396587pt;}
._3{width:43.501653pt;}
._28{width:44.983040pt;}
._20{width:46.062080pt;}
._1d{width:47.354880pt;}
._37{width:48.977493pt;}
._36{width:50.391040pt;}
._21{width:54.571093pt;}
._2e{width:55.689813pt;}
._23{width:57.097387pt;}
._2f{width:58.702507pt;}
._22{width:60.487680pt;}
._35{width:66.147413pt;}
._34{width:67.560960pt;}
._2d{width:68.561920pt;}
._29{width:72.693333pt;}
._38{width:76.195413pt;}
._1e{width:77.191680pt;}
._2a{width:79.312213pt;}
._32{width:93.966507pt;}
._31{width:121.448107pt;}
._2c{width:149.739947pt;}
._25{width:295.568000pt;}
._2b{width:301.224533pt;}
._1b{width:530.293333pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:42.240000pt;}
.fs9{font-size:48.640000pt;}
.fs3{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.fs2{font-size:149.760000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:3.520000pt;}
.y167{bottom:5.754667pt;}
.yc4{bottom:5.760000pt;}
.yd1{bottom:5.800000pt;}
.yc2{bottom:7.040000pt;}
.y1b6{bottom:7.354667pt;}
.y1b3{bottom:7.360000pt;}
.y1af{bottom:7.680000pt;}
.y46{bottom:8.320000pt;}
.y45{bottom:11.200000pt;}
.y10d{bottom:11.226667pt;}
.ydf{bottom:11.240000pt;}
.y1d6{bottom:11.520000pt;}
.yc5{bottom:14.400000pt;}
.y54{bottom:17.306667pt;}
.y1d{bottom:18.240000pt;}
.y53{bottom:18.266667pt;}
.y197{bottom:19.200000pt;}
.y33{bottom:19.520000pt;}
.y2c{bottom:19.840000pt;}
.y69{bottom:19.866667pt;}
.y104{bottom:20.480000pt;}
.y1b{bottom:21.120000pt;}
.yc1{bottom:21.760000pt;}
.y1b5{bottom:23.034667pt;}
.yc3{bottom:23.040000pt;}
.y1c6{bottom:23.066667pt;}
.yd0{bottom:23.080000pt;}
.y1ae{bottom:23.360000pt;}
.y1c2{bottom:23.400000pt;}
.y166{bottom:23.674667pt;}
.yb{bottom:24.640000pt;}
.y222{bottom:25.600000pt;}
.y1d5{bottom:25.920000pt;}
.ydd{bottom:25.960000pt;}
.y1d4{bottom:26.240000pt;}
.yde{bottom:26.280000pt;}
.y1dd{bottom:27.194667pt;}
.yf7{bottom:27.200000pt;}
.y10c{bottom:27.226667pt;}
.y1e1{bottom:27.240000pt;}
.y44{bottom:29.120000pt;}
.y1e{bottom:33.600000pt;}
.y103{bottom:35.200000pt;}
.y2b{bottom:36.160000pt;}
.y68{bottom:36.186667pt;}
.ycf{bottom:38.120000pt;}
.y1c5{bottom:39.066667pt;}
.y1b1{bottom:39.360000pt;}
.y1b4{bottom:39.394667pt;}
.y1bc{bottom:39.400000pt;}
.ydc{bottom:41.000000pt;}
.y165{bottom:41.634667pt;}
.y1dc{bottom:43.194667pt;}
.yf6{bottom:43.200000pt;}
.y10b{bottom:43.226667pt;}
.y196{bottom:43.240000pt;}
.y1d9{bottom:43.514667pt;}
.y220{bottom:45.760000pt;}
.y51{bottom:48.320000pt;}
.y1a{bottom:48.640000pt;}
.y102{bottom:49.920000pt;}
.y4a{bottom:51.232000pt;}
.y3{bottom:51.552000pt;}
.y67{bottom:52.186667pt;}
.y2a{bottom:52.480000pt;}
.y32{bottom:52.800000pt;}
.yd8{bottom:52.840000pt;}
.yce{bottom:55.080000pt;}
.y1c4{bottom:55.386667pt;}
.ydb{bottom:55.400000pt;}
.yfa{bottom:59.200000pt;}
.y10a{bottom:59.226667pt;}
.y1db{bottom:59.234667pt;}
.y211{bottom:59.240000pt;}
.y164{bottom:59.554667pt;}
.y100{bottom:61.480000pt;}
.y21f{bottom:61.760000pt;}
.y101{bottom:64.680000pt;}
.y50{bottom:65.600000pt;}
.y49{bottom:65.952000pt;}
.ya{bottom:67.520000pt;}
.yd7{bottom:67.560000pt;}
.y66{bottom:68.506667pt;}
.y29{bottom:68.800000pt;}
.ycd{bottom:70.120000pt;}
.y2{bottom:70.432000pt;}
.yf9{bottom:75.200000pt;}
.yfc{bottom:75.226667pt;}
.y227{bottom:75.240000pt;}
.y1d8{bottom:75.554667pt;}
.y163{bottom:77.474667pt;}
.yff{bottom:79.080000pt;}
.y48{bottom:80.352000pt;}
.y4f{bottom:82.920000pt;}
.y71{bottom:84.506667pt;}
.yd6{bottom:84.520000pt;}
.y65{bottom:84.826667pt;}
.ycc{bottom:84.840000pt;}
.y28{bottom:85.120000pt;}
.y1ac{bottom:85.154667pt;}
.y4d{bottom:85.160000pt;}
.y31{bottom:86.080000pt;}
.yda{bottom:87.080000pt;}
.y233{bottom:91.200000pt;}
.y109{bottom:91.226667pt;}
.y226{bottom:91.240000pt;}
.y85{bottom:95.072000pt;}
.y162{bottom:95.394667pt;}
.y42{bottom:97.952000pt;}
.y194{bottom:98.272000pt;}
.ybf{bottom:98.592000pt;}
.y23d{bottom:99.226667pt;}
.yd5{bottom:99.560000pt;}
.y64{bottom:101.146667pt;}
.y1ab{bottom:101.154667pt;}
.y4c{bottom:101.160000pt;}
.y27{bottom:101.480000pt;}
.ycb{bottom:101.800000pt;}
.yd9{bottom:102.120000pt;}
.y237{bottom:103.072000pt;}
.y25e{bottom:106.912000pt;}
.y108{bottom:107.226667pt;}
.y129{bottom:107.232000pt;}
.y225{bottom:107.240000pt;}
.y1d7{bottom:108.192000pt;}
.y84{bottom:109.792000pt;}
.y14b{bottom:110.112000pt;}
.y9{bottom:110.440000pt;}
.y24c{bottom:112.352000pt;}
.y291{bottom:112.992000pt;}
.y161{bottom:113.314667pt;}
.y1b7{bottom:113.952000pt;}
.y41{bottom:114.272000pt;}
.y18{bottom:115.240000pt;}
.y4e{bottom:116.200000pt;}
.yd4{bottom:116.520000pt;}
.y14a{bottom:116.832000pt;}
.yca{bottom:116.840000pt;}
.y26{bottom:117.480000pt;}
.y63{bottom:117.493333pt;}
.y70{bottom:117.813333pt;}
.y1f9{bottom:118.112000pt;}
.y30{bottom:119.400000pt;}
.y40{bottom:120.992000pt;}
.y21c{bottom:122.272000pt;}
.y232{bottom:123.226667pt;}
.y224{bottom:123.240000pt;}
.y107{bottom:123.266667pt;}
.y25d{bottom:124.832000pt;}
.y128{bottom:125.152000pt;}
.y1aa{bottom:125.154667pt;}
.y149{bottom:126.432000pt;}
.y83{bottom:127.712000pt;}
.y1a8{bottom:128.992000pt;}
.y290{bottom:129.312000pt;}
.y155{bottom:129.952000pt;}
.y24b{bottom:130.272000pt;}
.y3f{bottom:130.592000pt;}
.y160{bottom:131.234667pt;}
.yb2{bottom:131.552000pt;}
.yc9{bottom:131.586667pt;}
.y277{bottom:132.512000pt;}
.y1df{bottom:132.546667pt;}
.y17f{bottom:133.152000pt;}
.y25{bottom:133.800000pt;}
.y62{bottom:133.813333pt;}
.y231{bottom:139.226667pt;}
.y223{bottom:139.240000pt;}
.y106{bottom:139.266667pt;}
.ybe{bottom:139.546667pt;}
.y21b{bottom:140.186667pt;}
.y1ee{bottom:140.506667pt;}
.y17e{bottom:142.426667pt;}
.y17{bottom:143.400000pt;}
.yfd{bottom:144.026667pt;}
.y82{bottom:145.626667pt;}
.yd3{bottom:145.986667pt;}
.y3e{bottom:146.906667pt;}
.y24a{bottom:148.186667pt;}
.yc8{bottom:148.546667pt;}
.y15f{bottom:149.181333pt;}
.yb1{bottom:149.466667pt;}
.y24{bottom:150.120000pt;}
.y61{bottom:150.133333pt;}
.y276{bottom:150.426667pt;}
.y6f{bottom:151.093333pt;}
.y2f{bottom:152.680000pt;}
.y8{bottom:153.000000pt;}
.y3d{bottom:153.626667pt;}
.yc6{bottom:154.586667pt;}
.y230{bottom:155.226667pt;}
.y21a{bottom:158.106667pt;}
.y25c{bottom:158.746667pt;}
.y16{bottom:158.760000pt;}
.y127{bottom:159.066667pt;}
.y206{bottom:162.306667pt;}
.yd2{bottom:162.946667pt;}
.y3c{bottom:163.266667pt;}
.y81{bottom:163.586667pt;}
.y193{bottom:164.866667pt;}
.y249{bottom:166.146667pt;}
.y23{bottom:166.440000pt;}
.y60{bottom:166.453333pt;}
.y1f4{bottom:166.786667pt;}
.yb0{bottom:167.106667pt;}
.y15e{bottom:167.421333pt;}
.y275{bottom:168.386667pt;}
.y17d{bottom:170.306667pt;}
.y22f{bottom:171.226667pt;}
.y1a9{bottom:173.181333pt;}
.y15{bottom:174.120000pt;}
.y25b{bottom:176.706667pt;}
.y126{bottom:177.026667pt;}
.yc7{bottom:177.986667pt;}
.y28f{bottom:178.306667pt;}
.y3b{bottom:179.266667pt;}
.y80{bottom:181.506667pt;}
.y5f{bottom:182.453333pt;}
.y22{bottom:182.760000pt;}
.y1f3{bottom:182.786667pt;}
.y248{bottom:183.746667pt;}
.y6e{bottom:184.373333pt;}
.y236{bottom:184.706667pt;}
.yaf{bottom:185.026667pt;}
.y15d{bottom:185.341333pt;}
.y1b2{bottom:185.666667pt;}
.y2e{bottom:186.280000pt;}
.y22e{bottom:187.226667pt;}
.y1da{bottom:188.866667pt;}
.y1f8{bottom:189.186667pt;}
.y14{bottom:189.480000pt;}
.y1ba{bottom:191.106667pt;}
.y219{bottom:192.066667pt;}
.y125{bottom:194.946667pt;}
.y3a{bottom:195.586667pt;}
.y7{bottom:195.880000pt;}
.y205{bottom:196.226667pt;}
.y192{bottom:198.466667pt;}
.y5e{bottom:198.773333pt;}
.y1f2{bottom:198.786667pt;}
.y21{bottom:199.080000pt;}
.y7f{bottom:199.426667pt;}
.yfb{bottom:200.066667pt;}
.y247{bottom:201.666667pt;}
.y39{bottom:202.306667pt;}
.yae{bottom:202.946667pt;}
.y22d{bottom:203.226667pt;}
.y15c{bottom:203.261333pt;}
.y23a{bottom:203.266667pt;}
.y17c{bottom:203.586667pt;}
.y28e{bottom:204.226667pt;}
.y13{bottom:204.546667pt;}
.y200{bottom:205.813333pt;}
.y1b9{bottom:205.826667pt;}
.y218{bottom:209.986667pt;}
.y25a{bottom:210.626667pt;}
.y38{bottom:211.906667pt;}
.y124{bottom:212.866667pt;}
.y204{bottom:214.146667pt;}
.y1f1{bottom:214.786667pt;}
.y5d{bottom:215.093333pt;}
.y20{bottom:215.426667pt;}
.y19e{bottom:216.066667pt;}
.y6d{bottom:217.653333pt;}
.y148{bottom:218.946667pt;}
.y22c{bottom:219.253333pt;}
.y239{bottom:219.266667pt;}
.y246{bottom:219.586667pt;}
.y12{bottom:219.906667pt;}
.y274{bottom:220.226667pt;}
.yad{bottom:220.866667pt;}
.y15b{bottom:221.181333pt;}
.y1ff{bottom:221.813333pt;}
.y235{bottom:225.666667pt;}
.y1b0{bottom:226.306667pt;}
.y37{bottom:228.226667pt;}
.y259{bottom:228.546667pt;}
.y28d{bottom:230.146667pt;}
.y123{bottom:230.786667pt;}
.y5c{bottom:231.453333pt;}
.y191{bottom:232.066667pt;}
.y7e{bottom:233.346667pt;}
.y22b{bottom:235.253333pt;}
.y11{bottom:235.266667pt;}
.y146{bottom:236.866667pt;}
.y1d3{bottom:237.506667pt;}
.y1fe{bottom:237.813333pt;}
.y1f7{bottom:237.826667pt;}
.y6{bottom:238.786667pt;}
.y15a{bottom:239.101333pt;}
.y147{bottom:243.586667pt;}
.y217{bottom:243.906667pt;}
.y36{bottom:244.546667pt;}
.y5b{bottom:247.773333pt;}
.y122{bottom:248.706667pt;}
.y190{bottom:249.986667pt;}
.y10{bottom:250.626667pt;}
.y6c{bottom:250.973333pt;}
.y22a{bottom:251.253333pt;}
.y35{bottom:251.266667pt;}
.y245{bottom:253.506667pt;}
.y273{bottom:254.146667pt;}
.yac{bottom:254.786667pt;}
.y19d{bottom:256.066667pt;}
.y159{bottom:257.061333pt;}
.y34{bottom:260.546667pt;}
.y1fd{bottom:261.813333pt;}
.y258{bottom:262.466667pt;}
.y1f0{bottom:262.826667pt;}
.y5a{bottom:264.093333pt;}
.yf{bottom:265.986667pt;}
.y121{bottom:266.626667pt;}
.y229{bottom:267.253333pt;}
.y18f{bottom:267.906667pt;}
.y7d{bottom:268.866667pt;}
.y17b{bottom:270.786667pt;}
.y244{bottom:271.426667pt;}
.y272{bottom:272.066667pt;}
.y145{bottom:272.706667pt;}
.y158{bottom:274.981333pt;}
.y216{bottom:277.213333pt;}
.y19c{bottom:280.066667pt;}
.y59{bottom:280.413333pt;}
.ye{bottom:281.026667pt;}
.y5{bottom:281.666667pt;}
.y234{bottom:281.693333pt;}
.y1ad{bottom:282.973333pt;}
.y228{bottom:283.253333pt;}
.y1d2{bottom:283.293333pt;}
.y6b{bottom:284.573333pt;}
.y18e{bottom:285.853333pt;}
.y1f{bottom:286.493333pt;}
.y7c{bottom:286.813333pt;}
.y1ef{bottom:286.826667pt;}
.yab{bottom:288.733333pt;}
.y243{bottom:289.373333pt;}
.y28c{bottom:290.013333pt;}
.y144{bottom:290.653333pt;}
.y157{bottom:292.901333pt;}
.yd{bottom:296.386667pt;}
.y58{bottom:296.413333pt;}
.yf8{bottom:296.733333pt;}
.y257{bottom:298.333333pt;}
.y207{bottom:299.613333pt;}
.y120{bottom:302.493333pt;}
.y18d{bottom:303.773333pt;}
.y19b{bottom:304.093333pt;}
.y7b{bottom:304.733333pt;}
.y271{bottom:306.013333pt;}
.yaa{bottom:306.653333pt;}
.y242{bottom:307.293333pt;}
.y1d1{bottom:307.613333pt;}
.y28b{bottom:307.933333pt;}
.y143{bottom:308.573333pt;}
.y156{bottom:311.141333pt;}
.yc{bottom:311.746667pt;}
.y57{bottom:312.733333pt;}
.y6a{bottom:317.853333pt;}
.y11f{bottom:320.413333pt;}
.y18c{bottom:321.693333pt;}
.y7a{bottom:322.653333pt;}
.y1a7{bottom:323.613333pt;}
.y1d0{bottom:323.933333pt;}
.ya9{bottom:324.573333pt;}
.y241{bottom:325.213333pt;}
.y142{bottom:326.493333pt;}
.y19a{bottom:328.093333pt;}
.y56{bottom:329.053333pt;}
.y256{bottom:332.253333pt;}
.y1f6{bottom:335.453333pt;}
.y11e{bottom:338.333333pt;}
.y18b{bottom:339.613333pt;}
.y79{bottom:340.573333pt;}
.y270{bottom:341.853333pt;}
.ya8{bottom:342.493333pt;}
.y240{bottom:343.133333pt;}
.y141{bottom:344.413333pt;}
.yc0{bottom:347.293333pt;}
.y215{bottom:348.253333pt;}
.y255{bottom:350.173333pt;}
.y199{bottom:352.093333pt;}
.y1cf{bottom:356.573333pt;}
.y18a{bottom:357.533333pt;}
.y78{bottom:358.493333pt;}
.y28a{bottom:359.773333pt;}
.ya7{bottom:360.413333pt;}
.y23f{bottom:361.053333pt;}
.y140{bottom:362.333333pt;}
.y254{bottom:368.093333pt;}
.y11d{bottom:372.253333pt;}
.y1ce{bottom:374.493333pt;}
.y189{bottom:375.453333pt;}
.y26f{bottom:375.773333pt;}
.y77{bottom:376.413333pt;}
.y289{bottom:377.693333pt;}
.ya6{bottom:378.333333pt;}
.y13f{bottom:380.253333pt;}
.y1a6{bottom:384.093333pt;}
.y11c{bottom:390.213333pt;}
.ybd{bottom:392.133333pt;}
.y1cd{bottom:392.453333pt;}
.yf5{bottom:393.413333pt;}
.y26e{bottom:393.733333pt;}
.y76{bottom:394.373333pt;}
.y23e{bottom:395.013333pt;}
.ya5{bottom:396.293333pt;}
.y214{bottom:396.933333pt;}
.y13e{bottom:398.213333pt;}
.y1f5{bottom:400.133333pt;}
.y253{bottom:402.053333pt;}
.y11b{bottom:407.813333pt;}
.y1cc{bottom:410.373333pt;}
.y288{bottom:411.653333pt;}
.y75{bottom:412.293333pt;}
.ya4{bottom:414.213333pt;}
.ybc{bottom:416.133333pt;}
.y252{bottom:419.973333pt;}
.y11a{bottom:425.733333pt;}
.y203{bottom:426.693333pt;}
.y188{bottom:427.333333pt;}
.y26d{bottom:427.653333pt;}
.y1cb{bottom:428.293333pt;}
.y287{bottom:429.253333pt;}
.y74{bottom:430.213333pt;}
.ya3{bottom:432.133333pt;}
.y13d{bottom:434.053333pt;}
.y251{bottom:437.893333pt;}
.y119{bottom:443.653333pt;}
.y187{bottom:445.253333pt;}
.y1ca{bottom:446.213333pt;}
.y17a{bottom:448.133333pt;}
.y1ed{bottom:448.773333pt;}
.y1fc{bottom:449.093333pt;}
.ya2{bottom:450.053333pt;}
.y23c{bottom:450.693333pt;}
.y13c{bottom:451.973333pt;}
.y154{bottom:456.453333pt;}
.yf4{bottom:458.053333pt;}
.y118{bottom:461.573333pt;}
.y186{bottom:463.173333pt;}
.y73{bottom:464.133333pt;}
.y179{bottom:466.053333pt;}
.ya1{bottom:467.973333pt;}
.y13b{bottom:469.893333pt;}
.y250{bottom:471.813333pt;}
.y20c{bottom:474.053333pt;}
.y26c{bottom:479.173333pt;}
.y117{bottom:479.493333pt;}
.y185{bottom:481.093333pt;}
.y72{bottom:482.053333pt;}
.y178{bottom:483.973333pt;}
.ya0{bottom:485.893333pt;}
.y13a{bottom:487.813333pt;}
.y24f{bottom:489.733333pt;}
.yf3{bottom:494.533333pt;}
.y55{bottom:495.813333pt;}
.y153{bottom:496.773333pt;}
.y26b{bottom:497.093333pt;}
.y116{bottom:497.413333pt;}
.y20b{bottom:498.053333pt;}
.y184{bottom:499.013333pt;}
.y1c9{bottom:500.000000pt;}
.y177{bottom:501.920000pt;}
.y9f{bottom:503.840000pt;}
.y139{bottom:505.760000pt;}
.y213{bottom:510.560000pt;}
.y202{bottom:513.760000pt;}
.y1c{bottom:514.400000pt;}
.y286{bottom:515.040000pt;}
.y115{bottom:515.360000pt;}
.y183{bottom:516.960000pt;}
.y1c8{bottom:517.920000pt;}
.y1a5{bottom:519.200000pt;}
.y176{bottom:519.840000pt;}
.y9e{bottom:521.760000pt;}
.y20a{bottom:522.053333pt;}
.y24e{bottom:523.680000pt;}
.y1ec{bottom:524.960000pt;}
.yf2{bottom:526.560000pt;}
.y152{bottom:530.400000pt;}
.y26a{bottom:531.040000pt;}
.y285{bottom:532.960000pt;}
.y114{bottom:533.280000pt;}
.y182{bottom:534.880000pt;}
.y1c7{bottom:535.840000pt;}
.y175{bottom:537.760000pt;}
.y9d{bottom:539.680000pt;}
.y24d{bottom:541.280000pt;}
.y198{bottom:541.600000pt;}
.y1eb{bottom:542.240000pt;}
.y209{bottom:546.080000pt;}
.y151{bottom:548.320000pt;}
.y269{bottom:548.960000pt;}
.y113{bottom:551.200000pt;}
.y174{bottom:555.680000pt;}
.y9c{bottom:557.280000pt;}
.y19{bottom:560.160000pt;}
.yf1{bottom:560.480000pt;}
.y150{bottom:566.240000pt;}
.y284{bottom:566.880000pt;}
.y181{bottom:568.160000pt;}
.y112{bottom:569.120000pt;}
.y208{bottom:570.080000pt;}
.ybb{bottom:573.280000pt;}
.y138{bottom:575.200000pt;}
.y1ea{bottom:576.160000pt;}
.yf0{bottom:578.400000pt;}
.y268{bottom:582.880000pt;}
.y14f{bottom:584.160000pt;}
.y283{bottom:584.800000pt;}
.y111{bottom:587.040000pt;}
.y1a4{bottom:590.560000pt;}
.y9b{bottom:591.200000pt;}
.y1b8{bottom:591.520000pt;}
.y137{bottom:593.120000pt;}
.y1e9{bottom:594.080000pt;}
.yef{bottom:596.320000pt;}
.y180{bottom:597.920000pt;}
.y267{bottom:600.800000pt;}
.y14e{bottom:602.080000pt;}
.y282{bottom:602.720000pt;}
.y9a{bottom:609.120000pt;}
.y136{bottom:611.040000pt;}
.y23b{bottom:611.360000pt;}
.y1e8{bottom:612.000000pt;}
.yee{bottom:614.266667pt;}
.y14d{bottom:620.026667pt;}
.y110{bottom:620.346667pt;}
.y173{bottom:625.146667pt;}
.y99{bottom:627.066667pt;}
.y135{bottom:628.986667pt;}
.y1e7{bottom:629.946667pt;}
.yed{bottom:632.186667pt;}
.y266{bottom:634.746667pt;}
.y281{bottom:636.666667pt;}
.y4{bottom:639.226667pt;}
.y212{bottom:639.866667pt;}
.y10f{bottom:642.746667pt;}
.y172{bottom:643.066667pt;}
.y98{bottom:644.986667pt;}
.y134{bottom:646.906667pt;}
.y1e6{bottom:647.866667pt;}
.yec{bottom:650.106667pt;}
.y265{bottom:652.666667pt;}
.y14c{bottom:653.306667pt;}
.y280{bottom:654.586667pt;}
.y171{bottom:660.986667pt;}
.y97{bottom:662.906667pt;}
.y1c3{bottom:664.186667pt;}
.y133{bottom:664.826667pt;}
.y1e5{bottom:665.786667pt;}
.yeb{bottom:668.026667pt;}
.y170{bottom:678.906667pt;}
.y96{bottom:680.826667pt;}
.y132{bottom:682.746667pt;}
.y264{bottom:686.586667pt;}
.y1a3{bottom:687.866667pt;}
.y210{bottom:688.506667pt;}
.y201{bottom:691.706667pt;}
.y16f{bottom:696.826667pt;}
.y95{bottom:698.746667pt;}
.y1e4{bottom:699.066667pt;}
.y131{bottom:700.666667pt;}
.yea{bottom:701.946667pt;}
.y263{bottom:704.506667pt;}
.y1c1{bottom:704.826667pt;}
.y27f{bottom:706.426667pt;}
.y16e{bottom:714.746667pt;}
.y94{bottom:716.666667pt;}
.y130{bottom:718.586667pt;}
.ye9{bottom:719.866667pt;}
.y1a2{bottom:720.506667pt;}
.y1de{bottom:721.466667pt;}
.y16d{bottom:732.706667pt;}
.yba{bottom:734.626667pt;}
.ye8{bottom:737.826667pt;}
.y262{bottom:738.466667pt;}
.y10e{bottom:739.426667pt;}
.y27e{bottom:740.386667pt;}
.y1c0{bottom:745.506667pt;}
.y93{bottom:750.626667pt;}
.yb9{bottom:752.546667pt;}
.y1a1{bottom:753.186667pt;}
.ye7{bottom:755.746667pt;}
.y238{bottom:756.066667pt;}
.y1fb{bottom:756.386667pt;}
.y27d{bottom:758.306667pt;}
.y92{bottom:768.546667pt;}
.y20f{bottom:769.186667pt;}
.y1e3{bottom:770.146667pt;}
.yb8{bottom:770.466667pt;}
.ye6{bottom:773.666667pt;}
.y261{bottom:774.306667pt;}
.y1bf{bottom:786.146667pt;}
.y91{bottom:786.466667pt;}
.yb7{bottom:788.386667pt;}
.ye5{bottom:791.586667pt;}
.y27c{bottom:792.226667pt;}
.y1a0{bottom:801.826667pt;}
.y90{bottom:804.386667pt;}
.y12f{bottom:806.306667pt;}
.y260{bottom:808.226667pt;}
.ye4{bottom:809.506667pt;}
.y1e2{bottom:818.786667pt;}
.y8f{bottom:822.306667pt;}
.y12e{bottom:824.226667pt;}
.y25f{bottom:826.146667pt;}
.ye3{bottom:827.426667pt;}
.y20e{bottom:833.826667pt;}
.y105{bottom:836.066667pt;}
.y52{bottom:837.346667pt;}
.y16c{bottom:838.306667pt;}
.y8e{bottom:840.253333pt;}
.y1fa{bottom:840.893333pt;}
.y12d{bottom:842.173333pt;}
.y1be{bottom:842.813333pt;}
.y27b{bottom:844.093333pt;}
.ye2{bottom:845.373333pt;}
.y19f{bottom:850.493333pt;}
.y16b{bottom:856.253333pt;}
.y8d{bottom:858.173333pt;}
.y12c{bottom:860.093333pt;}
.y27a{bottom:862.013333pt;}
.y20d{bottom:866.493333pt;}
.y16a{bottom:874.173333pt;}
.y8c{bottom:876.093333pt;}
.y12b{bottom:878.013333pt;}
.ye1{bottom:878.653333pt;}
.y4b{bottom:883.133333pt;}
.y1bd{bottom:883.453333pt;}
.y169{bottom:892.093333pt;}
.yb6{bottom:894.013333pt;}
.y12a{bottom:895.933333pt;}
.yfe{bottom:900.093333pt;}
.y8b{bottom:910.013333pt;}
.yb5{bottom:911.933333pt;}
.y279{bottom:913.853333pt;}
.y195{bottom:915.133333pt;}
.y221{bottom:921.533333pt;}
.y1bb{bottom:924.093333pt;}
.y8a{bottom:927.933333pt;}
.yb4{bottom:929.853333pt;}
.y1e0{bottom:932.093333pt;}
.y89{bottom:945.853333pt;}
.yb3{bottom:947.453333pt;}
.y21e{bottom:958.053333pt;}
.y1{bottom:963.173333pt;}
.y88{bottom:963.493333pt;}
.y278{bottom:965.413333pt;}
.y87{bottom:981.413333pt;}
.y21d{bottom:982.053333pt;}
.y86{bottom:999.333333pt;}
.ye0{bottom:1000.613333pt;}
.y168{bottom:1006.053333pt;}
.y47{bottom:1016.933333pt;}
.y43{bottom:1031.653333pt;}
.h26{height:19.840000pt;}
.h10{height:30.223125pt;}
.h1e{height:32.000000pt;}
.h2e{height:32.032000pt;}
.h25{height:32.461875pt;}
.h1c{height:37.120000pt;}
.h7{height:39.138750pt;}
.h24{height:39.140000pt;}
.h6{height:39.270000pt;}
.h31{height:40.000000pt;}
.h35{height:40.032000pt;}
.h17{height:40.113750pt;}
.h36{height:41.312000pt;}
.h16{height:42.536250pt;}
.h12{height:42.912000pt;}
.he{height:44.336250pt;}
.h13{height:44.505000pt;}
.ha{height:45.760000pt;}
.h19{height:45.792000pt;}
.hd{height:47.013750pt;}
.h29{height:47.380000pt;}
.h2d{height:48.000000pt;}
.h2c{height:48.032000pt;}
.h3{height:48.558750pt;}
.h28{height:50.730000pt;}
.h1b{height:51.491250pt;}
.h14{height:54.937500pt;}
.h11{height:55.256809pt;}
.h2f{height:56.000000pt;}
.h32{height:56.032000pt;}
.h3e{height:60.800000pt;}
.hb{height:62.645000pt;}
.h1f{height:64.000000pt;}
.h2a{height:64.032000pt;}
.h2{height:66.750000pt;}
.h9{height:69.890625pt;}
.h34{height:72.032000pt;}
.h8{height:79.072000pt;}
.h38{height:80.032000pt;}
.h21{height:93.152000pt;}
.h3d{height:93.472000pt;}
.h23{height:96.000000pt;}
.h20{height:96.032000pt;}
.h5{height:109.395000pt;}
.h40{height:112.032000pt;}
.h37{height:128.672000pt;}
.h18{height:129.952000pt;}
.h42{height:144.066667pt;}
.h15{height:156.195000pt;}
.h43{height:160.026667pt;}
.h22{height:160.066667pt;}
.h1d{height:192.066667pt;}
.h30{height:193.986667pt;}
.hc{height:227.906667pt;}
.h41{height:240.066667pt;}
.h39{height:274.653333pt;}
.h3f{height:304.066667pt;}
.h3b{height:306.653333pt;}
.h3a{height:307.613333pt;}
.h4{height:323.933333pt;}
.h27{height:325.853333pt;}
.h1a{height:341.533333pt;}
.h2b{height:372.893333pt;}
.h33{height:404.613333pt;}
.h3c{height:614.880000pt;}
.hf{height:1122.559933pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:76.512000pt;}
.w7{width:93.184000pt;}
.w13{width:112.384000pt;}
.w1f{width:120.064000pt;}
.w22{width:121.664000pt;}
.w18{width:129.664000pt;}
.we{width:132.224000pt;}
.wb{width:133.152000pt;}
.wa{width:133.826667pt;}
.wf{width:138.946667pt;}
.w9{width:142.466667pt;}
.w1d{width:144.066667pt;}
.w20{width:150.146667pt;}
.w10{width:150.786667pt;}
.wd{width:157.186667pt;}
.wc{width:169.053333pt;}
.w14{width:176.706667pt;}
.w1b{width:178.626667pt;}
.w19{width:178.946667pt;}
.w16{width:184.386667pt;}
.w3{width:189.186667pt;}
.w25{width:211.613333pt;}
.w24{width:240.413333pt;}
.w11{width:252.253333pt;}
.w12{width:252.573333pt;}
.w1a{width:273.413333pt;}
.w15{width:278.853333pt;}
.w17{width:285.253333pt;}
.w1c{width:291.013333pt;}
.w21{width:302.213333pt;}
.w1e{width:311.493333pt;}
.w2{width:413.626667pt;}
.w23{width:452.666667pt;}
.w5{width:504.226667pt;}
.w8{width:557.346667pt;}
.w4{width:602.813333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x33{left:4.160000pt;}
.x4{left:7.040000pt;}
.x24{left:8.640000pt;}
.x57{left:9.600000pt;}
.x1d{left:10.560000pt;}
.x4e{left:13.120000pt;}
.x3b{left:16.032000pt;}
.x41{left:17.312000pt;}
.x10{left:18.560000pt;}
.x55{left:19.552000pt;}
.xd{left:20.800000pt;}
.x3d{left:22.080000pt;}
.x19{left:23.712000pt;}
.x20{left:25.280000pt;}
.x8{left:26.880000pt;}
.x18{left:29.440000pt;}
.x42{left:33.314667pt;}
.x32{left:35.200000pt;}
.x61{left:36.194667pt;}
.x4f{left:37.120000pt;}
.x60{left:39.714667pt;}
.x1e{left:42.914667pt;}
.xa{left:44.160000pt;}
.x22{left:46.080000pt;}
.x6{left:51.520000pt;}
.x15{left:54.106667pt;}
.x7{left:55.040000pt;}
.x40{left:56.354667pt;}
.x58{left:58.920000pt;}
.x62{left:60.834667pt;}
.x9{left:63.040000pt;}
.xe{left:64.320000pt;}
.xb{left:70.080000pt;}
.x3e{left:72.680000pt;}
.x5e{left:88.680000pt;}
.x4a{left:95.386667pt;}
.xc{left:97.626667pt;}
.x44{left:101.466667pt;}
.x4b{left:102.746667pt;}
.xf{left:104.986667pt;}
.x3{left:106.272000pt;}
.x45{left:108.826667pt;}
.x54{left:110.112000pt;}
.x3a{left:112.352000pt;}
.x2{left:113.312000pt;}
.x51{left:114.586667pt;}
.x13{left:117.792000pt;}
.x52{left:122.266667pt;}
.x1a{left:123.264000pt;}
.x4d{left:127.744000pt;}
.x53{left:129.664000pt;}
.x2e{left:130.624000pt;}
.x5a{left:136.386667pt;}
.x46{left:140.546667pt;}
.x37{left:142.786667pt;}
.x31{left:144.386667pt;}
.x2f{left:146.626667pt;}
.x26{left:151.106667pt;}
.x30{left:157.186667pt;}
.x2c{left:159.746667pt;}
.x2d{left:164.546667pt;}
.x5d{left:174.786667pt;}
.x11{left:182.146667pt;}
.x14{left:183.106667pt;}
.x34{left:197.826667pt;}
.x2b{left:211.293333pt;}
.x1b{left:218.653333pt;}
.x3c{left:225.373333pt;}
.x27{left:226.973333pt;}
.x56{left:230.813333pt;}
.x5c{left:231.773333pt;}
.x48{left:235.613333pt;}
.x1f{left:249.693333pt;}
.x4c{left:252.253333pt;}
.x43{left:253.853333pt;}
.x28{left:264.413333pt;}
.x5b{left:290.053333pt;}
.x12{left:305.413333pt;}
.x47{left:307.333333pt;}
.x16{left:327.800000pt;}
.x39{left:336.133333pt;}
.x50{left:370.080000pt;}
.x59{left:381.600000pt;}
.x21{left:384.160000pt;}
.x29{left:397.280000pt;}
.x3f{left:402.720000pt;}
.x49{left:415.200000pt;}
.x5f{left:472.826667pt;}
.x35{left:473.786667pt;}
.x36{left:478.586667pt;}
.x23{left:518.266667pt;}
.x5{left:519.906667pt;}
.x2a{left:536.866667pt;}
.x38{left:604.413333pt;}
.x25{left:613.373333pt;}
.x1c{left:623.293333pt;}
.x17{left:688.293333pt;}
.x1{left:718.053333pt;}
}




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