
    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_eba1fd4ee17ad41bb2a5e172.woff')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_4c933a119082cb0f0dcaf550.woff')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_d481f37f939433ffdf785b17.woff')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_2e7305bd98f2442252191291.woff')format("woff");}.ff4{font-family:ff4;line-height:1.122070;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_ee282e25f30936d75c912d07.woff')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_5c6940a70c57d4a00548f80d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.122070;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_ec9cc1dd66e687059233a527.woff')format("woff");}.ff7{font-family:ff7;line-height:1.250000;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_b25747d9ed7d8a760543ce5f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.250000;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_2e4979b423e0c22a2850e785.woff')format("woff");}.ff9{font-family:ff9;line-height:1.196289;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_d6ed7364a1c0a3dc2239e661.woff')format("woff");}.ffa{font-family:ffa;line-height:0.765137;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_de699b165634e523b280028c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_af7ce4c8d0578cc7e1a55c1b.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858887;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_03d8d8f37f29b4c3387a39e8.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_77ff05d16bf192f90e19789d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.856445;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_9c2569b295e2a7de8ed693c5.woff')format("woff");}.fff{font-family:fff;line-height:1.122070;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_07ff9ced263570f8a4d813ee.woff')format("woff");}.ff10{font-family:ff10;line-height:1.122070;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_34aa074d2032bcbbf2d73f0f.woff')format("woff");}.ff11{font-family:ff11;line-height:1.122070;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_c52de397eefbeca94af5e528.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_8e3b521a8657a162a2db4c00.woff')format("woff");}.ff13{font-family:ff13;line-height:1.122070;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_10006247ecb7b8c03b7788be.woff')format("woff");}.ff14{font-family:ff14;line-height:1.114258;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_f7eca57f498bf67666d03862.woff')format("woff");}.ff15{font-family:ff15;line-height:1.127930;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_47acfdc6264f08a282a7033d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.109375;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_2a2beedbf1603bfa89a63c19.woff')format("woff");}.ff17{font-family:ff17;line-height:1.250000;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_16b46dc46d0ce610ad290960.woff')format("woff");}.ff18{font-family:ff18;line-height:1.109375;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_1f04d3cef93782426efa3328.woff')format("woff");}.ff19{font-family:ff19;line-height:1.125000;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:ff1a;src:url('chunks/assets/font_6a5db4f19e505f44041c75f7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.109375;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:ff1b;src:url('chunks/assets/font_f093ea7031548d0ee665967e.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.109375;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:ff1c;src:url('chunks/assets/font_2dd84c5d83d8edf644615f51.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.869629;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:ff1d;src:url('chunks/assets/font_59472fea7f2ede0e5398e018.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.109375;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:ff1e;src:url('chunks/assets/font_505bdcee97a9a168609e3bdb.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.750000;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:ff1f;src:url('chunks/assets/font_bb1159fb56d4be8651472bb6.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.114258;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:ff20;src:url('chunks/assets/font_560c5f5b96a7184094102ec1.woff')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_e902f72338337b79032e35db.woff')format("woff");}.ff21{font-family:ff21;line-height:1.122070;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:ff22;src:url('chunks/assets/font_799b89706e2d6060215d194f.woff')format("woff");}.ff22{font-family:ff22;line-height:1.110352;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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);}
.v2{vertical-align:-36.000000px;}
.v5{vertical-align:-24.480000px;}
.v3{vertical-align:-18.720000px;}
.v4{vertical-align:-17.280000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:57.600000px;}
.v1{vertical-align:86.400000px;}
.ls96{letter-spacing:-8.367058px;}
.ls28{letter-spacing:-2.616470px;}
.ls98{letter-spacing:-1.524600px;}
.ls2a{letter-spacing:-0.420000px;}
.ls6c{letter-spacing:-0.388800px;}
.ls64{letter-spacing:-0.386400px;}
.ls43{letter-spacing:-0.369600px;}
.lsb6{letter-spacing:-0.364800px;}
.ls3c{letter-spacing:-0.360000px;}
.lsb8{letter-spacing:-0.352800px;}
.ls5b{letter-spacing:-0.336000px;}
.ls79{letter-spacing:-0.334800px;}
.ls20{letter-spacing:-0.326400px;}
.ls3a{letter-spacing:-0.324000px;}
.ls97{letter-spacing:-0.307200px;}
.ls7d{letter-spacing:-0.302400px;}
.ls44{letter-spacing:-0.301176px;}
.lsa7{letter-spacing:-0.300000px;}
.ls2c{letter-spacing:-0.297600px;}
.ls9e{letter-spacing:-0.291600px;}
.ls57{letter-spacing:-0.288000px;}
.ls9f{letter-spacing:-0.285882px;}
.lsaa{letter-spacing:-0.282353px;}
.ls32{letter-spacing:-0.273600px;}
.ls78{letter-spacing:-0.270000px;}
.lsf{letter-spacing:-0.268800px;}
.ls5a{letter-spacing:-0.249600px;}
.ls72{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.237600px;}
.lsa8{letter-spacing:-0.226800px;}
.ls1c{letter-spacing:-0.218400px;}
.ls92{letter-spacing:-0.216471px;}
.ls9{letter-spacing:-0.216000px;}
.ls91{letter-spacing:-0.207059px;}
.lsa{letter-spacing:-0.201600px;}
.ls2b{letter-spacing:-0.182400px;}
.ls73{letter-spacing:-0.180000px;}
.ls23{letter-spacing:-0.176400px;}
.ls7{letter-spacing:-0.172800px;}
.ls87{letter-spacing:-0.168000px;}
.ls68{letter-spacing:-0.162000px;}
.ls22{letter-spacing:-0.153600px;}
.lsa4{letter-spacing:-0.151200px;}
.ls4c{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.134400px;}
.ls94{letter-spacing:-0.124800px;}
.lsb7{letter-spacing:-0.117600px;}
.ls2e{letter-spacing:-0.115200px;}
.ls1e{letter-spacing:-0.105600px;}
.ls76{letter-spacing:-0.100800px;}
.ls6{letter-spacing:-0.097200px;}
.ls55{letter-spacing:-0.096000px;}
.ls9b{letter-spacing:-0.086400px;}
.ls65{letter-spacing:-0.084000px;}
.lsb3{letter-spacing:-0.082353px;}
.lsae{letter-spacing:-0.081600px;}
.ls51{letter-spacing:-0.076800px;}
.ls7a{letter-spacing:-0.075600px;}
.ls34{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.067200px;}
.ls48{letter-spacing:-0.060000px;}
.ls1{letter-spacing:-0.057600px;}
.ls86{letter-spacing:-0.050400px;}
.ls1d{letter-spacing:-0.048000px;}
.ls24{letter-spacing:-0.047059px;}
.ls6a{letter-spacing:-0.043200px;}
.ls2d{letter-spacing:-0.038400px;}
.lsa9{letter-spacing:-0.037647px;}
.ls5e{letter-spacing:-0.024000px;}
.ls7b{letter-spacing:-0.021600px;}
.ls75{letter-spacing:-0.016800px;}
.ls0{letter-spacing:-0.014400px;}
.ls88{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls8c{letter-spacing:0.000005px;}
.ls8f{letter-spacing:0.009412px;}
.ls15{letter-spacing:0.012004px;}
.ls4f{letter-spacing:0.019200px;}
.ls4{letter-spacing:0.021600px;}
.ls29{letter-spacing:0.024003px;}
.ls7c{letter-spacing:0.032400px;}
.ls63{letter-spacing:0.033600px;}
.lsa3{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.038400px;}
.ls7e{letter-spacing:0.043200px;}
.ls56{letter-spacing:0.048000px;}
.ls81{letter-spacing:0.050400px;}
.ls47{letter-spacing:0.052800px;}
.ls45{letter-spacing:0.057600px;}
.ls5d{letter-spacing:0.058824px;}
.ls60{letter-spacing:0.059978px;}
.ls38{letter-spacing:0.060000px;}
.lsa1{letter-spacing:0.060001px;}
.lsad{letter-spacing:0.061200px;}
.lsa0{letter-spacing:0.064800px;}
.ls8a{letter-spacing:0.075294px;}
.ls1f{letter-spacing:0.076800px;}
.ls13{letter-spacing:0.084000px;}
.lsba{letter-spacing:0.089404px;}
.ls50{letter-spacing:0.090004px;}
.lsaf{letter-spacing:0.091800px;}
.ls3b{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.100800px;}
.ls59{letter-spacing:0.105600px;}
.ls2f{letter-spacing:0.112941px;}
.ls19{letter-spacing:0.117600px;}
.ls3e{letter-spacing:0.117647px;}
.ls5{letter-spacing:0.118800px;}
.ls3f{letter-spacing:0.120000px;}
.ls4e{letter-spacing:0.122400px;}
.ls18{letter-spacing:0.134400px;}
.lsb2{letter-spacing:0.137985px;}
.ls9c{letter-spacing:0.140400px;}
.lsb4{letter-spacing:0.144022px;}
.ls1b{letter-spacing:0.151200px;}
.ls40{letter-spacing:0.152941px;}
.ls52{letter-spacing:0.153600px;}
.ls39{letter-spacing:0.156000px;}
.ls33{letter-spacing:0.168000px;}
.ls42{letter-spacing:0.180000px;}
.ls35{letter-spacing:0.184800px;}
.ls8{letter-spacing:0.192000px;}
.lsbb{letter-spacing:0.193800px;}
.ls3{letter-spacing:0.194400px;}
.ls62{letter-spacing:0.201600px;}
.lsb5{letter-spacing:0.211200px;}
.ls6f{letter-spacing:0.211765px;}
.ls83{letter-spacing:0.216000px;}
.ls67{letter-spacing:0.218400px;}
.ls93{letter-spacing:0.218824px;}
.lsbc{letter-spacing:0.220800px;}
.ls9d{letter-spacing:0.222353px;}
.lse{letter-spacing:0.230400px;}
.ls4a{letter-spacing:0.235294px;}
.ls6e{letter-spacing:0.237600px;}
.ls41{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.244706px;}
.ls89{letter-spacing:0.248400px;}
.lsd{letter-spacing:0.249600px;}
.ls14{letter-spacing:0.252000px;}
.lsb0{letter-spacing:0.255000px;}
.ls99{letter-spacing:0.259200px;}
.lsb9{letter-spacing:0.263409px;}
.ls12{letter-spacing:0.268800px;}
.ls54{letter-spacing:0.278400px;}
.ls1a{letter-spacing:0.285600px;}
.lsab{letter-spacing:0.294002px;}
.ls25{letter-spacing:0.301176px;}
.ls31{letter-spacing:0.302400px;}
.ls58{letter-spacing:0.307200px;}
.ls6d{letter-spacing:0.313200px;}
.lsa5{letter-spacing:0.319200px;}
.ls6b{letter-spacing:0.328235px;}
.ls4d{letter-spacing:0.329412px;}
.ls77{letter-spacing:0.330000px;}
.ls69{letter-spacing:0.334800px;}
.ls37{letter-spacing:0.336000px;}
.ls30{letter-spacing:0.338824px;}
.ls5c{letter-spacing:0.340200px;}
.ls8e{letter-spacing:0.342003px;}
.lsc{letter-spacing:0.345600px;}
.ls80{letter-spacing:0.352800px;}
.ls49{letter-spacing:0.356400px;}
.lsac{letter-spacing:0.357000px;}
.ls74{letter-spacing:0.360000px;}
.ls66{letter-spacing:0.369600px;}
.ls82{letter-spacing:0.376471px;}
.ls70{letter-spacing:0.378000px;}
.ls85{letter-spacing:0.383978px;}
.ls90{letter-spacing:0.385882px;}
.ls5f{letter-spacing:0.388235px;}
.ls84{letter-spacing:0.388800px;}
.ls95{letter-spacing:0.393600px;}
.ls4b{letter-spacing:0.411765px;}
.ls9a{letter-spacing:0.420000px;}
.ls53{letter-spacing:0.422400px;}
.ls3d{letter-spacing:0.440000px;}
.ls27{letter-spacing:0.442353px;}
.lsa6{letter-spacing:0.444110px;}
.ls8d{letter-spacing:27.012004px;}
.lsa2{letter-spacing:33.870003px;}
.ls7f{letter-spacing:34.608006px;}
.ls71{letter-spacing:39.450004px;}
.ls61{letter-spacing:40.571979px;}
.lsb1{letter-spacing:44.999976px;}
.lsb{letter-spacing:45.750024px;}
.ls46{letter-spacing:51.300003px;}
.ls36{letter-spacing:67.596000px;}
.ls8b{letter-spacing:74.352005px;}
.sc_{text-shadow:none;}
.sc7{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc6{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.sc5{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);}
.sc4{text-shadow:-0.015em 0 rgb(43,118,100),0 0.015em rgb(43,118,100),0.015em 0 rgb(43,118,100),0 -0.015em  rgb(43,118,100);}
.sc3{text-shadow:-0.015em 0 rgb(202,40,40),0 0.015em rgb(202,40,40),0.015em 0 rgb(202,40,40),0 -0.015em  rgb(202,40,40);}
.sc2{text-shadow:-0.015em 0 rgb(42,102,94),0 0.015em rgb(42,102,94),0.015em 0 rgb(42,102,94),0 -0.015em  rgb(42,102,94);}
.sc1{text-shadow:-0.015em 0 rgb(0,89,157),0 0.015em rgb(0,89,157),0.015em 0 rgb(0,89,157),0 -0.015em  rgb(0,89,157);}
.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;}
.sc7{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc6{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc5{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(43,118,100);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(202,40,40);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(42,102,94);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,89,157);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-45.849589px;}
.ws83{word-spacing:-45.715189px;}
.ws29{word-spacing:-45.007213px;}
.ws52{word-spacing:-44.805613px;}
.ws71{word-spacing:-44.637613px;}
.ws4a{word-spacing:-40.992012px;}
.ws19{word-spacing:-40.958412px;}
.ws47{word-spacing:-40.908012px;}
.ws3a{word-spacing:-40.857612px;}
.ws40{word-spacing:-40.807212px;}
.ws45{word-spacing:-40.790412px;}
.ws17{word-spacing:-40.773612px;}
.ws46{word-spacing:-40.756812px;}
.ws9{word-spacing:-40.740012px;}
.ws39{word-spacing:-40.689612px;}
.ws3f{word-spacing:-40.656012px;}
.ws50{word-spacing:-40.605612px;}
.ws5{word-spacing:-40.588812px;}
.ws38{word-spacing:-40.572012px;}
.ws4c{word-spacing:-40.555212px;}
.ws34{word-spacing:-40.521612px;}
.wsd{word-spacing:-40.437612px;}
.ws3d{word-spacing:-40.320012px;}
.ws87{word-spacing:-40.303212px;}
.ws27{word-spacing:-40.286412px;}
.ws2b{word-spacing:-37.448397px;}
.ws2a{word-spacing:-37.144797px;}
.ws6f{word-spacing:-33.959999px;}
.ws6d{word-spacing:-33.875999px;}
.ws23{word-spacing:-33.815999px;}
.ws22{word-spacing:-33.719999px;}
.ws72{word-spacing:-33.695999px;}
.ws73{word-spacing:-33.635999px;}
.ws7b{word-spacing:-33.539999px;}
.ws42{word-spacing:-33.503999px;}
.ws6b{word-spacing:-33.470586px;}
.ws6e{word-spacing:-33.447056px;}
.ws6c{word-spacing:-33.388233px;}
.ws24{word-spacing:-33.211762px;}
.ws25{word-spacing:-33.176468px;}
.ws1b{word-spacing:-32.774400px;}
.ws1e{word-spacing:-32.472000px;}
.ws1d{word-spacing:-32.428800px;}
.ws1f{word-spacing:-32.342400px;}
.ws5f{word-spacing:-30.682800px;}
.ws75{word-spacing:-30.661200px;}
.ws3c{word-spacing:-30.348000px;}
.ws3b{word-spacing:-30.186000px;}
.ws4d{word-spacing:-30.078000px;}
.ws60{word-spacing:-29.752940px;}
.ws61{word-spacing:-29.467058px;}
.ws7e{word-spacing:-28.580399px;}
.ws86{word-spacing:-27.311997px;}
.ws89{word-spacing:-27.244797px;}
.ws8a{word-spacing:-27.196797px;}
.ws85{word-spacing:-27.052797px;}
.ws43{word-spacing:-26.937597px;}
.ws8b{word-spacing:-26.918397px;}
.ws14{word-spacing:-26.870397px;}
.ws16{word-spacing:-26.860797px;}
.ws15{word-spacing:-26.841597px;}
.ws7c{word-spacing:-26.822397px;}
.ws12{word-spacing:-26.793597px;}
.ws30{word-spacing:-26.726397px;}
.ws13{word-spacing:-26.678397px;}
.ws84{word-spacing:-26.649597px;}
.ws77{word-spacing:-26.164703px;}
.ws59{word-spacing:-22.089598px;}
.ws57{word-spacing:-22.003198px;}
.ws56{word-spacing:-21.772798px;}
.ws58{word-spacing:-21.571198px;}
.ws55{word-spacing:-21.523198px;}
.ws5b{word-spacing:-21.345880px;}
.ws10{word-spacing:-21.270586px;}
.ws54{word-spacing:-21.063527px;}
.ws5a{word-spacing:-12.903528px;}
.ws2e{word-spacing:-9.331188px;}
.ws32{word-spacing:-5.529589px;}
.ws2d{word-spacing:-5.011189px;}
.ws2f{word-spacing:-3.782389px;}
.ws21{word-spacing:-0.677990px;}
.ws80{word-spacing:-0.605390px;}
.ws5e{word-spacing:-0.583146px;}
.ws7a{word-spacing:-0.569980px;}
.ws49{word-spacing:-0.504000px;}
.ws79{word-spacing:-0.485974px;}
.ws1a{word-spacing:-0.470400px;}
.ws51{word-spacing:-0.453600px;}
.wsa{word-spacing:-0.420000px;}
.ws64{word-spacing:-0.389990px;}
.ws36{word-spacing:-0.369600px;}
.ws20{word-spacing:-0.352800px;}
.ws1c{word-spacing:-0.336000px;}
.ws41{word-spacing:-0.319200px;}
.ws18{word-spacing:-0.302400px;}
.wsb{word-spacing:-0.285600px;}
.ws69{word-spacing:-0.269987px;}
.ws6{word-spacing:-0.268800px;}
.ws8{word-spacing:-0.252000px;}
.ws66{word-spacing:-0.240172px;}
.ws68{word-spacing:-0.221985px;}
.ws37{word-spacing:-0.201600px;}
.ws33{word-spacing:-0.194400px;}
.ws4e{word-spacing:-0.168000px;}
.ws4b{word-spacing:-0.151200px;}
.ws65{word-spacing:-0.150055px;}
.ws4f{word-spacing:-0.117600px;}
.ws7{word-spacing:-0.100800px;}
.ws63{word-spacing:-0.089977px;}
.wsf{word-spacing:-0.084000px;}
.ws4{word-spacing:-0.072000px;}
.ws76{word-spacing:-0.067001px;}
.ws44{word-spacing:-0.066000px;}
.ws82{word-spacing:-0.037138px;}
.ws35{word-spacing:-0.033600px;}
.ws0{word-spacing:0.000000px;}
.ws70{word-spacing:0.028800px;}
.ws31{word-spacing:0.048011px;}
.wsc{word-spacing:0.050400px;}
.ws7d{word-spacing:0.072000px;}
.ws1{word-spacing:0.080488px;}
.wse{word-spacing:0.092400px;}
.ws48{word-spacing:0.100800px;}
.ws6a{word-spacing:0.120006px;}
.ws7f{word-spacing:0.121871px;}
.ws3e{word-spacing:0.168000px;}
.ws88{word-spacing:0.184800px;}
.ws11{word-spacing:0.193224px;}
.ws28{word-spacing:0.201600px;}
.ws78{word-spacing:0.300024px;}
.ws5c{word-spacing:0.325187px;}
.ws81{word-spacing:0.330064px;}
.ws67{word-spacing:0.720011px;}
.ws26{word-spacing:0.804026px;}
.ws62{word-spacing:1.085785px;}
.ws2{word-spacing:1.252953px;}
.ws74{word-spacing:1.288800px;}
.ws5d{word-spacing:1.458600px;}
.ws2c{word-spacing:14.534409px;}
.ws53{word-spacing:191.644377px;}
._d{margin-left:-4962.285780px;}
._3{margin-left:-4960.265100px;}
._b{margin-left:-943.720800px;}
._11{margin-left:-909.471600px;}
._16{margin-left:-801.826800px;}
._15{margin-left:-788.290800px;}
._10{margin-left:-758.914800px;}
._2{margin-left:-757.906800px;}
._c{margin-left:-3.957648px;}
._7{margin-left:-2.635294px;}
._1{margin-left:-1.080000px;}
._0{width:1.008000px;}
._8{width:2.050637px;}
._9{width:3.482353px;}
._14{width:6.870587px;}
._13{width:8.564705px;}
._f{width:32.801919px;}
._6{width:356.399561px;}
._17{width:2964.148980px;}
._12{width:2982.898980px;}
._5{width:3006.898980px;}
._4{width:3009.148980px;}
._a{width:3010.648980px;}
._e{width:3012.898980px;}
.fcc{color:transparent;}
.fc9{color:rgb(0,112,192);}
.fc8{color:rgb(43,118,100);}
.fc7{color:rgb(202,40,40);}
.fc6{color:rgb(42,102,94);}
.fc4{color:rgb(0,89,157);}
.fca{color:rgb(30,26,11);}
.fc1{color:rgb(0,80,135);}
.fcb{color:rgb(255,255,255);}
.fc5{color:rgb(127,127,127);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(112,112,112);}
.fs10{font-size:65.999995px;}
.fs12{font-size:70.588238px;}
.fs0{font-size:72.000000px;}
.fs11{font-size:77.999990px;}
.fs6{font-size:83.999995px;}
.fs7{font-size:94.117637px;}
.fs5{font-size:95.999990px;}
.fs13{font-size:101.999995px;}
.fse{font-size:105.882350px;}
.fs1{font-size:108.000000px;}
.fsf{font-size:113.999990px;}
.fsc{font-size:117.647050px;}
.fsb{font-size:119.999995px;}
.fsa{font-size:129.411763px;}
.fs9{font-size:131.999990px;}
.fs8{font-size:141.176477px;}
.fs3{font-size:144.000000px;}
.fsd{font-size:162.000000px;}
.fs4{font-size:168.000048px;}
.fs2{font-size:191.999952px;}
.y0{bottom:0.000000px;}
.yc{bottom:24.120000px;}
.y1{bottom:25.200000px;}
.yfa{bottom:51.840000px;}
.y12{bottom:53.280000px;}
.yd6{bottom:54.000000px;}
.y109{bottom:54.720000px;}
.y26{bottom:59.400000px;}
.y11{bottom:60.120000px;}
.y10{bottom:61.560000px;}
.yf2{bottom:61.883640px;}
.y43{bottom:62.603640px;}
.y1f{bottom:63.360000px;}
.yfc{bottom:66.240000px;}
.yac{bottom:68.760000px;}
.ye0{bottom:70.560000px;}
.y3{bottom:75.960000px;}
.y5d{bottom:76.320000px;}
.y10f{bottom:77.400000px;}
.ya4{bottom:78.840000px;}
.yc8{bottom:79.560000px;}
.y98{bottom:80.280000px;}
.yf9{bottom:81.720000px;}
.y108{bottom:83.160000px;}
.yd5{bottom:84.240000px;}
.ye9{bottom:87.480000px;}
.y7f{bottom:90.720000px;}
.yf1{bottom:91.440000px;}
.yba{bottom:92.520000px;}
.ybd{bottom:92.843640px;}
.yb7{bottom:92.880000px;}
.y1e{bottom:93.240000px;}
.y3d{bottom:94.011840px;}
.yfb{bottom:94.680000px;}
.y2{bottom:96.840000px;}
.y52{bottom:101.520000px;}
.yab{bottom:101.880000px;}
.y53{bottom:101.902320px;}
.y74{bottom:103.320000px;}
.y5c{bottom:104.760000px;}
.y10e{bottom:105.840000px;}
.ya3{bottom:107.280000px;}
.yc7{bottom:108.000000px;}
.y64{bottom:111.240000px;}
.yfe{bottom:112.320000px;}
.y107{bottom:113.040000px;}
.y97{bottom:116.280000px;}
.y7e{bottom:120.600000px;}
.y3c{bottom:128.160000px;}
.y24{bottom:129.321000px;}
.y2d{bottom:129.960000px;}
.ye8{bottom:131.040000px;}
.y73{bottom:131.760000px;}
.yaa{bottom:133.200000px;}
.y5b{bottom:134.640000px;}
.ya2{bottom:136.080000px;}
.yc6{bottom:136.440000px;}
.y8c{bottom:140.040000px;}
.y10d{bottom:140.400000px;}
.y111{bottom:144.720000px;}
.y50{bottom:145.080000px;}
.y51{bottom:145.462320px;}
.y106{bottom:147.600000px;}
.yfd{bottom:148.320000px;}
.yb0{bottom:151.560000px;}
.y96{bottom:152.280000px;}
.y72{bottom:160.200000px;}
.ya1{bottom:164.520000px;}
.ya9{bottom:166.320000px;}
.yc5{bottom:166.680000px;}
.y8b{bottom:169.920000px;}
.y10c{bottom:170.640000px;}
.y6{bottom:173.160000px;}
.ye7{bottom:174.600000px;}
.yde{bottom:176.760000px;}
.ydf{bottom:177.142320px;}
.y27{bottom:177.840000px;}
.y3b{bottom:178.920000px;}
.ybc{bottom:180.000000px;}
.yaf{bottom:182.880000px;}
.y2a{bottom:183.960000px;}
.y7d{bottom:184.680000px;}
.yf0{bottom:185.760000px;}
.y95{bottom:188.280000px;}
.y4f{bottom:188.640000px;}
.ya0{bottom:194.400000px;}
.yd4{bottom:198.720000px;}
.y10b{bottom:199.080000px;}
.y113{bottom:199.800000px;}
.y3a{bottom:210.600000px;}
.y5{bottom:212.400000px;}
.ydc{bottom:212.760000px;}
.ydd{bottom:213.142320px;}
.yae{bottom:216.000000px;}
.ye6{bottom:218.160000px;}
.y71{bottom:218.520000px;}
.y7c{bottom:220.680000px;}
.yf8{bottom:221.040000px;}
.yef{bottom:221.760000px;}
.y4d{bottom:224.640000px;}
.y4e{bottom:225.022320px;}
.ya8{bottom:226.080000px;}
.ybb{bottom:226.800000px;}
.y63{bottom:227.160000px;}
.yd3{bottom:231.480000px;}
.y105{bottom:234.720000px;}
.y55{bottom:238.320000px;}
.y94{bottom:239.400000px;}
.y5a{bottom:242.640000px;}
.ydb{bottom:248.760000px;}
.yf7{bottom:249.480000px;}
.y38{bottom:250.920000px;}
.y4{bottom:251.280000px;}
.y39{bottom:251.331840px;}
.y2e{bottom:255.960000px;}
.y62{bottom:257.040000px;}
.ye5{bottom:259.920000px;}
.yd1{bottom:263.160000px;}
.yd2{bottom:263.512800px;}
.y4c{bottom:268.200000px;}
.y54{bottom:268.560000px;}
.y104{bottom:270.720000px;}
.yee{bottom:272.520000px;}
.yb9{bottom:273.600000px;}
.y93{bottom:275.400000px;}
.yf6{bottom:279.360000px;}
.y10a{bottom:284.400000px;}
.yc4{bottom:295.560000px;}
.yda{bottom:299.520000px;}
.y37{bottom:300.600000px;}
.y8a{bottom:302.760000px;}
.y102{bottom:306.720000px;}
.y103{bottom:307.102320px;}
.yd0{bottom:311.040000px;}
.y92{bottom:311.400000px;}
.y23{bottom:312.480000px;}
.yed{bottom:314.640000px;}
.y70{bottom:316.462320px;}
.yb8{bottom:320.040000px;}
.y11b{bottom:321.480000px;}
.y4b{bottom:322.200000px;}
.y7b{bottom:322.560000px;}
.yf5{bottom:329.760000px;}
.yc3{bottom:331.560000px;}
.y36{bottom:333.720000px;}
.y89{bottom:335.520000px;}
.y22{bottom:340.920000px;}
.ye4{bottom:342.720000px;}
.yd9{bottom:343.080000px;}
.ycf{bottom:344.160000px;}
.ya{bottom:344.520000px;}
.y91{bottom:347.400000px;}
.yec{bottom:347.760000px;}
.y6e{bottom:352.080000px;}
.y6f{bottom:352.462320px;}
.y13{bottom:353.160000px;}
.y11a{bottom:356.040000px;}
.y2c{bottom:356.400000px;}
.y101{bottom:357.480000px;}
.y7a{bottom:358.560000px;}
.y59{bottom:362.880000px;}
.y4a{bottom:365.760000px;}
.y35{bottom:366.480000px;}
.y87{bottom:367.200000px;}
.y88{bottom:367.552800px;}
.y61{bottom:367.560000px;}
.y21{bottom:369.360000px;}
.yf4{bottom:372.960000px;}
.yce{bottom:375.480000px;}
.ye3{bottom:378.720000px;}
.yd8{bottom:379.080000px;}
.ya7{bottom:380.520000px;}
.y119{bottom:392.040000px;}
.y58{bottom:392.760000px;}
.y9{bottom:397.080000px;}
.y60{bottom:397.440000px;}
.y90{bottom:398.160000px;}
.y20{bottom:399.600000px;}
.y112{bottom:400.680000px;}
.y79{bottom:402.120000px;}
.y6c{bottom:403.200000px;}
.y6d{bottom:403.582320px;}
.y33{bottom:407.160000px;}
.y49{bottom:407.520000px;}
.y34{bottom:407.571840px;}
.yb{bottom:408.600000px;}
.y17{bottom:408.923640px;}
.ycd{bottom:408.952800px;}
.y44{bottom:409.320000px;}
.y1c{bottom:410.040000px;}
.ya6{bottom:411.840000px;}
.y86{bottom:415.080000px;}
.yf3{bottom:416.520000px;}
.yc2{bottom:418.680000px;}
.yeb{bottom:422.640000px;}
.y9f{bottom:424.800000px;}
.y118{bottom:426.240000px;}
.yd7{bottom:430.200000px;}
.y8f{bottom:434.160000px;}
.y78{bottom:438.120000px;}
.ya5{bottom:444.960000px;}
.y85{bottom:446.760000px;}
.y29{bottom:447.120000px;}
.y1a{bottom:452.483640px;}
.y48{bottom:452.520000px;}
.y9e{bottom:453.240000px;}
.y6a{bottom:453.960000px;}
.y6b{bottom:454.342320px;}
.yc1{bottom:454.680000px;}
.ycc{bottom:455.040000px;}
.y32{bottom:456.480000px;}
.y9a{bottom:458.640000px;}
.ye2{bottom:459.720000px;}
.y117{bottom:460.800000px;}
.y8{bottom:464.400000px;}
.y42{bottom:466.200000px;}
.y14{bottom:466.560000px;}
.y8e{bottom:470.160000px;}
.y19{bottom:480.923640px;}
.y9d{bottom:481.680000px;}
.ycb{bottom:488.160000px;}
.y77{bottom:488.880000px;}
.y28{bottom:490.680000px;}
.y84{bottom:494.640000px;}
.y116{bottom:495.360000px;}
.ye1{bottom:495.720000px;}
.y30{bottom:497.160000px;}
.y31{bottom:497.571840px;}
.y57{bottom:500.040000px;}
.y41{bottom:502.200000px;}
.yad{bottom:502.582320px;}
.y68{bottom:505.080000px;}
.yb6{bottom:505.344600px;}
.yc0{bottom:505.440000px;}
.y69{bottom:505.462320px;}
.y8d{bottom:506.160000px;}
.y47{bottom:506.520000px;}
.y18{bottom:509.723640px;}
.yea{bottom:509.760000px;}
.y9c{bottom:510.480000px;}
.y5f{bottom:519.120000px;}
.y7{bottom:521.280000px;}
.yca{bottom:521.632800px;}
.y1d{bottom:523.440000px;}
.y115{bottom:523.800000px;}
.y83{bottom:527.760000px;}
.yb5{bottom:529.163640px;}
.y56{bottom:529.920000px;}
.yb2{bottom:532.403640px;}
.y76{bottom:532.440000px;}
.y9b{bottom:540.360000px;}
.ybf{bottom:541.440000px;}
.y46{bottom:542.520000px;}
.y99{bottom:545.760000px;}
.y2f{bottom:546.480000px;}
.yb1{bottom:546.803640px;}
.y5e{bottom:549.360000px;}
.yc9{bottom:552.600000px;}
.y40{bottom:552.960000px;}
.y114{bottom:554.040000px;}
.y2b{bottom:554.760000px;}
.y66{bottom:556.200000px;}
.y67{bottom:556.582320px;}
.yb4{bottom:557.603640px;}
.y81{bottom:559.080000px;}
.y82{bottom:559.432800px;}
.y100{bottom:561.600000px;}
.y110{bottom:563.760000px;}
.y75{bottom:568.440000px;}
.y25{bottom:573.561000px;}
.y1b{bottom:574.163640px;}
.y15{bottom:580.320000px;}
.y45{bottom:586.080000px;}
.yb3{bottom:586.403640px;}
.y3e{bottom:588.960000px;}
.y3f{bottom:589.342320px;}
.y80{bottom:592.200000px;}
.ybe{bottom:592.560000px;}
.yff{bottom:597.600000px;}
.yf{bottom:605.520000px;}
.y16{bottom:616.680000px;}
.ye{bottom:655.200000px;}
.yd{bottom:729.000015px;}
.y65{bottom:730.800015px;}
.h18{height:48.805149px;}
.h9{height:62.999996px;}
.ha{height:64.338228px;}
.h12{height:65.250000px;}
.h1a{height:65.624993px;}
.h1{height:69.257813px;}
.h1d{height:82.031247px;}
.h14{height:86.999991px;}
.h13{height:90.533078px;}
.h7{height:92.343741px;}
.h1c{height:92.437496px;}
.h16{height:95.955880px;}
.hb{height:96.093754px;}
.h2{height:97.875000px;}
.hc{height:98.437500px;}
.h1e{height:103.312491px;}
.h11{height:106.617639px;}
.h10{height:108.749996px;}
.hd{height:113.941439px;}
.hf{height:117.279410px;}
.he{height:119.624991px;}
.h17{height:121.938228px;}
.h4{height:130.500000px;}
.h15{height:146.812500px;}
.h5{height:152.250044px;}
.h6{height:161.280046px;}
.h3{height:173.999957px;}
.h8{height:178.743741px;}
.h1b{height:201.600000px;}
.h19{height:201.960000px;}
.h0{height:810.000000px;}
.w1{width:125.280000px;}
.w2{width:154.080000px;}
.w4{width:154.800000px;}
.w3{width:185.040000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x63{left:9.150000px;}
.x2{left:35.356530px;}
.x8d{left:37.656135px;}
.x8f{left:39.410430px;}
.xb{left:76.951530px;}
.x16{left:79.966185px;}
.x51{left:81.619365px;}
.x17{left:84.272595px;}
.x66{left:90.134550px;}
.x80{left:92.006925px;}
.x62{left:93.600000px;}
.x7{left:94.747200px;}
.x9{left:98.494005px;}
.x1c{left:101.861400px;}
.x67{left:103.126800px;}
.x55{left:105.792165px;}
.x44{left:107.019150px;}
.x3a{left:115.916685px;}
.x1{left:120.405360px;}
.x81{left:123.694410px;}
.x25{left:126.342045px;}
.x40{left:128.741685px;}
.x6b{left:135.684915px;}
.x6d{left:136.991805px;}
.x86{left:139.713360px;}
.x37{left:142.616925px;}
.x4{left:144.059820px;}
.x64{left:145.575750px;}
.x54{left:147.792165px;}
.x6e{left:150.679350px;}
.x1a{left:151.687050px;}
.x8b{left:156.400800px;}
.x45{left:157.467000px;}
.x41{left:160.804200px;}
.x8a{left:167.463300px;}
.x1b{left:174.427050px;}
.x33{left:175.818900px;}
.x22{left:178.617000px;}
.x58{left:179.622900px;}
.x8c{left:189.119850px;}
.x88{left:191.463300px;}
.x3f{left:194.366850px;}
.x6a{left:197.837400px;}
.x34{left:202.818900px;}
.x7b{left:205.255350px;}
.x8e{left:207.820350px;}
.x89{left:210.213300px;}
.x87{left:212.463300px;}
.x18{left:215.529150px;}
.x57{left:218.622900px;}
.x7f{left:222.510000px;}
.x70{left:226.429350px;}
.x59{left:237.195150px;}
.x6{left:238.476300px;}
.x6c{left:263.559900px;}
.x73{left:275.250000px;}
.x42{left:277.054200px;}
.x3b{left:286.022400px;}
.x3d{left:292.429350px;}
.x7d{left:305.655600px;}
.x2d{left:317.929500px;}
.x79{left:335.341650px;}
.x2c{left:344.554500px;}
.x53{left:350.179800px;}
.x2a{left:364.216650px;}
.x19{left:371.985900px;}
.x2b{left:375.679500px;}
.x3{left:381.997350px;}
.x74{left:397.500000px;}
.x5c{left:406.328850px;}
.x82{left:407.768850px;}
.x21{left:411.904500px;}
.x5d{left:413.003850px;}
.x5a{left:415.396350px;}
.x23{left:420.529500px;}
.x75{left:424.687500px;}
.x24{left:429.154500px;}
.x5b{left:431.993850px;}
.x6f{left:450.491850px;}
.x50{left:458.907600px;}
.x76{left:492.750000px;}
.x7e{left:496.559250px;}
.x26{left:518.554500px;}
.x77{left:521.250000px;}
.x7c{left:524.942700px;}
.x65{left:556.920000px;}
.x5{left:566.413800px;}
.x60{left:575.952150px;}
.x61{left:579.957150px;}
.x5e{left:585.019650px;}
.x10{left:597.152400px;}
.x5f{left:601.617000px;}
.x11{left:605.027400px;}
.x78{left:607.500000px;}
.x2e{left:610.054500px;}
.x3c{left:614.522400px;}
.x3e{left:623.179350px;}
.x84{left:675.180750px;}
.x83{left:709.680750px;}
.x93{left:738.562500px;}
.x7a{left:761.361900px;}
.xd{left:762.377700px;}
.x1f{left:773.686500px;}
.x68{left:778.799850px;}
.x1d{left:780.147900px;}
.x4b{left:797.796600px;}
.x85{left:801.930900px;}
.x69{left:810.899850px;}
.xc{left:821.912550px;}
.xe{left:824.353650px;}
.xf{left:825.829500px;}
.x43{left:832.695750px;}
.x35{left:837.405900px;}
.x36{left:864.405900px;}
.x72{left:875.560950px;}
.x71{left:885.498450px;}
.x39{left:890.062500px;}
.x52{left:891.492000px;}
.x92{left:911.437650px;}
.x95{left:951.750000px;}
.x20{left:964.156650px;}
.x1e{left:968.673150px;}
.x30{left:986.079900px;}
.x4f{left:999.020250px;}
.x4d{left:1010.270250px;}
.x27{left:1020.117000px;}
.x47{left:1046.058300px;}
.x94{left:1054.500150px;}
.x48{left:1062.370800px;}
.x4c{left:1063.707750px;}
.x31{left:1072.232400px;}
.x13{left:1080.718050px;}
.x12{left:1091.593050px;}
.x4e{left:1097.645100px;}
.x46{left:1102.870800px;}
.x90{left:1113.187500px;}
.x91{left:1121.250150px;}
.x14{left:1133.780550px;}
.x4a{left:1139.995800px;}
.x49{left:1142.058300px;}
.x28{left:1170.679500px;}
.xa{left:1187.982450px;}
.x15{left:1285.468050px;}
.x8{left:1366.371150px;}
.x38{left:1396.731150px;}
.x32{left:1400.293650px;}
.x56{left:1401.808650px;}
.x2f{left:1404.808650px;}
.x29{left:1412.683650px;}
@media print{
.v2{vertical-align:-32.000000pt;}
.v5{vertical-align:-21.760000pt;}
.v3{vertical-align:-16.640000pt;}
.v4{vertical-align:-15.360000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:51.200000pt;}
.v1{vertical-align:76.800000pt;}
.ls96{letter-spacing:-7.437385pt;}
.ls28{letter-spacing:-2.325751pt;}
.ls98{letter-spacing:-1.355200pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls6c{letter-spacing:-0.345600pt;}
.ls64{letter-spacing:-0.343467pt;}
.ls43{letter-spacing:-0.328533pt;}
.lsb6{letter-spacing:-0.324267pt;}
.ls3c{letter-spacing:-0.320000pt;}
.lsb8{letter-spacing:-0.313600pt;}
.ls5b{letter-spacing:-0.298667pt;}
.ls79{letter-spacing:-0.297600pt;}
.ls20{letter-spacing:-0.290133pt;}
.ls3a{letter-spacing:-0.288000pt;}
.ls97{letter-spacing:-0.273067pt;}
.ls7d{letter-spacing:-0.268800pt;}
.ls44{letter-spacing:-0.267712pt;}
.lsa7{letter-spacing:-0.266667pt;}
.ls2c{letter-spacing:-0.264533pt;}
.ls9e{letter-spacing:-0.259200pt;}
.ls57{letter-spacing:-0.256000pt;}
.ls9f{letter-spacing:-0.254118pt;}
.lsaa{letter-spacing:-0.250980pt;}
.ls32{letter-spacing:-0.243200pt;}
.ls78{letter-spacing:-0.240000pt;}
.lsf{letter-spacing:-0.238933pt;}
.ls5a{letter-spacing:-0.221867pt;}
.ls72{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.211200pt;}
.lsa8{letter-spacing:-0.201600pt;}
.ls1c{letter-spacing:-0.194133pt;}
.ls92{letter-spacing:-0.192418pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls91{letter-spacing:-0.184052pt;}
.lsa{letter-spacing:-0.179200pt;}
.ls2b{letter-spacing:-0.162133pt;}
.ls73{letter-spacing:-0.160000pt;}
.ls23{letter-spacing:-0.156800pt;}
.ls7{letter-spacing:-0.153600pt;}
.ls87{letter-spacing:-0.149333pt;}
.ls68{letter-spacing:-0.144000pt;}
.ls22{letter-spacing:-0.136533pt;}
.lsa4{letter-spacing:-0.134400pt;}
.ls4c{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.119467pt;}
.ls94{letter-spacing:-0.110933pt;}
.lsb7{letter-spacing:-0.104533pt;}
.ls2e{letter-spacing:-0.102400pt;}
.ls1e{letter-spacing:-0.093867pt;}
.ls76{letter-spacing:-0.089600pt;}
.ls6{letter-spacing:-0.086400pt;}
.ls55{letter-spacing:-0.085333pt;}
.ls9b{letter-spacing:-0.076800pt;}
.ls65{letter-spacing:-0.074667pt;}
.lsb3{letter-spacing:-0.073203pt;}
.lsae{letter-spacing:-0.072533pt;}
.ls51{letter-spacing:-0.068267pt;}
.ls7a{letter-spacing:-0.067200pt;}
.ls34{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.059733pt;}
.ls48{letter-spacing:-0.053333pt;}
.ls1{letter-spacing:-0.051200pt;}
.ls86{letter-spacing:-0.044800pt;}
.ls1d{letter-spacing:-0.042667pt;}
.ls24{letter-spacing:-0.041830pt;}
.ls6a{letter-spacing:-0.038400pt;}
.ls2d{letter-spacing:-0.034133pt;}
.lsa9{letter-spacing:-0.033464pt;}
.ls5e{letter-spacing:-0.021333pt;}
.ls7b{letter-spacing:-0.019200pt;}
.ls75{letter-spacing:-0.014933pt;}
.ls0{letter-spacing:-0.012800pt;}
.ls88{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8c{letter-spacing:0.000004pt;}
.ls8f{letter-spacing:0.008366pt;}
.ls15{letter-spacing:0.010671pt;}
.ls4f{letter-spacing:0.017067pt;}
.ls4{letter-spacing:0.019200pt;}
.ls29{letter-spacing:0.021336pt;}
.ls7c{letter-spacing:0.028800pt;}
.ls63{letter-spacing:0.029867pt;}
.lsa3{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.034133pt;}
.ls7e{letter-spacing:0.038400pt;}
.ls56{letter-spacing:0.042667pt;}
.ls81{letter-spacing:0.044800pt;}
.ls47{letter-spacing:0.046933pt;}
.ls45{letter-spacing:0.051200pt;}
.ls5d{letter-spacing:0.052288pt;}
.ls60{letter-spacing:0.053314pt;}
.ls38{letter-spacing:0.053333pt;}
.lsa1{letter-spacing:0.053334pt;}
.lsad{letter-spacing:0.054400pt;}
.lsa0{letter-spacing:0.057600pt;}
.ls8a{letter-spacing:0.066928pt;}
.ls1f{letter-spacing:0.068267pt;}
.ls13{letter-spacing:0.074667pt;}
.lsba{letter-spacing:0.079471pt;}
.ls50{letter-spacing:0.080004pt;}
.lsaf{letter-spacing:0.081600pt;}
.ls3b{letter-spacing:0.085333pt;}
.ls11{letter-spacing:0.089600pt;}
.ls59{letter-spacing:0.093867pt;}
.ls2f{letter-spacing:0.100392pt;}
.ls19{letter-spacing:0.104533pt;}
.ls3e{letter-spacing:0.104575pt;}
.ls5{letter-spacing:0.105600pt;}
.ls3f{letter-spacing:0.106667pt;}
.ls4e{letter-spacing:0.108800pt;}
.ls18{letter-spacing:0.119467pt;}
.lsb2{letter-spacing:0.122653pt;}
.ls9c{letter-spacing:0.124800pt;}
.lsb4{letter-spacing:0.128020pt;}
.ls1b{letter-spacing:0.134400pt;}
.ls40{letter-spacing:0.135948pt;}
.ls52{letter-spacing:0.136533pt;}
.ls39{letter-spacing:0.138667pt;}
.ls33{letter-spacing:0.149333pt;}
.ls42{letter-spacing:0.160000pt;}
.ls35{letter-spacing:0.164267pt;}
.ls8{letter-spacing:0.170667pt;}
.lsbb{letter-spacing:0.172267pt;}
.ls3{letter-spacing:0.172800pt;}
.ls62{letter-spacing:0.179200pt;}
.lsb5{letter-spacing:0.187733pt;}
.ls6f{letter-spacing:0.188235pt;}
.ls83{letter-spacing:0.192000pt;}
.ls67{letter-spacing:0.194133pt;}
.ls93{letter-spacing:0.194510pt;}
.lsbc{letter-spacing:0.196267pt;}
.ls9d{letter-spacing:0.197647pt;}
.lse{letter-spacing:0.204800pt;}
.ls4a{letter-spacing:0.209150pt;}
.ls6e{letter-spacing:0.211200pt;}
.ls41{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.217516pt;}
.ls89{letter-spacing:0.220800pt;}
.lsd{letter-spacing:0.221867pt;}
.ls14{letter-spacing:0.224000pt;}
.lsb0{letter-spacing:0.226667pt;}
.ls99{letter-spacing:0.230400pt;}
.lsb9{letter-spacing:0.234142pt;}
.ls12{letter-spacing:0.238933pt;}
.ls54{letter-spacing:0.247467pt;}
.ls1a{letter-spacing:0.253867pt;}
.lsab{letter-spacing:0.261335pt;}
.ls25{letter-spacing:0.267712pt;}
.ls31{letter-spacing:0.268800pt;}
.ls58{letter-spacing:0.273067pt;}
.ls6d{letter-spacing:0.278400pt;}
.lsa5{letter-spacing:0.283733pt;}
.ls6b{letter-spacing:0.291765pt;}
.ls4d{letter-spacing:0.292810pt;}
.ls77{letter-spacing:0.293333pt;}
.ls69{letter-spacing:0.297600pt;}
.ls37{letter-spacing:0.298667pt;}
.ls30{letter-spacing:0.301176pt;}
.ls5c{letter-spacing:0.302400pt;}
.ls8e{letter-spacing:0.304003pt;}
.lsc{letter-spacing:0.307200pt;}
.ls80{letter-spacing:0.313600pt;}
.ls49{letter-spacing:0.316800pt;}
.lsac{letter-spacing:0.317333pt;}
.ls74{letter-spacing:0.320000pt;}
.ls66{letter-spacing:0.328533pt;}
.ls82{letter-spacing:0.334640pt;}
.ls70{letter-spacing:0.336000pt;}
.ls85{letter-spacing:0.341314pt;}
.ls90{letter-spacing:0.343006pt;}
.ls5f{letter-spacing:0.345098pt;}
.ls84{letter-spacing:0.345600pt;}
.ls95{letter-spacing:0.349867pt;}
.ls4b{letter-spacing:0.366013pt;}
.ls9a{letter-spacing:0.373333pt;}
.ls53{letter-spacing:0.375467pt;}
.ls3d{letter-spacing:0.391111pt;}
.ls27{letter-spacing:0.393203pt;}
.lsa6{letter-spacing:0.394764pt;}
.ls8d{letter-spacing:24.010671pt;}
.lsa2{letter-spacing:30.106669pt;}
.ls7f{letter-spacing:30.762672pt;}
.ls71{letter-spacing:35.066671pt;}
.ls61{letter-spacing:36.063981pt;}
.lsb1{letter-spacing:39.999979pt;}
.lsb{letter-spacing:40.666688pt;}
.ls46{letter-spacing:45.600003pt;}
.ls36{letter-spacing:60.085333pt;}
.ls8b{letter-spacing:66.090671pt;}
.ws3{word-spacing:-40.755190pt;}
.ws83{word-spacing:-40.635723pt;}
.ws29{word-spacing:-40.006411pt;}
.ws52{word-spacing:-39.827211pt;}
.ws71{word-spacing:-39.677878pt;}
.ws4a{word-spacing:-36.437344pt;}
.ws19{word-spacing:-36.407477pt;}
.ws47{word-spacing:-36.362677pt;}
.ws3a{word-spacing:-36.317877pt;}
.ws40{word-spacing:-36.273077pt;}
.ws45{word-spacing:-36.258144pt;}
.ws17{word-spacing:-36.243210pt;}
.ws46{word-spacing:-36.228277pt;}
.ws9{word-spacing:-36.213344pt;}
.ws39{word-spacing:-36.168544pt;}
.ws3f{word-spacing:-36.138677pt;}
.ws50{word-spacing:-36.093877pt;}
.ws5{word-spacing:-36.078944pt;}
.ws38{word-spacing:-36.064010pt;}
.ws4c{word-spacing:-36.049077pt;}
.ws34{word-spacing:-36.019210pt;}
.wsd{word-spacing:-35.944544pt;}
.ws3d{word-spacing:-35.840010pt;}
.ws87{word-spacing:-35.825077pt;}
.ws27{word-spacing:-35.810144pt;}
.ws2b{word-spacing:-33.287464pt;}
.ws2a{word-spacing:-33.017598pt;}
.ws6f{word-spacing:-30.186665pt;}
.ws6d{word-spacing:-30.111999pt;}
.ws23{word-spacing:-30.058665pt;}
.ws22{word-spacing:-29.973332pt;}
.ws72{word-spacing:-29.951999pt;}
.ws73{word-spacing:-29.898665pt;}
.ws7b{word-spacing:-29.813332pt;}
.ws42{word-spacing:-29.781332pt;}
.ws6b{word-spacing:-29.751632pt;}
.ws6e{word-spacing:-29.730717pt;}
.ws6c{word-spacing:-29.678429pt;}
.ws24{word-spacing:-29.521566pt;}
.ws25{word-spacing:-29.490194pt;}
.ws1b{word-spacing:-29.132800pt;}
.ws1e{word-spacing:-28.864000pt;}
.ws1d{word-spacing:-28.825600pt;}
.ws1f{word-spacing:-28.748800pt;}
.ws5f{word-spacing:-27.273600pt;}
.ws75{word-spacing:-27.254400pt;}
.ws3c{word-spacing:-26.976000pt;}
.ws3b{word-spacing:-26.832000pt;}
.ws4d{word-spacing:-26.736000pt;}
.ws60{word-spacing:-26.447058pt;}
.ws61{word-spacing:-26.192941pt;}
.ws7e{word-spacing:-25.404799pt;}
.ws86{word-spacing:-24.277331pt;}
.ws89{word-spacing:-24.217598pt;}
.ws8a{word-spacing:-24.174931pt;}
.ws85{word-spacing:-24.046931pt;}
.ws43{word-spacing:-23.944531pt;}
.ws8b{word-spacing:-23.927464pt;}
.ws14{word-spacing:-23.884798pt;}
.ws16{word-spacing:-23.876264pt;}
.ws15{word-spacing:-23.859198pt;}
.ws7c{word-spacing:-23.842131pt;}
.ws12{word-spacing:-23.816531pt;}
.ws30{word-spacing:-23.756798pt;}
.ws13{word-spacing:-23.714131pt;}
.ws84{word-spacing:-23.688531pt;}
.ws77{word-spacing:-23.257514pt;}
.ws59{word-spacing:-19.635198pt;}
.ws57{word-spacing:-19.558398pt;}
.ws56{word-spacing:-19.353598pt;}
.ws58{word-spacing:-19.174398pt;}
.ws55{word-spacing:-19.131731pt;}
.ws5b{word-spacing:-18.974116pt;}
.ws10{word-spacing:-18.907187pt;}
.ws54{word-spacing:-18.723135pt;}
.ws5a{word-spacing:-11.469803pt;}
.ws2e{word-spacing:-8.294390pt;}
.ws32{word-spacing:-4.915190pt;}
.ws2d{word-spacing:-4.454390pt;}
.ws2f{word-spacing:-3.362123pt;}
.ws21{word-spacing:-0.602658pt;}
.ws80{word-spacing:-0.538125pt;}
.ws5e{word-spacing:-0.518352pt;}
.ws7a{word-spacing:-0.506649pt;}
.ws49{word-spacing:-0.448000pt;}
.ws79{word-spacing:-0.431977pt;}
.ws1a{word-spacing:-0.418133pt;}
.ws51{word-spacing:-0.403200pt;}
.wsa{word-spacing:-0.373333pt;}
.ws64{word-spacing:-0.346658pt;}
.ws36{word-spacing:-0.328533pt;}
.ws20{word-spacing:-0.313600pt;}
.ws1c{word-spacing:-0.298667pt;}
.ws41{word-spacing:-0.283733pt;}
.ws18{word-spacing:-0.268800pt;}
.wsb{word-spacing:-0.253867pt;}
.ws69{word-spacing:-0.239988pt;}
.ws6{word-spacing:-0.238933pt;}
.ws8{word-spacing:-0.224000pt;}
.ws66{word-spacing:-0.213486pt;}
.ws68{word-spacing:-0.197320pt;}
.ws37{word-spacing:-0.179200pt;}
.ws33{word-spacing:-0.172800pt;}
.ws4e{word-spacing:-0.149333pt;}
.ws4b{word-spacing:-0.134400pt;}
.ws65{word-spacing:-0.133382pt;}
.ws4f{word-spacing:-0.104533pt;}
.ws7{word-spacing:-0.089600pt;}
.ws63{word-spacing:-0.079979pt;}
.wsf{word-spacing:-0.074667pt;}
.ws4{word-spacing:-0.064000pt;}
.ws76{word-spacing:-0.059556pt;}
.ws44{word-spacing:-0.058667pt;}
.ws82{word-spacing:-0.033012pt;}
.ws35{word-spacing:-0.029867pt;}
.ws0{word-spacing:0.000000pt;}
.ws70{word-spacing:0.025600pt;}
.ws31{word-spacing:0.042676pt;}
.wsc{word-spacing:0.044800pt;}
.ws7d{word-spacing:0.064000pt;}
.ws1{word-spacing:0.071544pt;}
.wse{word-spacing:0.082133pt;}
.ws48{word-spacing:0.089600pt;}
.ws6a{word-spacing:0.106672pt;}
.ws7f{word-spacing:0.108330pt;}
.ws3e{word-spacing:0.149333pt;}
.ws88{word-spacing:0.164267pt;}
.ws11{word-spacing:0.171755pt;}
.ws28{word-spacing:0.179200pt;}
.ws78{word-spacing:0.266688pt;}
.ws5c{word-spacing:0.289055pt;}
.ws81{word-spacing:0.293390pt;}
.ws67{word-spacing:0.640010pt;}
.ws26{word-spacing:0.714690pt;}
.ws62{word-spacing:0.965142pt;}
.ws2{word-spacing:1.113736pt;}
.ws74{word-spacing:1.145600pt;}
.ws5d{word-spacing:1.296533pt;}
.ws2c{word-spacing:12.919475pt;}
.ws53{word-spacing:170.350558pt;}
._d{margin-left:-4410.920693pt;}
._3{margin-left:-4409.124533pt;}
._b{margin-left:-838.862933pt;}
._11{margin-left:-808.419200pt;}
._16{margin-left:-712.734933pt;}
._15{margin-left:-700.702933pt;}
._10{margin-left:-674.590933pt;}
._2{margin-left:-673.694933pt;}
._c{margin-left:-3.517909pt;}
._7{margin-left:-2.342483pt;}
._1{margin-left:-0.960000pt;}
._0{width:0.896000pt;}
._8{width:1.822788pt;}
._9{width:3.095424pt;}
._14{width:6.107189pt;}
._13{width:7.613071pt;}
._f{width:29.157262pt;}
._6{width:316.799609pt;}
._17{width:2634.799093pt;}
._12{width:2651.465760pt;}
._5{width:2672.799093pt;}
._4{width:2674.799093pt;}
._a{width:2676.132427pt;}
._e{width:2678.132427pt;}
.fs10{font-size:58.666662pt;}
.fs12{font-size:62.745101pt;}
.fs0{font-size:64.000000pt;}
.fs11{font-size:69.333325pt;}
.fs6{font-size:74.666662pt;}
.fs7{font-size:83.660122pt;}
.fs5{font-size:85.333325pt;}
.fs13{font-size:90.666662pt;}
.fse{font-size:94.117645pt;}
.fs1{font-size:96.000000pt;}
.fsf{font-size:101.333325pt;}
.fsc{font-size:104.575155pt;}
.fsb{font-size:106.666662pt;}
.fsa{font-size:115.032678pt;}
.fs9{font-size:117.333325pt;}
.fs8{font-size:125.490202pt;}
.fs3{font-size:128.000000pt;}
.fsd{font-size:144.000000pt;}
.fs4{font-size:149.333376pt;}
.fs2{font-size:170.666624pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:21.440000pt;}
.y1{bottom:22.400000pt;}
.yfa{bottom:46.080000pt;}
.y12{bottom:47.360000pt;}
.yd6{bottom:48.000000pt;}
.y109{bottom:48.640000pt;}
.y26{bottom:52.800000pt;}
.y11{bottom:53.440000pt;}
.y10{bottom:54.720000pt;}
.yf2{bottom:55.007680pt;}
.y43{bottom:55.647680pt;}
.y1f{bottom:56.320000pt;}
.yfc{bottom:58.880000pt;}
.yac{bottom:61.120000pt;}
.ye0{bottom:62.720000pt;}
.y3{bottom:67.520000pt;}
.y5d{bottom:67.840000pt;}
.y10f{bottom:68.800000pt;}
.ya4{bottom:70.080000pt;}
.yc8{bottom:70.720000pt;}
.y98{bottom:71.360000pt;}
.yf9{bottom:72.640000pt;}
.y108{bottom:73.920000pt;}
.yd5{bottom:74.880000pt;}
.ye9{bottom:77.760000pt;}
.y7f{bottom:80.640000pt;}
.yf1{bottom:81.280000pt;}
.yba{bottom:82.240000pt;}
.ybd{bottom:82.527680pt;}
.yb7{bottom:82.560000pt;}
.y1e{bottom:82.880000pt;}
.y3d{bottom:83.566080pt;}
.yfb{bottom:84.160000pt;}
.y2{bottom:86.080000pt;}
.y52{bottom:90.240000pt;}
.yab{bottom:90.560000pt;}
.y53{bottom:90.579840pt;}
.y74{bottom:91.840000pt;}
.y5c{bottom:93.120000pt;}
.y10e{bottom:94.080000pt;}
.ya3{bottom:95.360000pt;}
.yc7{bottom:96.000000pt;}
.y64{bottom:98.880000pt;}
.yfe{bottom:99.840000pt;}
.y107{bottom:100.480000pt;}
.y97{bottom:103.360000pt;}
.y7e{bottom:107.200000pt;}
.y3c{bottom:113.920000pt;}
.y24{bottom:114.952000pt;}
.y2d{bottom:115.520000pt;}
.ye8{bottom:116.480000pt;}
.y73{bottom:117.120000pt;}
.yaa{bottom:118.400000pt;}
.y5b{bottom:119.680000pt;}
.ya2{bottom:120.960000pt;}
.yc6{bottom:121.280000pt;}
.y8c{bottom:124.480000pt;}
.y10d{bottom:124.800000pt;}
.y111{bottom:128.640000pt;}
.y50{bottom:128.960000pt;}
.y51{bottom:129.299840pt;}
.y106{bottom:131.200000pt;}
.yfd{bottom:131.840000pt;}
.yb0{bottom:134.720000pt;}
.y96{bottom:135.360000pt;}
.y72{bottom:142.400000pt;}
.ya1{bottom:146.240000pt;}
.ya9{bottom:147.840000pt;}
.yc5{bottom:148.160000pt;}
.y8b{bottom:151.040000pt;}
.y10c{bottom:151.680000pt;}
.y6{bottom:153.920000pt;}
.ye7{bottom:155.200000pt;}
.yde{bottom:157.120000pt;}
.ydf{bottom:157.459840pt;}
.y27{bottom:158.080000pt;}
.y3b{bottom:159.040000pt;}
.ybc{bottom:160.000000pt;}
.yaf{bottom:162.560000pt;}
.y2a{bottom:163.520000pt;}
.y7d{bottom:164.160000pt;}
.yf0{bottom:165.120000pt;}
.y95{bottom:167.360000pt;}
.y4f{bottom:167.680000pt;}
.ya0{bottom:172.800000pt;}
.yd4{bottom:176.640000pt;}
.y10b{bottom:176.960000pt;}
.y113{bottom:177.600000pt;}
.y3a{bottom:187.200000pt;}
.y5{bottom:188.800000pt;}
.ydc{bottom:189.120000pt;}
.ydd{bottom:189.459840pt;}
.yae{bottom:192.000000pt;}
.ye6{bottom:193.920000pt;}
.y71{bottom:194.240000pt;}
.y7c{bottom:196.160000pt;}
.yf8{bottom:196.480000pt;}
.yef{bottom:197.120000pt;}
.y4d{bottom:199.680000pt;}
.y4e{bottom:200.019840pt;}
.ya8{bottom:200.960000pt;}
.ybb{bottom:201.600000pt;}
.y63{bottom:201.920000pt;}
.yd3{bottom:205.760000pt;}
.y105{bottom:208.640000pt;}
.y55{bottom:211.840000pt;}
.y94{bottom:212.800000pt;}
.y5a{bottom:215.680000pt;}
.ydb{bottom:221.120000pt;}
.yf7{bottom:221.760000pt;}
.y38{bottom:223.040000pt;}
.y4{bottom:223.360000pt;}
.y39{bottom:223.406080pt;}
.y2e{bottom:227.520000pt;}
.y62{bottom:228.480000pt;}
.ye5{bottom:231.040000pt;}
.yd1{bottom:233.920000pt;}
.yd2{bottom:234.233600pt;}
.y4c{bottom:238.400000pt;}
.y54{bottom:238.720000pt;}
.y104{bottom:240.640000pt;}
.yee{bottom:242.240000pt;}
.yb9{bottom:243.200000pt;}
.y93{bottom:244.800000pt;}
.yf6{bottom:248.320000pt;}
.y10a{bottom:252.800000pt;}
.yc4{bottom:262.720000pt;}
.yda{bottom:266.240000pt;}
.y37{bottom:267.200000pt;}
.y8a{bottom:269.120000pt;}
.y102{bottom:272.640000pt;}
.y103{bottom:272.979840pt;}
.yd0{bottom:276.480000pt;}
.y92{bottom:276.800000pt;}
.y23{bottom:277.760000pt;}
.yed{bottom:279.680000pt;}
.y70{bottom:281.299840pt;}
.yb8{bottom:284.480000pt;}
.y11b{bottom:285.760000pt;}
.y4b{bottom:286.400000pt;}
.y7b{bottom:286.720000pt;}
.yf5{bottom:293.120000pt;}
.yc3{bottom:294.720000pt;}
.y36{bottom:296.640000pt;}
.y89{bottom:298.240000pt;}
.y22{bottom:303.040000pt;}
.ye4{bottom:304.640000pt;}
.yd9{bottom:304.960000pt;}
.ycf{bottom:305.920000pt;}
.ya{bottom:306.240000pt;}
.y91{bottom:308.800000pt;}
.yec{bottom:309.120000pt;}
.y6e{bottom:312.960000pt;}
.y6f{bottom:313.299840pt;}
.y13{bottom:313.920000pt;}
.y11a{bottom:316.480000pt;}
.y2c{bottom:316.800000pt;}
.y101{bottom:317.760000pt;}
.y7a{bottom:318.720000pt;}
.y59{bottom:322.560000pt;}
.y4a{bottom:325.120000pt;}
.y35{bottom:325.760000pt;}
.y87{bottom:326.400000pt;}
.y88{bottom:326.713600pt;}
.y61{bottom:326.720000pt;}
.y21{bottom:328.320000pt;}
.yf4{bottom:331.520000pt;}
.yce{bottom:333.760000pt;}
.ye3{bottom:336.640000pt;}
.yd8{bottom:336.960000pt;}
.ya7{bottom:338.240000pt;}
.y119{bottom:348.480000pt;}
.y58{bottom:349.120000pt;}
.y9{bottom:352.960000pt;}
.y60{bottom:353.280000pt;}
.y90{bottom:353.920000pt;}
.y20{bottom:355.200000pt;}
.y112{bottom:356.160000pt;}
.y79{bottom:357.440000pt;}
.y6c{bottom:358.400000pt;}
.y6d{bottom:358.739840pt;}
.y33{bottom:361.920000pt;}
.y49{bottom:362.240000pt;}
.y34{bottom:362.286080pt;}
.yb{bottom:363.200000pt;}
.y17{bottom:363.487680pt;}
.ycd{bottom:363.513600pt;}
.y44{bottom:363.840000pt;}
.y1c{bottom:364.480000pt;}
.ya6{bottom:366.080000pt;}
.y86{bottom:368.960000pt;}
.yf3{bottom:370.240000pt;}
.yc2{bottom:372.160000pt;}
.yeb{bottom:375.680000pt;}
.y9f{bottom:377.600000pt;}
.y118{bottom:378.880000pt;}
.yd7{bottom:382.400000pt;}
.y8f{bottom:385.920000pt;}
.y78{bottom:389.440000pt;}
.ya5{bottom:395.520000pt;}
.y85{bottom:397.120000pt;}
.y29{bottom:397.440000pt;}
.y1a{bottom:402.207680pt;}
.y48{bottom:402.240000pt;}
.y9e{bottom:402.880000pt;}
.y6a{bottom:403.520000pt;}
.y6b{bottom:403.859840pt;}
.yc1{bottom:404.160000pt;}
.ycc{bottom:404.480000pt;}
.y32{bottom:405.760000pt;}
.y9a{bottom:407.680000pt;}
.ye2{bottom:408.640000pt;}
.y117{bottom:409.600000pt;}
.y8{bottom:412.800000pt;}
.y42{bottom:414.400000pt;}
.y14{bottom:414.720000pt;}
.y8e{bottom:417.920000pt;}
.y19{bottom:427.487680pt;}
.y9d{bottom:428.160000pt;}
.ycb{bottom:433.920000pt;}
.y77{bottom:434.560000pt;}
.y28{bottom:436.160000pt;}
.y84{bottom:439.680000pt;}
.y116{bottom:440.320000pt;}
.ye1{bottom:440.640000pt;}
.y30{bottom:441.920000pt;}
.y31{bottom:442.286080pt;}
.y57{bottom:444.480000pt;}
.y41{bottom:446.400000pt;}
.yad{bottom:446.739840pt;}
.y68{bottom:448.960000pt;}
.yb6{bottom:449.195200pt;}
.yc0{bottom:449.280000pt;}
.y69{bottom:449.299840pt;}
.y8d{bottom:449.920000pt;}
.y47{bottom:450.240000pt;}
.y18{bottom:453.087680pt;}
.yea{bottom:453.120000pt;}
.y9c{bottom:453.760000pt;}
.y5f{bottom:461.440000pt;}
.y7{bottom:463.360000pt;}
.yca{bottom:463.673600pt;}
.y1d{bottom:465.280000pt;}
.y115{bottom:465.600000pt;}
.y83{bottom:469.120000pt;}
.yb5{bottom:470.367680pt;}
.y56{bottom:471.040000pt;}
.yb2{bottom:473.247680pt;}
.y76{bottom:473.280000pt;}
.y9b{bottom:480.320000pt;}
.ybf{bottom:481.280000pt;}
.y46{bottom:482.240000pt;}
.y99{bottom:485.120000pt;}
.y2f{bottom:485.760000pt;}
.yb1{bottom:486.047680pt;}
.y5e{bottom:488.320000pt;}
.yc9{bottom:491.200000pt;}
.y40{bottom:491.520000pt;}
.y114{bottom:492.480000pt;}
.y2b{bottom:493.120000pt;}
.y66{bottom:494.400000pt;}
.y67{bottom:494.739840pt;}
.yb4{bottom:495.647680pt;}
.y81{bottom:496.960000pt;}
.y82{bottom:497.273600pt;}
.y100{bottom:499.200000pt;}
.y110{bottom:501.120000pt;}
.y75{bottom:505.280000pt;}
.y25{bottom:509.832000pt;}
.y1b{bottom:510.367680pt;}
.y15{bottom:515.840000pt;}
.y45{bottom:520.960000pt;}
.yb3{bottom:521.247680pt;}
.y3e{bottom:523.520000pt;}
.y3f{bottom:523.859840pt;}
.y80{bottom:526.400000pt;}
.ybe{bottom:526.720000pt;}
.yff{bottom:531.200000pt;}
.yf{bottom:538.240000pt;}
.y16{bottom:548.160000pt;}
.ye{bottom:582.400000pt;}
.yd{bottom:648.000013pt;}
.y65{bottom:649.600013pt;}
.h18{height:43.382355pt;}
.h9{height:55.999997pt;}
.ha{height:57.189536pt;}
.h12{height:58.000000pt;}
.h1a{height:58.333328pt;}
.h1{height:61.562500pt;}
.h1d{height:72.916664pt;}
.h14{height:77.333326pt;}
.h13{height:80.473847pt;}
.h7{height:82.083325pt;}
.h1c{height:82.166663pt;}
.h16{height:85.294116pt;}
.hb{height:85.416670pt;}
.h2{height:87.000000pt;}
.hc{height:87.500000pt;}
.h1e{height:91.833326pt;}
.h11{height:94.771234pt;}
.h10{height:96.666663pt;}
.hd{height:101.281279pt;}
.hf{height:104.248365pt;}
.he{height:106.333326pt;}
.h17{height:108.389536pt;}
.h4{height:116.000000pt;}
.h15{height:130.500000pt;}
.h5{height:135.333372pt;}
.h6{height:143.360041pt;}
.h3{height:154.666628pt;}
.h8{height:158.883325pt;}
.h1b{height:179.200000pt;}
.h19{height:179.520000pt;}
.h0{height:720.000000pt;}
.w1{width:111.360000pt;}
.w2{width:136.960000pt;}
.w4{width:137.600000pt;}
.w3{width:164.480000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x63{left:8.133333pt;}
.x2{left:31.428027pt;}
.x8d{left:33.472120pt;}
.x8f{left:35.031493pt;}
.xb{left:68.401360pt;}
.x16{left:71.081053pt;}
.x51{left:72.550547pt;}
.x17{left:74.908973pt;}
.x66{left:80.119600pt;}
.x80{left:81.783933pt;}
.x62{left:83.200000pt;}
.x7{left:84.219733pt;}
.x9{left:87.550227pt;}
.x1c{left:90.543467pt;}
.x67{left:91.668267pt;}
.x55{left:94.037480pt;}
.x44{left:95.128133pt;}
.x3a{left:103.037053pt;}
.x1{left:107.026987pt;}
.x81{left:109.950587pt;}
.x25{left:112.304040pt;}
.x40{left:114.437053pt;}
.x6b{left:120.608813pt;}
.x6d{left:121.770493pt;}
.x86{left:124.189653pt;}
.x37{left:126.770600pt;}
.x4{left:128.053173pt;}
.x64{left:129.400667pt;}
.x54{left:131.370813pt;}
.x6e{left:133.937200pt;}
.x1a{left:134.832933pt;}
.x8b{left:139.022933pt;}
.x45{left:139.970667pt;}
.x41{left:142.937067pt;}
.x8a{left:148.856267pt;}
.x1b{left:155.046267pt;}
.x33{left:156.283467pt;}
.x22{left:158.770667pt;}
.x58{left:159.664800pt;}
.x8c{left:168.106533pt;}
.x88{left:170.189600pt;}
.x3f{left:172.770533pt;}
.x6a{left:175.855467pt;}
.x34{left:180.283467pt;}
.x7b{left:182.449200pt;}
.x8e{left:184.729200pt;}
.x89{left:186.856267pt;}
.x87{left:188.856267pt;}
.x18{left:191.581467pt;}
.x57{left:194.331467pt;}
.x7f{left:197.786667pt;}
.x70{left:201.270533pt;}
.x59{left:210.840133pt;}
.x6{left:211.978933pt;}
.x6c{left:234.275467pt;}
.x73{left:244.666667pt;}
.x42{left:246.270400pt;}
.x3b{left:254.242133pt;}
.x3d{left:259.937200pt;}
.x7d{left:271.693867pt;}
.x2d{left:282.604000pt;}
.x79{left:298.081467pt;}
.x2c{left:306.270667pt;}
.x53{left:311.270933pt;}
.x2a{left:323.748133pt;}
.x19{left:330.654133pt;}
.x2b{left:333.937333pt;}
.x3{left:339.553200pt;}
.x74{left:353.333333pt;}
.x5c{left:361.181200pt;}
.x82{left:362.461200pt;}
.x21{left:366.137333pt;}
.x5d{left:367.114533pt;}
.x5a{left:369.241200pt;}
.x23{left:373.804000pt;}
.x75{left:377.500000pt;}
.x24{left:381.470667pt;}
.x5b{left:383.994533pt;}
.x6f{left:400.437200pt;}
.x50{left:407.917867pt;}
.x76{left:438.000000pt;}
.x7e{left:441.386000pt;}
.x26{left:460.937333pt;}
.x77{left:463.333333pt;}
.x7c{left:466.615733pt;}
.x65{left:495.040000pt;}
.x5{left:503.478933pt;}
.x60{left:511.957467pt;}
.x61{left:515.517467pt;}
.x5e{left:520.017467pt;}
.x10{left:530.802133pt;}
.x5f{left:534.770667pt;}
.x11{left:537.802133pt;}
.x78{left:540.000000pt;}
.x2e{left:542.270667pt;}
.x3c{left:546.242133pt;}
.x3e{left:553.937200pt;}
.x84{left:600.160667pt;}
.x83{left:630.827333pt;}
.x93{left:656.500000pt;}
.x7a{left:676.766133pt;}
.xd{left:677.669067pt;}
.x1f{left:687.721333pt;}
.x68{left:692.266533pt;}
.x1d{left:693.464800pt;}
.x4b{left:709.152533pt;}
.x85{left:712.827467pt;}
.x69{left:720.799867pt;}
.xc{left:730.588933pt;}
.xe{left:732.758800pt;}
.xf{left:734.070667pt;}
.x43{left:740.174000pt;}
.x35{left:744.360800pt;}
.x36{left:768.360800pt;}
.x72{left:778.276400pt;}
.x71{left:787.109733pt;}
.x39{left:791.166667pt;}
.x52{left:792.437333pt;}
.x92{left:810.166800pt;}
.x95{left:846.000000pt;}
.x20{left:857.028133pt;}
.x1e{left:861.042800pt;}
.x30{left:876.515467pt;}
.x4f{left:888.018000pt;}
.x4d{left:898.018000pt;}
.x27{left:906.770667pt;}
.x47{left:929.829600pt;}
.x94{left:937.333467pt;}
.x48{left:944.329600pt;}
.x4c{left:945.518000pt;}
.x31{left:953.095467pt;}
.x13{left:960.638267pt;}
.x12{left:970.304933pt;}
.x4e{left:975.684533pt;}
.x46{left:980.329600pt;}
.x90{left:989.500000pt;}
.x91{left:996.666800pt;}
.x14{left:1007.804933pt;}
.x4a{left:1013.329600pt;}
.x49{left:1015.162933pt;}
.x28{left:1040.604000pt;}
.xa{left:1055.984400pt;}
.x15{left:1142.638267pt;}
.x8{left:1214.552133pt;}
.x38{left:1241.538800pt;}
.x32{left:1244.705467pt;}
.x56{left:1246.052133pt;}
.x2f{left:1248.718800pt;}
.x29{left:1255.718800pt;}
}




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