
    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_1e74a99566907dcce69c1df2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_5a832e78b8f3e24522dcb80f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e4955391fe6357b02afe372f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a9ef915ad08f604270017ffa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0be8ee5c044ddf8e38540dc5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_68aee62e5e720475777fa74c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891602;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_c803058efffb4719db3d5913.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5fcc7b490564c552fb2a8a40.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_a180527edb7a1b30b36c71fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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_90462667f340a04cae2da281.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.128000;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_469976b66560373241a9dc81.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.330078;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_491c950482ee9333240dca46.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.332520;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_61e428bf1c8b23b349cc7a3b.woff2')format("woff");}.fff{font-family:fff;line-height:0.921387;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_96c0856f93285a44d942af40.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.313477;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_f54489b1ae8fb41783fe58c2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_86ca9c14f41ef570a8507162.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.740723;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_aa3838cb25a41ceb60e9e098.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_661be7dd79cb63234be70cc3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_306ce9d873996421feb1633e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.953125;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:ff16;src:url('chunks/assets/font_386dd50c5fb5b8973c54d585.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.738770;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:ff17;src:url('chunks/assets/font_7619540cf091c79433bf901e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.853027;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:ff18;src:url('chunks/assets/font_81b7e0008d44bdbbcc31c1e9.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.946777;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:ff19;src:url('chunks/assets/font_51cd5bf1246f2670a2430335.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.112305;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;}
.m7{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,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);}
.m8{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257467,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257468,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258624,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281791,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-36.615931px;}
.v9{vertical-align:-32.874676px;}
.va{vertical-align:-26.299741px;}
.vf{vertical-align:-19.276514px;}
.v2{vertical-align:-18.000000px;}
.vb{vertical-align:-13.149870px;}
.v7{vertical-align:-3.661593px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.209582px;}
.v3{vertical-align:4.629600px;}
.v8{vertical-align:7.449448px;}
.v6{vertical-align:10.100946px;}
.ve{vertical-align:16.287908px;}
.vd{vertical-align:19.874236px;}
.v1{vertical-align:20.880000px;}
.vc{vertical-align:26.299741px;}
.ls27{letter-spacing:-0.817183px;}
.ls13{letter-spacing:-0.774000px;}
.ls28{letter-spacing:-0.668062px;}
.ls4{letter-spacing:-0.666000px;}
.ls25{letter-spacing:-0.460200px;}
.ls1d{letter-spacing:-0.454268px;}
.ls19{letter-spacing:-0.425081px;}
.ls20{letter-spacing:-0.378955px;}
.ls18{letter-spacing:-0.371631px;}
.ls26{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.304838px;}
.ls1e{letter-spacing:-0.228927px;}
.ls8{letter-spacing:-0.116976px;}
.ls12{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.037220px;}
.ls2b{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.126000px;}
.ls32{letter-spacing:0.153600px;}
.ls23{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.298800px;}
.ls34{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.361561px;}
.lsa{letter-spacing:0.447957px;}
.lsc{letter-spacing:0.448995px;}
.ls29{letter-spacing:0.480000px;}
.ls2c{letter-spacing:0.540000px;}
.ls33{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.738000px;}
.ls2{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.978000px;}
.ls16{letter-spacing:1.199172px;}
.lsb{letter-spacing:1.202407px;}
.ls17{letter-spacing:1.237366px;}
.ls21{letter-spacing:3.060000px;}
.ls15{letter-spacing:4.500000px;}
.ls3{letter-spacing:15.037348px;}
.ls31{letter-spacing:16.506720px;}
.ls2a{letter-spacing:16.740000px;}
.ls2d{letter-spacing:17.460000px;}
.ls2e{letter-spacing:18.900000px;}
.ls2f{letter-spacing:46.026720px;}
.ls1c{letter-spacing:149.992053px;}
.ls1a{letter-spacing:150.021939px;}
.ls1b{letter-spacing:150.171370px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws35{word-spacing:-59.760000px;}
.ws6{word-spacing:-54.000000px;}
.ws31{word-spacing:-15.918000px;}
.ws3a{word-spacing:-15.606000px;}
.ws34{word-spacing:-15.300000px;}
.ws39{word-spacing:-15.246600px;}
.ws13{word-spacing:-15.199800px;}
.ws37{word-spacing:-15.093600px;}
.ws14{word-spacing:-15.046800px;}
.ws33{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws3c{word-spacing:-14.886720px;}
.ws38{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.274000px;}
.ws30{word-spacing:-14.238000px;}
.ws2f{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.654261px;}
.ws5{word-spacing:-13.626000px;}
.ws15{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.wsc{word-spacing:-11.815650px;}
.wsa{word-spacing:-11.788350px;}
.ws3{word-spacing:-9.000000px;}
.wsf{word-spacing:-1.446246px;}
.ws1e{word-spacing:-1.240522px;}
.ws3b{word-spacing:-0.419760px;}
.ws23{word-spacing:-0.067692px;}
.ws36{word-spacing:-0.059760px;}
.ws4{word-spacing:-0.054000px;}
.ws1b{word-spacing:-0.041351px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:0.116976px;}
.wsd{word-spacing:2.929711px;}
.ws11{word-spacing:2.942372px;}
.ws10{word-spacing:3.696827px;}
.ws12{word-spacing:8.270955px;}
.wsb{word-spacing:8.365457px;}
.ws26{word-spacing:44.786067px;}
.ws25{word-spacing:45.386777px;}
.ws27{word-spacing:45.536208px;}
.ws20{word-spacing:56.932662px;}
.ws21{word-spacing:56.962549px;}
.ws1f{word-spacing:57.530384px;}
.ws8{word-spacing:57.746726px;}
.ws2d{word-spacing:109.035587px;}
.ws2c{word-spacing:111.350412px;}
.ws29{word-spacing:111.800496px;}
.ws2b{word-spacing:124.950367px;}
.ws28{word-spacing:125.024634px;}
.ws2a{word-spacing:128.803876px;}
.ws22{word-spacing:150.128932px;}
.ws2e{word-spacing:163.251157px;}
.ws1d{word-spacing:177.402290px;}
.ws1c{word-spacing:177.465420px;}
.ws19{word-spacing:177.486464px;}
.ws24{word-spacing:185.635823px;}
.ws1a{word-spacing:186.914014px;}
.ws16{word-spacing:192.939860px;}
.ws18{word-spacing:193.139985px;}
.ws17{word-spacing:193.332324px;}
.ws32{word-spacing:303.740909px;}
._14{margin-left:-19.843407px;}
._10{margin-left:-11.772000px;}
._13{margin-left:-9.328812px;}
._11{margin-left:-3.305367px;}
._2{margin-left:-1.436400px;}
._1{width:1.436400px;}
._6{width:3.114000px;}
._7{width:4.338000px;}
._8{width:5.354400px;}
._d{width:6.573600px;}
._e{width:7.609200px;}
._15{width:8.844480px;}
._19{width:9.905760px;}
._c{width:11.082240px;}
._4{width:12.463200px;}
._f{width:13.855680px;}
._b{width:15.120000px;}
._17{width:16.546320px;}
._9{width:17.712000px;}
._a{width:19.062000px;}
._3{width:20.971440px;}
._1b{width:21.988080px;}
._5{width:23.328000px;}
._16{width:24.836400px;}
._21{width:25.959600px;}
._18{width:27.011520px;}
._1f{width:28.149120px;}
._1e{width:29.581200px;}
._1d{width:30.955680px;}
._1c{width:32.330160px;}
._0{width:38.495520px;}
._20{width:42.608880px;}
._2e{width:44.102880px;}
._2d{width:61.373520px;}
._2c{width:62.882400px;}
._1a{width:77.568706px;}
._25{width:87.008400px;}
._29{width:97.408800px;}
._2a{width:129.557520px;}
._2b{width:130.919280px;}
._26{width:139.721040px;}
._27{width:140.870400px;}
._2f{width:165.057120px;}
._22{width:457.689360px;}
._23{width:463.919520px;}
._24{width:465.532560px;}
._28{width:788.712480px;}
._12{width:1047.939103px;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs10{font-size:38.088985px;}
.fsf{font-size:38.194203px;}
.fs8{font-size:38.880000px;}
.fs11{font-size:41.350749px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.900000px;}
.fsd{font-size:47.153400px;}
.fse{font-size:47.262600px;}
.fs5{font-size:48.240000px;}
.fsb{font-size:53.170800px;}
.fsa{font-size:54.000000px;}
.fs13{font-size:54.093785px;}
.fs12{font-size:54.243215px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs15{font-size:63.376440px;}
.fs14{font-size:67.691946px;}
.fs16{font-size:67.850071px;}
.fs17{font-size:67.999192px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y164{bottom:3.600000px;}
.y162{bottom:3.780000px;}
.y11f{bottom:4.320000px;}
.y125{bottom:4.500000px;}
.y130{bottom:5.220000px;}
.y136{bottom:5.760000px;}
.y132{bottom:5.940000px;}
.y134{bottom:6.120000px;}
.y11c{bottom:6.300000px;}
.y10a{bottom:6.480000px;}
.y12e{bottom:6.660000px;}
.yeb{bottom:7.807763px;}
.yd4{bottom:9.264709px;}
.y52{bottom:11.528550px;}
.y120{bottom:12.060000px;}
.y122{bottom:12.090000px;}
.ybb{bottom:12.126502px;}
.y126{bottom:12.240000px;}
.y108{bottom:13.860000px;}
.y10f{bottom:14.220000px;}
.y10d{bottom:14.400000px;}
.y75{bottom:18.000000px;}
.y97{bottom:18.165000px;}
.y16b{bottom:18.210000px;}
.y11e{bottom:19.800000px;}
.y124{bottom:19.980000px;}
.y109{bottom:21.960000px;}
.y10c{bottom:22.140000px;}
.y50{bottom:24.887550px;}
.y51{bottom:25.006605px;}
.y153{bottom:28.928769px;}
.y4f{bottom:29.506050px;}
.yde{bottom:32.874857px;}
.yb7{bottom:35.064067px;}
.yc4{bottom:36.386471px;}
.y20{bottom:45.216000px;}
.yb1{bottom:46.980028px;}
.y151{bottom:48.724591px;}
.yd5{bottom:49.760490px;}
.ybd{bottom:53.346819px;}
.y155{bottom:64.867653px;}
.y159{bottom:65.315016px;}
.y5{bottom:66.525004px;}
.ydf{bottom:68.924930px;}
.yea{bottom:69.858845px;}
.yd2{bottom:71.129003px;}
.yc8{bottom:71.614667px;}
.yb2{bottom:72.784789px;}
.y1b5{bottom:72.936000px;}
.ye5{bottom:74.902127px;}
.yd6{bottom:75.201009px;}
.ye8{bottom:76.433799px;}
.ye1{bottom:76.695306px;}
.y47{bottom:77.796000px;}
.yaf{bottom:79.236000px;}
.yb8{bottom:79.939626px;}
.ycc{bottom:81.477062px;}
.y46{bottom:83.016000px;}
.yc7{bottom:84.764544px;}
.y1e2{bottom:85.896000px;}
.ybe{bottom:86.221496px;}
.yc5{bottom:86.408280px;}
.ye2{bottom:87.304847px;}
.yc9{bottom:94.626928px;}
.y19c{bottom:94.716000px;}
.y45{bottom:95.796000px;}
.yae{bottom:96.516000px;}
.y4{bottom:97.125005px;}
.y13c{bottom:97.776000px;}
.yb3{bottom:98.563246px;}
.y152{bottom:99.090221px;}
.y16a{bottom:100.296000px;}
.yd7{bottom:100.604167px;}
.y18d{bottom:101.916000px;}
.y1e1{bottom:103.176000px;}
.ycf{bottom:106.133081px;}
.y20d{bottom:108.036000px;}
.y74{bottom:110.376000px;}
.y19b{bottom:111.996000px;}
.yba{bottom:112.369977px;}
.yad{bottom:113.796000px;}
.y13b{bottom:115.056000px;}
.y1b4{bottom:116.496000px;}
.y169{bottom:117.576000px;}
.ybf{bottom:119.096172px;}
.y18c{bottom:119.196000px;}
.y44{bottom:120.456000px;}
.yd0{bottom:120.964036px;}
.yb4{bottom:124.364851px;}
.y1e0{bottom:124.956000px;}
.y20c{bottom:125.316000px;}
.yd8{bottom:126.044683px;}
.y19a{bottom:129.276000px;}
.yac{bottom:130.896000px;}
.y13a{bottom:132.336000px;}
.y1b3{bottom:133.776000px;}
.y168{bottom:134.676000px;}
.yb9{bottom:134.886670px;}
.y73{bottom:135.036000px;}
.y18b{bottom:136.476000px;}
.ye0{bottom:136.691565px;}
.y43{bottom:137.556000px;}
.y1f{bottom:139.264499px;}
.y1df{bottom:142.236000px;}
.y20b{bottom:142.416000px;}
.y199{bottom:146.556000px;}
.yab{bottom:148.176000px;}
.yb5{bottom:150.174873px;}
.yd9{bottom:151.443359px;}
.yc0{bottom:152.011194px;}
.y18a{bottom:153.750000px;}
.y42{bottom:154.830000px;}
.y1b2{bottom:155.550000px;}
.y72{bottom:156.270000px;}
.y139{bottom:158.070000px;}
.y1de{bottom:159.330000px;}
.y167{bottom:160.590000px;}
.y198{bottom:163.830000px;}
.y20a{bottom:164.190000px;}
.yaa{bottom:165.450000px;}
.yc6{bottom:168.627818px;}
.y189{bottom:171.030000px;}
.y41{bottom:172.110000px;}
.y1b1{bottom:172.650000px;}
.y138{bottom:173.550000px;}
.yb6{bottom:175.974373px;}
.y166{bottom:176.070000px;}
.y1dd{bottom:176.610000px;}
.yda{bottom:176.891347px;}
.y197{bottom:181.110000px;}
.y209{bottom:181.470000px;}
.yce{bottom:181.777686px;}
.ye7{bottom:182.450123px;}
.yc1{bottom:184.885869px;}
.y188{bottom:188.310000px;}
.y40{bottom:189.390000px;}
.y96{bottom:190.650000px;}
.ya9{bottom:191.190000px;}
.y105{bottom:193.170000px;}
.y1dc{bottom:193.890000px;}
.y1b0{bottom:194.790000px;}
.y137{bottom:195.510000px;}
.y16{bottom:196.933500px;}
.y165{bottom:198.030000px;}
.y196{bottom:198.210000px;}
.y208{bottom:198.750000px;}
.ydb{bottom:202.294505px;}
.y187{bottom:205.410000px;}
.yca{bottom:206.433718px;}
.y3f{bottom:206.670000px;}
.ya8{bottom:206.850000px;}
.y95{bottom:207.930000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y104{bottom:210.450000px;}
.y1af{bottom:212.070000px;}
.y163{bottom:215.130000px;}
.y195{bottom:215.490000px;}
.y1db{bottom:215.670000px;}
.y135{bottom:216.930000px;}
.yc2{bottom:217.760546px;}
.y207{bottom:220.530000px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.y186{bottom:222.690000px;}
.ye3{bottom:223.095202px;}
.y3e{bottom:223.950000px;}
.y94{bottom:225.210000px;}
.ydc{bottom:227.697664px;}
.y103{bottom:227.730000px;}
.ycb{bottom:227.802251px;}
.ya7{bottom:231.330000px;}
.y161{bottom:232.050000px;}
.y194{bottom:232.770000px;}
.y1da{bottom:232.950000px;}
.y1ae{bottom:233.850000px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y206{bottom:237.810000px;}
.ye4{bottom:238.112945px;}
.y133{bottom:238.170000px;}
.y185{bottom:239.970000px;}
.y3d{bottom:241.050000px;}
.ye6{bottom:241.669375px;}
.y93{bottom:242.490000px;}
.y102{bottom:245.010000px;}
.ye9{bottom:245.479854px;}
.y193{bottom:250.050000px;}
.y1d9{bottom:250.230000px;}
.yc3{bottom:250.635222px;}
.y1ad{bottom:251.130000px;}
.ydd{bottom:253.130709px;}
.ycd{bottom:254.101980px;}
.y205{bottom:254.910000px;}
.yb0{bottom:256.523212px;}
.y184{bottom:257.250000px;}
.yd1{bottom:257.389452px;}
.y3c{bottom:258.330000px;}
.y92{bottom:259.590000px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y131{bottom:260.130000px;}
.y160{bottom:261.390000px;}
.y101{bottom:262.290000px;}
.y192{bottom:267.330000px;}
.y1ac{bottom:268.410000px;}
.y1d8{bottom:271.875000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y183{bottom:274.575000px;}
.y3b{bottom:275.655000px;}
.y204{bottom:276.735000px;}
.y91{bottom:276.915000px;}
.y100{bottom:279.435000px;}
.y12f{bottom:281.775000px;}
.yd3{bottom:282.239726px;}
.y191{bottom:284.655000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y1d7{bottom:289.155000px;}
.y1ab{bottom:290.055000px;}
.y182{bottom:291.855000px;}
.y3a{bottom:292.935000px;}
.y203{bottom:294.015000px;}
.y90{bottom:294.195000px;}
.yff{bottom:296.715000px;}
.y190{bottom:301.755000px;}
.y12d{bottom:301.935000px;}
.y1d6{bottom:306.435000px;}
.y1aa{bottom:307.335000px;}
.y181{bottom:308.955000px;}
.y39{bottom:310.215000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y202{bottom:311.295000px;}
.y8f{bottom:311.475000px;}
.yfe{bottom:313.995000px;}
.y18f{bottom:319.035000px;}
.y15f{bottom:319.215000px;}
.y71{bottom:320.835000px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y180{bottom:326.235000px;}
.y38{bottom:327.495000px;}
.y1d5{bottom:328.215000px;}
.y8e{bottom:328.755000px;}
.y1a9{bottom:329.115000px;}
.yfd{bottom:331.275000px;}
.y201{bottom:333.075000px;}
.y15e{bottom:336.495000px;}
.y12c{bottom:337.395000px;}
.y70{bottom:338.115000px;}
.y17f{bottom:343.515000px;}
.y37{bottom:344.595000px;}
.y1d4{bottom:345.495000px;}
.y8d{bottom:346.035000px;}
.y1a8{bottom:346.395000px;}
.yd{bottom:348.133500px;}
.yfc{bottom:348.555000px;}
.y18e{bottom:349.455000px;}
.y200{bottom:350.355000px;}
.y15d{bottom:353.775000px;}
.y6f{bottom:355.395000px;}
.y17e{bottom:360.795000px;}
.y36{bottom:361.875000px;}
.y12b{bottom:362.235000px;}
.y1d3{bottom:362.595000px;}
.y8c{bottom:363.135000px;}
.y1a7{bottom:363.675000px;}
.yfb{bottom:365.835000px;}
.y1ff{bottom:367.455000px;}
.y15c{bottom:370.875000px;}
.y6e{bottom:372.675000px;}
.y17d{bottom:378.075000px;}
.y35{bottom:379.155000px;}
.y12a{bottom:379.515000px;}
.y8b{bottom:380.415000px;}
.yfa{bottom:382.935000px;}
.y1d2{bottom:384.375000px;}
.yc{bottom:386.785499px;}
.y1fe{bottom:389.235000px;}
.y6d{bottom:389.775000px;}
.y1a6{bottom:393.915000px;}
.y17c{bottom:395.355000px;}
.y34{bottom:396.435000px;}
.y129{bottom:396.795000px;}
.y8a{bottom:397.695000px;}
.yf9{bottom:400.215000px;}
.y1d1{bottom:401.655000px;}
.y1fd{bottom:406.515000px;}
.y6c{bottom:407.055000px;}
.yb{bottom:408.044999px;}
.y17b{bottom:412.455000px;}
.y128{bottom:414.075000px;}
.y89{bottom:414.975000px;}
.yf8{bottom:417.495000px;}
.y1d0{bottom:418.935000px;}
.y15b{bottom:421.275000px;}
.y1fc{bottom:423.795000px;}
.y6b{bottom:424.335000px;}
.y33{bottom:426.855000px;}
.y17a{bottom:429.735000px;}
.y88{bottom:432.255000px;}
.yf7{bottom:434.775000px;}
.y127{bottom:439.815000px;}
.y1cf{bottom:440.715000px;}
.y6a{bottom:441.615000px;}
.y15a{bottom:442.515000px;}
.y1fb{bottom:445.575000px;}
.y179{bottom:447.015000px;}
.y150{bottom:448.148271px;}
.yf6{bottom:452.055000px;}
.y1a5{bottom:457.095000px;}
.y87{bottom:457.995000px;}
.y69{bottom:458.895000px;}
.y123{bottom:461.775000px;}
.y1fa{bottom:462.675000px;}
.y178{bottom:464.295000px;}
.yf5{bottom:469.335000px;}
.y1a4{bottom:474.375000px;}
.y1ce{bottom:475.095000px;}
.y68{bottom:476.175000px;}
.y1f9{bottom:479.955000px;}
.y177{bottom:481.575000px;}
.y86{bottom:482.475000px;}
.ya6{bottom:484.275000px;}
.yf4{bottom:486.435000px;}
.y32{bottom:489.135000px;}
.y1a3{bottom:491.475000px;}
.y157{bottom:492.883848px;}
.y156{bottom:492.883856px;}
.y154{bottom:492.883865px;}
.y121{bottom:495.975000px;}
.y1cd{bottom:496.875000px;}
.y176{bottom:498.675000px;}
.ya5{bottom:501.585000px;}
.y1f8{bottom:501.765000px;}
.y158{bottom:501.831102px;}
.ya{bottom:502.864502px;}
.y85{bottom:503.745000px;}
.y31{bottom:504.645000px;}
.y67{bottom:505.905000px;}
.y1a2{bottom:508.785000px;}
.y1cc{bottom:514.185000px;}
.y175{bottom:515.985000px;}
.ya4{bottom:518.865000px;}
.y1f7{bottom:519.045000px;}
.y30{bottom:520.305000px;}
.y9{bottom:520.864502px;}
.yf3{bottom:521.025000px;}
.y1a1{bottom:526.065000px;}
.y11d{bottom:530.025000px;}
.y1cb{bottom:531.465000px;}
.y174{bottom:533.265000px;}
.y2f{bottom:535.785000px;}
.ya3{bottom:536.145000px;}
.y1f6{bottom:536.325000px;}
.yf2{bottom:538.305000px;}
.y8{bottom:538.864499px;}
.y1a0{bottom:543.345000px;}
.y66{bottom:549.285000px;}
.y173{bottom:550.545000px;}
.y2e{bottom:551.265000px;}
.y1ca{bottom:553.245000px;}
.ya2{bottom:553.425000px;}
.yf1{bottom:555.585000px;}
.y7{bottom:556.864499px;}
.y1f5{bottom:558.105000px;}
.y19f{bottom:560.625000px;}
.y11b{bottom:564.045000px;}
.y2d{bottom:566.745000px;}
.y172{bottom:567.825000px;}
.ya1{bottom:570.525000px;}
.y1f4{bottom:575.205000px;}
.y19e{bottom:577.905000px;}
.yf0{bottom:581.325000px;}
.y2c{bottom:582.405000px;}
.y171{bottom:585.105000px;}
.y1c9{bottom:587.625000px;}
.ya0{bottom:587.805000px;}
.y1f3{bottom:592.485000px;}
.y65{bottom:595.005000px;}
.yef{bottom:596.805000px;}
.y2b{bottom:597.885000px;}
.y11a{bottom:598.605000px;}
.y170{bottom:602.205000px;}
.y1c8{bottom:609.405000px;}
.y64{bottom:612.285000px;}
.y2a{bottom:613.365000px;}
.y1f2{bottom:614.265000px;}
.y9f{bottom:617.685000px;}
.y16f{bottom:619.485000px;}
.yee{bottom:621.285000px;}
.y119{bottom:623.625000px;}
.y14f{bottom:623.985000px;}
.y1c7{bottom:626.685000px;}
.y29{bottom:628.845000px;}
.y63{bottom:629.565000px;}
.y1f1{bottom:631.545000px;}
.y16e{bottom:636.765000px;}
.yed{bottom:636.945000px;}
.y118{bottom:640.905000px;}
.y14e{bottom:641.265000px;}
.y1c6{bottom:643.965000px;}
.y28{bottom:644.505000px;}
.y62{bottom:646.845000px;}
.yec{bottom:649.185000px;}
.y1f0{bottom:653.325000px;}
.y16d{bottom:654.045000px;}
.ybc{bottom:654.777988px;}
.y117{bottom:658.185000px;}
.y14d{bottom:658.545000px;}
.y27{bottom:659.985000px;}
.y9e{bottom:660.525000px;}
.y61{bottom:664.125000px;}
.y1c5{bottom:665.745000px;}
.y1ef{bottom:670.605000px;}
.y16c{bottom:671.325000px;}
.y116{bottom:675.465000px;}
.y14c{bottom:675.825000px;}
.y9d{bottom:677.805000px;}
.y60{bottom:681.405000px;}
.y1c4{bottom:682.845000px;}
.y1ee{bottom:687.705000px;}
.y84{bottom:688.605000px;}
.y115{bottom:692.565000px;}
.y14b{bottom:693.105000px;}
.y9c{bottom:695.085000px;}
.y5f{bottom:698.505000px;}
.y1c3{bottom:700.125000px;}
.y83{bottom:705.705000px;}
.y1ed{bottom:709.485000px;}
.y114{bottom:709.845000px;}
.y14a{bottom:710.205000px;}
.y9b{bottom:712.365000px;}
.y5e{bottom:715.785000px;}
.y26{bottom:716.325000px;}
.y1c2{bottom:721.905000px;}
.y82{bottom:722.985000px;}
.y6{bottom:726.298500px;}
.y1ec{bottom:726.765000px;}
.y113{bottom:727.125000px;}
.y149{bottom:727.530000px;}
.y5d{bottom:733.110000px;}
.y9a{bottom:738.150000px;}
.y1c1{bottom:739.230000px;}
.y81{bottom:740.310000px;}
.y1eb{bottom:744.090000px;}
.y112{bottom:744.450000px;}
.y148{bottom:744.810000px;}
.y24{bottom:745.350000px;}
.y5c{bottom:750.390000px;}
.y25{bottom:750.570000px;}
.y3{bottom:752.599495px;}
.y1c0{bottom:756.510000px;}
.y80{bottom:757.590000px;}
.y147{bottom:762.090000px;}
.y99{bottom:762.630000px;}
.y1ea{bottom:765.870000px;}
.y5b{bottom:767.670000px;}
.y111{bottom:770.190000px;}
.y7f{bottom:774.870000px;}
.y1bf{bottom:778.290000px;}
.y146{bottom:779.370000px;}
.y19d{bottom:780.630000px;}
.y1e9{bottom:782.970000px;}
.y5a{bottom:784.770000px;}
.y98{bottom:787.830000px;}
.y23{bottom:790.170000px;}
.y7e{bottom:791.970000px;}
.y110{bottom:792.150000px;}
.y1be{bottom:795.390000px;}
.y145{bottom:796.470000px;}
.y1e8{bottom:800.250000px;}
.y59{bottom:802.050000px;}
.y7d{bottom:809.250000px;}
.y1bd{bottom:812.670000px;}
.y144{bottom:813.750000px;}
.y22{bottom:817.530000px;}
.y58{bottom:819.330000px;}
.y7c{bottom:826.530000px;}
.y10e{bottom:830.490000px;}
.y143{bottom:831.030000px;}
.y1bc{bottom:834.450000px;}
.y1e7{bottom:834.810000px;}
.y57{bottom:836.610000px;}
.y7b{bottom:843.810000px;}
.y21{bottom:845.250000px;}
.y142{bottom:848.310000px;}
.y1bb{bottom:851.730000px;}
.y1e6{bottom:852.090000px;}
.y56{bottom:853.890000px;}
.y7a{bottom:861.090000px;}
.y141{bottom:865.590000px;}
.y10b{bottom:868.650000px;}
.y55{bottom:871.170000px;}
.y1ba{bottom:873.510000px;}
.y1e5{bottom:873.870000px;}
.y79{bottom:878.370000px;}
.y2{bottom:879.369000px;}
.y140{bottom:882.870000px;}
.y1b9{bottom:890.790000px;}
.y1e4{bottom:890.970000px;}
.y78{bottom:895.470000px;}
.y13f{bottom:899.970000px;}
.y54{bottom:901.410000px;}
.y107{bottom:906.990000px;}
.y1e3{bottom:908.250000px;}
.y1b8{bottom:912.390000px;}
.y77{bottom:912.750000px;}
.y1b7{bottom:929.670000px;}
.y13e{bottom:929.850000px;}
.y76{bottom:930.030000px;}
.y1b6{bottom:946.950000px;}
.y13d{bottom:947.130000px;}
.y53{bottom:947.310000px;}
.y106{bottom:948.570000px;}
.y1{bottom:966.726000px;}
.y4c{bottom:1016.490510px;}
.y4d{bottom:1035.525300px;}
.y49{bottom:1035.544800px;}
.y4e{bottom:1035.560380px;}
.y4b{bottom:1035.560385px;}
.y4a{bottom:1035.674835px;}
.y48{bottom:1036.949400px;}
.h45{height:16.200000px;}
.h44{height:16.380000px;}
.h39{height:19.440000px;}
.h3c{height:20.520000px;}
.h3d{height:20.700000px;}
.h3a{height:20.736000px;}
.h3b{height:21.060000px;}
.h35{height:21.600000px;}
.h38{height:22.320000px;}
.hf{height:25.013672px;}
.he{height:27.014766px;}
.h1a{height:31.900500px;}
.h29{height:32.042792px;}
.h7{height:32.130000px;}
.h1b{height:32.771613px;}
.h1c{height:32.818773px;}
.h1d{height:32.942007px;}
.h36{height:33.300000px;}
.h37{height:33.336000px;}
.hb{height:33.518320px;}
.h34{height:37.440000px;}
.h10{height:37.520508px;}
.h33{height:37.620000px;}
.h23{height:37.705078px;}
.h26{height:37.884406px;}
.h27{height:37.935011px;}
.h25{height:37.989059px;}
.h1f{height:38.100586px;}
.h21{height:39.234375px;}
.h14{height:41.522695px;}
.h15{height:41.533200px;}
.h12{height:41.726953px;}
.h2f{height:41.917401px;}
.h2d{height:42.033195px;}
.h22{height:42.164648px;}
.h1e{height:43.506914px;}
.h47{height:43.681992px;}
.h6{height:45.900000px;}
.h28{height:45.931594px;}
.h17{height:46.683962px;}
.h16{height:46.747071px;}
.hd{height:47.894766px;}
.h3{height:48.195000px;}
.h40{height:49.110552px;}
.h13{height:50.027344px;}
.h46{height:50.364141px;}
.h11{height:52.417969px;}
.h30{height:52.454648px;}
.h42{height:52.577179px;}
.h43{height:52.692733px;}
.h48{height:53.573906px;}
.h2c{height:53.803242px;}
.h2b{height:53.951870px;}
.h2{height:55.080000px;}
.h18{height:55.265625px;}
.h19{height:55.397461px;}
.h20{height:60.410156px;}
.h3f{height:63.036039px;}
.h32{height:67.436353px;}
.h2e{height:68.332935px;}
.hc{height:69.715898px;}
.h5{height:78.030000px;}
.h31{height:78.079544px;}
.h41{height:83.880587px;}
.h4{height:119.055004px;}
.h3e{height:166.642797px;}
.h24{height:211.488564px;}
.h2a{height:300.355032px;}
.h9{height:1062.750000px;}
.ha{height:1062.899908px;}
.h8{height:1062.900000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wc{width:52.200000px;}
.w14{width:52.380000px;}
.wb{width:52.416000px;}
.wf{width:53.640000px;}
.we{width:56.340000px;}
.w18{width:58.384353px;}
.w19{width:59.507129px;}
.w11{width:84.276000px;}
.w1b{width:94.860000px;}
.wd{width:94.896000px;}
.w13{width:95.076000px;}
.w1c{width:105.516000px;}
.w12{width:137.340000px;}
.w10{width:182.190000px;}
.w15{width:188.535000px;}
.w16{width:190.830000px;}
.wa{width:227.730000px;}
.w1a{width:235.335000px;}
.w9{width:255.354167px;}
.w8{width:272.289706px;}
.w7{width:505.228450px;}
.w17{width:531.073055px;}
.w2{width:637.794021px;}
.w6{width:722.879978px;}
.w5{width:722.879989px;}
.w3{width:722.880000px;}
.w4{width:723.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:1.620000px;}
.x27{left:5.117105px;}
.x43{left:6.660000px;}
.x5b{left:7.734000px;}
.x53{left:9.000000px;}
.x56{left:10.845000px;}
.x26{left:12.027066px;}
.x4c{left:13.680000px;}
.x4e{left:17.100000px;}
.x25{left:18.899673px;}
.x4d{left:20.160000px;}
.x49{left:21.240000px;}
.x47{left:22.680000px;}
.x5f{left:25.112757px;}
.x4b{left:26.640000px;}
.x20{left:27.989186px;}
.x12{left:30.403725px;}
.x1f{left:33.415056px;}
.x35{left:34.420547px;}
.x4a{left:37.080000px;}
.x1e{left:38.840926px;}
.x29{left:40.339218px;}
.x34{left:45.284299px;}
.x28{left:46.875666px;}
.x18{left:52.601625px;}
.x19{left:54.294765px;}
.xf{left:59.413665px;}
.x17{left:61.650315px;}
.x67{left:63.405000px;}
.x3a{left:67.609122px;}
.x30{left:71.228599px;}
.x4f{left:72.720000px;}
.x16{left:75.384915px;}
.x3e{left:77.576895px;}
.x11{left:79.617825px;}
.x5d{left:81.064428px;}
.x21{left:82.425775px;}
.x5{left:84.995989px;}
.x22{left:87.258650px;}
.xc{left:89.855989px;}
.x40{left:90.936000px;}
.x37{left:95.085828px;}
.x3d{left:96.952452px;}
.x2b{left:99.466050px;}
.x1{left:102.045000px;}
.x2d{left:104.134938px;}
.x2{left:106.297500px;}
.x51{left:110.916000px;}
.x9{left:111.995989px;}
.x31{left:116.311406px;}
.x68{left:123.335989px;}
.x36{left:132.306311px;}
.x57{left:135.720000px;}
.xa{left:138.995989px;}
.x5c{left:140.265000px;}
.x65{left:142.776000px;}
.x3b{left:143.954045px;}
.x2e{left:151.944380px;}
.x32{left:153.214315px;}
.x8{left:157.349989px;}
.x5e{left:172.641529px;}
.x13{left:176.333265px;}
.x38{left:177.822072px;}
.x15{left:183.083520px;}
.x2c{left:184.843251px;}
.x24{left:186.732915px;}
.xe{left:190.198245px;}
.x3c{left:195.069678px;}
.x59{left:198.030000px;}
.x4{left:203.484001px;}
.x3f{left:204.689989px;}
.x6{left:206.129978px;}
.x50{left:207.749989px;}
.x7{left:210.989989px;}
.x10{left:217.690290px;}
.x39{left:219.186460px;}
.x2a{left:221.193364px;}
.x14{left:224.590290px;}
.x2f{left:237.329050px;}
.x64{left:260.534989px;}
.x58{left:262.874989px;}
.x60{left:282.673579px;}
.x52{left:293.835000px;}
.xb{left:301.034989px;}
.x42{left:319.395000px;}
.x69{left:353.340000px;}
.x1b{left:357.847500px;}
.x44{left:372.705000px;}
.x33{left:374.164872px;}
.x54{left:379.005000px;}
.x5a{left:387.285000px;}
.x61{left:391.582852px;}
.x23{left:402.083568px;}
.x45{left:425.805000px;}
.x3{left:454.959000px;}
.x66{left:474.585000px;}
.x62{left:501.614902px;}
.x55{left:517.065000px;}
.x46{left:521.430000px;}
.x48{left:578.490000px;}
.x63{left:627.449989px;}
.x1a{left:635.369989px;}
.x1c{left:636.449989px;}
.x1d{left:637.709989px;}
.xd{left:668.753550px;}
@media print{
.v5{vertical-align:-32.547494pt;}
.v9{vertical-align:-29.221934pt;}
.va{vertical-align:-23.377547pt;}
.vf{vertical-align:-17.134680pt;}
.v2{vertical-align:-16.000000pt;}
.vb{vertical-align:-11.688774pt;}
.v7{vertical-align:-3.254749pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.964073pt;}
.v3{vertical-align:4.115200pt;}
.v8{vertical-align:6.621731pt;}
.v6{vertical-align:8.978619pt;}
.ve{vertical-align:14.478140pt;}
.vd{vertical-align:17.665987pt;}
.v1{vertical-align:18.560000pt;}
.vc{vertical-align:23.377547pt;}
.ls27{letter-spacing:-0.726385pt;}
.ls13{letter-spacing:-0.688000pt;}
.ls28{letter-spacing:-0.593833pt;}
.ls4{letter-spacing:-0.592000pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls1d{letter-spacing:-0.403794pt;}
.ls19{letter-spacing:-0.377850pt;}
.ls20{letter-spacing:-0.336849pt;}
.ls18{letter-spacing:-0.330338pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.270967pt;}
.ls1e{letter-spacing:-0.203491pt;}
.ls8{letter-spacing:-0.103978pt;}
.ls12{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.033084pt;}
.ls2b{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.112000pt;}
.ls32{letter-spacing:0.136533pt;}
.ls23{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.265600pt;}
.ls34{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.321388pt;}
.lsa{letter-spacing:0.398184pt;}
.lsc{letter-spacing:0.399106pt;}
.ls29{letter-spacing:0.426667pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls33{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.656000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.869333pt;}
.ls16{letter-spacing:1.065930pt;}
.lsb{letter-spacing:1.068806pt;}
.ls17{letter-spacing:1.099881pt;}
.ls21{letter-spacing:2.720000pt;}
.ls15{letter-spacing:4.000000pt;}
.ls3{letter-spacing:13.366531pt;}
.ls31{letter-spacing:14.672640pt;}
.ls2a{letter-spacing:14.880000pt;}
.ls2d{letter-spacing:15.520000pt;}
.ls2e{letter-spacing:16.800000pt;}
.ls2f{letter-spacing:40.912640pt;}
.ls1c{letter-spacing:133.326270pt;}
.ls1a{letter-spacing:133.352835pt;}
.ls1b{letter-spacing:133.485662pt;}
.ws35{word-spacing:-53.120000pt;}
.ws6{word-spacing:-48.000000pt;}
.ws31{word-spacing:-14.149333pt;}
.ws3a{word-spacing:-13.872000pt;}
.ws34{word-spacing:-13.600000pt;}
.ws39{word-spacing:-13.552533pt;}
.ws13{word-spacing:-13.510933pt;}
.ws37{word-spacing:-13.416533pt;}
.ws14{word-spacing:-13.374933pt;}
.ws33{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3c{word-spacing:-13.232640pt;}
.ws38{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.688000pt;}
.ws30{word-spacing:-12.656000pt;}
.ws2f{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.137121pt;}
.ws5{word-spacing:-12.112000pt;}
.ws15{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.wsc{word-spacing:-10.502800pt;}
.wsa{word-spacing:-10.478533pt;}
.ws3{word-spacing:-8.000000pt;}
.wsf{word-spacing:-1.285552pt;}
.ws1e{word-spacing:-1.102687pt;}
.ws3b{word-spacing:-0.373120pt;}
.ws23{word-spacing:-0.060171pt;}
.ws36{word-spacing:-0.053120pt;}
.ws4{word-spacing:-0.048000pt;}
.ws1b{word-spacing:-0.036756pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:0.103978pt;}
.wsd{word-spacing:2.604188pt;}
.ws11{word-spacing:2.615442pt;}
.ws10{word-spacing:3.286068pt;}
.ws12{word-spacing:7.351960pt;}
.wsb{word-spacing:7.435962pt;}
.ws26{word-spacing:39.809838pt;}
.ws25{word-spacing:40.343802pt;}
.ws27{word-spacing:40.476629pt;}
.ws20{word-spacing:50.606811pt;}
.ws21{word-spacing:50.633376pt;}
.ws1f{word-spacing:51.138119pt;}
.ws8{word-spacing:51.330423pt;}
.ws2d{word-spacing:96.920522pt;}
.ws2c{word-spacing:98.978144pt;}
.ws29{word-spacing:99.378219pt;}
.ws2b{word-spacing:111.066993pt;}
.ws28{word-spacing:111.133008pt;}
.ws2a{word-spacing:114.492335pt;}
.ws22{word-spacing:133.447939pt;}
.ws2e{word-spacing:145.112140pt;}
.ws1d{word-spacing:157.690924pt;}
.ws1c{word-spacing:157.747040pt;}
.ws19{word-spacing:157.765746pt;}
.ws24{word-spacing:165.009620pt;}
.ws1a{word-spacing:166.145790pt;}
.ws16{word-spacing:171.502098pt;}
.ws18{word-spacing:171.679987pt;}
.ws17{word-spacing:171.850954pt;}
.ws32{word-spacing:269.991919pt;}
._14{margin-left:-17.638584pt;}
._10{margin-left:-10.464000pt;}
._13{margin-left:-8.292277pt;}
._11{margin-left:-2.938104pt;}
._2{margin-left:-1.276800pt;}
._1{width:1.276800pt;}
._6{width:2.768000pt;}
._7{width:3.856000pt;}
._8{width:4.759467pt;}
._d{width:5.843200pt;}
._e{width:6.763733pt;}
._15{width:7.861760pt;}
._19{width:8.805120pt;}
._c{width:9.850880pt;}
._4{width:11.078400pt;}
._f{width:12.316160pt;}
._b{width:13.440000pt;}
._17{width:14.707840pt;}
._9{width:15.744000pt;}
._a{width:16.944000pt;}
._3{width:18.641280pt;}
._1b{width:19.544960pt;}
._5{width:20.736000pt;}
._16{width:22.076800pt;}
._21{width:23.075200pt;}
._18{width:24.010240pt;}
._1f{width:25.021440pt;}
._1e{width:26.294400pt;}
._1d{width:27.516160pt;}
._1c{width:28.737920pt;}
._0{width:34.218240pt;}
._20{width:37.874560pt;}
._2e{width:39.202560pt;}
._2d{width:54.554240pt;}
._2c{width:55.895467pt;}
._1a{width:68.949961pt;}
._25{width:77.340800pt;}
._29{width:86.585600pt;}
._2a{width:115.162240pt;}
._2b{width:116.372693pt;}
._26{width:124.196480pt;}
._27{width:125.218133pt;}
._2f{width:146.717440pt;}
._22{width:406.834987pt;}
._23{width:412.372907pt;}
._24{width:413.806720pt;}
._28{width:701.077760pt;}
._12{width:931.501425pt;}
.fs9{font-size:32.000000pt;}
.fs10{font-size:33.856876pt;}
.fsf{font-size:33.950403pt;}
.fs8{font-size:34.560000pt;}
.fs11{font-size:36.756221pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.800000pt;}
.fsd{font-size:41.914133pt;}
.fse{font-size:42.011200pt;}
.fs5{font-size:42.880000pt;}
.fsb{font-size:47.262933pt;}
.fsa{font-size:48.000000pt;}
.fs13{font-size:48.083364pt;}
.fs12{font-size:48.216191pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs15{font-size:56.334613pt;}
.fs14{font-size:60.170619pt;}
.fs16{font-size:60.311174pt;}
.fs17{font-size:60.443726pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y164{bottom:3.200000pt;}
.y162{bottom:3.360000pt;}
.y11f{bottom:3.840000pt;}
.y125{bottom:4.000000pt;}
.y130{bottom:4.640000pt;}
.y136{bottom:5.120000pt;}
.y132{bottom:5.280000pt;}
.y134{bottom:5.440000pt;}
.y11c{bottom:5.600000pt;}
.y10a{bottom:5.760000pt;}
.y12e{bottom:5.920000pt;}
.yeb{bottom:6.940233pt;}
.yd4{bottom:8.235296pt;}
.y52{bottom:10.247600pt;}
.y120{bottom:10.720000pt;}
.y122{bottom:10.746667pt;}
.ybb{bottom:10.779113pt;}
.y126{bottom:10.880000pt;}
.y108{bottom:12.320000pt;}
.y10f{bottom:12.640000pt;}
.y10d{bottom:12.800000pt;}
.y75{bottom:16.000000pt;}
.y97{bottom:16.146667pt;}
.y16b{bottom:16.186667pt;}
.y11e{bottom:17.600000pt;}
.y124{bottom:17.760000pt;}
.y109{bottom:19.520000pt;}
.y10c{bottom:19.680000pt;}
.y50{bottom:22.122267pt;}
.y51{bottom:22.228093pt;}
.y153{bottom:25.714461pt;}
.y4f{bottom:26.227600pt;}
.yde{bottom:29.222095pt;}
.yb7{bottom:31.168060pt;}
.yc4{bottom:32.343530pt;}
.y20{bottom:40.192000pt;}
.yb1{bottom:41.760025pt;}
.y151{bottom:43.310748pt;}
.yd5{bottom:44.231547pt;}
.ybd{bottom:47.419395pt;}
.y155{bottom:57.660136pt;}
.y159{bottom:58.057792pt;}
.y5{bottom:59.133337pt;}
.ydf{bottom:61.266604pt;}
.yea{bottom:62.096751pt;}
.yd2{bottom:63.225780pt;}
.yc8{bottom:63.657482pt;}
.yb2{bottom:64.697590pt;}
.y1b5{bottom:64.832000pt;}
.ye5{bottom:66.579669pt;}
.yd6{bottom:66.845341pt;}
.ye8{bottom:67.941155pt;}
.ye1{bottom:68.173605pt;}
.y47{bottom:69.152000pt;}
.yaf{bottom:70.432000pt;}
.yb8{bottom:71.057445pt;}
.ycc{bottom:72.424055pt;}
.y46{bottom:73.792000pt;}
.yc7{bottom:75.346261pt;}
.y1e2{bottom:76.352000pt;}
.ybe{bottom:76.641330pt;}
.yc5{bottom:76.807360pt;}
.ye2{bottom:77.604309pt;}
.yc9{bottom:84.112825pt;}
.y19c{bottom:84.192000pt;}
.y45{bottom:85.152000pt;}
.yae{bottom:85.792000pt;}
.y4{bottom:86.333337pt;}
.y13c{bottom:86.912000pt;}
.yb3{bottom:87.611774pt;}
.y152{bottom:88.080197pt;}
.y16a{bottom:89.152000pt;}
.yd7{bottom:89.425926pt;}
.y18d{bottom:90.592000pt;}
.y1e1{bottom:91.712000pt;}
.ycf{bottom:94.340516pt;}
.y20d{bottom:96.032000pt;}
.y74{bottom:98.112000pt;}
.y19b{bottom:99.552000pt;}
.yba{bottom:99.884424pt;}
.yad{bottom:101.152000pt;}
.y13b{bottom:102.272000pt;}
.y1b4{bottom:103.552000pt;}
.y169{bottom:104.512000pt;}
.ybf{bottom:105.863264pt;}
.y18c{bottom:105.952000pt;}
.y44{bottom:107.072000pt;}
.yd0{bottom:107.523587pt;}
.yb4{bottom:110.546534pt;}
.y1e0{bottom:111.072000pt;}
.y20c{bottom:111.392000pt;}
.yd8{bottom:112.039719pt;}
.y19a{bottom:114.912000pt;}
.yac{bottom:116.352000pt;}
.y13a{bottom:117.632000pt;}
.y1b3{bottom:118.912000pt;}
.y168{bottom:119.712000pt;}
.yb9{bottom:119.899262pt;}
.y73{bottom:120.032000pt;}
.y18b{bottom:121.312000pt;}
.ye0{bottom:121.503613pt;}
.y43{bottom:122.272000pt;}
.y1f{bottom:123.790666pt;}
.y1df{bottom:126.432000pt;}
.y20b{bottom:126.592000pt;}
.y199{bottom:130.272000pt;}
.yab{bottom:131.712000pt;}
.yb5{bottom:133.488776pt;}
.yd9{bottom:134.616319pt;}
.yc0{bottom:135.121061pt;}
.y18a{bottom:136.666667pt;}
.y42{bottom:137.626667pt;}
.y1b2{bottom:138.266667pt;}
.y72{bottom:138.906667pt;}
.y139{bottom:140.506667pt;}
.y1de{bottom:141.626667pt;}
.y167{bottom:142.746667pt;}
.y198{bottom:145.626667pt;}
.y20a{bottom:145.946667pt;}
.yaa{bottom:147.066667pt;}
.yc6{bottom:149.891394pt;}
.y189{bottom:152.026667pt;}
.y41{bottom:152.986667pt;}
.y1b1{bottom:153.466667pt;}
.y138{bottom:154.266667pt;}
.yb6{bottom:156.421665pt;}
.y166{bottom:156.506667pt;}
.y1dd{bottom:156.986667pt;}
.yda{bottom:157.236753pt;}
.y197{bottom:160.986667pt;}
.y209{bottom:161.306667pt;}
.yce{bottom:161.580165pt;}
.ye7{bottom:162.177887pt;}
.yc1{bottom:164.342995pt;}
.y188{bottom:167.386667pt;}
.y40{bottom:168.346667pt;}
.y96{bottom:169.466667pt;}
.ya9{bottom:169.946667pt;}
.y105{bottom:171.706667pt;}
.y1dc{bottom:172.346667pt;}
.y1b0{bottom:173.146667pt;}
.y137{bottom:173.786667pt;}
.y16{bottom:175.052000pt;}
.y165{bottom:176.026667pt;}
.y196{bottom:176.186667pt;}
.y208{bottom:176.666667pt;}
.ydb{bottom:179.817338pt;}
.y187{bottom:182.586667pt;}
.yca{bottom:183.496638pt;}
.y3f{bottom:183.706667pt;}
.ya8{bottom:183.866667pt;}
.y95{bottom:184.826667pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y104{bottom:187.066667pt;}
.y1af{bottom:188.506667pt;}
.y163{bottom:191.226667pt;}
.y195{bottom:191.546667pt;}
.y1db{bottom:191.706667pt;}
.y135{bottom:192.826667pt;}
.yc2{bottom:193.564930pt;}
.y207{bottom:196.026667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.y186{bottom:197.946667pt;}
.ye3{bottom:198.306846pt;}
.y3e{bottom:199.066667pt;}
.y94{bottom:200.186667pt;}
.ydc{bottom:202.397924pt;}
.y103{bottom:202.426667pt;}
.ycb{bottom:202.490890pt;}
.ya7{bottom:205.626667pt;}
.y161{bottom:206.266667pt;}
.y194{bottom:206.906667pt;}
.y1da{bottom:207.066667pt;}
.y1ae{bottom:207.866667pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y206{bottom:211.386667pt;}
.ye4{bottom:211.655951pt;}
.y133{bottom:211.706667pt;}
.y185{bottom:213.306667pt;}
.y3d{bottom:214.266667pt;}
.ye6{bottom:214.817222pt;}
.y93{bottom:215.546667pt;}
.y102{bottom:217.786667pt;}
.ye9{bottom:218.204314pt;}
.y193{bottom:222.266667pt;}
.y1d9{bottom:222.426667pt;}
.yc3{bottom:222.786864pt;}
.y1ad{bottom:223.226667pt;}
.ydd{bottom:225.005074pt;}
.ycd{bottom:225.868426pt;}
.y205{bottom:226.586667pt;}
.yb0{bottom:228.020633pt;}
.y184{bottom:228.666667pt;}
.yd1{bottom:228.790624pt;}
.y3c{bottom:229.626667pt;}
.y92{bottom:230.746667pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y131{bottom:231.226667pt;}
.y160{bottom:232.346667pt;}
.y101{bottom:233.146667pt;}
.y192{bottom:237.626667pt;}
.y1ac{bottom:238.586667pt;}
.y1d8{bottom:241.666667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y183{bottom:244.066667pt;}
.y3b{bottom:245.026667pt;}
.y204{bottom:245.986667pt;}
.y91{bottom:246.146667pt;}
.y100{bottom:248.386667pt;}
.y12f{bottom:250.466667pt;}
.yd3{bottom:250.879756pt;}
.y191{bottom:253.026667pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y1d7{bottom:257.026667pt;}
.y1ab{bottom:257.826667pt;}
.y182{bottom:259.426667pt;}
.y3a{bottom:260.386667pt;}
.y203{bottom:261.346667pt;}
.y90{bottom:261.506667pt;}
.yff{bottom:263.746667pt;}
.y190{bottom:268.226667pt;}
.y12d{bottom:268.386667pt;}
.y1d6{bottom:272.386667pt;}
.y1aa{bottom:273.186667pt;}
.y181{bottom:274.626667pt;}
.y39{bottom:275.746667pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y202{bottom:276.706667pt;}
.y8f{bottom:276.866667pt;}
.yfe{bottom:279.106667pt;}
.y18f{bottom:283.586667pt;}
.y15f{bottom:283.746667pt;}
.y71{bottom:285.186667pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y180{bottom:289.986667pt;}
.y38{bottom:291.106667pt;}
.y1d5{bottom:291.746667pt;}
.y8e{bottom:292.226667pt;}
.y1a9{bottom:292.546667pt;}
.yfd{bottom:294.466667pt;}
.y201{bottom:296.066667pt;}
.y15e{bottom:299.106667pt;}
.y12c{bottom:299.906667pt;}
.y70{bottom:300.546667pt;}
.y17f{bottom:305.346667pt;}
.y37{bottom:306.306667pt;}
.y1d4{bottom:307.106667pt;}
.y8d{bottom:307.586667pt;}
.y1a8{bottom:307.906667pt;}
.yd{bottom:309.452000pt;}
.yfc{bottom:309.826667pt;}
.y18e{bottom:310.626667pt;}
.y200{bottom:311.426667pt;}
.y15d{bottom:314.466667pt;}
.y6f{bottom:315.906667pt;}
.y17e{bottom:320.706667pt;}
.y36{bottom:321.666667pt;}
.y12b{bottom:321.986667pt;}
.y1d3{bottom:322.306667pt;}
.y8c{bottom:322.786667pt;}
.y1a7{bottom:323.266667pt;}
.yfb{bottom:325.186667pt;}
.y1ff{bottom:326.626667pt;}
.y15c{bottom:329.666667pt;}
.y6e{bottom:331.266667pt;}
.y17d{bottom:336.066667pt;}
.y35{bottom:337.026667pt;}
.y12a{bottom:337.346667pt;}
.y8b{bottom:338.146667pt;}
.yfa{bottom:340.386667pt;}
.y1d2{bottom:341.666667pt;}
.yc{bottom:343.809333pt;}
.y1fe{bottom:345.986667pt;}
.y6d{bottom:346.466667pt;}
.y1a6{bottom:350.146667pt;}
.y17c{bottom:351.426667pt;}
.y34{bottom:352.386667pt;}
.y129{bottom:352.706667pt;}
.y8a{bottom:353.506667pt;}
.yf9{bottom:355.746667pt;}
.y1d1{bottom:357.026667pt;}
.y1fd{bottom:361.346667pt;}
.y6c{bottom:361.826667pt;}
.yb{bottom:362.706666pt;}
.y17b{bottom:366.626667pt;}
.y128{bottom:368.066667pt;}
.y89{bottom:368.866667pt;}
.yf8{bottom:371.106667pt;}
.y1d0{bottom:372.386667pt;}
.y15b{bottom:374.466667pt;}
.y1fc{bottom:376.706667pt;}
.y6b{bottom:377.186667pt;}
.y33{bottom:379.426667pt;}
.y17a{bottom:381.986667pt;}
.y88{bottom:384.226667pt;}
.yf7{bottom:386.466667pt;}
.y127{bottom:390.946667pt;}
.y1cf{bottom:391.746667pt;}
.y6a{bottom:392.546667pt;}
.y15a{bottom:393.346667pt;}
.y1fb{bottom:396.066667pt;}
.y179{bottom:397.346667pt;}
.y150{bottom:398.354018pt;}
.yf6{bottom:401.826667pt;}
.y1a5{bottom:406.306667pt;}
.y87{bottom:407.106667pt;}
.y69{bottom:407.906667pt;}
.y123{bottom:410.466667pt;}
.y1fa{bottom:411.266667pt;}
.y178{bottom:412.706667pt;}
.yf5{bottom:417.186667pt;}
.y1a4{bottom:421.666667pt;}
.y1ce{bottom:422.306667pt;}
.y68{bottom:423.266667pt;}
.y1f9{bottom:426.626667pt;}
.y177{bottom:428.066667pt;}
.y86{bottom:428.866667pt;}
.ya6{bottom:430.466667pt;}
.yf4{bottom:432.386667pt;}
.y32{bottom:434.786667pt;}
.y1a3{bottom:436.866667pt;}
.y157{bottom:438.118976pt;}
.y156{bottom:438.118984pt;}
.y154{bottom:438.118991pt;}
.y121{bottom:440.866667pt;}
.y1cd{bottom:441.666667pt;}
.y176{bottom:443.266667pt;}
.ya5{bottom:445.853333pt;}
.y1f8{bottom:446.013333pt;}
.y158{bottom:446.072091pt;}
.ya{bottom:446.990669pt;}
.y85{bottom:447.773333pt;}
.y31{bottom:448.573333pt;}
.y67{bottom:449.693333pt;}
.y1a2{bottom:452.253333pt;}
.y1cc{bottom:457.053333pt;}
.y175{bottom:458.653333pt;}
.ya4{bottom:461.213333pt;}
.y1f7{bottom:461.373333pt;}
.y30{bottom:462.493333pt;}
.y9{bottom:462.990669pt;}
.yf3{bottom:463.133333pt;}
.y1a1{bottom:467.613333pt;}
.y11d{bottom:471.133333pt;}
.y1cb{bottom:472.413333pt;}
.y174{bottom:474.013333pt;}
.y2f{bottom:476.253333pt;}
.ya3{bottom:476.573333pt;}
.y1f6{bottom:476.733333pt;}
.yf2{bottom:478.493333pt;}
.y8{bottom:478.990666pt;}
.y1a0{bottom:482.973333pt;}
.y66{bottom:488.253333pt;}
.y173{bottom:489.373333pt;}
.y2e{bottom:490.013333pt;}
.y1ca{bottom:491.773333pt;}
.ya2{bottom:491.933333pt;}
.yf1{bottom:493.853333pt;}
.y7{bottom:494.990666pt;}
.y1f5{bottom:496.093333pt;}
.y19f{bottom:498.333333pt;}
.y11b{bottom:501.373333pt;}
.y2d{bottom:503.773333pt;}
.y172{bottom:504.733333pt;}
.ya1{bottom:507.133333pt;}
.y1f4{bottom:511.293333pt;}
.y19e{bottom:513.693333pt;}
.yf0{bottom:516.733333pt;}
.y2c{bottom:517.693333pt;}
.y171{bottom:520.093333pt;}
.y1c9{bottom:522.333333pt;}
.ya0{bottom:522.493333pt;}
.y1f3{bottom:526.653333pt;}
.y65{bottom:528.893333pt;}
.yef{bottom:530.493333pt;}
.y2b{bottom:531.453333pt;}
.y11a{bottom:532.093333pt;}
.y170{bottom:535.293333pt;}
.y1c8{bottom:541.693333pt;}
.y64{bottom:544.253333pt;}
.y2a{bottom:545.213333pt;}
.y1f2{bottom:546.013333pt;}
.y9f{bottom:549.053333pt;}
.y16f{bottom:550.653333pt;}
.yee{bottom:552.253333pt;}
.y119{bottom:554.333333pt;}
.y14f{bottom:554.653333pt;}
.y1c7{bottom:557.053333pt;}
.y29{bottom:558.973333pt;}
.y63{bottom:559.613333pt;}
.y1f1{bottom:561.373333pt;}
.y16e{bottom:566.013333pt;}
.yed{bottom:566.173333pt;}
.y118{bottom:569.693333pt;}
.y14e{bottom:570.013333pt;}
.y1c6{bottom:572.413333pt;}
.y28{bottom:572.893333pt;}
.y62{bottom:574.973333pt;}
.yec{bottom:577.053333pt;}
.y1f0{bottom:580.733333pt;}
.y16d{bottom:581.373333pt;}
.ybc{bottom:582.024879pt;}
.y117{bottom:585.053333pt;}
.y14d{bottom:585.373333pt;}
.y27{bottom:586.653333pt;}
.y9e{bottom:587.133333pt;}
.y61{bottom:590.333333pt;}
.y1c5{bottom:591.773333pt;}
.y1ef{bottom:596.093333pt;}
.y16c{bottom:596.733333pt;}
.y116{bottom:600.413333pt;}
.y14c{bottom:600.733333pt;}
.y9d{bottom:602.493333pt;}
.y60{bottom:605.693333pt;}
.y1c4{bottom:606.973333pt;}
.y1ee{bottom:611.293333pt;}
.y84{bottom:612.093333pt;}
.y115{bottom:615.613333pt;}
.y14b{bottom:616.093333pt;}
.y9c{bottom:617.853333pt;}
.y5f{bottom:620.893333pt;}
.y1c3{bottom:622.333333pt;}
.y83{bottom:627.293333pt;}
.y1ed{bottom:630.653333pt;}
.y114{bottom:630.973333pt;}
.y14a{bottom:631.293333pt;}
.y9b{bottom:633.213333pt;}
.y5e{bottom:636.253333pt;}
.y26{bottom:636.733333pt;}
.y1c2{bottom:641.693333pt;}
.y82{bottom:642.653333pt;}
.y6{bottom:645.598667pt;}
.y1ec{bottom:646.013333pt;}
.y113{bottom:646.333333pt;}
.y149{bottom:646.693333pt;}
.y5d{bottom:651.653333pt;}
.y9a{bottom:656.133333pt;}
.y1c1{bottom:657.093333pt;}
.y81{bottom:658.053333pt;}
.y1eb{bottom:661.413333pt;}
.y112{bottom:661.733333pt;}
.y148{bottom:662.053333pt;}
.y24{bottom:662.533333pt;}
.y5c{bottom:667.013333pt;}
.y25{bottom:667.173333pt;}
.y3{bottom:668.977329pt;}
.y1c0{bottom:672.453333pt;}
.y80{bottom:673.413333pt;}
.y147{bottom:677.413333pt;}
.y99{bottom:677.893333pt;}
.y1ea{bottom:680.773333pt;}
.y5b{bottom:682.373333pt;}
.y111{bottom:684.613333pt;}
.y7f{bottom:688.773333pt;}
.y1bf{bottom:691.813333pt;}
.y146{bottom:692.773333pt;}
.y19d{bottom:693.893333pt;}
.y1e9{bottom:695.973333pt;}
.y5a{bottom:697.573333pt;}
.y98{bottom:700.293333pt;}
.y23{bottom:702.373333pt;}
.y7e{bottom:703.973333pt;}
.y110{bottom:704.133333pt;}
.y1be{bottom:707.013333pt;}
.y145{bottom:707.973333pt;}
.y1e8{bottom:711.333333pt;}
.y59{bottom:712.933333pt;}
.y7d{bottom:719.333333pt;}
.y1bd{bottom:722.373333pt;}
.y144{bottom:723.333333pt;}
.y22{bottom:726.693333pt;}
.y58{bottom:728.293333pt;}
.y7c{bottom:734.693333pt;}
.y10e{bottom:738.213333pt;}
.y143{bottom:738.693333pt;}
.y1bc{bottom:741.733333pt;}
.y1e7{bottom:742.053333pt;}
.y57{bottom:743.653333pt;}
.y7b{bottom:750.053333pt;}
.y21{bottom:751.333333pt;}
.y142{bottom:754.053333pt;}
.y1bb{bottom:757.093333pt;}
.y1e6{bottom:757.413333pt;}
.y56{bottom:759.013333pt;}
.y7a{bottom:765.413333pt;}
.y141{bottom:769.413333pt;}
.y10b{bottom:772.133333pt;}
.y55{bottom:774.373333pt;}
.y1ba{bottom:776.453333pt;}
.y1e5{bottom:776.773333pt;}
.y79{bottom:780.773333pt;}
.y2{bottom:781.661334pt;}
.y140{bottom:784.773333pt;}
.y1b9{bottom:791.813333pt;}
.y1e4{bottom:791.973333pt;}
.y78{bottom:795.973333pt;}
.y13f{bottom:799.973333pt;}
.y54{bottom:801.253333pt;}
.y107{bottom:806.213333pt;}
.y1e3{bottom:807.333333pt;}
.y1b8{bottom:811.013333pt;}
.y77{bottom:811.333333pt;}
.y1b7{bottom:826.373333pt;}
.y13e{bottom:826.533333pt;}
.y76{bottom:826.693333pt;}
.y1b6{bottom:841.733333pt;}
.y13d{bottom:841.893333pt;}
.y53{bottom:842.053333pt;}
.y106{bottom:843.173333pt;}
.y1{bottom:859.312000pt;}
.y4c{bottom:903.547120pt;}
.y4d{bottom:920.466933pt;}
.y49{bottom:920.484267pt;}
.y4e{bottom:920.498116pt;}
.y4b{bottom:920.498120pt;}
.y4a{bottom:920.599853pt;}
.y48{bottom:921.732800pt;}
.h45{height:14.400000pt;}
.h44{height:14.560000pt;}
.h39{height:17.280000pt;}
.h3c{height:18.240000pt;}
.h3d{height:18.400000pt;}
.h3a{height:18.432000pt;}
.h3b{height:18.720000pt;}
.h35{height:19.200000pt;}
.h38{height:19.840000pt;}
.hf{height:22.234375pt;}
.he{height:24.013125pt;}
.h1a{height:28.356000pt;}
.h29{height:28.482482pt;}
.h7{height:28.560000pt;}
.h1b{height:29.130323pt;}
.h1c{height:29.172243pt;}
.h1d{height:29.281784pt;}
.h36{height:29.600000pt;}
.h37{height:29.632000pt;}
.hb{height:29.794062pt;}
.h34{height:33.280000pt;}
.h10{height:33.351562pt;}
.h33{height:33.440000pt;}
.h23{height:33.515625pt;}
.h26{height:33.675027pt;}
.h27{height:33.720010pt;}
.h25{height:33.768052pt;}
.h1f{height:33.867188pt;}
.h21{height:34.875000pt;}
.h14{height:36.909063pt;}
.h15{height:36.918400pt;}
.h12{height:37.090625pt;}
.h2f{height:37.259912pt;}
.h2d{height:37.362840pt;}
.h22{height:37.479688pt;}
.h1e{height:38.672812pt;}
.h47{height:38.828437pt;}
.h6{height:40.800000pt;}
.h28{height:40.828083pt;}
.h17{height:41.496855pt;}
.h16{height:41.552952pt;}
.hd{height:42.573125pt;}
.h3{height:42.840000pt;}
.h40{height:43.653824pt;}
.h13{height:44.468750pt;}
.h46{height:44.768125pt;}
.h11{height:46.593750pt;}
.h30{height:46.626354pt;}
.h42{height:46.735270pt;}
.h43{height:46.837985pt;}
.h48{height:47.621250pt;}
.h2c{height:47.825104pt;}
.h2b{height:47.957218pt;}
.h2{height:48.960000pt;}
.h18{height:49.125000pt;}
.h19{height:49.242188pt;}
.h20{height:53.697917pt;}
.h3f{height:56.032035pt;}
.h32{height:59.943425pt;}
.h2e{height:60.740387pt;}
.hc{height:61.969687pt;}
.h5{height:69.360000pt;}
.h31{height:69.404039pt;}
.h41{height:74.560522pt;}
.h4{height:105.826671pt;}
.h3e{height:148.126930pt;}
.h24{height:187.989835pt;}
.h2a{height:266.982251pt;}
.h9{height:944.666667pt;}
.ha{height:944.799919pt;}
.h8{height:944.800000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wc{width:46.400000pt;}
.w14{width:46.560000pt;}
.wb{width:46.592000pt;}
.wf{width:47.680000pt;}
.we{width:50.080000pt;}
.w18{width:51.897203pt;}
.w19{width:52.895226pt;}
.w11{width:74.912000pt;}
.w1b{width:84.320000pt;}
.wd{width:84.352000pt;}
.w13{width:84.512000pt;}
.w1c{width:93.792000pt;}
.w12{width:122.080000pt;}
.w10{width:161.946667pt;}
.w15{width:167.586667pt;}
.w16{width:169.626667pt;}
.wa{width:202.426667pt;}
.w1a{width:209.186667pt;}
.w9{width:226.981482pt;}
.w8{width:242.035294pt;}
.w7{width:449.091956pt;}
.w17{width:472.064938pt;}
.w2{width:566.928019pt;}
.w6{width:642.559981pt;}
.w5{width:642.559990pt;}
.w3{width:642.560000pt;}
.w4{width:642.666667pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:1.440000pt;}
.x27{left:4.548538pt;}
.x43{left:5.920000pt;}
.x5b{left:6.874667pt;}
.x53{left:8.000000pt;}
.x56{left:9.640000pt;}
.x26{left:10.690725pt;}
.x4c{left:12.160000pt;}
.x4e{left:15.200000pt;}
.x25{left:16.799710pt;}
.x4d{left:17.920000pt;}
.x49{left:18.880000pt;}
.x47{left:20.160000pt;}
.x5f{left:22.322451pt;}
.x4b{left:23.680000pt;}
.x20{left:24.879277pt;}
.x12{left:27.025533pt;}
.x1f{left:29.702272pt;}
.x35{left:30.596042pt;}
.x4a{left:32.960000pt;}
.x1e{left:34.525268pt;}
.x29{left:35.857083pt;}
.x34{left:40.252710pt;}
.x28{left:41.667259pt;}
.x18{left:46.757000pt;}
.x19{left:48.262013pt;}
.xf{left:52.812147pt;}
.x17{left:54.800280pt;}
.x67{left:56.360000pt;}
.x3a{left:60.096998pt;}
.x30{left:63.314310pt;}
.x4f{left:64.640000pt;}
.x16{left:67.008813pt;}
.x3e{left:68.957240pt;}
.x11{left:70.771400pt;}
.x5d{left:72.057270pt;}
.x21{left:73.267355pt;}
.x5{left:75.551990pt;}
.x22{left:77.563245pt;}
.xc{left:79.871990pt;}
.x40{left:80.832000pt;}
.x37{left:84.520736pt;}
.x3d{left:86.179957pt;}
.x2b{left:88.414266pt;}
.x1{left:90.706667pt;}
.x2d{left:92.564389pt;}
.x2{left:94.486667pt;}
.x51{left:98.592000pt;}
.x9{left:99.551990pt;}
.x31{left:103.387917pt;}
.x68{left:109.631990pt;}
.x36{left:117.605610pt;}
.x57{left:120.640000pt;}
.xa{left:123.551990pt;}
.x5c{left:124.680000pt;}
.x65{left:126.912000pt;}
.x3b{left:127.959151pt;}
.x2e{left:135.061671pt;}
.x32{left:136.190503pt;}
.x8{left:139.866657pt;}
.x5e{left:153.459137pt;}
.x13{left:156.740680pt;}
.x38{left:158.064064pt;}
.x15{left:162.740907pt;}
.x2c{left:164.305112pt;}
.x24{left:165.984813pt;}
.xe{left:169.065107pt;}
.x3c{left:173.395269pt;}
.x59{left:176.026667pt;}
.x4{left:180.874667pt;}
.x3f{left:181.946657pt;}
.x6{left:183.226648pt;}
.x50{left:184.666657pt;}
.x7{left:187.546657pt;}
.x10{left:193.502480pt;}
.x39{left:194.832409pt;}
.x2a{left:196.616324pt;}
.x14{left:199.635813pt;}
.x2f{left:210.959156pt;}
.x64{left:231.586657pt;}
.x58{left:233.666657pt;}
.x60{left:251.265403pt;}
.x52{left:261.186667pt;}
.xb{left:267.586657pt;}
.x42{left:283.906667pt;}
.x69{left:314.080000pt;}
.x1b{left:318.086667pt;}
.x44{left:331.293333pt;}
.x33{left:332.590997pt;}
.x54{left:336.893333pt;}
.x5a{left:344.253333pt;}
.x61{left:348.073646pt;}
.x23{left:357.407616pt;}
.x45{left:378.493333pt;}
.x3{left:404.408000pt;}
.x66{left:421.853333pt;}
.x62{left:445.879913pt;}
.x55{left:459.613333pt;}
.x46{left:463.493333pt;}
.x48{left:514.213333pt;}
.x63{left:557.733324pt;}
.x1a{left:564.773324pt;}
.x1c{left:565.733324pt;}
.x1d{left:566.853324pt;}
.xd{left:594.447600pt;}
}




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