
    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_e1ead326d98c50f13af449bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_4d1aa0781d9e71e53d99d385.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_74b287d9123d8fed36bfa5d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_25c2ced8c1fd92e6a60f6bfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_bb6847467a2d54b1168aafa1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_6f67927e78d60b8d1532f72c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_fc09859af71415ecf9c55434.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971191;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_7d20b4199c9660b18f82251b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_9cc5daa9937af4f00460357c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_0e9f601fd5831954ae17828d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_ce9c090f5d9aeb56644a969d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_544c8138eb2e370dcf5dce30.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_7d93c9f5818ebe3feccb3f12.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.916016;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_e041afca2c8ab1e88e2b70c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.986816;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_d20a01e9880cdb934031aeb3.woff2')format("woff");}.fff{font-family:fff;line-height:0.916016;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_b5c1d8e55df9e401aa55aa15.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6a6a699f180f4f5dbe766385.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916016;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_e1bb6294fd8021239c8b33d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.050781;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:ff13;src:url('chunks/assets/font_cfe31b4d23aa3d8b724bbb62.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.916016;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;}
.m3{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.968905px;}
.ls2b{letter-spacing:-1.950000px;}
.ls9{letter-spacing:-1.014000px;}
.ls2c{letter-spacing:-0.624000px;}
.ls8{letter-spacing:-0.390000px;}
.ls5{letter-spacing:-0.330000px;}
.ls6{letter-spacing:-0.234000px;}
.ls1b{letter-spacing:-0.219307px;}
.ls16{letter-spacing:-0.187978px;}
.lsd{letter-spacing:-0.175917px;}
.ls18{letter-spacing:-0.156648px;}
.ls2d{letter-spacing:-0.156000px;}
.lsc{letter-spacing:-0.140734px;}
.ls26{letter-spacing:-0.128293px;}
.ls1f{letter-spacing:-0.125318px;}
.ls23{letter-spacing:-0.100880px;}
.ls17{letter-spacing:-0.093989px;}
.lsa{letter-spacing:-0.086923px;}
.ls20{letter-spacing:-0.078324px;}
.ls25{letter-spacing:-0.073310px;}
.ls1d{letter-spacing:-0.062659px;}
.ls24{letter-spacing:-0.036655px;}
.ls1c{letter-spacing:-0.031330px;}
.ls28{letter-spacing:-0.028823px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.015665px;}
.ls27{letter-spacing:0.023497px;}
.lsb{letter-spacing:0.043462px;}
.ls11{letter-spacing:0.046994px;}
.ls2a{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.057646px;}
.ls21{letter-spacing:0.062659px;}
.ls22{letter-spacing:0.068925px;}
.ls1a{letter-spacing:0.078324px;}
.ls10{letter-spacing:0.109654px;}
.lse{letter-spacing:0.125318px;}
.ls3{letter-spacing:0.156000px;}
.lsf{letter-spacing:0.156648px;}
.ls1e{letter-spacing:0.187978px;}
.ls4{letter-spacing:0.234000px;}
.ls19{letter-spacing:0.234972px;}
.ls14{letter-spacing:0.312000px;}
.ls29{letter-spacing:0.624000px;}
.ls13{letter-spacing:1.762200px;}
.ls7{letter-spacing:9.365400px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws4{word-spacing:-45.672000px;}
.ws3{word-spacing:-25.764000px;}
.ws5{word-spacing:-24.480000px;}
.ws4b{word-spacing:-20.340000px;}
.ws49{word-spacing:-17.628000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws4c{word-spacing:-12.258000px;}
.ws6{word-spacing:-12.204000px;}
.wsf{word-spacing:-7.775531px;}
.ws2d{word-spacing:-4.105382px;}
.ws2c{word-spacing:-4.068727px;}
.ws2e{word-spacing:-4.013744px;}
.ws30{word-spacing:-3.587239px;}
.ws31{word-spacing:-3.508915px;}
.ws32{word-spacing:-3.314622px;}
.ws33{word-spacing:-3.228154px;}
.ws29{word-spacing:-3.184335px;}
.ws2b{word-spacing:-3.156097px;}
.ws21{word-spacing:-3.117295px;}
.ws20{word-spacing:-3.085966px;}
.ws15{word-spacing:-3.054636px;}
.ws1e{word-spacing:-3.038971px;}
.ws19{word-spacing:-3.007642px;}
.ws2f{word-spacing:-2.976312px;}
.ws23{word-spacing:-2.944982px;}
.ws16{word-spacing:-2.929318px;}
.ws18{word-spacing:-2.897988px;}
.ws1f{word-spacing:-2.866658px;}
.ws25{word-spacing:-2.850994px;}
.ws22{word-spacing:-2.835329px;}
.ws24{word-spacing:-2.803999px;}
.ws1a{word-spacing:-2.772670px;}
.wsb{word-spacing:-2.772000px;}
.ws1d{word-spacing:-2.741340px;}
.ws17{word-spacing:-2.710010px;}
.ws4a{word-spacing:-0.624000px;}
.ws39{word-spacing:-0.454279px;}
.ws34{word-spacing:-0.312000px;}
.ws42{word-spacing:-0.234972px;}
.ws8{word-spacing:-0.234000px;}
.ws3a{word-spacing:-0.203642px;}
.ws3b{word-spacing:-0.156648px;}
.ws7{word-spacing:-0.156000px;}
.ws43{word-spacing:-0.125318px;}
.ws3c{word-spacing:-0.109654px;}
.ws35{word-spacing:-0.093989px;}
.wsd{word-spacing:-0.090000px;}
.ws11{word-spacing:-0.086923px;}
.ws3e{word-spacing:-0.078324px;}
.ws38{word-spacing:-0.062659px;}
.ws48{word-spacing:-0.046994px;}
.ws12{word-spacing:-0.043462px;}
.ws46{word-spacing:-0.036655px;}
.ws3d{word-spacing:-0.015665px;}
.ws1{word-spacing:0.000000px;}
.ws37{word-spacing:0.015665px;}
.ws41{word-spacing:0.093989px;}
.ws45{word-spacing:0.100880px;}
.ws36{word-spacing:0.109654px;}
.ws4f{word-spacing:0.156000px;}
.ws47{word-spacing:0.164948px;}
.ws13{word-spacing:0.175917px;}
.ws3f{word-spacing:0.187978px;}
.ws14{word-spacing:0.211100px;}
.ws40{word-spacing:0.219307px;}
.wsa{word-spacing:0.234000px;}
.ws9{word-spacing:0.330000px;}
.wsc{word-spacing:0.390000px;}
.ws4e{word-spacing:0.624000px;}
.ws10{word-spacing:1.014000px;}
.ws4d{word-spacing:1.950000px;}
.ws44{word-spacing:17.011973px;}
.ws28{word-spacing:43.286542px;}
.ws27{word-spacing:43.463554px;}
.ws1c{word-spacing:47.600628px;}
.ws26{word-spacing:55.196489px;}
.ws1b{word-spacing:55.625705px;}
.wse{word-spacing:110.757343px;}
.ws2a{word-spacing:152.218106px;}
._f{margin-left:-26.448000px;}
._11{margin-left:-14.064600px;}
._33{margin-left:-12.802704px;}
._32{margin-left:-11.640600px;}
._13{margin-left:-9.676800px;}
._17{margin-left:-6.713072px;}
._10{margin-left:-5.603400px;}
._d{margin-left:-4.435200px;}
._12{margin-left:-2.583000px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._14{width:6.269400px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._15{width:10.282800px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._18{width:13.894597px;}
._31{width:15.158010px;}
._16{width:16.750800px;}
._9{width:18.555327px;}
._19{width:19.998000px;}
._5{width:21.723310px;}
._30{width:23.132380px;}
._2b{width:25.306270px;}
._1a{width:27.099600px;}
._c{width:28.210132px;}
._2c{width:30.522648px;}
._2d{width:38.590020px;}
._27{width:43.750558px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._29{width:51.693840px;}
._2a{width:54.560498px;}
._28{width:56.461057px;}
._2f{width:95.241054px;}
._26{width:109.772208px;}
._2e{width:120.493642px;}
._25{width:127.610192px;}
._1b{width:231.416165px;}
._0{width:769.805658px;}
._22{width:1138.012646px;}
._1c{width:1155.105550px;}
._21{width:1291.694482px;}
._24{width:1334.662274px;}
._1f{width:1415.749126px;}
._23{width:1571.745302px;}
._1e{width:1617.379982px;}
._1d{width:1641.110016px;}
._20{width:1710.865884px;}
.fc8{color:transparent;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc7{color:rgb(89,89,89);}
.fc6{color:rgb(64,64,64);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:13.785000px;}
.fs17{font-size:14.411400px;}
.fs15{font-size:15.664800px;}
.fs18{font-size:18.327600px;}
.fs19{font-size:23.497200px;}
.fs14{font-size:35.183400px;}
.fse{font-size:36.000000px;}
.fs4{font-size:37.714080px;}
.fs7{font-size:41.485488px;}
.fs5{font-size:42.428340px;}
.fs13{font-size:43.461600px;}
.fs3{font-size:47.142600px;}
.fs2{font-size:51.856860px;}
.fs6{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs0{font-size:61.285380px;}
.fs1{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y168{bottom:-210.468000px;}
.y167{bottom:-205.127519px;}
.y166{bottom:-188.869650px;}
.y165{bottom:-183.539878px;}
.y164{bottom:-178.198181px;}
.y163{bottom:-172.856484px;}
.y162{bottom:-167.514787px;}
.y161{bottom:-162.173090px;}
.y160{bottom:-156.831394px;}
.y15f{bottom:-151.489697px;}
.y15e{bottom:-146.148000px;}
.y15d{bottom:-140.807850px;}
.y15c{bottom:-140.807095px;}
.y15b{bottom:-135.230250px;}
.y15a{bottom:-129.890100px;}
.y159{bottom:-124.549950px;}
.y158{bottom:-119.215537px;}
.y157{bottom:-113.873840px;}
.y156{bottom:-108.532144px;}
.y155{bottom:-103.190447px;}
.y154{bottom:-97.848750px;}
.y153{bottom:-92.508600px;}
.y152{bottom:-92.508584px;}
.y151{bottom:-87.049650px;}
.y150{bottom:-81.713990px;}
.y14f{bottom:-76.372294px;}
.y14e{bottom:-71.030597px;}
.y14d{bottom:-65.688900px;}
.y14c{bottom:-60.348750px;}
.y14b{bottom:-60.347188px;}
.y14a{bottom:-54.889950px;}
.y149{bottom:-49.552594px;}
.y148{bottom:-44.210897px;}
.y147{bottom:-38.869200px;}
.y146{bottom:-33.529050px;}
.y145{bottom:-33.527700px;}
.y143{bottom:-27.951600px;}
.y142{bottom:-22.620037px;}
.y141{bottom:-17.278340px;}
.y140{bottom:-11.936644px;}
.y13f{bottom:-6.594947px;}
.y13e{bottom:-1.253250px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y104{bottom:0.475350px;}
.y124{bottom:0.592950px;}
.y12d{bottom:0.593100px;}
.y11b{bottom:0.594450px;}
.y113{bottom:0.711300px;}
.y138{bottom:0.712500px;}
.ye1{bottom:2.586150px;}
.yd6{bottom:2.586450px;}
.ydf{bottom:2.586600px;}
.yd4{bottom:2.586900px;}
.yd2{bottom:2.587050px;}
.ydc{bottom:2.587200px;}
.yda{bottom:2.587500px;}
.yd8{bottom:2.587800px;}
.yee{bottom:2.613450px;}
.y13b{bottom:14.770200px;}
.y13a{bottom:14.773050px;}
.y117{bottom:21.955350px;}
.y11f{bottom:27.294150px;}
.y128{bottom:27.294300px;}
.y10d{bottom:32.752650px;}
.y131{bottom:38.094300px;}
.y33{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y109{bottom:54.113550px;}
.y12f{bottom:57.729900px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y126{bottom:89.889750px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y32{bottom:102.047250px;}
.y93{bottom:102.157350px;}
.y1bd{bottom:102.523350px;}
.y206{bottom:103.343100px;}
.y6b{bottom:103.476600px;}
.y102{bottom:103.580550px;}
.y1d6{bottom:104.494950px;}
.yc2{bottom:105.011850px;}
.y44{bottom:108.908400px;}
.ya5{bottom:112.566600px;}
.y205{bottom:119.246100px;}
.y11d{bottom:122.051100px;}
.y92{bottom:122.864850px;}
.y1bc{bottom:123.230850px;}
.y1b{bottom:123.419327px;}
.y6a{bottom:124.184100px;}
.y101{bottom:124.288050px;}
.y43{bottom:125.108400px;}
.y1d5{bottom:125.202450px;}
.yc1{bottom:125.719350px;}
.ya4{bottom:133.274100px;}
.y204{bottom:135.149100px;}
.y21{bottom:136.778700px;}
.y28{bottom:142.439400px;}
.y91{bottom:143.572350px;}
.y1bb{bottom:143.938350px;}
.y69{bottom:144.809100px;}
.y100{bottom:144.995550px;}
.y42{bottom:145.560900px;}
.y1d4{bottom:145.909950px;}
.yc0{bottom:146.426850px;}
.y115{bottom:148.871400px;}
.y203{bottom:151.052100px;}
.ya3{bottom:153.981600px;}
.y41{bottom:161.760900px;}
.y90{bottom:164.279850px;}
.y1ba{bottom:164.645850px;}
.y68{bottom:165.434100px;}
.yff{bottom:165.703050px;}
.y1d3{bottom:166.617450px;}
.y202{bottom:166.955100px;}
.ybf{bottom:167.134350px;}
.ya2{bottom:174.689100px;}
.y40{bottom:177.960900px;}
.y201{bottom:182.858100px;}
.y27{bottom:184.431900px;}
.y8f{bottom:184.987350px;}
.y1b9{bottom:185.353350px;}
.y67{bottom:186.059100px;}
.yfe{bottom:186.410550px;}
.y1d2{bottom:187.324950px;}
.ybe{bottom:187.841850px;}
.y1a{bottom:192.612878px;}
.y190{bottom:193.938000px;}
.y3f{bottom:194.160900px;}
.ya1{bottom:195.396600px;}
.y200{bottom:198.761100px;}
.y19{bottom:202.630680px;}
.y26{bottom:205.436400px;}
.y8e{bottom:205.694850px;}
.y1b8{bottom:206.060850px;}
.y66{bottom:206.684100px;}
.y107{bottom:207.848550px;}
.y1d1{bottom:208.032450px;}
.ybd{bottom:208.549350px;}
.y19e{bottom:209.179200px;}
.y19c{bottom:209.656800px;}
.y1a0{bottom:209.656950px;}
.y199{bottom:209.817450px;}
.y19b{bottom:209.856600px;}
.y1a2{bottom:210.134700px;}
.y1a4{bottom:210.295200px;}
.y3e{bottom:210.360900px;}
.y1a6{bottom:210.607500px;}
.y18{bottom:212.648483px;}
.y106{bottom:213.188850px;}
.y1ff{bottom:214.664100px;}
.ya0{bottom:216.104100px;}
.y17{bottom:222.678071px;}
.y8d{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y3d{bottom:226.560900px;}
.y1b7{bottom:226.768350px;}
.y65{bottom:227.309100px;}
.y1d0{bottom:228.739950px;}
.ybc{bottom:229.256850px;}
.y1fe{bottom:230.567100px;}
.y16{bottom:232.695874px;}
.yfd{bottom:234.752700px;}
.y9f{bottom:236.811600px;}
.y22f{bottom:237.352350px;}
.y15{bottom:242.725462px;}
.y3c{bottom:242.760900px;}
.y1fd{bottom:246.470100px;}
.y8c{bottom:247.109850px;}
.y1b6{bottom:247.475850px;}
.y64{bottom:247.934100px;}
.y1cf{bottom:249.447450px;}
.ybb{bottom:249.964350px;}
.y14{bottom:252.743264px;}
.yfc{bottom:252.748200px;}
.y22e{bottom:253.700850px;}
.y3b{bottom:258.960900px;}
.y1fc{bottom:262.373100px;}
.y13{bottom:262.761067px;}
.y8b{bottom:267.817350px;}
.y1b5{bottom:268.183350px;}
.y63{bottom:268.559100px;}
.y22d{bottom:270.049350px;}
.y1ce{bottom:270.154950px;}
.yba{bottom:270.671850px;}
.y12{bottom:272.790655px;}
.y9e{bottom:275.369850px;}
.y1fb{bottom:278.276100px;}
.yed{bottom:278.646000px;}
.y11{bottom:282.808457px;}
.y31{bottom:284.429700px;}
.y22c{bottom:286.397850px;}
.y8a{bottom:288.524850px;}
.y1b4{bottom:288.890850px;}
.y62{bottom:289.184100px;}
.y1cd{bottom:290.862450px;}
.yb9{bottom:291.379350px;}
.y10{bottom:292.838046px;}
.y1fa{bottom:294.179100px;}
.yf0{bottom:298.921467px;}
.y22b{bottom:302.746350px;}
.yf{bottom:302.855848px;}
.ye3{bottom:303.776850px;}
.y30{bottom:305.434200px;}
.y89{bottom:309.232350px;}
.y1b3{bottom:309.598350px;}
.yef{bottom:309.661200px;}
.y61{bottom:309.809100px;}
.y1f9{bottom:310.082100px;}
.y1cc{bottom:311.569950px;}
.yb8{bottom:312.086850px;}
.ye{bottom:312.873651px;}
.y22a{bottom:319.094850px;}
.yf2{bottom:322.107328px;}
.y1f8{bottom:325.985100px;}
.y2f{bottom:326.438700px;}
.ye4{bottom:326.971506px;}
.y88{bottom:329.939850px;}
.y1b2{bottom:330.305850px;}
.y60{bottom:330.434100px;}
.yd{bottom:330.893909px;}
.y1cb{bottom:332.277450px;}
.yb7{bottom:332.794350px;}
.yf1{bottom:332.847061px;}
.y229{bottom:335.443350px;}
.y9d{bottom:337.925850px;}
.y1f7{bottom:341.888100px;}
.y2e{bottom:347.443200px;}
.ye5{bottom:350.166163px;}
.y87{bottom:350.647350px;}
.yf3{bottom:350.667453px;}
.y1b1{bottom:351.013350px;}
.y5f{bottom:351.059100px;}
.y228{bottom:351.791850px;}
.y1ca{bottom:352.984950px;}
.yb6{bottom:353.501850px;}
.y1f6{bottom:357.791100px;}
.y9c{bottom:358.633350px;}
.y227{bottom:368.140350px;}
.y2d{bottom:368.447700px;}
.y86{bottom:371.354850px;}
.y5e{bottom:371.684100px;}
.y1b0{bottom:371.720850px;}
.ye6{bottom:373.360819px;}
.y1c9{bottom:373.692450px;}
.y1f5{bottom:373.694100px;}
.yf4{bottom:373.862109px;}
.yb5{bottom:374.209350px;}
.y9b{bottom:379.340850px;}
.y226{bottom:384.488850px;}
.y2c{bottom:389.452200px;}
.y1f4{bottom:389.597100px;}
.y85{bottom:392.062350px;}
.y5d{bottom:392.309100px;}
.y1af{bottom:392.428350px;}
.y1c8{bottom:394.399950px;}
.yb4{bottom:394.916850px;}
.y24b{bottom:395.637450px;}
.ye7{bottom:396.555476px;}
.yf5{bottom:397.056766px;}
.y9a{bottom:400.048350px;}
.y225{bottom:400.837350px;}
.y1f3{bottom:405.500100px;}
.y2b{bottom:410.456700px;}
.y84{bottom:412.769850px;}
.y5c{bottom:412.934100px;}
.y1ae{bottom:413.135850px;}
.y24a{bottom:414.118950px;}
.y1c7{bottom:415.107450px;}
.yb3{bottom:415.624350px;}
.y224{bottom:417.185850px;}
.ye8{bottom:419.750132px;}
.yf6{bottom:420.251422px;}
.y1f2{bottom:421.403100px;}
.y99{bottom:424.996350px;}
.y249{bottom:430.467450px;}
.y83{bottom:433.477350px;}
.y223{bottom:433.534350px;}
.y5b{bottom:433.559100px;}
.y1ad{bottom:433.843350px;}
.y1c6{bottom:435.814950px;}
.yb2{bottom:436.331850px;}
.y1f1{bottom:437.306100px;}
.yc{bottom:440.641882px;}
.ye9{bottom:442.944789px;}
.yf7{bottom:443.446078px;}
.y98{bottom:445.703850px;}
.y248{bottom:446.815950px;}
.y222{bottom:449.882850px;}
.y1f0{bottom:453.209100px;}
.y5a{bottom:454.184100px;}
.y82{bottom:454.184850px;}
.y1ac{bottom:454.550850px;}
.y1c5{bottom:456.522450px;}
.yb1{bottom:457.039350px;}
.yf9{bottom:461.266471px;}
.y247{bottom:463.164450px;}
.yea{bottom:466.139445px;}
.y221{bottom:466.231350px;}
.y97{bottom:466.411350px;}
.y1ef{bottom:469.112100px;}
.yf8{bottom:472.006203px;}
.y59{bottom:474.809100px;}
.y81{bottom:474.892350px;}
.y1ab{bottom:475.258350px;}
.y1c4{bottom:477.229950px;}
.y246{bottom:479.512950px;}
.y220{bottom:482.579850px;}
.y1ee{bottom:485.015100px;}
.yb0{bottom:486.673350px;}
.y96{bottom:487.118850px;}
.yeb{bottom:489.334102px;}
.yfa{bottom:489.826596px;}
.y58{bottom:495.434100px;}
.y80{bottom:495.599850px;}
.y245{bottom:495.861450px;}
.y1aa{bottom:495.965850px;}
.y1c3{bottom:497.937450px;}
.y2a{bottom:498.056700px;}
.y21f{bottom:498.928350px;}
.y1ed{bottom:500.918100px;}
.yaf{bottom:507.380850px;}
.y95{bottom:512.066850px;}
.yec{bottom:512.528758px;}
.yfb{bottom:513.021252px;}
.y21e{bottom:515.276850px;}
.y57{bottom:516.059100px;}
.y7f{bottom:516.307350px;}
.y1a9{bottom:516.673350px;}
.y1ec{bottom:516.821100px;}
.y1c2{bottom:518.644950px;}
.y244{bottom:524.967450px;}
.yae{bottom:528.088350px;}
.y21d{bottom:531.625350px;}
.y29{bottom:532.256700px;}
.y1eb{bottom:532.724100px;}
.y94{bottom:532.774350px;}
.y56{bottom:536.684100px;}
.y7e{bottom:537.014850px;}
.y1c1{bottom:539.352450px;}
.y243{bottom:543.448950px;}
.y21c{bottom:547.973850px;}
.y1ea{bottom:548.627100px;}
.yad{bottom:548.795850px;}
.y55{bottom:557.309100px;}
.ye2{bottom:557.571000px;}
.y7d{bottom:557.722350px;}
.y242{bottom:559.797450px;}
.y1c0{bottom:560.059950px;}
.y1a8{bottom:562.885200px;}
.y21b{bottom:564.322350px;}
.y1e9{bottom:564.530100px;}
.yac{bottom:569.503350px;}
.ye0{bottom:571.714500px;}
.y241{bottom:576.145950px;}
.yd0{bottom:576.786600px;}
.y54{bottom:577.934100px;}
.y7c{bottom:578.429850px;}
.y1e8{bottom:580.433100px;}
.y21a{bottom:580.670850px;}
.y1bf{bottom:580.767450px;}
.yde{bottom:585.856500px;}
.y105{bottom:588.781500px;}
.yab{bottom:590.210850px;}
.y240{bottom:592.494450px;}
.y13d{bottom:592.869853px;}
.y198{bottom:593.590050px;}
.y1e7{bottom:596.336100px;}
.y219{bottom:597.019350px;}
.ycf{bottom:597.494100px;}
.y13c{bottom:598.211550px;}
.y53{bottom:598.559100px;}
.y7b{bottom:599.137350px;}
.ydd{bottom:599.998500px;}
.yb{bottom:602.824212px;}
.y144{bottom:603.551700px;}
.y130{bottom:608.416500px;}
.y23f{bottom:608.842950px;}
.y194{bottom:610.494833px;}
.yaa{bottom:610.918350px;}
.y1e6{bottom:612.239100px;}
.y3a{bottom:613.192350px;}
.y218{bottom:613.367850px;}
.ydb{bottom:614.140500px;}
.y137{bottom:614.462166px;}
.y193{bottom:616.071005px;}
.y197{bottom:616.075587px;}
.yce{bottom:618.201600px;}
.y52{bottom:619.184100px;}
.y1be{bottom:619.325850px;}
.y136{bottom:619.803863px;}
.y7a{bottom:619.844850px;}
.y192{bottom:621.647178px;}
.y196{bottom:621.651760px;}
.y135{bottom:625.145560px;}
.y23e{bottom:625.191450px;}
.ya{bottom:625.240518px;}
.y191{bottom:627.223350px;}
.y195{bottom:627.227932px;}
.y1e5{bottom:628.142100px;}
.yd9{bottom:628.282500px;}
.y217{bottom:629.716350px;}
.y134{bottom:630.487256px;}
.ya9{bottom:631.625850px;}
.y186{bottom:633.453150px;}
.y133{bottom:635.828953px;}
.y16e{bottom:637.387714px;}
.y9{bottom:638.605445px;}
.ycd{bottom:638.909100px;}
.y51{bottom:639.809100px;}
.y79{bottom:640.552350px;}
.y184{bottom:640.703006px;}
.y132{bottom:641.170650px;}
.yd7{bottom:642.424500px;}
.y1e4{bottom:644.045100px;}
.y216{bottom:646.064850px;}
.y139{bottom:646.510800px;}
.y187{bottom:648.379758px;}
.y39{bottom:650.992350px;}
.y127{bottom:651.376500px;}
.ya8{bottom:652.333350px;}
.y23d{bottom:654.297450px;}
.yd5{bottom:656.568000px;}
.y24{bottom:657.176850px;}
.y12c{bottom:657.305410px;}
.ycc{bottom:659.616600px;}
.y181{bottom:659.684951px;}
.y1e3{bottom:659.948100px;}
.y50{bottom:660.434100px;}
.y78{bottom:661.259850px;}
.y215{bottom:662.413350px;}
.y12b{bottom:662.647106px;}
.y188{bottom:663.306365px;}
.y8{bottom:664.628160px;}
.y180{bottom:665.953680px;}
.y16b{bottom:666.642930px;}
.y12a{bottom:667.988803px;}
.yd3{bottom:670.710000px;}
.y23c{bottom:672.778950px;}
.ya7{bottom:673.040850px;}
.y129{bottom:673.330500px;}
.y16d{bottom:674.452132px;}
.y1e2{bottom:675.851100px;}
.y7{bottom:677.993088px;}
.y189{bottom:678.232973px;}
.y12e{bottom:678.670800px;}
.y214{bottom:678.761850px;}
.ycb{bottom:680.324100px;}
.y17f{bottom:681.031024px;}
.y4f{bottom:681.059100px;}
.y77{bottom:681.967350px;}
.y11e{bottom:683.536500px;}
.yd1{bottom:684.852000px;}
.y16c{bottom:685.931591px;}
.y23b{bottom:689.127450px;}
.y123{bottom:689.465410px;}
.y6{bottom:691.358015px;}
.y1e1{bottom:691.754100px;}
.y18a{bottom:693.159580px;}
.y17e{bottom:693.720116px;}
.ya6{bottom:693.748350px;}
.y122{bottom:694.807106px;}
.y213{bottom:695.110350px;}
.y176{bottom:697.004392px;}
.y121{bottom:700.148803px;}
.yca{bottom:701.031600px;}
.y4e{bottom:701.684100px;}
.y76{bottom:702.674850px;}
.y5{bottom:704.722942px;}
.y23a{bottom:705.475950px;}
.y120{bottom:705.490500px;}
.y1e0{bottom:707.657100px;}
.y18b{bottom:708.086188px;}
.y125{bottom:710.830650px;}
.y212{bottom:711.458850px;}
.y116{bottom:715.695000px;}
.y16a{bottom:719.484281px;}
.y175{bottom:719.542867px;}
.y11a{bottom:721.626806px;}
.yc9{bottom:721.739100px;}
.y239{bottom:721.824450px;}
.y4d{bottom:722.309100px;}
.y18c{bottom:723.012795px;}
.y23{bottom:723.200850px;}
.y75{bottom:723.382350px;}
.y1df{bottom:723.560100px;}
.y17d{bottom:724.767382px;}
.y38{bottom:726.592350px;}
.y119{bottom:726.968503px;}
.y211{bottom:727.807350px;}
.y171{bottom:728.292896px;}
.y182{bottom:729.426712px;}
.y118{bottom:732.310200px;}
.y183{bottom:733.424362px;}
.y11c{bottom:737.650350px;}
.y18d{bottom:737.939403px;}
.y238{bottom:738.172950px;}
.y1de{bottom:739.463100px;}
.yc8{bottom:742.446600px;}
.y108{bottom:742.516500px;}
.y4c{bottom:742.934100px;}
.y74{bottom:744.089850px;}
.y210{bottom:744.155850px;}
.y177{bottom:744.621229px;}
.y112{bottom:748.562063px;}
.y17b{bottom:750.590134px;}
.y174{bottom:752.233995px;}
.y18e{bottom:752.866010px;}
.y111{bottom:753.903760px;}
.y237{bottom:754.521450px;}
.y1dd{bottom:755.366100px;}
.y16f{bottom:756.297124px;}
.y169{bottom:758.892150px;}
.y110{bottom:759.245456px;}
.y20f{bottom:760.504350px;}
.yc7{bottom:763.154100px;}
.y4b{bottom:763.559100px;}
.y170{bottom:764.268300px;}
.y37{bottom:764.392350px;}
.y10f{bottom:764.587153px;}
.y73{bottom:764.797350px;}
.y178{bottom:766.711691px;}
.y4{bottom:766.998316px;}
.y18f{bottom:767.792618px;}
.y10e{bottom:769.928850px;}
.y185{bottom:770.020091px;}
.y1dc{bottom:771.269100px;}
.y179{bottom:775.668495px;}
.y173{bottom:776.116507px;}
.y20e{bottom:776.852850px;}
.y172{bottom:778.625378px;}
.y6c{bottom:780.031350px;}
.y10c{bottom:780.606356px;}
.y17a{bottom:781.885530px;}
.y17c{bottom:783.505267px;}
.y236{bottom:783.627450px;}
.yc6{bottom:783.861600px;}
.y4a{bottom:784.184100px;}
.y72{bottom:785.504850px;}
.y10b{bottom:785.948053px;}
.y3{bottom:786.821780px;}
.y1db{bottom:787.172100px;}
.y10a{bottom:791.289750px;}
.y19f{bottom:793.182900px;}
.y20d{bottom:793.201350px;}
.y19d{bottom:793.660650px;}
.y1a1{bottom:793.660800px;}
.y19a{bottom:793.821300px;}
.y1a3{bottom:794.138550px;}
.y1a5{bottom:794.299050px;}
.y1a7{bottom:795.004350px;}
.y114{bottom:796.630050px;}
.y103{bottom:801.495000px;}
.y235{bottom:802.108950px;}
.y36{bottom:802.192350px;}
.y1da{bottom:803.075100px;}
.yc5{bottom:804.569100px;}
.y49{bottom:804.809100px;}
.y71{bottom:806.212350px;}
.y20c{bottom:809.549850px;}
.y2{bottom:809.733083px;}
.y22{bottom:811.700850px;}
.y234{bottom:818.457450px;}
.y1d9{bottom:818.978100px;}
.yc4{bottom:825.276600px;}
.y48{bottom:825.434100px;}
.y20b{bottom:825.898350px;}
.y70{bottom:826.919850px;}
.y233{bottom:834.805950px;}
.y1d8{bottom:834.881100px;}
.y35{bottom:839.992350px;}
.y20a{bottom:842.246850px;}
.yc3{bottom:845.984100px;}
.y47{bottom:846.059100px;}
.y6f{bottom:847.627350px;}
.y1d7{bottom:850.784100px;}
.y232{bottom:851.154450px;}
.y209{bottom:858.595350px;}
.y231{bottom:867.502950px;}
.y6e{bottom:868.334850px;}
.y208{bottom:874.943850px;}
.y34{bottom:877.792350px;}
.y230{bottom:883.851450px;}
.y46{bottom:884.542350px;}
.y6d{bottom:889.042350px;}
.y207{bottom:891.292350px;}
.y45{bottom:952.015800px;}
.h37{height:-206.551500px;}
.h1d{height:-155.346000px;}
.h1f{height:-141.204000px;}
.h36{height:-136.891500px;}
.h20{height:-127.062000px;}
.h21{height:-112.918500px;}
.h22{height:-98.776500px;}
.h35{height:-88.591500px;}
.h23{height:-84.634500px;}
.h24{height:-70.492500px;}
.h34{height:-56.433000px;}
.h25{height:-56.350500px;}
.h26{height:-42.208500px;}
.h33{height:-29.613000px;}
.h27{height:-28.065000px;}
.h2b{height:0.895500px;}
.h38{height:10.170476px;}
.h3a{height:10.632630px;}
.h3d{height:11.557379px;}
.h3b{height:13.521974px;}
.h2c{height:13.576670px;}
.h39{height:16.139381px;}
.h3c{height:17.336069px;}
.h32{height:18.685500px;}
.h2f{height:25.870500px;}
.h28{height:25.958065px;}
.h7{height:27.946133px;}
.h13{height:28.546875px;}
.h30{height:31.210500px;}
.h8{height:31.439400px;}
.h1e{height:32.065663px;}
.h6{height:34.932667px;}
.h5{height:38.425933px;}
.h9{height:39.124587px;}
.h31{height:42.010500px;}
.h17{height:42.820312px;}
.h16{height:43.664062px;}
.h3{height:45.412467px;}
.hf{height:48.694336px;}
.h4{height:48.905733px;}
.h10{height:52.335938px;}
.h1a{height:53.121094px;}
.h1b{height:53.367188px;}
.h12{height:54.272461px;}
.h18{height:57.093750px;}
.h2e{height:58.029000px;}
.h1c{height:62.622070px;}
.h2a{height:63.070312px;}
.h19{height:72.773438px;}
.h14{height:87.670898px;}
.h11{height:90.398438px;}
.h15{height:99.914062px;}
.hc{height:172.265625px;}
.he{height:212.484375px;}
.h2d{height:213.607500px;}
.h29{height:250.860000px;}
.hd{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.hb{height:999.000000px;}
.ha{height:999.213000px;}
.w8{width:12.105000px;}
.w5{width:20.767500px;}
.w6{width:20.769000px;}
.w7{width:57.675000px;}
.w4{width:463.464000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x1c{left:-22.189950px;}
.x35{left:-12.065100px;}
.x0{left:0.000000px;}
.x38{left:9.651750px;}
.x63{left:15.723300px;}
.x65{left:28.642650px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x14{left:46.771650px;}
.x1a{left:60.271650px;}
.x39{left:68.275350px;}
.x66{left:73.377000px;}
.x19{left:76.535400px;}
.x8{left:80.205750px;}
.x12{left:86.049900px;}
.x3c{left:90.822900px;}
.x3b{left:93.908400px;}
.x1b{left:97.787400px;}
.x2b{left:99.000886px;}
.x2f{left:107.875899px;}
.x13{left:114.165900px;}
.x2c{left:115.880122px;}
.x2{left:116.925434px;}
.x67{left:118.068150px;}
.x11{left:124.643400px;}
.x30{left:127.551900px;}
.x9{left:135.959250px;}
.xe{left:139.872900px;}
.x34{left:146.479800px;}
.x2e{left:156.138728px;}
.x16{left:161.574750px;}
.x4b{left:163.111411px;}
.x29{left:165.471125px;}
.x28{left:170.291250px;}
.x10{left:175.050900px;}
.x64{left:177.298800px;}
.x2d{left:178.664899px;}
.x27{left:180.556007px;}
.x4c{left:182.081850px;}
.x4d{left:183.163178px;}
.x2a{left:184.496548px;}
.x7{left:190.392750px;}
.x3d{left:192.073050px;}
.x68{left:207.759750px;}
.xb{left:209.128800px;}
.x26{left:213.589200px;}
.xc{left:215.769300px;}
.x4e{left:222.792032px;}
.x36{left:229.257000px;}
.xf{left:231.266400px;}
.x62{left:233.573250px;}
.x3e{left:236.929440px;}
.x31{left:242.311500px;}
.x69{left:253.069650px;}
.x37{left:255.483900px;}
.x3a{left:257.501250px;}
.x4f{left:262.759945px;}
.x32{left:264.027000px;}
.x50{left:275.699231px;}
.xa{left:281.522250px;}
.x33{left:285.745500px;}
.x6a{left:296.233650px;}
.xd{left:307.133400px;}
.x51{left:309.115027px;}
.x71{left:310.393650px;}
.x77{left:315.645150px;}
.x52{left:319.795436px;}
.x70{left:321.855150px;}
.x46{left:326.635328px;}
.x3f{left:327.920779px;}
.x76{left:335.233650px;}
.x6c{left:341.841150px;}
.x4{left:344.105623px;}
.x73{left:347.883150px;}
.x1d{left:350.666850px;}
.x53{left:357.861862px;}
.x54{left:360.560601px;}
.x1e{left:364.133296px;}
.x1f{left:366.376238px;}
.x72{left:368.160150px;}
.x20{left:370.862122px;}
.x40{left:372.463560px;}
.x6d{left:387.452550px;}
.x74{left:391.960650px;}
.x55{left:397.490715px;}
.x75{left:399.750150px;}
.x56{left:405.421984px;}
.x15{left:407.083800px;}
.x57{left:408.908810px;}
.x41{left:417.216563px;}
.x21{left:420.233228px;}
.x78{left:424.725150px;}
.x22{left:429.213790px;}
.x6e{left:434.624400px;}
.x59{left:448.006162px;}
.x5{left:449.502150px;}
.x58{left:452.139036px;}
.x6b{left:459.806250px;}
.x47{left:461.204498px;}
.x42{left:462.489949px;}
.x23{left:476.341955px;}
.x6{left:481.152750px;}
.x5a{left:487.534213px;}
.x24{left:489.808401px;}
.x5b{left:501.050818px;}
.x43{left:506.067780px;}
.x48{left:508.090729px;}
.x25{left:522.300271px;}
.x5d{left:535.845767px;}
.x5c{left:537.417359px;}
.x5e{left:546.681961px;}
.x44{left:550.924170px;}
.x5f{left:578.329144px;}
.x61{left:585.092028px;}
.x60{left:587.401306px;}
.x6f{left:597.140250px;}
.x4a{left:599.561096px;}
.x45{left:601.329023px;}
.x49{left:604.771826px;}
.x17{left:634.981950px;}
.x18{left:641.303100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.305693pt;}
.ls2b{letter-spacing:-1.733333pt;}
.ls9{letter-spacing:-0.901333pt;}
.ls2c{letter-spacing:-0.554667pt;}
.ls8{letter-spacing:-0.346667pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls6{letter-spacing:-0.208000pt;}
.ls1b{letter-spacing:-0.194940pt;}
.ls16{letter-spacing:-0.167091pt;}
.lsd{letter-spacing:-0.156371pt;}
.ls18{letter-spacing:-0.139243pt;}
.ls2d{letter-spacing:-0.138667pt;}
.lsc{letter-spacing:-0.125097pt;}
.ls26{letter-spacing:-0.114038pt;}
.ls1f{letter-spacing:-0.111394pt;}
.ls23{letter-spacing:-0.089671pt;}
.ls17{letter-spacing:-0.083546pt;}
.lsa{letter-spacing:-0.077265pt;}
.ls20{letter-spacing:-0.069621pt;}
.ls25{letter-spacing:-0.065165pt;}
.ls1d{letter-spacing:-0.055697pt;}
.ls24{letter-spacing:-0.032582pt;}
.ls1c{letter-spacing:-0.027849pt;}
.ls28{letter-spacing:-0.025620pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.013924pt;}
.ls27{letter-spacing:0.020886pt;}
.lsb{letter-spacing:0.038633pt;}
.ls11{letter-spacing:0.041773pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.051241pt;}
.ls21{letter-spacing:0.055697pt;}
.ls22{letter-spacing:0.061267pt;}
.ls1a{letter-spacing:0.069621pt;}
.ls10{letter-spacing:0.097470pt;}
.lse{letter-spacing:0.111394pt;}
.ls3{letter-spacing:0.138667pt;}
.lsf{letter-spacing:0.139243pt;}
.ls1e{letter-spacing:0.167091pt;}
.ls4{letter-spacing:0.208000pt;}
.ls19{letter-spacing:0.208864pt;}
.ls14{letter-spacing:0.277333pt;}
.ls29{letter-spacing:0.554667pt;}
.ls13{letter-spacing:1.566400pt;}
.ls7{letter-spacing:8.324800pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws4{word-spacing:-40.597333pt;}
.ws3{word-spacing:-22.901333pt;}
.ws5{word-spacing:-21.760000pt;}
.ws4b{word-spacing:-18.080000pt;}
.ws49{word-spacing:-15.669333pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws4c{word-spacing:-10.896000pt;}
.ws6{word-spacing:-10.848000pt;}
.wsf{word-spacing:-6.911583pt;}
.ws2d{word-spacing:-3.649229pt;}
.ws2c{word-spacing:-3.616646pt;}
.ws2e{word-spacing:-3.567773pt;}
.ws30{word-spacing:-3.188657pt;}
.ws31{word-spacing:-3.119036pt;}
.ws32{word-spacing:-2.946331pt;}
.ws33{word-spacing:-2.869470pt;}
.ws29{word-spacing:-2.830520pt;}
.ws2b{word-spacing:-2.805419pt;}
.ws21{word-spacing:-2.770929pt;}
.ws20{word-spacing:-2.743081pt;}
.ws15{word-spacing:-2.715232pt;}
.ws1e{word-spacing:-2.701308pt;}
.ws19{word-spacing:-2.673459pt;}
.ws2f{word-spacing:-2.645611pt;}
.ws23{word-spacing:-2.617762pt;}
.ws16{word-spacing:-2.603838pt;}
.ws18{word-spacing:-2.575989pt;}
.ws1f{word-spacing:-2.548141pt;}
.ws25{word-spacing:-2.534217pt;}
.ws22{word-spacing:-2.520292pt;}
.ws24{word-spacing:-2.492444pt;}
.ws1a{word-spacing:-2.464595pt;}
.wsb{word-spacing:-2.464000pt;}
.ws1d{word-spacing:-2.436747pt;}
.ws17{word-spacing:-2.408898pt;}
.ws4a{word-spacing:-0.554667pt;}
.ws39{word-spacing:-0.403804pt;}
.ws34{word-spacing:-0.277333pt;}
.ws42{word-spacing:-0.208864pt;}
.ws8{word-spacing:-0.208000pt;}
.ws3a{word-spacing:-0.181015pt;}
.ws3b{word-spacing:-0.139243pt;}
.ws7{word-spacing:-0.138667pt;}
.ws43{word-spacing:-0.111394pt;}
.ws3c{word-spacing:-0.097470pt;}
.ws35{word-spacing:-0.083546pt;}
.wsd{word-spacing:-0.080000pt;}
.ws11{word-spacing:-0.077265pt;}
.ws3e{word-spacing:-0.069621pt;}
.ws38{word-spacing:-0.055697pt;}
.ws48{word-spacing:-0.041773pt;}
.ws12{word-spacing:-0.038633pt;}
.ws46{word-spacing:-0.032582pt;}
.ws3d{word-spacing:-0.013924pt;}
.ws1{word-spacing:0.000000pt;}
.ws37{word-spacing:0.013924pt;}
.ws41{word-spacing:0.083546pt;}
.ws45{word-spacing:0.089671pt;}
.ws36{word-spacing:0.097470pt;}
.ws4f{word-spacing:0.138667pt;}
.ws47{word-spacing:0.146621pt;}
.ws13{word-spacing:0.156371pt;}
.ws3f{word-spacing:0.167091pt;}
.ws14{word-spacing:0.187645pt;}
.ws40{word-spacing:0.194940pt;}
.wsa{word-spacing:0.208000pt;}
.ws9{word-spacing:0.293333pt;}
.wsc{word-spacing:0.346667pt;}
.ws4e{word-spacing:0.554667pt;}
.ws10{word-spacing:0.901333pt;}
.ws4d{word-spacing:1.733333pt;}
.ws44{word-spacing:15.121754pt;}
.ws28{word-spacing:38.476926pt;}
.ws27{word-spacing:38.634270pt;}
.ws1c{word-spacing:42.311669pt;}
.ws26{word-spacing:49.063546pt;}
.ws1b{word-spacing:49.445071pt;}
.wse{word-spacing:98.450972pt;}
.ws2a{word-spacing:135.304983pt;}
._f{margin-left:-23.509333pt;}
._11{margin-left:-12.501867pt;}
._33{margin-left:-11.380181pt;}
._32{margin-left:-10.347200pt;}
._13{margin-left:-8.601600pt;}
._17{margin-left:-5.967175pt;}
._10{margin-left:-4.980800pt;}
._d{margin-left:-3.942400pt;}
._12{margin-left:-2.296000pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._14{width:5.572800pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._15{width:9.140267pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._18{width:12.350753pt;}
._31{width:13.473787pt;}
._16{width:14.889600pt;}
._9{width:16.493624pt;}
._19{width:17.776000pt;}
._5{width:19.309609pt;}
._30{width:20.562115pt;}
._2b{width:22.494462pt;}
._1a{width:24.088533pt;}
._c{width:25.075673pt;}
._2c{width:27.131243pt;}
._2d{width:34.302240pt;}
._27{width:38.889385pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._29{width:45.950080pt;}
._2a{width:48.498221pt;}
._28{width:50.187606pt;}
._2f{width:84.658715pt;}
._26{width:97.575296pt;}
._2e{width:107.105459pt;}
._25{width:113.431282pt;}
._1b{width:205.703258pt;}
._0{width:684.271696pt;}
._22{width:1011.566797pt;}
._1c{width:1026.760489pt;}
._21{width:1148.172873pt;}
._24{width:1186.366466pt;}
._1f{width:1258.443667pt;}
._23{width:1397.106935pt;}
._1e{width:1437.671095pt;}
._1d{width:1458.764459pt;}
._20{width:1520.769675pt;}
.fs16{font-size:12.253333pt;}
.fs17{font-size:12.810133pt;}
.fs15{font-size:13.924267pt;}
.fs18{font-size:16.291200pt;}
.fs19{font-size:20.886400pt;}
.fs14{font-size:31.274133pt;}
.fse{font-size:32.000000pt;}
.fs4{font-size:33.523627pt;}
.fs7{font-size:36.875989pt;}
.fs5{font-size:37.714080pt;}
.fs13{font-size:38.632533pt;}
.fs3{font-size:41.904533pt;}
.fs2{font-size:46.094987pt;}
.fs6{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs0{font-size:54.475893pt;}
.fs1{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y168{bottom:-187.082667pt;}
.y167{bottom:-182.335572pt;}
.y166{bottom:-167.884133pt;}
.y165{bottom:-163.146558pt;}
.y164{bottom:-158.398383pt;}
.y163{bottom:-153.650208pt;}
.y162{bottom:-148.902033pt;}
.y161{bottom:-144.153858pt;}
.y160{bottom:-139.405683pt;}
.y15f{bottom:-134.657508pt;}
.y15e{bottom:-129.909333pt;}
.y15d{bottom:-125.162533pt;}
.y15c{bottom:-125.161862pt;}
.y15b{bottom:-120.204667pt;}
.y15a{bottom:-115.457867pt;}
.y159{bottom:-110.711067pt;}
.y158{bottom:-105.969366pt;}
.y157{bottom:-101.221191pt;}
.y156{bottom:-96.473017pt;}
.y155{bottom:-91.724842pt;}
.y154{bottom:-86.976667pt;}
.y153{bottom:-82.229867pt;}
.y152{bottom:-82.229853pt;}
.y151{bottom:-77.377467pt;}
.y150{bottom:-72.634658pt;}
.y14f{bottom:-67.886483pt;}
.y14e{bottom:-63.138308pt;}
.y14d{bottom:-58.390133pt;}
.y14c{bottom:-53.643333pt;}
.y14b{bottom:-53.641945pt;}
.y14a{bottom:-48.791067pt;}
.y149{bottom:-44.046750pt;}
.y148{bottom:-39.298575pt;}
.y147{bottom:-34.550400pt;}
.y146{bottom:-29.803600pt;}
.y145{bottom:-29.802400pt;}
.y143{bottom:-24.845867pt;}
.y142{bottom:-20.106700pt;}
.y141{bottom:-15.358525pt;}
.y140{bottom:-10.610350pt;}
.y13f{bottom:-5.862175pt;}
.y13e{bottom:-1.114000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y104{bottom:0.422533pt;}
.y124{bottom:0.527067pt;}
.y12d{bottom:0.527200pt;}
.y11b{bottom:0.528400pt;}
.y113{bottom:0.632267pt;}
.y138{bottom:0.633333pt;}
.ye1{bottom:2.298800pt;}
.yd6{bottom:2.299067pt;}
.ydf{bottom:2.299200pt;}
.yd4{bottom:2.299467pt;}
.yd2{bottom:2.299600pt;}
.ydc{bottom:2.299733pt;}
.yda{bottom:2.300000pt;}
.yd8{bottom:2.300267pt;}
.yee{bottom:2.323067pt;}
.y13b{bottom:13.129067pt;}
.y13a{bottom:13.131600pt;}
.y117{bottom:19.515867pt;}
.y11f{bottom:24.261467pt;}
.y128{bottom:24.261600pt;}
.y10d{bottom:29.113467pt;}
.y131{bottom:33.861600pt;}
.y33{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y109{bottom:48.100933pt;}
.y12f{bottom:51.315467pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y126{bottom:79.902000pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y32{bottom:90.708667pt;}
.y93{bottom:90.806533pt;}
.y1bd{bottom:91.131867pt;}
.y206{bottom:91.860533pt;}
.y6b{bottom:91.979200pt;}
.y102{bottom:92.071600pt;}
.y1d6{bottom:92.884400pt;}
.yc2{bottom:93.343867pt;}
.y44{bottom:96.807467pt;}
.ya5{bottom:100.059200pt;}
.y205{bottom:105.996533pt;}
.y11d{bottom:108.489867pt;}
.y92{bottom:109.213200pt;}
.y1bc{bottom:109.538533pt;}
.y1b{bottom:109.706068pt;}
.y6a{bottom:110.385867pt;}
.y101{bottom:110.478267pt;}
.y43{bottom:111.207467pt;}
.y1d5{bottom:111.291067pt;}
.yc1{bottom:111.750533pt;}
.ya4{bottom:118.465867pt;}
.y204{bottom:120.132533pt;}
.y21{bottom:121.581067pt;}
.y28{bottom:126.612800pt;}
.y91{bottom:127.619867pt;}
.y1bb{bottom:127.945200pt;}
.y69{bottom:128.719200pt;}
.y100{bottom:128.884933pt;}
.y42{bottom:129.387467pt;}
.y1d4{bottom:129.697733pt;}
.yc0{bottom:130.157200pt;}
.y115{bottom:132.330133pt;}
.y203{bottom:134.268533pt;}
.ya3{bottom:136.872533pt;}
.y41{bottom:143.787467pt;}
.y90{bottom:146.026533pt;}
.y1ba{bottom:146.351867pt;}
.y68{bottom:147.052533pt;}
.yff{bottom:147.291600pt;}
.y1d3{bottom:148.104400pt;}
.y202{bottom:148.404533pt;}
.ybf{bottom:148.563867pt;}
.ya2{bottom:155.279200pt;}
.y40{bottom:158.187467pt;}
.y201{bottom:162.540533pt;}
.y27{bottom:163.939467pt;}
.y8f{bottom:164.433200pt;}
.y1b9{bottom:164.758533pt;}
.y67{bottom:165.385867pt;}
.yfe{bottom:165.698267pt;}
.y1d2{bottom:166.511067pt;}
.ybe{bottom:166.970533pt;}
.y1a{bottom:171.211447pt;}
.y190{bottom:172.389333pt;}
.y3f{bottom:172.587467pt;}
.ya1{bottom:173.685867pt;}
.y200{bottom:176.676533pt;}
.y19{bottom:180.116160pt;}
.y26{bottom:182.610133pt;}
.y8e{bottom:182.839867pt;}
.y1b8{bottom:183.165200pt;}
.y66{bottom:183.719200pt;}
.y107{bottom:184.754267pt;}
.y1d1{bottom:184.917733pt;}
.ybd{bottom:185.377200pt;}
.y19e{bottom:185.937067pt;}
.y19c{bottom:186.361600pt;}
.y1a0{bottom:186.361733pt;}
.y199{bottom:186.504400pt;}
.y19b{bottom:186.539200pt;}
.y1a2{bottom:186.786400pt;}
.y1a4{bottom:186.929067pt;}
.y3e{bottom:186.987467pt;}
.y1a6{bottom:187.206667pt;}
.y18{bottom:189.020874pt;}
.y106{bottom:189.501200pt;}
.y1ff{bottom:190.812533pt;}
.ya0{bottom:192.092533pt;}
.y17{bottom:197.936063pt;}
.y8d{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y3d{bottom:201.387467pt;}
.y1b7{bottom:201.571867pt;}
.y65{bottom:202.052533pt;}
.y1d0{bottom:203.324400pt;}
.ybc{bottom:203.783867pt;}
.y1fe{bottom:204.948533pt;}
.y16{bottom:206.840777pt;}
.yfd{bottom:208.669067pt;}
.y9f{bottom:210.499200pt;}
.y22f{bottom:210.979867pt;}
.y15{bottom:215.755966pt;}
.y3c{bottom:215.787467pt;}
.y1fd{bottom:219.084533pt;}
.y8c{bottom:219.653200pt;}
.y1b6{bottom:219.978533pt;}
.y64{bottom:220.385867pt;}
.y1cf{bottom:221.731067pt;}
.ybb{bottom:222.190533pt;}
.y14{bottom:224.660679pt;}
.yfc{bottom:224.665067pt;}
.y22e{bottom:225.511867pt;}
.y3b{bottom:230.187467pt;}
.y1fc{bottom:233.220533pt;}
.y13{bottom:233.565393pt;}
.y8b{bottom:238.059867pt;}
.y1b5{bottom:238.385200pt;}
.y63{bottom:238.719200pt;}
.y22d{bottom:240.043867pt;}
.y1ce{bottom:240.137733pt;}
.yba{bottom:240.597200pt;}
.y12{bottom:242.480582pt;}
.y9e{bottom:244.773200pt;}
.y1fb{bottom:247.356533pt;}
.yed{bottom:247.685333pt;}
.y11{bottom:251.385295pt;}
.y31{bottom:252.826400pt;}
.y22c{bottom:254.575867pt;}
.y8a{bottom:256.466533pt;}
.y1b4{bottom:256.791867pt;}
.y62{bottom:257.052533pt;}
.y1cd{bottom:258.544400pt;}
.yb9{bottom:259.003867pt;}
.y10{bottom:260.300485pt;}
.y1fa{bottom:261.492533pt;}
.yf0{bottom:265.707971pt;}
.y22b{bottom:269.107867pt;}
.yf{bottom:269.205198pt;}
.ye3{bottom:270.023867pt;}
.y30{bottom:271.497067pt;}
.y89{bottom:274.873200pt;}
.y1b3{bottom:275.198533pt;}
.yef{bottom:275.254400pt;}
.y61{bottom:275.385867pt;}
.y1f9{bottom:275.628533pt;}
.y1cc{bottom:276.951067pt;}
.yb8{bottom:277.410533pt;}
.ye{bottom:278.109912pt;}
.y22a{bottom:283.639867pt;}
.yf2{bottom:286.317625pt;}
.y1f8{bottom:289.764533pt;}
.y2f{bottom:290.167733pt;}
.ye4{bottom:290.641339pt;}
.y88{bottom:293.279867pt;}
.y1b2{bottom:293.605200pt;}
.y60{bottom:293.719200pt;}
.yd{bottom:294.127919pt;}
.y1cb{bottom:295.357733pt;}
.yb7{bottom:295.817200pt;}
.yf1{bottom:295.864054pt;}
.y229{bottom:298.171867pt;}
.y9d{bottom:300.378533pt;}
.y1f7{bottom:303.900533pt;}
.y2e{bottom:308.838400pt;}
.ye5{bottom:311.258811pt;}
.y87{bottom:311.686533pt;}
.yf3{bottom:311.704402pt;}
.y1b1{bottom:312.011867pt;}
.y5f{bottom:312.052533pt;}
.y228{bottom:312.703867pt;}
.y1ca{bottom:313.764400pt;}
.yb6{bottom:314.223867pt;}
.y1f6{bottom:318.036533pt;}
.y9c{bottom:318.785200pt;}
.y227{bottom:327.235867pt;}
.y2d{bottom:327.509067pt;}
.y86{bottom:330.093200pt;}
.y5e{bottom:330.385867pt;}
.y1b0{bottom:330.418533pt;}
.ye6{bottom:331.876284pt;}
.y1c9{bottom:332.171067pt;}
.y1f5{bottom:332.172533pt;}
.yf4{bottom:332.321875pt;}
.yb5{bottom:332.630533pt;}
.y9b{bottom:337.191867pt;}
.y226{bottom:341.767867pt;}
.y2c{bottom:346.179733pt;}
.y1f4{bottom:346.308533pt;}
.y85{bottom:348.499867pt;}
.y5d{bottom:348.719200pt;}
.y1af{bottom:348.825200pt;}
.y1c8{bottom:350.577733pt;}
.yb4{bottom:351.037200pt;}
.y24b{bottom:351.677733pt;}
.ye7{bottom:352.493756pt;}
.yf5{bottom:352.939347pt;}
.y9a{bottom:355.598533pt;}
.y225{bottom:356.299867pt;}
.y1f3{bottom:360.444533pt;}
.y2b{bottom:364.850400pt;}
.y84{bottom:366.906533pt;}
.y5c{bottom:367.052533pt;}
.y1ae{bottom:367.231867pt;}
.y24a{bottom:368.105733pt;}
.y1c7{bottom:368.984400pt;}
.yb3{bottom:369.443867pt;}
.y224{bottom:370.831867pt;}
.ye8{bottom:373.111229pt;}
.yf6{bottom:373.556820pt;}
.y1f2{bottom:374.580533pt;}
.y99{bottom:377.774533pt;}
.y249{bottom:382.637733pt;}
.y83{bottom:385.313200pt;}
.y223{bottom:385.363867pt;}
.y5b{bottom:385.385867pt;}
.y1ad{bottom:385.638533pt;}
.y1c6{bottom:387.391067pt;}
.yb2{bottom:387.850533pt;}
.y1f1{bottom:388.716533pt;}
.yc{bottom:391.681673pt;}
.ye9{bottom:393.728701pt;}
.yf7{bottom:394.174292pt;}
.y98{bottom:396.181200pt;}
.y248{bottom:397.169733pt;}
.y222{bottom:399.895867pt;}
.y1f0{bottom:402.852533pt;}
.y5a{bottom:403.719200pt;}
.y82{bottom:403.719867pt;}
.y1ac{bottom:404.045200pt;}
.y1c5{bottom:405.797733pt;}
.yb1{bottom:406.257200pt;}
.yf9{bottom:410.014641pt;}
.y247{bottom:411.701733pt;}
.yea{bottom:414.346173pt;}
.y221{bottom:414.427867pt;}
.y97{bottom:414.587867pt;}
.y1ef{bottom:416.988533pt;}
.yf8{bottom:419.561070pt;}
.y59{bottom:422.052533pt;}
.y81{bottom:422.126533pt;}
.y1ab{bottom:422.451867pt;}
.y1c4{bottom:424.204400pt;}
.y246{bottom:426.233733pt;}
.y220{bottom:428.959867pt;}
.y1ee{bottom:431.124533pt;}
.yb0{bottom:432.598533pt;}
.y96{bottom:432.994533pt;}
.yeb{bottom:434.963646pt;}
.yfa{bottom:435.401418pt;}
.y58{bottom:440.385867pt;}
.y80{bottom:440.533200pt;}
.y245{bottom:440.765733pt;}
.y1aa{bottom:440.858533pt;}
.y1c3{bottom:442.611067pt;}
.y2a{bottom:442.717067pt;}
.y21f{bottom:443.491867pt;}
.y1ed{bottom:445.260533pt;}
.yaf{bottom:451.005200pt;}
.y95{bottom:455.170533pt;}
.yec{bottom:455.581118pt;}
.yfb{bottom:456.018891pt;}
.y21e{bottom:458.023867pt;}
.y57{bottom:458.719200pt;}
.y7f{bottom:458.939867pt;}
.y1a9{bottom:459.265200pt;}
.y1ec{bottom:459.396533pt;}
.y1c2{bottom:461.017733pt;}
.y244{bottom:466.637733pt;}
.yae{bottom:469.411867pt;}
.y21d{bottom:472.555867pt;}
.y29{bottom:473.117067pt;}
.y1eb{bottom:473.532533pt;}
.y94{bottom:473.577200pt;}
.y56{bottom:477.052533pt;}
.y7e{bottom:477.346533pt;}
.y1c1{bottom:479.424400pt;}
.y243{bottom:483.065733pt;}
.y21c{bottom:487.087867pt;}
.y1ea{bottom:487.668533pt;}
.yad{bottom:487.818533pt;}
.y55{bottom:495.385867pt;}
.ye2{bottom:495.618667pt;}
.y7d{bottom:495.753200pt;}
.y242{bottom:497.597733pt;}
.y1c0{bottom:497.831067pt;}
.y1a8{bottom:500.342400pt;}
.y21b{bottom:501.619867pt;}
.y1e9{bottom:501.804533pt;}
.yac{bottom:506.225200pt;}
.ye0{bottom:508.190667pt;}
.y241{bottom:512.129733pt;}
.yd0{bottom:512.699200pt;}
.y54{bottom:513.719200pt;}
.y7c{bottom:514.159867pt;}
.y1e8{bottom:515.940533pt;}
.y21a{bottom:516.151867pt;}
.y1bf{bottom:516.237733pt;}
.yde{bottom:520.761333pt;}
.y105{bottom:523.361333pt;}
.yab{bottom:524.631867pt;}
.y240{bottom:526.661733pt;}
.y13d{bottom:526.995425pt;}
.y198{bottom:527.635600pt;}
.y1e7{bottom:530.076533pt;}
.y219{bottom:530.683867pt;}
.ycf{bottom:531.105867pt;}
.y13c{bottom:531.743600pt;}
.y53{bottom:532.052533pt;}
.y7b{bottom:532.566533pt;}
.ydd{bottom:533.332000pt;}
.yb{bottom:535.843744pt;}
.y144{bottom:536.490400pt;}
.y130{bottom:540.814667pt;}
.y23f{bottom:541.193733pt;}
.y194{bottom:542.662074pt;}
.yaa{bottom:543.038533pt;}
.y1e6{bottom:544.212533pt;}
.y3a{bottom:545.059867pt;}
.y218{bottom:545.215867pt;}
.ydb{bottom:545.902667pt;}
.y137{bottom:546.188592pt;}
.y193{bottom:547.618671pt;}
.y197{bottom:547.622744pt;}
.yce{bottom:549.512533pt;}
.y52{bottom:550.385867pt;}
.y1be{bottom:550.511867pt;}
.y136{bottom:550.936767pt;}
.y7a{bottom:550.973200pt;}
.y192{bottom:552.575269pt;}
.y196{bottom:552.579342pt;}
.y135{bottom:555.684942pt;}
.y23e{bottom:555.725733pt;}
.ya{bottom:555.769349pt;}
.y191{bottom:557.531867pt;}
.y195{bottom:557.535939pt;}
.y1e5{bottom:558.348533pt;}
.yd9{bottom:558.473333pt;}
.y217{bottom:559.747867pt;}
.y134{bottom:560.433117pt;}
.ya9{bottom:561.445200pt;}
.y186{bottom:563.069467pt;}
.y133{bottom:565.181292pt;}
.y16e{bottom:566.566857pt;}
.y9{bottom:567.649285pt;}
.ycd{bottom:567.919200pt;}
.y51{bottom:568.719200pt;}
.y79{bottom:569.379867pt;}
.y184{bottom:569.513783pt;}
.y132{bottom:569.929467pt;}
.yd7{bottom:571.044000pt;}
.y1e4{bottom:572.484533pt;}
.y216{bottom:574.279867pt;}
.y139{bottom:574.676267pt;}
.y187{bottom:576.337562pt;}
.y39{bottom:578.659867pt;}
.y127{bottom:579.001333pt;}
.ya8{bottom:579.851867pt;}
.y23d{bottom:581.597733pt;}
.yd5{bottom:583.616000pt;}
.y24{bottom:584.157200pt;}
.y12c{bottom:584.271475pt;}
.ycc{bottom:586.325867pt;}
.y181{bottom:586.386623pt;}
.y1e3{bottom:586.620533pt;}
.y50{bottom:587.052533pt;}
.y78{bottom:587.786533pt;}
.y215{bottom:588.811867pt;}
.y12b{bottom:589.019650pt;}
.y188{bottom:589.605658pt;}
.y8{bottom:590.780587pt;}
.y180{bottom:591.958827pt;}
.y16b{bottom:592.571493pt;}
.y12a{bottom:593.767825pt;}
.yd3{bottom:596.186667pt;}
.y23c{bottom:598.025733pt;}
.ya7{bottom:598.258533pt;}
.y129{bottom:598.516000pt;}
.y16d{bottom:599.513007pt;}
.y1e2{bottom:600.756533pt;}
.y7{bottom:602.660522pt;}
.y189{bottom:602.873753pt;}
.y12e{bottom:603.262933pt;}
.y214{bottom:603.343867pt;}
.ycb{bottom:604.732533pt;}
.y17f{bottom:605.360910pt;}
.y4f{bottom:605.385867pt;}
.y77{bottom:606.193200pt;}
.y11e{bottom:607.588000pt;}
.yd1{bottom:608.757333pt;}
.y16c{bottom:609.716970pt;}
.y23b{bottom:612.557733pt;}
.y123{bottom:612.858142pt;}
.y6{bottom:614.540457pt;}
.y1e1{bottom:614.892533pt;}
.y18a{bottom:616.141849pt;}
.y17e{bottom:616.640103pt;}
.ya6{bottom:616.665200pt;}
.y122{bottom:617.606317pt;}
.y213{bottom:617.875867pt;}
.y176{bottom:619.559460pt;}
.y121{bottom:622.354492pt;}
.yca{bottom:623.139200pt;}
.y4e{bottom:623.719200pt;}
.y76{bottom:624.599867pt;}
.y5{bottom:626.420393pt;}
.y23a{bottom:627.089733pt;}
.y120{bottom:627.102667pt;}
.y1e0{bottom:629.028533pt;}
.y18b{bottom:629.409945pt;}
.y125{bottom:631.849467pt;}
.y212{bottom:632.407867pt;}
.y116{bottom:636.173333pt;}
.y16a{bottom:639.541583pt;}
.y175{bottom:639.593660pt;}
.y11a{bottom:641.446050pt;}
.yc9{bottom:641.545867pt;}
.y239{bottom:641.621733pt;}
.y4d{bottom:642.052533pt;}
.y18c{bottom:642.678040pt;}
.y23{bottom:642.845200pt;}
.y75{bottom:643.006533pt;}
.y1df{bottom:643.164533pt;}
.y17d{bottom:644.237673pt;}
.y38{bottom:645.859867pt;}
.y119{bottom:646.194225pt;}
.y211{bottom:646.939867pt;}
.y171{bottom:647.371463pt;}
.y182{bottom:648.379300pt;}
.y118{bottom:650.942400pt;}
.y183{bottom:651.932767pt;}
.y11c{bottom:655.689200pt;}
.y18d{bottom:655.946136pt;}
.y238{bottom:656.153733pt;}
.y1de{bottom:657.300533pt;}
.yc8{bottom:659.952533pt;}
.y108{bottom:660.014667pt;}
.y4c{bottom:660.385867pt;}
.y74{bottom:661.413200pt;}
.y210{bottom:661.471867pt;}
.y177{bottom:661.885537pt;}
.y112{bottom:665.388500pt;}
.y17b{bottom:667.191230pt;}
.y174{bottom:668.652440pt;}
.y18e{bottom:669.214231pt;}
.y111{bottom:670.136675pt;}
.y237{bottom:670.685733pt;}
.y1dd{bottom:671.436533pt;}
.y16f{bottom:672.264110pt;}
.y169{bottom:674.570800pt;}
.y110{bottom:674.884850pt;}
.y20f{bottom:676.003867pt;}
.yc7{bottom:678.359200pt;}
.y4b{bottom:678.719200pt;}
.y170{bottom:679.349600pt;}
.y37{bottom:679.459867pt;}
.y10f{bottom:679.633025pt;}
.y73{bottom:679.819867pt;}
.y178{bottom:681.521503pt;}
.y4{bottom:681.776281pt;}
.y18f{bottom:682.482327pt;}
.y10e{bottom:684.381200pt;}
.y185{bottom:684.462303pt;}
.y1dc{bottom:685.572533pt;}
.y179{bottom:689.483107pt;}
.y173{bottom:689.881340pt;}
.y20e{bottom:690.535867pt;}
.y172{bottom:692.111447pt;}
.y6c{bottom:693.361200pt;}
.y10c{bottom:693.872317pt;}
.y17a{bottom:695.009360pt;}
.y17c{bottom:696.449127pt;}
.y236{bottom:696.557733pt;}
.yc6{bottom:696.765867pt;}
.y4a{bottom:697.052533pt;}
.y72{bottom:698.226533pt;}
.y10b{bottom:698.620492pt;}
.y3{bottom:699.397137pt;}
.y1db{bottom:699.708533pt;}
.y10a{bottom:703.368667pt;}
.y19f{bottom:705.051467pt;}
.y20d{bottom:705.067867pt;}
.y19d{bottom:705.476133pt;}
.y1a1{bottom:705.476267pt;}
.y19a{bottom:705.618933pt;}
.y1a3{bottom:705.900933pt;}
.y1a5{bottom:706.043600pt;}
.y1a7{bottom:706.670533pt;}
.y114{bottom:708.115600pt;}
.y103{bottom:712.440000pt;}
.y235{bottom:712.985733pt;}
.y36{bottom:713.059867pt;}
.y1da{bottom:713.844533pt;}
.yc5{bottom:715.172533pt;}
.y49{bottom:715.385867pt;}
.y71{bottom:716.633200pt;}
.y20c{bottom:719.599867pt;}
.y2{bottom:719.762741pt;}
.y22{bottom:721.511867pt;}
.y234{bottom:727.517733pt;}
.y1d9{bottom:727.980533pt;}
.yc4{bottom:733.579200pt;}
.y48{bottom:733.719200pt;}
.y20b{bottom:734.131867pt;}
.y70{bottom:735.039867pt;}
.y233{bottom:742.049733pt;}
.y1d8{bottom:742.116533pt;}
.y35{bottom:746.659867pt;}
.y20a{bottom:748.663867pt;}
.yc3{bottom:751.985867pt;}
.y47{bottom:752.052533pt;}
.y6f{bottom:753.446533pt;}
.y1d7{bottom:756.252533pt;}
.y232{bottom:756.581733pt;}
.y209{bottom:763.195867pt;}
.y231{bottom:771.113733pt;}
.y6e{bottom:771.853200pt;}
.y208{bottom:777.727867pt;}
.y34{bottom:780.259867pt;}
.y230{bottom:785.645733pt;}
.y46{bottom:786.259867pt;}
.y6d{bottom:790.259867pt;}
.y207{bottom:792.259867pt;}
.y45{bottom:846.236267pt;}
.h37{height:-183.601333pt;}
.h1d{height:-138.085333pt;}
.h1f{height:-125.514667pt;}
.h36{height:-121.681333pt;}
.h20{height:-112.944000pt;}
.h21{height:-100.372000pt;}
.h22{height:-87.801333pt;}
.h35{height:-78.748000pt;}
.h23{height:-75.230667pt;}
.h24{height:-62.660000pt;}
.h34{height:-50.162667pt;}
.h25{height:-50.089333pt;}
.h26{height:-37.518667pt;}
.h33{height:-26.322667pt;}
.h27{height:-24.946667pt;}
.h2b{height:0.796000pt;}
.h38{height:9.040423pt;}
.h3a{height:9.451226pt;}
.h3d{height:10.273226pt;}
.h3b{height:12.019533pt;}
.h2c{height:12.068151pt;}
.h39{height:14.346117pt;}
.h3c{height:15.409839pt;}
.h32{height:16.609333pt;}
.h2f{height:22.996000pt;}
.h28{height:23.073836pt;}
.h7{height:24.841007pt;}
.h13{height:25.375000pt;}
.h30{height:27.742667pt;}
.h8{height:27.946133pt;}
.h1e{height:28.502811pt;}
.h6{height:31.051259pt;}
.h5{height:34.156385pt;}
.h9{height:34.777410pt;}
.h31{height:37.342667pt;}
.h17{height:38.062500pt;}
.h16{height:38.812500pt;}
.h3{height:40.366637pt;}
.hf{height:43.283854pt;}
.h4{height:43.471763pt;}
.h10{height:46.520833pt;}
.h1a{height:47.218750pt;}
.h1b{height:47.437500pt;}
.h12{height:48.242188pt;}
.h18{height:50.750000pt;}
.h2e{height:51.581333pt;}
.h1c{height:55.664062pt;}
.h2a{height:56.062500pt;}
.h19{height:64.687500pt;}
.h14{height:77.929688pt;}
.h11{height:80.354167pt;}
.h15{height:88.812500pt;}
.hc{height:153.125000pt;}
.he{height:188.875000pt;}
.h2d{height:189.873333pt;}
.h29{height:222.986667pt;}
.hd{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.hb{height:888.000000pt;}
.ha{height:888.189333pt;}
.w8{width:10.760000pt;}
.w5{width:18.460000pt;}
.w6{width:18.461333pt;}
.w7{width:51.266667pt;}
.w4{width:411.968000pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x1c{left:-19.724400pt;}
.x35{left:-10.724533pt;}
.x0{left:0.000000pt;}
.x38{left:8.579333pt;}
.x63{left:13.976267pt;}
.x65{left:25.460133pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x14{left:41.574800pt;}
.x1a{left:53.574800pt;}
.x39{left:60.689200pt;}
.x66{left:65.224000pt;}
.x19{left:68.031467pt;}
.x8{left:71.294000pt;}
.x12{left:76.488800pt;}
.x3c{left:80.731467pt;}
.x3b{left:83.474133pt;}
.x1b{left:86.922133pt;}
.x2b{left:88.000788pt;}
.x2f{left:95.889688pt;}
.x13{left:101.480800pt;}
.x2c{left:103.004553pt;}
.x2{left:103.933719pt;}
.x67{left:104.949467pt;}
.x11{left:110.794133pt;}
.x30{left:113.379467pt;}
.x9{left:120.852667pt;}
.xe{left:124.331467pt;}
.x34{left:130.204267pt;}
.x2e{left:138.789980pt;}
.x16{left:143.622000pt;}
.x4b{left:144.987921pt;}
.x29{left:147.085444pt;}
.x28{left:151.370000pt;}
.x10{left:155.600800pt;}
.x64{left:157.598933pt;}
.x2d{left:158.813244pt;}
.x27{left:160.494229pt;}
.x4c{left:161.850533pt;}
.x4d{left:162.811714pt;}
.x2a{left:163.996932pt;}
.x7{left:169.238000pt;}
.x3d{left:170.731600pt;}
.x68{left:184.675333pt;}
.xb{left:185.892267pt;}
.x26{left:189.857067pt;}
.xc{left:191.794933pt;}
.x4e{left:198.037361pt;}
.x36{left:203.784000pt;}
.xf{left:205.570133pt;}
.x62{left:207.620667pt;}
.x3e{left:210.603947pt;}
.x31{left:215.388000pt;}
.x69{left:224.950800pt;}
.x37{left:227.096800pt;}
.x3a{left:228.890000pt;}
.x4f{left:233.564396pt;}
.x32{left:234.690667pt;}
.x50{left:245.065983pt;}
.xa{left:250.242000pt;}
.x33{left:253.996000pt;}
.x6a{left:263.318800pt;}
.xd{left:273.007467pt;}
.x51{left:274.768913pt;}
.x71{left:275.905467pt;}
.x77{left:280.573467pt;}
.x52{left:284.262610pt;}
.x70{left:286.093467pt;}
.x46{left:290.342513pt;}
.x3f{left:291.485137pt;}
.x76{left:297.985467pt;}
.x6c{left:303.858800pt;}
.x4{left:305.871665pt;}
.x73{left:309.229467pt;}
.x1d{left:311.703867pt;}
.x53{left:318.099433pt;}
.x54{left:320.498312pt;}
.x1e{left:323.674041pt;}
.x1f{left:325.667767pt;}
.x72{left:327.253467pt;}
.x20{left:329.655219pt;}
.x40{left:331.078720pt;}
.x6d{left:344.402267pt;}
.x74{left:348.409467pt;}
.x55{left:353.325080pt;}
.x75{left:355.333467pt;}
.x56{left:360.375097pt;}
.x15{left:361.852267pt;}
.x57{left:363.474497pt;}
.x41{left:370.859167pt;}
.x21{left:373.540647pt;}
.x78{left:377.533467pt;}
.x22{left:381.523369pt;}
.x6e{left:386.332800pt;}
.x59{left:398.227700pt;}
.x5{left:399.557467pt;}
.x58{left:401.901365pt;}
.x6b{left:408.716667pt;}
.x47{left:409.959553pt;}
.x42{left:411.102177pt;}
.x23{left:423.415071pt;}
.x6{left:427.691333pt;}
.x5a{left:433.363745pt;}
.x24{left:435.385245pt;}
.x5b{left:445.378505pt;}
.x43{left:449.838027pt;}
.x48{left:451.636203pt;}
.x25{left:464.266908pt;}
.x5d{left:476.307349pt;}
.x5c{left:477.704319pt;}
.x5e{left:485.939521pt;}
.x44{left:489.710373pt;}
.x5f{left:514.070350pt;}
.x61{left:520.081803pt;}
.x60{left:522.134494pt;}
.x6f{left:530.791333pt;}
.x4a{left:532.943197pt;}
.x45{left:534.514687pt;}
.x49{left:537.574957pt;}
.x17{left:564.428400pt;}
.x18{left:570.047200pt;}
}




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