
    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_1f46454d67505cfc6e171ca0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_53a28c1c1adb82da12e6cb80.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.188000;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_2ee160d56de0728930d32448.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107910;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_d8858ccc93097331a5ba8eb8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_8f70cbbdba00494356dee812.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_9e5af046215b78732ee9006d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.692383;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_8479e9d04bd114c543f6af49.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_92e1b46a3e33b3571c8df62c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.107910;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_c19aa8226a19fa6d7e97d8f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107910;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_47546eb80f571a8be0f62c18.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.022949;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_c0dfc2b8fd768dffc691389b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.878906;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_06d5348472ee7ee95d058622.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.022949;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_281e7172080566becdf19efc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.665000;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_8cf7621ab34ff3a15db02043.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.578000;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_294cf3a6f39bb493df860800.woff2')format("woff");}.fff{font-family:fff;line-height:0.878906;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_4aad482fa82d923921ca88e3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.692383;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;}
.m5{transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233645,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,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);}
.m7{transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268005,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.379486px;}
.v1{vertical-align:4.080539px;}
.v3{vertical-align:9.521769px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000006px;}
.ls8{letter-spacing:0.000012px;}
.ls3{letter-spacing:0.000066px;}
.ls6{letter-spacing:0.000186px;}
.ls18{letter-spacing:0.137719px;}
.ls24{letter-spacing:0.149196px;}
.ls15{letter-spacing:0.186500px;}
.ls0{letter-spacing:1.778178px;}
.ls4{letter-spacing:4.174686px;}
.ls5{letter-spacing:4.217826px;}
.ls12{letter-spacing:11.762285px;}
.lsf{letter-spacing:13.932193px;}
.ls22{letter-spacing:16.763316px;}
.ls9{letter-spacing:18.586487px;}
.lsa{letter-spacing:18.927227px;}
.ls1{letter-spacing:19.038201px;}
.ls1c{letter-spacing:19.690054px;}
.ls1b{letter-spacing:20.026702px;}
.ls1d{letter-spacing:20.030527px;}
.ls23{letter-spacing:22.160266px;}
.ls19{letter-spacing:22.323811px;}
.ls14{letter-spacing:22.379760px;}
.ls1f{letter-spacing:22.401279px;}
.ls13{letter-spacing:22.487355px;}
.ls17{letter-spacing:22.491659px;}
.ls1a{letter-spacing:22.495963px;}
.ls16{letter-spacing:22.659507px;}
.lse{letter-spacing:24.780635px;}
.ls11{letter-spacing:24.785417px;}
.lsc{letter-spacing:24.828456px;}
.lsd{letter-spacing:24.833238px;}
.lsb{letter-spacing:49.236090px;}
.ls1e{letter-spacing:181.900601px;}
.ls20{letter-spacing:223.059586px;}
.ls10{letter-spacing:274.038732px;}
.ls21{letter-spacing:339.053785px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-47.820600px;}
.ws18{word-spacing:-43.038000px;}
.wsf{word-spacing:-38.256000px;}
.ws14{word-spacing:-30.844287px;}
.ws4c{word-spacing:-24.674733px;}
.wsb{word-spacing:-24.230394px;}
.ws1a{word-spacing:-21.538128px;}
.wse{word-spacing:-21.270336px;}
.ws3{word-spacing:-14.011436px;}
.wsa{word-spacing:-13.437589px;}
.ws16{word-spacing:-12.610134px;}
.ws0{word-spacing:-12.375441px;}
.ws4{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.208832px;}
.ws17{word-spacing:-10.759500px;}
.ws15{word-spacing:-9.563850px;}
.ws7b{word-spacing:-8.070150px;}
.ws19{word-spacing:-1.874568px;}
.wsd{word-spacing:-0.516462px;}
.wsc{word-spacing:0.000000px;}
.ws8{word-spacing:1.570887px;}
.ws81{word-spacing:1.740621px;}
.ws9{word-spacing:1.743039px;}
.ws11{word-spacing:1.860221px;}
.ws6{word-spacing:2.797470px;}
.ws7{word-spacing:2.956711px;}
.ws5{word-spacing:3.021268px;}
.ws10{word-spacing:4.585996px;}
.ws80{word-spacing:11.386085px;}
.ws2{word-spacing:16.182491px;}
.ws12{word-spacing:16.187273px;}
.ws23{word-spacing:22.670150px;}
.ws22{word-spacing:44.207940px;}
.ws7f{word-spacing:45.187278px;}
.ws2f{word-spacing:56.671550px;}
.ws2b{word-spacing:56.778665px;}
.ws30{word-spacing:57.008197px;}
.ws32{word-spacing:57.012023px;}
.ws27{word-spacing:58.262974px;}
.ws26{word-spacing:58.603447px;}
.ws24{word-spacing:58.710562px;}
.ws29{word-spacing:58.836805px;}
.ws44{word-spacing:61.881935px;}
.ws5c{word-spacing:61.885761px;}
.ws2c{word-spacing:62.218583px;}
.ws35{word-spacing:62.455766px;}
.ws2d{word-spacing:62.899529px;}
.ws36{word-spacing:63.584300px;}
.ws37{word-spacing:63.924773px;}
.ws3b{word-spacing:69.938522px;}
.ws25{word-spacing:73.339427px;}
.ws21{word-spacing:76.457242px;}
.ws7d{word-spacing:77.436581px;}
.ws39{word-spacing:78.102225px;}
.ws40{word-spacing:78.209340px;}
.ws48{word-spacing:78.545987px;}
.ws42{word-spacing:78.549813px;}
.ws55{word-spacing:83.423551px;}
.ws43{word-spacing:83.993556px;}
.ws2e{word-spacing:86.262101px;}
.ws3c{word-spacing:86.265927px;}
.ws3a{word-spacing:89.027967px;}
.ws33{word-spacing:89.257499px;}
.ws4b{word-spacing:89.311057px;}
.ws3e{word-spacing:91.476312px;}
.ws2a{word-spacing:94.322514px;}
.ws70{word-spacing:94.877218px;}
.ws28{word-spacing:95.298027px;}
.ws7e{word-spacing:98.974371px;}
.ws34{word-spacing:99.640015px;}
.ws4a{word-spacing:99.980488px;}
.ws61{word-spacing:104.961341px;}
.ws47{word-spacing:105.301814px;}
.ws52{word-spacing:106.560417px;}
.ws3f{word-spacing:107.799892px;}
.ws1c{word-spacing:108.163318px;}
.ws31{word-spacing:108.224527px;}
.ws72{word-spacing:116.415008px;}
.ws54{word-spacing:118.905434px;}
.ws1d{word-spacing:122.662115px;}
.ws1f{word-spacing:123.465478px;}
.ws7c{word-spacing:131.223673px;}
.ws69{word-spacing:139.215226px;}
.ws1e{word-spacing:144.199905px;}
.ws3d{word-spacing:151.743870px;}
.ws38{word-spacing:152.394211px;}
.ws58{word-spacing:160.645901px;}
.ws66{word-spacing:160.753016px;}
.ws41{word-spacing:161.231209px;}
.ws6b{word-spacing:162.363569px;}
.ws45{word-spacing:165.439303px;}
.ws77{word-spacing:168.717791px;}
.ws46{word-spacing:171.024591px;}
.ws4e{word-spacing:180.125551px;}
.ws5f{word-spacing:182.505037px;}
.ws56{word-spacing:182.596850px;}
.ws78{word-spacing:190.148466px;}
.ws67{word-spacing:191.957946px;}
.ws60{word-spacing:204.276185px;}
.ws5a{word-spacing:204.367998px;}
.ws49{word-spacing:204.727599px;}
.ws4d{word-spacing:210.263155px;}
.ws20{word-spacing:210.760475px;}
.ws6c{word-spacing:211.005310px;}
.ws71{word-spacing:211.667128px;}
.ws75{word-spacing:211.774243px;}
.ws7a{word-spacing:211.839278px;}
.ws6d{word-spacing:212.535526px;}
.ws62{word-spacing:212.780360px;}
.ws5e{word-spacing:215.159846px;}
.ws50{word-spacing:215.251659px;}
.ws5b{word-spacing:222.413070px;}
.ws76{word-spacing:222.504883px;}
.ws57{word-spacing:222.646428px;}
.ws51{word-spacing:222.738241px;}
.ws64{word-spacing:225.798673px;}
.ws5d{word-spacing:226.728279px;}
.ws68{word-spacing:226.820092px;}
.ws53{word-spacing:235.465813px;}
.ws6a{word-spacing:235.557625px;}
.ws6f{word-spacing:235.637962px;}
.ws59{word-spacing:235.664741px;}
.ws73{word-spacing:237.022807px;}
.ws74{word-spacing:243.935558px;}
.ws65{word-spacing:243.950860px;}
.ws4f{word-spacing:259.383089px;}
.ws63{word-spacing:259.474902px;}
.ws79{word-spacing:268.656198px;}
.ws1b{word-spacing:344.440145px;}
.ws6e{word-spacing:394.531766px;}
._3{margin-left:-17.343592px;}
._e{margin-left:-12.555654px;}
._f{margin-left:-5.134563px;}
._6{margin-left:-4.024856px;}
._4{margin-left:-2.930879px;}
._1{margin-left:-1.768871px;}
._2{width:1.792096px;}
._0{width:3.308577px;}
._b{width:4.390540px;}
._9{width:5.461113px;}
._8{width:6.604025px;}
._a{width:7.809104px;}
._10{width:8.846811px;}
._5{width:9.870172px;}
._7{width:11.696919px;}
._15{width:12.801575px;}
._13{width:15.082617px;}
._12{width:16.483761px;}
._11{width:17.569288px;}
._14{width:18.688290px;}
._d{width:20.318240px;}
._16{width:21.438708px;}
._1b{width:22.599282px;}
._c{width:23.924646px;}
._18{width:25.488380px;}
._19{width:26.726933px;}
._27{width:27.989397px;}
._17{width:30.193927px;}
._53{width:33.859855px;}
._1a{width:35.272475px;}
._61{width:40.106961px;}
._4c{width:41.985301px;}
._65{width:43.213300px;}
._46{width:50.313502px;}
._28{width:53.372572px;}
._29{width:55.223229px;}
._50{width:56.423597px;}
._a0{width:57.440483px;}
._62{width:58.734890px;}
._60{width:61.193338px;}
._67{width:64.134182px;}
._5c{width:65.174166px;}
._4a{width:66.939299px;}
._48{width:68.614885px;}
._85{width:69.655432px;}
._49{width:70.753362px;}
._47{width:71.901024px;}
._25{width:72.903316px;}
._4b{width:74.054803px;}
._92{width:75.095350px;}
._6a{width:76.588018px;}
._57{width:78.146572px;}
._8e{width:80.435804px;}
._91{width:81.575107px;}
._7a{width:83.079252px;}
._76{width:84.418191px;}
._71{width:85.894142px;}
._56{width:87.151186px;}
._52{width:88.205476px;}
._87{width:89.972875px;}
._75{width:91.350070px;}
._82{width:92.419662px;}
._89{width:95.202388px;}
._88{width:96.770860px;}
._59{width:97.901661px;}
._5d{width:99.480050px;}
._8a{width:100.489285px;}
._90{width:101.694330px;}
._8b{width:102.718016px;}
._8f{width:103.754029px;}
._77{width:105.054713px;}
._7d{width:106.151084px;}
._4f{width:107.216851px;}
._4d{width:109.203865px;}
._58{width:110.401966px;}
._5b{width:112.229867px;}
._7c{width:113.308669px;}
._55{width:115.133452px;}
._93{width:118.339254px;}
._30{width:119.349197px;}
._5a{width:120.587964px;}
._95{width:121.718058px;}
._6d{width:123.193865px;}
._26{width:125.198448px;}
._79{width:127.153299px;}
._6c{width:129.437146px;}
._4e{width:131.082128px;}
._8d{width:132.409590px;}
._2d{width:133.870947px;}
._81{width:134.877064px;}
._74{width:140.228994px;}
._99{width:141.456993px;}
._9b{width:143.174660px;}
._6f{width:145.477635px;}
._8c{width:148.671961px;}
._84{width:151.208294px;}
._51{width:152.283271px;}
._97{width:154.092751px;}
._32{width:155.408737px;}
._94{width:157.596946px;}
._aa{width:158.981791px;}
._9a{width:161.192953px;}
._a7{width:162.386522px;}
._69{width:163.935866px;}
._23{width:166.552535px;}
._9e{width:167.780533px;}
._63{width:170.523445px;}
._96{width:173.970257px;}
._64{width:175.879202px;}
._73{width:177.256396px;}
._a8{width:178.759833px;}
._1e{width:180.018436px;}
._72{width:185.588422px;}
._24{width:187.505018px;}
._21{width:188.855433px;}
._7e{width:192.294594px;}
._9c{width:194.092597px;}
._6b{width:195.159923px;}
._70{width:198.212704px;}
._31{width:202.711539px;}
._80{width:204.345045px;}
._2c{width:205.611298px;}
._6e{width:207.432255px;}
._7f{width:208.667905px;}
._83{width:209.739056px;}
._5f{width:210.760475px;}
._a5{width:212.539351px;}
._98{width:215.439111px;}
._78{width:216.598249px;}
._a2{width:219.846133px;}
._41{width:221.908099px;}
._a9{width:223.442140px;}
._3b{width:225.312829px;}
._ab{width:226.579083px;}
._86{width:228.790245px;}
._20{width:230.580598px;}
._a4{width:231.896584px;}
._a6{width:234.689228px;}
._a3{width:236.219444px;}
._54{width:238.025099px;}
._3e{width:241.686141px;}
._7b{width:243.212531px;}
._1d{width:244.631806px;}
._5e{width:247.500961px;}
._68{width:250.136758px;}
._22{width:251.976843px;}
._a1{width:253.625651px;}
._45{width:255.565200px;}
._40{width:256.873534px;}
._66{width:259.551412px;}
._1f{width:265.442744px;}
._43{width:268.350154px;}
._9f{width:270.764070px;}
._1c{width:273.656178px;}
._37{width:275.465659px;}
._2a{width:278.449580px;}
._34{width:282.772440px;}
._3f{width:286.368448px;}
._2f{width:288.778538px;}
._9d{width:292.722670px;}
._36{width:294.822891px;}
._3a{width:297.615535px;}
._35{width:299.145751px;}
._3c{width:300.216903px;}
._3d{width:301.823629px;}
._2b{width:307.076096px;}
._44{width:319.268092px;}
._42{width:331.892374px;}
._2e{width:333.690378px;}
._33{width:337.982633px;}
._39{width:340.614605px;}
._38{width:350.033084px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:26.761800px;}
.fsc{font-size:28.693800px;}
.fsd{font-size:30.108600px;}
.fse{font-size:32.280600px;}
.fsa{font-size:35.867400px;}
.fs4{font-size:38.255400px;}
.fs9{font-size:38.256000px;}
.fs5{font-size:41.842200px;}
.fs2{font-size:42.237000px;}
.fs6{font-size:43.038000px;}
.fs7{font-size:47.820600px;}
.fsb{font-size:51.168000px;}
.fs1{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fs8{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y86{bottom:47.430000px;}
.yac{bottom:78.416181px;}
.y170{bottom:78.576300px;}
.y16e{bottom:78.577168px;}
.y135{bottom:79.341600px;}
.y133{bottom:79.342986px;}
.y83{bottom:79.351073px;}
.y247{bottom:82.743980px;}
.y230{bottom:82.746958px;}
.y25d{bottom:83.257236px;}
.y16f{bottom:83.848800px;}
.y212{bottom:84.023554px;}
.y134{bottom:84.699150px;}
.y3d8{bottom:84.714987px;}
.y14d{bottom:85.296765px;}
.y298{bottom:88.613328px;}
.y1be{bottom:90.907050px;}
.y1da{bottom:90.907400px;}
.y1bc{bottom:90.907918px;}
.y1ef{bottom:90.993098px;}
.y37e{bottom:92.780007px;}
.y40{bottom:93.494940px;}
.y41{bottom:93.495030px;}
.yab{bottom:94.147962px;}
.y16d{bottom:94.224068px;}
.y132{bottom:95.074768px;}
.y82{bottom:95.082855px;}
.y1bd{bottom:96.179400px;}
.y3d3{bottom:96.700404px;}
.y3d7{bottom:96.705186px;}
.y14c{bottom:98.223265px;}
.y246{bottom:98.392076px;}
.y22f{bottom:98.395054px;}
.y25c{bottom:98.989018px;}
.y211{bottom:99.755336px;}
.y32a{bottom:100.606878px;}
.y302{bottom:101.366850px;}
.y37d{bottom:104.685088px;}
.y297{bottom:105.281206px;}
.y3f{bottom:105.629970px;}
.y1d9{bottom:106.554300px;}
.y1bb{bottom:106.554818px;}
.y1ee{bottom:106.726076px;}
.y3d2{bottom:108.605485px;}
.y3d6{bottom:108.607397px;}
.yaa{bottom:109.794863px;}
.y16c{bottom:109.955850px;}
.y16a{bottom:109.956200px;}
.y182{bottom:109.956917px;}
.y131{bottom:110.721668px;}
.y81{bottom:110.730951px;}
.y14b{bottom:111.063690px;}
.y245{bottom:114.123858px;}
.y22e{bottom:114.126836px;}
.y25b{bottom:114.637114px;}
.y16b{bottom:115.228200px;}
.y210{bottom:115.402236px;}
.y37c{bottom:116.675286px;}
.y329{bottom:117.273800px;}
.y296{bottom:118.122588px;}
.y3d{bottom:119.905636px;}
.y3d1{bottom:120.595683px;}
.y3d5{bottom:120.597596px;}
.y1ba{bottom:122.286600px;}
.y1b8{bottom:122.286968px;}
.y1d8{bottom:122.287658px;}
.y1ed{bottom:122.372976px;}
.y14a{bottom:123.905071px;}
.y376{bottom:125.518658px;}
.ya9{bottom:125.526645px;}
.y169{bottom:125.603100px;}
.y167{bottom:125.603618px;}
.y181{bottom:125.603818px;}
.y130{bottom:126.453450px;}
.y12e{bottom:126.454598px;}
.y80{bottom:126.462733px;}
.y1b9{bottom:127.558950px;}
.y37b{bottom:128.665485px;}
.y244{bottom:129.770758px;}
.y22d{bottom:129.773736px;}
.y328{bottom:130.115181px;}
.y25a{bottom:130.368896px;}
.y168{bottom:130.960500px;}
.y295{bottom:130.963013px;}
.y20f{bottom:131.134018px;}
.y12f{bottom:131.725950px;}
.y3d0{bottom:132.586839px;}
.y3d4{bottom:132.588751px;}
.y3c{bottom:134.192100px;}
.y149{bottom:136.745496px;}
.y1b7{bottom:138.018750px;}
.y1b5{bottom:138.019100px;}
.y1d7{bottom:138.020636px;}
.y1ec{bottom:138.104758px;}
.y37a{bottom:140.571522px;}
.ya8{bottom:141.174740px;}
.y375{bottom:141.251636px;}
.y166{bottom:141.335400px;}
.y164{bottom:141.335600px;}
.y12d{bottom:142.102694px;}
.y7f{bottom:142.109633px;}
.y327{bottom:142.955606px;}
.y1b6{bottom:143.291250px;}
.y294{bottom:143.888556px;}
.y3cf{bottom:144.491919px;}
.y243{bottom:145.502540px;}
.y22c{bottom:145.505518px;}
.y259{bottom:146.015796px;}
.y165{bottom:146.607750px;}
.y20e{bottom:146.866996px;}
.y148{bottom:149.585921px;}
.y379{bottom:152.561721px;}
.y1b4{bottom:153.666000px;}
.y1b2{bottom:153.667258px;}
.y1d6{bottom:153.667536px;}
.y1f6{bottom:153.751658px;}
.y326{bottom:155.796031px;}
.y3ce{bottom:156.482118px;}
.y293{bottom:156.729937px;}
.y374{bottom:156.898536px;}
.ya7{bottom:156.906522px;}
.y163{bottom:156.982500px;}
.y180{bottom:156.983636px;}
.y161{bottom:156.984158px;}
.y12c{bottom:157.834476px;}
.y7e{bottom:157.841415px;}
.y1b3{bottom:158.938500px;}
.y38{bottom:159.703572px;}
.y242{bottom:161.150636px;}
.y22b{bottom:161.153614px;}
.y258{bottom:161.747578px;}
.y162{bottom:162.340500px;}
.y147{bottom:162.427303px;}
.y20d{bottom:162.513896px;}
.y378{bottom:164.466801px;}
.y3cd{bottom:168.388155px;}
.y325{bottom:168.637412px;}
.y1b1{bottom:169.399040px;}
.y1d5{bottom:169.399318px;}
.y1eb{bottom:169.484636px;}
.y292{bottom:169.570362px;}
.ya6{bottom:172.553423px;}
.y373{bottom:172.630318px;}
.y17f{bottom:172.715417px;}
.y160{bottom:172.717136px;}
.y12b{bottom:173.566258px;}
.y7d{bottom:173.574392px;}
.y37{bottom:174.075036px;}
.y146{bottom:175.267728px;}
.y377{bottom:176.457000px;}
.y241{bottom:176.882417px;}
.y22a{bottom:176.885396px;}
.y257{bottom:177.394478px;}
.y20c{bottom:178.245678px;}
.y3cc{bottom:180.378353px;}
.y324{bottom:181.477838px;}
.y291{bottom:182.410787px;}
.y1d4{bottom:185.046218px;}
.y1b0{bottom:185.047136px;}
.y1f5{bottom:185.131536px;}
.y145{bottom:188.109109px;}
.ya5{bottom:188.285205px;}
.y17e{bottom:188.362318px;}
.y15f{bottom:188.364036px;}
.y36{bottom:188.446500px;}
.y12a{bottom:189.213158px;}
.y7c{bottom:189.221293px;}
.y3cb{bottom:192.283434px;}
.y240{bottom:192.529318px;}
.y229{bottom:192.532296px;}
.y256{bottom:193.127456px;}
.y20b{bottom:193.892578px;}
.y323{bottom:194.319219px;}
.y290{bottom:195.252169px;}
.y1d3{bottom:200.778000px;}
.y1af{bottom:200.778917px;}
.y1d1{bottom:200.779318px;}
.y1ea{bottom:200.863318px;}
.y144{bottom:201.034652px;}
.ya4{bottom:203.933300px;}
.y372{bottom:204.009000px;}
.y17d{bottom:204.094100px;}
.y15e{bottom:204.095818px;}
.y3ca{bottom:204.273633px;}
.y129{bottom:204.946136px;}
.y7b{bottom:204.953075px;}
.y1d2{bottom:206.050500px;}
.y322{bottom:207.244762px;}
.y2d9{bottom:207.926969px;}
.y28f{bottom:208.092594px;}
.y23f{bottom:208.261100px;}
.y228{bottom:208.264078px;}
.y255{bottom:208.774356px;}
.y20a{bottom:209.625555px;}
.y143{bottom:213.875077px;}
.y3c9{bottom:216.264788px;}
.y1ae{bottom:216.425818px;}
.y1d0{bottom:216.426218px;}
.y1e9{bottom:216.510218px;}
.ya3{bottom:219.665082px;}
.y17c{bottom:219.741000px;}
.y15d{bottom:219.742718px;}
.y321{bottom:220.085187px;}
.y128{bottom:220.593036px;}
.y7a{bottom:220.599975px;}
.y2d8{bottom:220.768350px;}
.y28e{bottom:220.933975px;}
.y23e{bottom:223.908000px;}
.y23c{bottom:223.909318px;}
.y227{bottom:223.910978px;}
.y254{bottom:224.506138px;}
.y17b{bottom:225.099000px;}
.y209{bottom:225.272456px;}
.y142{bottom:226.716459px;}
.y3c8{bottom:228.169868px;}
.y23d{bottom:229.266000px;}
.y1cd{bottom:232.157540px;}
.y1ad{bottom:232.157600px;}
.y1cf{bottom:232.158000px;}
.y1e8{bottom:232.242000px;}
.y1e6{bottom:232.243318px;}
.y320{bottom:232.926569px;}
.y2d7{bottom:233.608775px;}
.y28d{bottom:233.774400px;}
.ya2{bottom:235.311983px;}
.y15a{bottom:235.474100px;}
.y15c{bottom:235.474500px;}
.y17a{bottom:235.475417px;}
.y127{bottom:236.324818px;}
.y79{bottom:236.332952px;}
.y1ce{bottom:237.430500px;}
.y1e7{bottom:237.514500px;}
.y34{bottom:237.517756px;}
.y141{bottom:239.556884px;}
.y23b{bottom:239.641100px;}
.y226{bottom:239.643956px;}
.y3c7{bottom:240.160067px;}
.y253{bottom:240.239115px;}
.y15b{bottom:240.747000px;}
.y208{bottom:241.004238px;}
.y31f{bottom:245.766994px;}
.y2d6{bottom:246.449200px;}
.y1ac{bottom:247.804500px;}
.y1cc{bottom:247.805636px;}
.y1aa{bottom:247.805818px;}
.y1f4{bottom:247.888900px;}
.y1e5{bottom:247.890218px;}
.ya1{bottom:251.043764px;}
.y159{bottom:251.121000px;}
.y179{bottom:251.122318px;}
.y126{bottom:251.971718px;}
.y78{bottom:251.979853px;}
.y3c6{bottom:252.065147px;}
.y140{bottom:252.397309px;}
.y28c{bottom:253.078075px;}
.y1ab{bottom:253.162500px;}
.y33{bottom:253.249538px;}
.y23a{bottom:255.288000px;}
.y238{bottom:255.288218px;}
.y225{bottom:255.290856px;}
.y252{bottom:255.886016px;}
.y207{bottom:256.651138px;}
.y31e{bottom:258.607419px;}
.y2d5{bottom:259.290582px;}
.y239{bottom:260.646000px;}
.y1cb{bottom:263.537417px;}
.y1a9{bottom:263.537600px;}
.y1f3{bottom:263.620682px;}
.y1e4{bottom:263.622000px;}
.y1e2{bottom:263.623318px;}
.y3c5{bottom:264.056303px;}
.y13f{bottom:265.238690px;}
.y28b{bottom:265.918500px;}
.ya0{bottom:266.691860px;}
.y158{bottom:266.853000px;}
.y156{bottom:266.854100px;}
.y125{bottom:267.703500px;}
.y123{bottom:267.704600px;}
.y77{bottom:267.711635px;}
.y1e3{bottom:268.894500px;}
.y32{bottom:268.897634px;}
.y237{bottom:271.020000px;}
.y235{bottom:271.020917px;}
.y224{bottom:271.022638px;}
.y31d{bottom:271.448800px;}
.y251{bottom:271.617798px;}
.y157{bottom:272.125500px;}
.y2d4{bottom:272.131007px;}
.y206{bottom:272.384115px;}
.y124{bottom:272.976000px;}
.y3c4{bottom:276.046501px;}
.y236{bottom:276.292500px;}
.y371{bottom:276.807700px;}
.y1a6{bottom:279.184318px;}
.y1a8{bottom:279.184500px;}
.y1f2{bottom:279.267583px;}
.y1e1{bottom:279.270218px;}
.y9f{bottom:282.423642px;}
.y155{bottom:282.501000px;}
.y178{bottom:282.501218px;}
.y153{bottom:282.502536px;}
.y122{bottom:283.351500px;}
.y76{bottom:283.358535px;}
.y31c{bottom:284.289225px;}
.y1a7{bottom:284.541000px;}
.y31{bottom:284.629416px;}
.y13b{bottom:284.966575px;}
.y13d{bottom:284.967000px;}
.y2d3{bottom:284.972388px;}
.y234{bottom:286.667818px;}
.y223{bottom:286.669538px;}
.y250{bottom:287.264698px;}
.y154{bottom:287.857500px;}
.y3c3{bottom:287.951582px;}
.y205{bottom:288.031016px;}
.y13c{bottom:289.219500px;}
.y28a{bottom:289.558536px;}
.y370{bottom:289.649082px;}
.y1a5{bottom:294.916100px;}
.y1f1{bottom:294.999364px;}
.y1de{bottom:295.001600px;}
.y1e0{bottom:295.002000px;}
.y31b{bottom:297.130606px;}
.y13a{bottom:297.807000px;}
.y13e{bottom:297.807425px;}
.y2d2{bottom:297.812813px;}
.y9e{bottom:298.070543px;}
.y177{bottom:298.233000px;}
.y175{bottom:298.234100px;}
.y152{bottom:298.234318px;}
.y121{bottom:299.083500px;}
.y11f{bottom:299.084818px;}
.y75{bottom:299.091512px;}
.y3c2{bottom:299.941781px;}
.y1df{bottom:300.274500px;}
.y30{bottom:300.276316px;}
.y233{bottom:302.399600px;}
.y222{bottom:302.402516px;}
.y36f{bottom:302.489507px;}
.y24f{bottom:302.996480px;}
.y176{bottom:303.505500px;}
.y204{bottom:303.762798px;}
.y289{bottom:303.930000px;}
.y120{bottom:304.356000px;}
.y31a{bottom:310.056150px;}
.y1a4{bottom:310.563000px;}
.y1ca{bottom:310.564536px;}
.y1a2{bottom:310.564718px;}
.y1f0{bottom:310.647460px;}
.y1dd{bottom:310.648500px;}
.y2d1{bottom:310.738356px;}
.y3c1{bottom:311.847817px;}
.yb8{bottom:313.802324px;}
.y172{bottom:313.877562px;}
.y174{bottom:313.881000px;}
.y151{bottom:313.881218px;}
.y11e{bottom:314.731718px;}
.y74{bottom:314.738413px;}
.y36e{bottom:315.330888px;}
.y1a3{bottom:315.921000px;}
.y2f{bottom:316.008098px;}
.y139{bottom:317.537608px;}
.y231{bottom:318.046500px;}
.y221{bottom:318.049416px;}
.y24e{bottom:318.644576px;}
.y173{bottom:319.237500px;}
.y203{bottom:319.409698px;}
.y319{bottom:322.896575px;}
.y232{bottom:323.404500px;}
.y2d0{bottom:323.579738px;}
.y3c0{bottom:323.838016px;}
.y19f{bottom:326.296100px;}
.y1c9{bottom:326.296318px;}
.y1a1{bottom:326.296500px;}
.y36d{bottom:328.171313px;}
.y9d{bottom:329.449225px;}
.y171{bottom:329.609344px;}
.y14f{bottom:329.613000px;}
.y11d{bottom:330.463500px;}
.y11b{bottom:330.466996px;}
.y73{bottom:330.470195px;}
.y1a0{bottom:331.569000px;}
.y2e{bottom:331.656194px;}
.y138{bottom:331.909072px;}
.y220{bottom:333.781198px;}
.y24d{bottom:334.376358px;}
.y150{bottom:334.885500px;}
.y202{bottom:335.141480px;}
.y11c{bottom:335.736000px;}
.y318{bottom:335.737956px;}
.y3bf{bottom:335.743097px;}
.y2cf{bottom:336.420163px;}
.y36c{bottom:341.096856px;}
.y19e{bottom:341.943000px;}
.y1c8{bottom:341.943218px;}
.y1f8{bottom:344.325036px;}
.yb7{bottom:345.182202px;}
.y11a{bottom:346.113896px;}
.y72{bottom:346.117095px;}
.y137{bottom:346.280536px;}
.y2d{bottom:347.387976px;}
.y3be{bottom:347.734252px;}
.y317{bottom:348.578381px;}
.y2ce{bottom:349.261544px;}
.y21f{bottom:349.428098px;}
.y24c{bottom:350.023258px;}
.y201{bottom:350.789576px;}
.y36b{bottom:353.938238px;}
.y19d{bottom:357.675000px;}
.y19b{bottom:357.676100px;}
.y1f7{bottom:358.696500px;}
.y3bd{bottom:359.724451px;}
.y136{bottom:360.567000px;}
.yb6{bottom:360.829102px;}
.y316{bottom:361.419762px;}
.y9c{bottom:361.679114px;}
.y119{bottom:361.845678px;}
.y71{bottom:361.848877px;}
.y2cd{bottom:362.101969px;}
.y19c{bottom:362.947500px;}
.y2c{bottom:363.034876px;}
.y18a{bottom:363.289751px;}
.y21e{bottom:365.161076px;}
.y24b{bottom:365.755040px;}
.y200{bottom:366.521358px;}
.y36a{bottom:366.778663px;}
.y288{bottom:367.630775px;}
.y3bc{bottom:371.629531px;}
.y19a{bottom:373.323000px;}
.y198{bottom:373.323218px;}
.y315{bottom:374.260187px;}
.y2cc{bottom:374.942394px;}
.yb5{bottom:376.560884px;}
.y9b{bottom:377.326014px;}
.y118{bottom:377.492578px;}
.y70{bottom:377.496973px;}
.y189{bottom:377.576215px;}
.y199{bottom:378.679500px;}
.y2b{bottom:378.766658px;}
.y369{bottom:379.620044px;}
.y287{bottom:380.471200px;}
.y21d{bottom:380.807976px;}
.y24a{bottom:381.403136px;}
.y1ff{bottom:382.168258px;}
.y3bb{bottom:383.619730px;}
.y314{bottom:387.100613px;}
.y2cb{bottom:387.783775px;}
.y1c7{bottom:389.054600px;}
.y197{bottom:389.055000px;}
.y195{bottom:389.056318px;}
.y188{bottom:391.947679px;}
.yb4{bottom:392.207785px;}
.y368{bottom:392.460469px;}
.y9a{bottom:393.058991px;}
.y117{bottom:393.225555px;}
.y6f{bottom:393.228754px;}
.y286{bottom:393.312582px;}
.y196{bottom:394.327500px;}
.y2a{bottom:394.413559px;}
.yd6{bottom:394.670524px;}
.y3ba{bottom:395.525767px;}
.y21c{bottom:396.539758px;}
.y25f{bottom:397.134917px;}
.y1fe{bottom:397.900040px;}
.y313{bottom:399.941994px;}
.y2ca{bottom:400.624200px;}
.y1c4{bottom:404.698654px;}
.y1c6{bottom:404.701500px;}
.y194{bottom:404.703218px;}
.y367{bottom:405.300894px;}
.y285{bottom:406.153007px;}
.y187{bottom:406.319143px;}
.y3b9{bottom:407.515965px;}
.yb3{bottom:407.940762px;}
.y99{bottom:408.705892px;}
.y116{bottom:408.872456px;}
.y6e{bottom:408.875655px;}
.y1c5{bottom:410.059500px;}
.y29{bottom:410.146536px;}
.yd5{bottom:410.317424px;}
.y21b{bottom:412.186658px;}
.y249{bottom:412.781818px;}
.y312{bottom:412.867537px;}
.y1fd{bottom:413.548136px;}
.y2c9{bottom:413.549744px;}
.y366{bottom:418.142275px;}
.y284{bottom:419.079506px;}
.y3b8{bottom:419.506164px;}
.y1c3{bottom:420.430436px;}
.y193{bottom:420.435000px;}
.y191{bottom:420.435917px;}
.y186{bottom:420.605608px;}
.yb2{bottom:423.587662px;}
.y98{bottom:424.437674px;}
.y115{bottom:424.604238px;}
.y6d{bottom:424.607437px;}
.y192{bottom:425.707500px;}
.y311{bottom:425.708919px;}
.y28{bottom:425.878318px;}
.yd4{bottom:426.049206px;}
.y2c8{bottom:426.391125px;}
.y21a{bottom:427.919636px;}
.y25e{bottom:428.513600px;}
.y1fc{bottom:429.279917px;}
.y365{bottom:430.982700px;}
.y3b7{bottom:431.411245px;}
.y283{bottom:431.919931px;}
.y185{bottom:434.977072px;}
.y1c2{bottom:436.078532px;}
.y190{bottom:436.082818px;}
.y310{bottom:438.549344px;}
.y2c7{bottom:439.231550px;}
.yb1{bottom:439.319444px;}
.y97{bottom:440.084574px;}
.y114{bottom:440.251138px;}
.y6c{bottom:440.255532px;}
.y35{bottom:441.525218px;}
.yd3{bottom:441.696106px;}
.y3b6{bottom:443.402400px;}
.y219{bottom:443.566536px;}
.y364{bottom:443.908244px;}
.y248{bottom:444.160500px;}
.y282{bottom:444.760356px;}
.y1fb{bottom:444.926818px;}
.y184{bottom:449.348536px;}
.y30f{bottom:451.389769px;}
.y1c1{bottom:451.810314px;}
.y18f{bottom:451.814600px;}
.y2c6{bottom:452.072932px;}
.yb0{bottom:454.966345px;}
.y3b5{bottom:455.307480px;}
.y96{bottom:455.817551px;}
.y113{bottom:455.984115px;}
.y6b{bottom:455.987314px;}
.y363{bottom:456.749625px;}
.y27{bottom:457.257000px;}
.y281{bottom:457.601738px;}
.y218{bottom:459.298318px;}
.y1fa{bottom:460.658600px;}
.y183{bottom:463.635000px;}
.y30e{bottom:464.231150px;}
.y2c5{bottom:464.913357px;}
.y3b4{bottom:467.297679px;}
.y1c0{bottom:467.457214px;}
.y18e{bottom:467.461500px;}
.y18c{bottom:467.461718px;}
.y362{bottom:469.590050px;}
.y280{bottom:470.442163px;}
.yaf{bottom:470.699322px;}
.y95{bottom:471.464452px;}
.y112{bottom:471.631016px;}
.y6a{bottom:471.634215px;}
.y18d{bottom:472.818000px;}
.yd2{bottom:473.075984px;}
.y217{bottom:475.030100px;}
.y1f9{bottom:476.305500px;}
.y30d{bottom:477.071575px;}
.y2c4{bottom:477.753782px;}
.y261{bottom:477.837036px;}
.y3b3{bottom:479.288834px;}
.y361{bottom:482.431432px;}
.y1bf{bottom:483.188996px;}
.y18b{bottom:483.193500px;}
.y27f{bottom:483.283544px;}
.yae{bottom:486.346222px;}
.y94{bottom:487.196233px;}
.y111{bottom:487.362798px;}
.y69{bottom:487.365997px;}
.y30c{bottom:489.912000px;}
.y2c3{bottom:490.595163px;}
.y216{bottom:490.677000px;}
.y3b2{bottom:491.193915px;}
.y260{bottom:492.208500px;}
.y360{bottom:495.271857px;}
.y27e{bottom:496.123969px;}
.y93{bottom:502.843134px;}
.y110{bottom:503.009698px;}
.y68{bottom:503.014092px;}
.y3b1{bottom:503.184113px;}
.y2c2{bottom:503.520706px;}
.yd1{bottom:507.175658px;}
.y35f{bottom:508.112282px;}
.y27d{bottom:509.049512px;}
.y30a{bottom:509.216150px;}
.y215{bottom:509.981572px;}
.y30b{bottom:513.468000px;}
.y3b0{bottom:515.089194px;}
.y2c1{bottom:516.362088px;}
.y26{bottom:516.700894px;}
.y1dc{bottom:516.869536px;}
.yad{bottom:517.724904px;}
.y92{bottom:518.576111px;}
.y10f{bottom:518.741480px;}
.y67{bottom:518.745874px;}
.y35e{bottom:520.953663px;}
.y27c{bottom:521.890894px;}
.y308{bottom:522.056575px;}
.yd0{bottom:522.908636px;}
.y214{bottom:524.353036px;}
.y309{bottom:526.308000px;}
.y3af{bottom:527.080349px;}
.y2c0{bottom:529.202513px;}
.y25{bottom:531.072359px;}
.y1db{bottom:531.156000px;}
.y35d{bottom:533.879206px;}
.y91{bottom:534.223011px;}
.y10e{bottom:534.389576px;}
.y66{bottom:534.392775px;}
.y27b{bottom:534.731319px;}
.y307{bottom:534.897000px;}
.ycf{bottom:538.555536px;}
.y213{bottom:538.639500px;}
.y3ae{bottom:538.985429px;}
.y2bf{bottom:542.042938px;}
.y24{bottom:545.443823px;}
.y35c{bottom:546.720588px;}
.y27a{bottom:547.571744px;}
.y90{bottom:549.954793px;}
.y10d{bottom:550.121358px;}
.y65{bottom:550.124557px;}
.y3ad{bottom:550.975628px;}
.yce{bottom:554.287318px;}
.y2be{bottom:554.884319px;}
.y306{bottom:558.539792px;}
.y35b{bottom:559.561013px;}
.y23{bottom:559.730287px;}
.y279{bottom:560.413125px;}
.y3ac{bottom:562.965827px;}
.y8f{bottom:565.601694px;}
.y10c{bottom:565.768258px;}
.y64{bottom:565.771457px;}
.y2bd{bottom:567.724744px;}
.ycd{bottom:569.934218px;}
.y35a{bottom:572.401438px;}
.y305{bottom:572.911256px;}
.y278{bottom:573.253550px;}
.y22{bottom:574.101751px;}
.y3ab{bottom:574.871864px;}
.y2bc{bottom:580.566125px;}
.y8e{bottom:581.333476px;}
.y10b{bottom:581.500040px;}
.y63{bottom:581.504434px;}
.y359{bottom:585.242819px;}
.ycc{bottom:585.666000px;}
.yca{bottom:585.667318px;}
.y277{bottom:586.094932px;}
.y3aa{bottom:586.862062px;}
.y304{bottom:587.197720px;}
.y21{bottom:588.473215px;}
.ycb{bottom:590.938500px;}
.y301{bottom:591.538469px;}
.y2bb{bottom:593.406550px;}
.y8d{bottom:596.981571px;}
.y10a{bottom:597.148136px;}
.y62{bottom:597.151335px;}
.y358{bottom:598.083244px;}
.y3a9{bottom:598.767143px;}
.y1a{bottom:598.933919px;}
.y276{bottom:598.935357px;}
.yc9{bottom:601.314218px;}
.y20{bottom:602.759679px;}
.y300{bottom:604.379850px;}
.y2ba{bottom:606.332094px;}
.y3a8{bottom:610.757342px;}
.y357{bottom:610.924625px;}
.y19{bottom:611.775300px;}
.y275{bottom:611.860900px;}
.y8c{bottom:612.713353px;}
.y109{bottom:612.879917px;}
.y61{bottom:612.883116px;}
.yc8{bottom:617.046000px;}
.yc6{bottom:617.047763px;}
.y1f{bottom:617.131143px;}
.y2ff{bottom:617.305393px;}
.y2b9{bottom:619.173475px;}
.yc7{bottom:622.318500px;}
.y3a7{bottom:622.748497px;}
.y356{bottom:623.765050px;}
.y18{bottom:624.615725px;}
.y274{bottom:624.702281px;}
.y8b{bottom:628.360254px;}
.y108{bottom:628.526818px;}
.y60{bottom:628.530017px;}
.y2fe{bottom:630.145818px;}
.y1e{bottom:631.502608px;}
.y2b8{bottom:632.013900px;}
.yc5{bottom:632.694664px;}
.y3a6{bottom:634.653577px;}
.y355{bottom:636.690594px;}
.y17{bottom:637.456150px;}
.y273{bottom:637.542706px;}
.y303{bottom:642.982500px;}
.y2fd{bottom:642.987200px;}
.y8a{bottom:644.092036px;}
.y107{bottom:644.258600px;}
.y5f{bottom:644.262994px;}
.y1d{bottom:645.874072px;}
.y3a5{bottom:646.643776px;}
.yc4{bottom:648.426445px;}
.y354{bottom:649.531975px;}
.y16{bottom:650.297532px;}
.y272{bottom:650.384088px;}
.y2b7{bottom:651.232457px;}
.y2fc{bottom:655.827625px;}
.y3a4{bottom:658.549813px;}
.y89{bottom:659.740131px;}
.y106{bottom:659.905500px;}
.y104{bottom:659.906818px;}
.y5e{bottom:659.909894px;}
.y1c{bottom:660.160536px;}
.y353{bottom:662.372400px;}
.y15{bottom:663.137957px;}
.y271{bottom:663.224513px;}
.yc3{bottom:664.073346px;}
.y2b6{bottom:664.158000px;}
.y105{bottom:665.263500px;}
.y2fb{bottom:668.669006px;}
.y3a3{bottom:670.540012px;}
.y1b{bottom:674.532000px;}
.y352{bottom:675.212825px;}
.y103{bottom:675.638600px;}
.y5d{bottom:675.641676px;}
.y14{bottom:676.063500px;}
.y270{bottom:676.064938px;}
.yc2{bottom:679.806323px;}
.y2fa{bottom:681.509431px;}
.y3a2{bottom:682.445092px;}
.y2b5{bottom:687.714072px;}
.y26f{bottom:688.906319px;}
.y88{bottom:691.118814px;}
.y102{bottom:691.285500px;}
.y5c{bottom:691.288577px;}
.y2f9{bottom:694.349856px;}
.y3a1{bottom:694.435291px;}
.y351{bottom:694.516500px;}
.yc1{bottom:695.453223px;}
.y26e{bottom:701.746744px;}
.y2b4{bottom:702.085536px;}
.y13{bottom:703.785000px;}
.y3a0{bottom:706.426446px;}
.yff{bottom:707.017318px;}
.y101{bottom:707.017500px;}
.y5b{bottom:707.021554px;}
.y2f8{bottom:707.191238px;}
.y100{bottom:712.290000px;}
.y26d{bottom:714.672287px;}
.y2b3{bottom:716.457000px;}
.y350{bottom:718.074220px;}
.y39f{bottom:718.331527px;}
.y2f7{bottom:720.116781px;}
.y87{bottom:722.498691px;}
.yfe{bottom:722.749100px;}
.y5a{bottom:722.753336px;}
.yc0{bottom:726.831906px;}
.y26c{bottom:727.513669px;}
.y39e{bottom:730.321725px;}
.y34f{bottom:732.445684px;}
.y2f6{bottom:732.957206px;}
.yfd{bottom:738.396000px;}
.yfb{bottom:738.397536px;}
.y59{bottom:738.400236px;}
.y26b{bottom:740.354094px;}
.y39d{bottom:742.226806px;}
.yfc{bottom:743.754000px;}
.y2f5{bottom:745.798587px;}
.y26a{bottom:753.195475px;}
.y12{bottom:753.279000px;}
.yfa{bottom:754.129318px;}
.y58{bottom:754.132018px;}
.y39c{bottom:754.217961px;}
.y11{bottom:757.530000px;}
.y2f4{bottom:758.639012px;}
.y269{bottom:766.035900px;}
.y10{bottom:766.119000px;}
.y39b{bottom:766.208160px;}
.ybe{bottom:769.776000px;}
.yf9{bottom:769.776218px;}
.y57{bottom:769.780114px;}
.yf{bottom:770.371500px;}
.y2f3{bottom:771.480394px;}
.y34e{bottom:774.624000px;}
.ybf{bottom:775.134000px;}
.y39a{bottom:778.113240px;}
.y268{bottom:778.876325px;}
.ye{bottom:778.960500px;}
.y34d{bottom:779.386500px;}
.y2b2{bottom:780.154969px;}
.yd{bottom:783.213000px;}
.y2f2{bottom:784.320819px;}
.ybd{bottom:785.508000px;}
.ybb{bottom:785.509100px;}
.y56{bottom:785.511896px;}
.y34c{bottom:788.910036px;}
.y399{bottom:790.104395px;}
.ybc{bottom:790.780500px;}
.yc{bottom:791.801957px;}
.y2b1{bottom:792.995394px;}
.y2f1{bottom:797.161244px;}
.y267{bottom:798.180000px;}
.yba{bottom:801.156000px;}
.yf8{bottom:801.158576px;}
.y55{bottom:801.158796px;}
.y398{bottom:802.009476px;}
.y34b{bottom:803.281500px;}
.yb{bottom:804.727500px;}
.y2b0{bottom:805.836775px;}
.yb9{bottom:806.514000px;}
.y34a{bottom:808.044000px;}
.ya{bottom:808.980000px;}
.y2f0{bottom:810.002625px;}
.y397{bottom:813.999674px;}
.yf7{bottom:816.890358px;}
.y54{bottom:816.890578px;}
.y9{bottom:817.569000px;}
.y349{bottom:817.653000px;}
.y2af{bottom:818.762319px;}
.y8{bottom:821.820000px;}
.y266{bottom:821.821108px;}
.y348{bottom:822.415500px;}
.y2ef{bottom:822.928168px;}
.y396{bottom:825.904755px;}
.y2ae{bottom:831.602744px;}
.y347{bottom:831.940500px;}
.yf6{bottom:832.537258px;}
.y53{bottom:832.537478px;}
.y2ee{bottom:835.769550px;}
.y265{bottom:836.107572px;}
.y346{bottom:836.787000px;}
.y395{bottom:837.895910px;}
.y7{bottom:842.230500px;}
.y5{bottom:842.232190px;}
.y2ad{bottom:844.444125px;}
.y345{bottom:846.312000px;}
.yf5{bottom:848.269040px;}
.y52{bottom:848.270456px;}
.y2ed{bottom:848.609975px;}
.y6{bottom:849.202500px;}
.y394{bottom:849.886109px;}
.y264{bottom:850.479036px;}
.y344{bottom:851.074500px;}
.y2ac{bottom:857.284550px;}
.y343{bottom:860.683500px;}
.y2ec{bottom:861.450400px;}
.y3{bottom:861.619500px;}
.y393{bottom:861.791189px;}
.yf4{bottom:863.917136px;}
.y51{bottom:863.917356px;}
.y263{bottom:864.850500px;}
.y342{bottom:865.446000px;}
.y4{bottom:868.677000px;}
.y2ab{bottom:870.125932px;}
.y392{bottom:873.781388px;}
.y2eb{bottom:874.291781px;}
.y341{bottom:874.969500px;}
.yf3{bottom:879.648917px;}
.y50{bottom:879.649138px;}
.y340{bottom:879.817500px;}
.y2aa{bottom:882.966357px;}
.y391{bottom:885.687425px;}
.y2ea{bottom:887.132206px;}
.y33f{bottom:889.341000px;}
.y33e{bottom:894.103500px;}
.yf2{bottom:895.295818px;}
.y4f{bottom:895.296038px;}
.y2a9{bottom:895.806782px;}
.y390{bottom:897.677624px;}
.y2{bottom:899.122216px;}
.y2e9{bottom:899.973588px;}
.y33d{bottom:903.714000px;}
.y33c{bottom:908.475000px;}
.y2a8{bottom:908.648163px;}
.y38f{bottom:909.667822px;}
.yf1{bottom:911.027600px;}
.y4e{bottom:911.029016px;}
.y2e8{bottom:912.814013px;}
.y38e{bottom:921.572903px;}
.y2a7{bottom:921.573706px;}
.y262{bottom:921.658340px;}
.y33b{bottom:921.743687px;}
.y1{bottom:924.973500px;}
.y2e7{bottom:925.739556px;}
.yf0{bottom:926.674500px;}
.yee{bottom:926.674718px;}
.y4d{bottom:926.675916px;}
.yef{bottom:932.031000px;}
.y38d{bottom:933.564058px;}
.y2a6{bottom:934.415088px;}
.y33a{bottom:934.584113px;}
.y2e6{bottom:938.580937px;}
.yeb{bottom:942.406100px;}
.yed{bottom:942.406500px;}
.y4c{bottom:942.407698px;}
.y38c{bottom:945.469138px;}
.y2a5{bottom:947.255513px;}
.y339{bottom:947.425494px;}
.yec{bottom:947.679000px;}
.y2e5{bottom:951.421362px;}
.y38b{bottom:957.459337px;}
.yea{bottom:958.053000px;}
.y4b{bottom:958.054598px;}
.ye8{bottom:958.054718px;}
.y2a4{bottom:960.095938px;}
.y338{bottom:960.265919px;}
.ye9{bottom:963.411000px;}
.y2e4{bottom:964.261787px;}
.y38a{bottom:969.365374px;}
.y2a3{bottom:972.937319px;}
.y337{bottom:973.107300px;}
.ye7{bottom:973.786500px;}
.ye5{bottom:973.787417px;}
.y4a{bottom:973.787576px;}
.y2e3{bottom:977.103169px;}
.ye6{bottom:979.059000px;}
.y389{bottom:981.355573px;}
.y2a2{bottom:985.777744px;}
.y336{bottom:985.947725px;}
.ye4{bottom:989.434318px;}
.y49{bottom:989.434476px;}
.y2e2{bottom:989.943594px;}
.y388{bottom:993.345772px;}
.y2a1{bottom:998.619125px;}
.y335{bottom:998.788150px;}
.y2e1{bottom:1002.784975px;}
.y3b{bottom:1003.719000px;}
.ye3{bottom:1005.166100px;}
.y48{bottom:1005.166258px;}
.y387{bottom:1005.250852px;}
.y2a0{bottom:1011.544669px;}
.y334{bottom:1011.714650px;}
.y2e0{bottom:1015.710518px;}
.y386{bottom:1017.242007px;}
.ye2{bottom:1020.813000px;}
.y47{bottom:1020.813158px;}
.ye0{bottom:1020.814536px;}
.y29f{bottom:1024.385094px;}
.y333{bottom:1024.555075px;}
.ye1{bottom:1026.169500px;}
.y385{bottom:1029.147088px;}
.y2df{bottom:1034.929075px;}
.y46{bottom:1036.546136px;}
.ydf{bottom:1036.546318px;}
.y29e{bottom:1037.226475px;}
.y332{bottom:1037.395500px;}
.y384{bottom:1041.137286px;}
.y3a{bottom:1045.474500px;}
.y2de{bottom:1047.769500px;}
.y29d{bottom:1050.066900px;}
.y45{bottom:1052.193036px;}
.yde{bottom:1052.193218px;}
.y383{bottom:1053.127485px;}
.y330{bottom:1056.614532px;}
.y331{bottom:1060.866000px;}
.y382{bottom:1065.033522px;}
.ydb{bottom:1067.924600px;}
.y44{bottom:1067.924818px;}
.ydd{bottom:1067.925000px;}
.y29c{bottom:1069.370575px;}
.y32e{bottom:1069.540075px;}
.y2dd{bottom:1071.412072px;}
.ydc{bottom:1073.197500px;}
.y32f{bottom:1073.791500px;}
.y381{bottom:1077.023721px;}
.y29b{bottom:1082.211000px;}
.y32d{bottom:1082.380500px;}
.yd8{bottom:1083.566914px;}
.yda{bottom:1083.571500px;}
.y43{bottom:1083.571718px;}
.y2dc{bottom:1085.783536px;}
.y39{bottom:1087.312500px;}
.y380{bottom:1088.928801px;}
.yd9{bottom:1088.929500px;}
.yd7{bottom:1099.298696px;}
.y42{bottom:1099.303500px;}
.y2db{bottom:1100.070000px;}
.y37f{bottom:1100.919000px;}
.y29a{bottom:1102.281000px;}
.y32c{bottom:1102.450500px;}
.y3e{bottom:1127.504970px;}
.y2da{bottom:1128.467615px;}
.y85{bottom:1128.629970px;}
.y299{bottom:1128.633240px;}
.y14e{bottom:1128.633420px;}
.y32b{bottom:1128.635635px;}
.y3d9{bottom:1128.640776px;}
.y84{bottom:1128.642000px;}
.h5{height:23.521113px;}
.h10{height:25.219160px;}
.h11{height:26.462637px;}
.h12{height:28.371621px;}
.hd{height:31.524082px;}
.h6{height:33.622910px;}
.hc{height:33.623438px;}
.hb{height:34.478653px;}
.he{height:34.947744px;}
.h13{height:36.224038px;}
.h7{height:36.775371px;}
.h4{height:37.122363px;}
.h8{height:37.826367px;}
.h9{height:42.029824px;}
.h3{height:55.689609px;}
.h2{height:70.925098px;}
.ha{height:73.551270px;}
.h1{height:1190.250000px;}
.hf{height:1190.380500px;}
.h0{height:1190.551500px;}
.w2{width:892.743000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.xe{left:62.758950px;}
.x18{left:63.949500px;}
.x6f{left:65.395200px;}
.xdb{left:70.327277px;}
.x15{left:74.323389px;}
.xff{left:75.939734px;}
.xde{left:82.742111px;}
.x24{left:89.545663px;}
.x2d{left:93.458250px;}
.x2b{left:98.050350px;}
.x70{left:99.070800px;}
.x2e{left:105.448800px;}
.x71{left:108.680250px;}
.x2c{left:109.955850px;}
.xf0{left:115.143300px;}
.x20{left:116.927957px;}
.x2f{left:118.289700px;}
.xda{left:119.563890px;}
.xc8{left:121.691250px;}
.x2{left:127.812702px;}
.x78{left:128.834550px;}
.x36{left:130.195200px;}
.x82{left:134.362200px;}
.x3{left:137.848800px;}
.x79{left:140.740050px;}
.x30{left:142.525950px;}
.xc9{left:146.522700px;}
.xe8{left:148.902913px;}
.xb{left:150.774000px;}
.x7a{left:153.580500px;}
.xbd{left:155.197500px;}
.xf1{left:156.215432px;}
.xca{left:163.105500px;}
.x72{left:165.485409px;}
.x4{left:167.017500px;}
.xc{left:169.993500px;}
.xad{left:172.800000px;}
.xce{left:174.501000px;}
.xa0{left:180.198000px;}
.xae{left:184.705500px;}
.xaa{left:187.596000px;}
.x28{left:192.186822px;}
.xaf{left:197.547000px;}
.x27{left:200.010272px;}
.xa1{left:204.945000px;}
.x89{left:208.686000px;}
.xb0{left:210.132000px;}
.xab{left:212.428500px;}
.xa2{left:216.936000px;}
.x8a{left:220.591500px;}
.xb1{left:222.037500px;}
.xac{left:224.419500px;}
.x100{left:227.903572px;}
.x8b{left:233.433000px;}
.xb2{left:234.879000px;}
.xb4{left:237.004500px;}
.xef{left:239.301000px;}
.xb3{left:240.406500px;}
.x8c{left:245.424000px;}
.x73{left:247.377787px;}
.xb5{left:249.846000px;}
.xf7{left:253.501500px;}
.xcb{left:256.479000px;}
.x85{left:258.009000px;}
.xb6{left:261.835500px;}
.x21{left:263.789802px;}
.xcc{left:268.470000px;}
.x86{left:270.000000px;}
.xcd{left:281.310000px;}
.x87{left:282.841500px;}
.x7e{left:284.967000px;}
.x19{left:286.069694px;}
.x12{left:288.025600px;}
.xd{left:289.134000px;}
.x5{left:291.259500px;}
.x88{left:294.831000px;}
.x7f{left:296.958000px;}
.x74{left:300.529500px;}
.x14{left:302.995500px;}
.x1c{left:305.206500px;}
.xa3{left:308.523000px;}
.x80{left:309.798000px;}
.x6{left:311.244000px;}
.x75{left:312.435000px;}
.xe0{left:315.407628px;}
.x1f{left:321.191259px;}
.x76{left:325.275000px;}
.x81{left:328.081500px;}
.xd0{left:330.799613px;}
.xa4{left:333.268500px;}
.xb9{left:334.459500px;}
.xa6{left:335.650500px;}
.x77{left:337.266000px;}
.x37{left:340.923000px;}
.x1a{left:342.624000px;}
.x31{left:343.899000px;}
.xa5{left:345.259500px;}
.xba{left:346.450500px;}
.xa7{left:347.641500px;}
.x38{left:352.828500px;}
.x32{left:355.890000px;}
.xbb{left:359.292000px;}
.xa8{left:360.481500px;}
.xf2{left:362.692500px;}
.x39{left:365.670000px;}
.x83{left:367.710000px;}
.x33{left:368.730000px;}
.xa9{left:372.387000px;}
.xbc{left:373.747500px;}
.x84{left:380.551500px;}
.x13{left:381.567704px;}
.x1d{left:384.510000px;}
.x8d{left:388.374000px;}
.x34{left:392.967000px;}
.xe1{left:395.259081px;}
.x7b{left:396.283500px;}
.x8e{left:400.365000px;}
.xb7{left:406.233000px;}
.x7c{left:408.189000px;}
.x8f{left:413.206500px;}
.xdc{left:414.647874px;}
.xb8{left:418.224000px;}
.x7d{left:421.030500px;}
.x1b{left:422.391000px;}
.x90{left:425.196000px;}
.xcf{left:426.893913px;}
.x35{left:427.918500px;}
.xe2{left:435.227367px;}
.xe9{left:438.713390px;}
.xd9{left:441.629970px;}
.x26{left:444.315030px;}
.xf3{left:448.497000px;}
.x7{left:460.147500px;}
.xf8{left:467.031383px;}
.xfe{left:468.307201px;}
.xe3{left:475.194696px;}
.x17{left:477.831221px;}
.x8{left:479.112000px;}
.xea{left:481.913301px;}
.xd5{left:487.191000px;}
.xf{left:496.199327px;}
.xd6{left:499.180500px;}
.xdd{left:501.556492px;}
.x55{left:508.875000px;}
.x4c{left:512.958000px;}
.xe4{left:515.162981px;}
.xeb{left:521.115522px;}
.x16{left:522.391651px;}
.x4d{left:524.863500px;}
.x3e{left:527.074500px;}
.x56{left:533.707500px;}
.x67{left:536.769000px;}
.x4e{left:537.789000px;}
.x10{left:539.908990px;}
.x11{left:543.990842px;}
.x3f{left:551.820000px;}
.x22{left:554.366896px;}
.xfa{left:555.981883px;}
.xe5{left:560.233581px;}
.x48{left:564.235500px;}
.xec{left:565.676368px;}
.x40{left:570.358500px;}
.xbe{left:575.206500px;}
.x49{left:576.226500px;}
.x3a{left:579.118500px;}
.xd1{left:586.171181px;}
.xbf{left:588.046500px;}
.x4a{left:589.068000px;}
.x3b{left:591.024000px;}
.x41{left:592.980000px;}
.xd3{left:599.358000px;}
.x4b{left:600.973500px;}
.xc0{left:602.589000px;}
.x3c{left:603.864000px;}
.x42{left:604.885500px;}
.xd7{left:607.947000px;}
.x1e{left:609.314985px;}
.x6c{left:615.769500px;}
.x9{left:616.960500px;}
.x3d{left:619.852500px;}
.x57{left:621.212025px;}
.x9c{left:622.318500px;}
.xfb{left:624.947762px;}
.x29{left:628.604791px;}
.x43{left:629.716500px;}
.x52{left:631.503000px;}
.xc1{left:632.778000px;}
.x9d{left:634.224000px;}
.xa{left:637.114500px;}
.x6d{left:640.516500px;}
.x5d{left:641.877000px;}
.xd2{left:642.982500px;}
.x53{left:644.343000px;}
.x9e{left:647.064000px;}
.xd8{left:650.041500px;}
.x6e{left:652.507500px;}
.x5e{left:654.802500px;}
.x54{left:656.248500px;}
.xc2{left:657.525000px;}
.xfd{left:661.684422px;}
.x9f{left:662.797500px;}
.x5f{left:669.090000px;}
.x63{left:670.960500px;}
.x4f{left:672.066000px;}
.x59{left:680.910000px;}
.x64{left:682.951500px;}
.x50{left:684.057000px;}
.xf4{left:685.332000px;}
.x5a{left:692.901000px;}
.x65{left:695.791500px;}
.x51{left:696.897000px;}
.x96{left:699.024000px;}
.xd4{left:701.149500px;}
.x5b{left:705.741000px;}
.x66{left:707.697000px;}
.x2a{left:709.391717px;}
.x97{left:710.929500px;}
.x58{left:713.478286px;}
.x5c{left:717.732000px;}
.xc7{left:719.943000px;}
.xe6{left:722.231811px;}
.x98{left:723.769500px;}
.xdf{left:727.843878px;}
.x25{left:730.215000px;}
.x44{left:731.338500px;}
.x99{left:735.760500px;}
.x94{left:738.907500px;}
.xfc{left:740.345176px;}
.x45{left:743.329500px;}
.x95{left:750.813000px;}
.x46{left:756.169500px;}
.x68{left:757.275000px;}
.xf9{left:760.839550px;}
.x23{left:763.816342px;}
.xed{left:765.771238px;}
.x47{left:768.160500px;}
.x69{left:769.180500px;}
.xc3{left:773.688000px;}
.xf5{left:778.705500px;}
.x91{left:779.896500px;}
.x6a{left:782.022000px;}
.xc4{left:785.593500px;}
.x92{left:792.736500px;}
.x6b{left:797.244000px;}
.xc5{left:798.435000px;}
.x60{left:799.710000px;}
.xe7{left:803.783716px;}
.xee{left:804.889297px;}
.xf6{left:807.024000px;}
.x93{left:808.809000px;}
.xc6{left:810.424500px;}
.x61{left:811.701000px;}
.x9a{left:821.224500px;}
.x62{left:824.541000px;}
.x9b{left:833.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.115099pt;}
.v1{vertical-align:3.627145pt;}
.v3{vertical-align:8.463795pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000005pt;}
.ls8{letter-spacing:0.000011pt;}
.ls3{letter-spacing:0.000059pt;}
.ls6{letter-spacing:0.000165pt;}
.ls18{letter-spacing:0.122417pt;}
.ls24{letter-spacing:0.132619pt;}
.ls15{letter-spacing:0.165778pt;}
.ls0{letter-spacing:1.580602pt;}
.ls4{letter-spacing:3.710832pt;}
.ls5{letter-spacing:3.749179pt;}
.ls12{letter-spacing:10.455365pt;}
.lsf{letter-spacing:12.384172pt;}
.ls22{letter-spacing:14.900725pt;}
.ls9{letter-spacing:16.521321pt;}
.lsa{letter-spacing:16.824202pt;}
.ls1{letter-spacing:16.922845pt;}
.ls1c{letter-spacing:17.502271pt;}
.ls1b{letter-spacing:17.801513pt;}
.ls1d{letter-spacing:17.804913pt;}
.ls23{letter-spacing:19.698014pt;}
.ls19{letter-spacing:19.843387pt;}
.ls14{letter-spacing:19.893120pt;}
.ls1f{letter-spacing:19.912248pt;}
.ls13{letter-spacing:19.988760pt;}
.ls17{letter-spacing:19.992586pt;}
.ls1a{letter-spacing:19.996411pt;}
.ls16{letter-spacing:20.141784pt;}
.lse{letter-spacing:22.027231pt;}
.ls11{letter-spacing:22.031482pt;}
.lsc{letter-spacing:22.069738pt;}
.lsd{letter-spacing:22.073989pt;}
.lsb{letter-spacing:43.765413pt;}
.ls1e{letter-spacing:161.689424pt;}
.ls20{letter-spacing:198.275188pt;}
.ls10{letter-spacing:243.589984pt;}
.ls21{letter-spacing:301.381142pt;}
.ws13{word-spacing:-42.507200pt;}
.ws18{word-spacing:-38.256000pt;}
.wsf{word-spacing:-34.005333pt;}
.ws14{word-spacing:-27.417144pt;}
.ws4c{word-spacing:-21.933096pt;}
.wsb{word-spacing:-21.538128pt;}
.ws1a{word-spacing:-19.145003pt;}
.wse{word-spacing:-18.906965pt;}
.ws3{word-spacing:-12.454610pt;}
.wsa{word-spacing:-11.944523pt;}
.ws16{word-spacing:-11.209008pt;}
.ws0{word-spacing:-11.000392pt;}
.ws4{word-spacing:-10.626800pt;}
.ws1{word-spacing:-9.963406pt;}
.ws17{word-spacing:-9.564000pt;}
.ws15{word-spacing:-8.501200pt;}
.ws7b{word-spacing:-7.173467pt;}
.ws19{word-spacing:-1.666282pt;}
.wsd{word-spacing:-0.459078pt;}
.wsc{word-spacing:0.000000pt;}
.ws8{word-spacing:1.396344pt;}
.ws81{word-spacing:1.547218pt;}
.ws9{word-spacing:1.549368pt;}
.ws11{word-spacing:1.653530pt;}
.ws6{word-spacing:2.486640pt;}
.ws7{word-spacing:2.628187pt;}
.ws5{word-spacing:2.685571pt;}
.ws10{word-spacing:4.076440pt;}
.ws80{word-spacing:10.120964pt;}
.ws2{word-spacing:14.384436pt;}
.ws12{word-spacing:14.388687pt;}
.ws23{word-spacing:20.151244pt;}
.ws22{word-spacing:39.295947pt;}
.ws7f{word-spacing:40.166470pt;}
.ws2f{word-spacing:50.374711pt;}
.ws2b{word-spacing:50.469924pt;}
.ws30{word-spacing:50.673953pt;}
.ws32{word-spacing:50.677353pt;}
.ws27{word-spacing:51.789310pt;}
.ws26{word-spacing:52.091953pt;}
.ws24{word-spacing:52.187167pt;}
.ws29{word-spacing:52.299382pt;}
.ws44{word-spacing:55.006164pt;}
.ws5c{word-spacing:55.009565pt;}
.ws2c{word-spacing:55.305407pt;}
.ws35{word-spacing:55.516236pt;}
.ws2d{word-spacing:55.910692pt;}
.ws36{word-spacing:56.519378pt;}
.ws37{word-spacing:56.822021pt;}
.ws3b{word-spacing:62.167575pt;}
.ws25{word-spacing:65.190602pt;}
.ws21{word-spacing:67.961993pt;}
.ws7d{word-spacing:68.832516pt;}
.ws39{word-spacing:69.424200pt;}
.ws40{word-spacing:69.519413pt;}
.ws48{word-spacing:69.818655pt;}
.ws42{word-spacing:69.822056pt;}
.ws55{word-spacing:74.154267pt;}
.ws43{word-spacing:74.660939pt;}
.ws2e{word-spacing:76.677424pt;}
.ws3c{word-spacing:76.680824pt;}
.ws3a{word-spacing:79.135971pt;}
.ws33{word-spacing:79.339999pt;}
.ws4b{word-spacing:79.387606pt;}
.ws3e{word-spacing:81.312278pt;}
.ws2a{word-spacing:83.842235pt;}
.ws70{word-spacing:84.335304pt;}
.ws28{word-spacing:84.709357pt;}
.ws7e{word-spacing:87.977219pt;}
.ws34{word-spacing:88.568902pt;}
.ws4a{word-spacing:88.871545pt;}
.ws61{word-spacing:93.298970pt;}
.ws47{word-spacing:93.601612pt;}
.ws52{word-spacing:94.720370pt;}
.ws3f{word-spacing:95.822126pt;}
.ws1c{word-spacing:96.145172pt;}
.ws31{word-spacing:96.199579pt;}
.ws72{word-spacing:103.480007pt;}
.ws54{word-spacing:105.693719pt;}
.ws1d{word-spacing:109.032991pt;}
.ws1f{word-spacing:109.747092pt;}
.ws7c{word-spacing:116.643265pt;}
.ws69{word-spacing:123.746868pt;}
.ws1e{word-spacing:128.177693pt;}
.ws3d{word-spacing:134.883440pt;}
.ws38{word-spacing:135.461521pt;}
.ws58{word-spacing:142.796357pt;}
.ws66{word-spacing:142.891570pt;}
.ws41{word-spacing:143.316630pt;}
.ws6b{word-spacing:144.323172pt;}
.ws45{word-spacing:147.057158pt;}
.ws77{word-spacing:149.971369pt;}
.ws46{word-spacing:152.021859pt;}
.ws4e{word-spacing:160.111601pt;}
.ws5f{word-spacing:162.226699pt;}
.ws56{word-spacing:162.308311pt;}
.ws78{word-spacing:169.020858pt;}
.ws67{word-spacing:170.629285pt;}
.ws60{word-spacing:181.578831pt;}
.ws5a{word-spacing:181.660443pt;}
.ws49{word-spacing:181.980088pt;}
.ws4d{word-spacing:186.900582pt;}
.ws20{word-spacing:187.342645pt;}
.ws6c{word-spacing:187.560275pt;}
.ws71{word-spacing:188.148558pt;}
.ws75{word-spacing:188.243772pt;}
.ws7a{word-spacing:188.301580pt;}
.ws6d{word-spacing:188.920467pt;}
.ws62{word-spacing:189.138098pt;}
.ws5e{word-spacing:191.253197pt;}
.ws50{word-spacing:191.334808pt;}
.ws5b{word-spacing:197.700507pt;}
.ws76{word-spacing:197.782118pt;}
.ws57{word-spacing:197.907936pt;}
.ws51{word-spacing:197.989548pt;}
.ws64{word-spacing:200.709932pt;}
.ws5d{word-spacing:201.536248pt;}
.ws68{word-spacing:201.617860pt;}
.ws53{word-spacing:209.302944pt;}
.ws6a{word-spacing:209.384556pt;}
.ws6f{word-spacing:209.455966pt;}
.ws59{word-spacing:209.479769pt;}
.ws73{word-spacing:210.686940pt;}
.ws74{word-spacing:216.831607pt;}
.ws65{word-spacing:216.845209pt;}
.ws4f{word-spacing:230.562745pt;}
.ws63{word-spacing:230.644357pt;}
.ws79{word-spacing:238.805509pt;}
.ws1b{word-spacing:306.169018pt;}
.ws6e{word-spacing:350.694903pt;}
._3{margin-left:-15.416526pt;}
._e{margin-left:-11.160581pt;}
._f{margin-left:-4.564056pt;}
._6{margin-left:-3.577649pt;}
._4{margin-left:-2.605226pt;}
._1{margin-left:-1.572329pt;}
._2{width:1.592974pt;}
._0{width:2.940957pt;}
._b{width:3.902702pt;}
._9{width:4.854322pt;}
._8{width:5.870244pt;}
._a{width:6.941426pt;}
._10{width:7.863832pt;}
._5{width:8.773486pt;}
._7{width:10.397261pt;}
._15{width:11.379177pt;}
._13{width:13.406771pt;}
._12{width:14.652232pt;}
._11{width:15.617145pt;}
._14{width:16.611814pt;}
._d{width:18.060658pt;}
._16{width:19.056629pt;}
._1b{width:20.088251pt;}
._c{width:21.266352pt;}
._18{width:22.656338pt;}
._19{width:23.757274pt;}
._27{width:24.879464pt;}
._17{width:26.839046pt;}
._53{width:30.097648pt;}
._1a{width:31.353311pt;}
._61{width:35.650632pt;}
._4c{width:37.320268pt;}
._65{width:38.411822pt;}
._46{width:44.723113pt;}
._28{width:47.442286pt;}
._29{width:49.087315pt;}
._50{width:50.154308pt;}
._a0{width:51.058207pt;}
._62{width:52.208791pt;}
._60{width:54.394078pt;}
._67{width:57.008162pt;}
._5c{width:57.932592pt;}
._4a{width:59.501599pt;}
._48{width:60.991009pt;}
._85{width:61.915940pt;}
._49{width:62.891878pt;}
._47{width:63.912022pt;}
._25{width:64.802947pt;}
._4b{width:65.826492pt;}
._92{width:66.751422pt;}
._6a{width:68.078239pt;}
._57{width:69.463620pt;}
._8e{width:71.498492pt;}
._91{width:72.511207pt;}
._7a{width:73.848224pt;}
._76{width:75.038392pt;}
._71{width:76.350348pt;}
._56{width:77.467721pt;}
._52{width:78.404867pt;}
._87{width:79.975889pt;}
._75{width:81.200062pt;}
._82{width:82.150811pt;}
._89{width:84.624345pt;}
._88{width:86.018542pt;}
._59{width:87.023698pt;}
._5d{width:88.426711pt;}
._8a{width:89.323809pt;}
._90{width:90.394960pt;}
._8b{width:91.304903pt;}
._8f{width:92.225804pt;}
._77{width:93.381967pt;}
._7d{width:94.356519pt;}
._4f{width:95.303867pt;}
._4d{width:97.070102pt;}
._58{width:98.135081pt;}
._5b{width:99.759882pt;}
._7c{width:100.718817pt;}
._55{width:102.340846pt;}
._93{width:105.190448pt;}
._30{width:106.088175pt;}
._5a{width:107.189302pt;}
._95{width:108.193829pt;}
._6d{width:109.505657pt;}
._26{width:111.287509pt;}
._79{width:113.025154pt;}
._6c{width:115.055241pt;}
._4e{width:116.517447pt;}
._8d{width:117.697414pt;}
._2d{width:118.996397pt;}
._81{width:119.890723pt;}
._74{width:124.647995pt;}
._99{width:125.739549pt;}
._9b{width:127.266364pt;}
._6f{width:129.313453pt;}
._8c{width:132.152854pt;}
._84{width:134.407372pt;}
._51{width:135.362907pt;}
._97{width:136.971334pt;}
._32{width:138.141100pt;}
._94{width:140.086174pt;}
._aa{width:141.317148pt;}
._9a{width:143.282625pt;}
._a7{width:144.343575pt;}
._69{width:145.720769pt;}
._23{width:148.046698pt;}
._9e{width:149.138252pt;}
._63{width:151.576396pt;}
._96{width:154.640228pt;}
._64{width:156.337068pt;}
._73{width:157.561241pt;}
._a8{width:158.897629pt;}
._1e{width:160.016387pt;}
._72{width:164.967486pt;}
._24{width:166.671127pt;}
._21{width:167.871496pt;}
._7e{width:170.928528pt;}
._9c{width:172.526753pt;}
._6b{width:173.475487pt;}
._70{width:176.189070pt;}
._31{width:180.188035pt;}
._80{width:181.640040pt;}
._2c{width:182.765599pt;}
._6e{width:184.384227pt;}
._7f{width:185.482582pt;}
._83{width:186.434716pt;}
._5f{width:187.342645pt;}
._a5{width:188.923868pt;}
._98{width:191.501432pt;}
._78{width:192.531777pt;}
._a2{width:195.418785pt;}
._41{width:197.251643pt;}
._a9{width:198.615236pt;}
._3b{width:200.278071pt;}
._ab{width:201.403629pt;}
._86{width:203.369107pt;}
._20{width:204.960532pt;}
._a4{width:206.130297pt;}
._a6{width:208.612647pt;}
._a3{width:209.972839pt;}
._54{width:211.577866pt;}
._3e{width:214.832125pt;}
._7b{width:216.188916pt;}
._1d{width:217.450495pt;}
._5e{width:220.000855pt;}
._68{width:222.343785pt;}
._22{width:223.979416pt;}
._a1{width:225.445023pt;}
._45{width:227.169066pt;}
._40{width:228.332031pt;}
._66{width:230.712367pt;}
._1f{width:235.949106pt;}
._43{width:238.533471pt;}
._9f{width:240.679173pt;}
._1c{width:243.249936pt;}
._37{width:244.858363pt;}
._2a{width:247.510738pt;}
._34{width:251.353280pt;}
._3f{width:254.549731pt;}
._2f{width:256.692034pt;}
._9d{width:260.197929pt;}
._36{width:262.064792pt;}
._3a{width:264.547143pt;}
._35{width:265.907335pt;}
._3c{width:266.859469pt;}
._3d{width:268.287671pt;}
._2b{width:272.956530pt;}
._44{width:283.793859pt;}
._42{width:295.015443pt;}
._2e{width:296.613669pt;}
._33{width:300.429008pt;}
._39{width:302.768538pt;}
._38{width:311.140520pt;}
.fs3{font-size:23.788267pt;}
.fsc{font-size:25.505600pt;}
.fsd{font-size:26.763200pt;}
.fse{font-size:28.693867pt;}
.fsa{font-size:31.882133pt;}
.fs4{font-size:34.004800pt;}
.fs9{font-size:34.005333pt;}
.fs5{font-size:37.193067pt;}
.fs2{font-size:37.544000pt;}
.fs6{font-size:38.256000pt;}
.fs7{font-size:42.507200pt;}
.fsb{font-size:45.482667pt;}
.fs1{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fs8{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:42.160000pt;}
.yac{bottom:69.703272pt;}
.y170{bottom:69.845600pt;}
.y16e{bottom:69.846371pt;}
.y135{bottom:70.525867pt;}
.y133{bottom:70.527099pt;}
.y83{bottom:70.534287pt;}
.y247{bottom:73.550204pt;}
.y230{bottom:73.552852pt;}
.y25d{bottom:74.006432pt;}
.y16f{bottom:74.532267pt;}
.y212{bottom:74.687604pt;}
.y134{bottom:75.288133pt;}
.y3d8{bottom:75.302211pt;}
.y14d{bottom:75.819347pt;}
.y298{bottom:78.767403pt;}
.y1be{bottom:80.806267pt;}
.y1da{bottom:80.806577pt;}
.y1bc{bottom:80.807038pt;}
.y1ef{bottom:80.882754pt;}
.y37e{bottom:82.471118pt;}
.y40{bottom:83.106613pt;}
.y41{bottom:83.106693pt;}
.yab{bottom:83.687078pt;}
.y16d{bottom:83.754727pt;}
.y132{bottom:84.510905pt;}
.y82{bottom:84.518093pt;}
.y1bd{bottom:85.492800pt;}
.y3d3{bottom:85.955915pt;}
.y3d7{bottom:85.960165pt;}
.y14c{bottom:87.309569pt;}
.y246{bottom:87.459623pt;}
.y22f{bottom:87.462270pt;}
.y25c{bottom:87.990238pt;}
.y211{bottom:88.671410pt;}
.y32a{bottom:89.428336pt;}
.y302{bottom:90.103867pt;}
.y37d{bottom:93.053411pt;}
.y297{bottom:93.583294pt;}
.y3f{bottom:93.893307pt;}
.y1d9{bottom:94.714933pt;}
.y1bb{bottom:94.715394pt;}
.y1ee{bottom:94.867623pt;}
.y3d2{bottom:96.538209pt;}
.y3d6{bottom:96.539909pt;}
.yaa{bottom:97.595434pt;}
.y16c{bottom:97.738533pt;}
.y16a{bottom:97.738844pt;}
.y182{bottom:97.739482pt;}
.y131{bottom:98.419261pt;}
.y81{bottom:98.427512pt;}
.y14b{bottom:98.723280pt;}
.y245{bottom:101.443429pt;}
.y22e{bottom:101.446076pt;}
.y25b{bottom:101.899657pt;}
.y16b{bottom:102.425067pt;}
.y210{bottom:102.579766pt;}
.y37c{bottom:103.711366pt;}
.y329{bottom:104.243377pt;}
.y296{bottom:104.997856pt;}
.y3d{bottom:106.582787pt;}
.y3d1{bottom:107.196163pt;}
.y3d5{bottom:107.197863pt;}
.y1ba{bottom:108.699200pt;}
.y1b8{bottom:108.699527pt;}
.y1d8{bottom:108.700141pt;}
.y1ed{bottom:108.775979pt;}
.y14a{bottom:110.137841pt;}
.y376{bottom:111.572141pt;}
.ya9{bottom:111.579240pt;}
.y169{bottom:111.647200pt;}
.y167{bottom:111.647661pt;}
.y181{bottom:111.647838pt;}
.y130{bottom:112.403067pt;}
.y12e{bottom:112.404087pt;}
.y80{bottom:112.411318pt;}
.y1b9{bottom:113.385733pt;}
.y37b{bottom:114.369320pt;}
.y244{bottom:115.351785pt;}
.y22d{bottom:115.354432pt;}
.y328{bottom:115.657939pt;}
.y25a{bottom:115.883463pt;}
.y168{bottom:116.409333pt;}
.y295{bottom:116.411567pt;}
.y20f{bottom:116.563572pt;}
.y12f{bottom:117.089733pt;}
.y3d0{bottom:117.854968pt;}
.y3d4{bottom:117.856668pt;}
.y3c{bottom:119.281867pt;}
.y149{bottom:121.551552pt;}
.y1b7{bottom:122.683333pt;}
.y1b5{bottom:122.683644pt;}
.y1d7{bottom:122.685009pt;}
.y1ec{bottom:122.759785pt;}
.y37a{bottom:124.952464pt;}
.ya8{bottom:125.488658pt;}
.y375{bottom:125.557009pt;}
.y166{bottom:125.631467pt;}
.y164{bottom:125.631644pt;}
.y12d{bottom:126.313506pt;}
.y7f{bottom:126.319674pt;}
.y327{bottom:127.071650pt;}
.y1b6{bottom:127.370000pt;}
.y294{bottom:127.900939pt;}
.y3cf{bottom:128.437261pt;}
.y243{bottom:129.335591pt;}
.y22c{bottom:129.338238pt;}
.y259{bottom:129.791819pt;}
.y165{bottom:130.318000pt;}
.y20e{bottom:130.548441pt;}
.y148{bottom:132.965263pt;}
.y379{bottom:135.610418pt;}
.y1b4{bottom:136.592000pt;}
.y1b2{bottom:136.593118pt;}
.y1d6{bottom:136.593365pt;}
.y1f6{bottom:136.668141pt;}
.y326{bottom:138.485361pt;}
.y3ce{bottom:139.095216pt;}
.y293{bottom:139.315500pt;}
.y374{bottom:139.465365pt;}
.ya7{bottom:139.472464pt;}
.y163{bottom:139.540000pt;}
.y180{bottom:139.541009pt;}
.y161{bottom:139.541474pt;}
.y12c{bottom:140.297312pt;}
.y7e{bottom:140.303480pt;}
.y1b3{bottom:141.278667pt;}
.y38{bottom:141.958730pt;}
.y242{bottom:143.245009pt;}
.y22b{bottom:143.247657pt;}
.y258{bottom:143.775625pt;}
.y162{bottom:144.302667pt;}
.y147{bottom:144.379825pt;}
.y20d{bottom:144.456796pt;}
.y378{bottom:146.192712pt;}
.y3cd{bottom:149.678360pt;}
.y325{bottom:149.899922pt;}
.y1b1{bottom:150.576924pt;}
.y1d5{bottom:150.577171pt;}
.y1eb{bottom:150.653009pt;}
.y292{bottom:150.729211pt;}
.ya6{bottom:153.380820pt;}
.y373{bottom:153.449171pt;}
.y17f{bottom:153.524816pt;}
.y160{bottom:153.526343pt;}
.y12b{bottom:154.281118pt;}
.y7d{bottom:154.288349pt;}
.y37{bottom:154.733365pt;}
.y146{bottom:155.793536pt;}
.y377{bottom:156.850667pt;}
.y241{bottom:157.228816pt;}
.y22a{bottom:157.231463pt;}
.y257{bottom:157.683981pt;}
.y20c{bottom:158.440602pt;}
.y3cc{bottom:160.336314pt;}
.y324{bottom:161.313633pt;}
.y291{bottom:162.142922pt;}
.y1d4{bottom:164.485527pt;}
.y1b0{bottom:164.486343pt;}
.y1f5{bottom:164.561365pt;}
.y145{bottom:167.208097pt;}
.ya5{bottom:167.364626pt;}
.y17e{bottom:167.433171pt;}
.y15f{bottom:167.434699pt;}
.y36{bottom:167.508000pt;}
.y12a{bottom:168.189474pt;}
.y7c{bottom:168.196705pt;}
.y3cb{bottom:170.918608pt;}
.y240{bottom:171.137171pt;}
.y229{bottom:171.139819pt;}
.y256{bottom:171.668850pt;}
.y20b{bottom:172.348958pt;}
.y323{bottom:172.728195pt;}
.y290{bottom:173.557483pt;}
.y1d3{bottom:178.469333pt;}
.y1af{bottom:178.470149pt;}
.y1d1{bottom:178.470505pt;}
.y1ea{bottom:178.545171pt;}
.y144{bottom:178.697469pt;}
.ya4{bottom:181.274045pt;}
.y372{bottom:181.341333pt;}
.y17d{bottom:181.416977pt;}
.y15e{bottom:181.418505pt;}
.y3ca{bottom:181.576562pt;}
.y129{bottom:182.174343pt;}
.y7b{bottom:182.180511pt;}
.y1d2{bottom:183.156000pt;}
.y322{bottom:184.217566pt;}
.y2d9{bottom:184.823972pt;}
.y28f{bottom:184.971194pt;}
.y23f{bottom:185.120977pt;}
.y228{bottom:185.123625pt;}
.y255{bottom:185.577205pt;}
.y20a{bottom:186.333827pt;}
.y143{bottom:190.111180pt;}
.y3c9{bottom:192.235367pt;}
.y1ae{bottom:192.378505pt;}
.y1d0{bottom:192.378861pt;}
.y1e9{bottom:192.453527pt;}
.ya3{bottom:195.257851pt;}
.y17c{bottom:195.325333pt;}
.y15d{bottom:195.326861pt;}
.y321{bottom:195.631277pt;}
.y128{bottom:196.082699pt;}
.y7a{bottom:196.088867pt;}
.y2d8{bottom:196.238533pt;}
.y28e{bottom:196.385756pt;}
.y23e{bottom:199.029333pt;}
.y23c{bottom:199.030505pt;}
.y227{bottom:199.031981pt;}
.y254{bottom:199.561012pt;}
.y17b{bottom:200.088000pt;}
.y209{bottom:200.242183pt;}
.y142{bottom:201.525741pt;}
.y3c8{bottom:202.817661pt;}
.y23d{bottom:203.792000pt;}
.y1cd{bottom:206.362258pt;}
.y1ad{bottom:206.362311pt;}
.y1cf{bottom:206.362667pt;}
.y1e8{bottom:206.437333pt;}
.y1e6{bottom:206.438505pt;}
.y320{bottom:207.045839pt;}
.y2d7{bottom:207.652245pt;}
.y28d{bottom:207.799467pt;}
.ya2{bottom:209.166207pt;}
.y15a{bottom:209.310311pt;}
.y15c{bottom:209.310667pt;}
.y17a{bottom:209.311482pt;}
.y127{bottom:210.066505pt;}
.y79{bottom:210.073735pt;}
.y1ce{bottom:211.049333pt;}
.y1e7{bottom:211.124000pt;}
.y34{bottom:211.126895pt;}
.y141{bottom:212.939452pt;}
.y23b{bottom:213.014311pt;}
.y226{bottom:213.016850pt;}
.y3c7{bottom:213.475615pt;}
.y253{bottom:213.545880pt;}
.y15b{bottom:213.997333pt;}
.y208{bottom:214.225989pt;}
.y31f{bottom:218.459550pt;}
.y2d6{bottom:219.065956pt;}
.y1ac{bottom:220.270667pt;}
.y1cc{bottom:220.271676pt;}
.y1aa{bottom:220.271838pt;}
.y1f4{bottom:220.345689pt;}
.y1e5{bottom:220.346861pt;}
.ya1{bottom:223.150013pt;}
.y159{bottom:223.218667pt;}
.y179{bottom:223.219838pt;}
.y126{bottom:223.974861pt;}
.y78{bottom:223.982091pt;}
.y3c6{bottom:224.057909pt;}
.y140{bottom:224.353163pt;}
.y28c{bottom:224.958289pt;}
.y1ab{bottom:225.033333pt;}
.y33{bottom:225.110701pt;}
.y23a{bottom:226.922667pt;}
.y238{bottom:226.922861pt;}
.y225{bottom:226.925205pt;}
.y252{bottom:227.454236pt;}
.y207{bottom:228.134345pt;}
.y31e{bottom:229.873261pt;}
.y2d5{bottom:230.480517pt;}
.y239{bottom:231.685333pt;}
.y1cb{bottom:234.255482pt;}
.y1a9{bottom:234.255644pt;}
.y1f3{bottom:234.329495pt;}
.y1e4{bottom:234.330667pt;}
.y1e2{bottom:234.331838pt;}
.y3c5{bottom:234.716713pt;}
.y13f{bottom:235.767725pt;}
.y28b{bottom:236.372000pt;}
.ya0{bottom:237.059431pt;}
.y158{bottom:237.202667pt;}
.y156{bottom:237.203644pt;}
.y125{bottom:237.958667pt;}
.y123{bottom:237.959644pt;}
.y77{bottom:237.965897pt;}
.y1e3{bottom:239.017333pt;}
.y32{bottom:239.020119pt;}
.y237{bottom:240.906667pt;}
.y235{bottom:240.907482pt;}
.y224{bottom:240.909012pt;}
.y31d{bottom:241.287822pt;}
.y251{bottom:241.438042pt;}
.y157{bottom:241.889333pt;}
.y2d4{bottom:241.894228pt;}
.y206{bottom:242.119214pt;}
.y124{bottom:242.645333pt;}
.y3c4{bottom:245.374668pt;}
.y236{bottom:245.593333pt;}
.y371{bottom:246.051289pt;}
.y1a6{bottom:248.163838pt;}
.y1a8{bottom:248.164000pt;}
.y1f2{bottom:248.237851pt;}
.y1e1{bottom:248.240194pt;}
.y9f{bottom:251.043238pt;}
.y155{bottom:251.112000pt;}
.y178{bottom:251.112194pt;}
.y153{bottom:251.113365pt;}
.y122{bottom:251.868000pt;}
.y76{bottom:251.874253pt;}
.y31c{bottom:252.701533pt;}
.y1a7{bottom:252.925333pt;}
.y31{bottom:253.003925pt;}
.y13b{bottom:253.303622pt;}
.y13d{bottom:253.304000pt;}
.y2d3{bottom:253.308789pt;}
.y234{bottom:254.815838pt;}
.y223{bottom:254.817367pt;}
.y250{bottom:255.346398pt;}
.y154{bottom:255.873333pt;}
.y3c3{bottom:255.956962pt;}
.y205{bottom:256.027570pt;}
.y13c{bottom:257.084000pt;}
.y28a{bottom:257.385365pt;}
.y370{bottom:257.465850pt;}
.y1a5{bottom:262.147644pt;}
.y1f1{bottom:262.221657pt;}
.y1de{bottom:262.223644pt;}
.y1e0{bottom:262.224000pt;}
.y31b{bottom:264.116095pt;}
.y13a{bottom:264.717333pt;}
.y13e{bottom:264.717711pt;}
.y2d2{bottom:264.722500pt;}
.y9e{bottom:264.951593pt;}
.y177{bottom:265.096000pt;}
.y175{bottom:265.096977pt;}
.y152{bottom:265.097171pt;}
.y121{bottom:265.852000pt;}
.y11f{bottom:265.853171pt;}
.y75{bottom:265.859122pt;}
.y3c2{bottom:266.614916pt;}
.y1df{bottom:266.910667pt;}
.y30{bottom:266.912281pt;}
.y233{bottom:268.799644pt;}
.y222{bottom:268.802236pt;}
.y36f{bottom:268.879561pt;}
.y24f{bottom:269.330204pt;}
.y176{bottom:269.782667pt;}
.y204{bottom:270.011376pt;}
.y289{bottom:270.160000pt;}
.y120{bottom:270.538667pt;}
.y31a{bottom:275.605466pt;}
.y1a4{bottom:276.056000pt;}
.y1ca{bottom:276.057365pt;}
.y1a2{bottom:276.057527pt;}
.y1f0{bottom:276.131076pt;}
.y1dd{bottom:276.132000pt;}
.y2d1{bottom:276.211872pt;}
.y3c1{bottom:277.198060pt;}
.yb8{bottom:278.935399pt;}
.y172{bottom:279.002278pt;}
.y174{bottom:279.005333pt;}
.y151{bottom:279.005527pt;}
.y11e{bottom:279.761527pt;}
.y74{bottom:279.767478pt;}
.y36e{bottom:280.294123pt;}
.y1a3{bottom:280.818667pt;}
.y2f{bottom:280.896087pt;}
.y139{bottom:282.255651pt;}
.y231{bottom:282.708000pt;}
.y221{bottom:282.710592pt;}
.y24e{bottom:283.239623pt;}
.y173{bottom:283.766667pt;}
.y203{bottom:283.919732pt;}
.y319{bottom:287.019177pt;}
.y232{bottom:287.470667pt;}
.y2d0{bottom:287.626433pt;}
.y3c0{bottom:287.856014pt;}
.y19f{bottom:290.040977pt;}
.y1c9{bottom:290.041171pt;}
.y1a1{bottom:290.041333pt;}
.y36d{bottom:291.707834pt;}
.y9d{bottom:292.843755pt;}
.y171{bottom:292.986084pt;}
.y14f{bottom:292.989333pt;}
.y11d{bottom:293.745333pt;}
.y11b{bottom:293.748441pt;}
.y73{bottom:293.751284pt;}
.y1a0{bottom:294.728000pt;}
.y2e{bottom:294.805506pt;}
.y138{bottom:295.030286pt;}
.y220{bottom:296.694398pt;}
.y24d{bottom:297.223429pt;}
.y150{bottom:297.676000pt;}
.y202{bottom:297.903538pt;}
.y11c{bottom:298.432000pt;}
.y318{bottom:298.433739pt;}
.y3bf{bottom:298.438308pt;}
.y2cf{bottom:299.040145pt;}
.y36c{bottom:303.197206pt;}
.y19e{bottom:303.949333pt;}
.y1c8{bottom:303.949527pt;}
.y1f8{bottom:306.066699pt;}
.yb7{bottom:306.828624pt;}
.y11a{bottom:307.656796pt;}
.y72{bottom:307.659640pt;}
.y137{bottom:307.804921pt;}
.y2d{bottom:308.789312pt;}
.y3be{bottom:309.097113pt;}
.y317{bottom:309.847450pt;}
.y2ce{bottom:310.454706pt;}
.y21f{bottom:310.602754pt;}
.y24c{bottom:311.131785pt;}
.y201{bottom:311.812956pt;}
.y36b{bottom:314.611767pt;}
.y19d{bottom:317.933333pt;}
.y19b{bottom:317.934311pt;}
.y1f7{bottom:318.841333pt;}
.y3bd{bottom:319.755067pt;}
.y136{bottom:320.504000pt;}
.yb6{bottom:320.736980pt;}
.y316{bottom:321.262011pt;}
.y9c{bottom:321.492545pt;}
.y119{bottom:321.640602pt;}
.y71{bottom:321.643446pt;}
.y2cd{bottom:321.868417pt;}
.y19c{bottom:322.620000pt;}
.y2c{bottom:322.697668pt;}
.y18a{bottom:322.924223pt;}
.y21e{bottom:324.587623pt;}
.y24b{bottom:325.115591pt;}
.y200{bottom:325.796762pt;}
.y36a{bottom:326.025478pt;}
.y288{bottom:326.782911pt;}
.y3bc{bottom:330.337361pt;}
.y19a{bottom:331.842667pt;}
.y198{bottom:331.842861pt;}
.y315{bottom:332.675722pt;}
.y2cc{bottom:333.282128pt;}
.yb5{bottom:334.720786pt;}
.y9b{bottom:335.400901pt;}
.y118{bottom:335.548958pt;}
.y70{bottom:335.552865pt;}
.y189{bottom:335.623302pt;}
.y199{bottom:336.604000pt;}
.y2b{bottom:336.681474pt;}
.y369{bottom:337.440039pt;}
.y287{bottom:338.196622pt;}
.y21d{bottom:338.495979pt;}
.y24a{bottom:339.025009pt;}
.y1ff{bottom:339.705118pt;}
.y3bb{bottom:340.995315pt;}
.y314{bottom:344.089433pt;}
.y2cb{bottom:344.696689pt;}
.y1c7{bottom:345.826311pt;}
.y197{bottom:345.826667pt;}
.y195{bottom:345.827838pt;}
.y188{bottom:348.397937pt;}
.yb4{bottom:348.629142pt;}
.y368{bottom:348.853750pt;}
.y9a{bottom:349.385770pt;}
.y117{bottom:349.533827pt;}
.y6f{bottom:349.536671pt;}
.y286{bottom:349.611184pt;}
.y196{bottom:350.513333pt;}
.y2a{bottom:350.589830pt;}
.yd6{bottom:350.818243pt;}
.y3ba{bottom:351.578459pt;}
.y21c{bottom:352.479785pt;}
.y25f{bottom:353.008816pt;}
.y1fe{bottom:353.688924pt;}
.y313{bottom:355.503995pt;}
.y2ca{bottom:356.110400pt;}
.y1c4{bottom:359.732137pt;}
.y1c6{bottom:359.734667pt;}
.y194{bottom:359.736194pt;}
.y367{bottom:360.267461pt;}
.y285{bottom:361.024895pt;}
.y187{bottom:361.172572pt;}
.y3b9{bottom:362.236414pt;}
.yb3{bottom:362.614011pt;}
.y99{bottom:363.294126pt;}
.y116{bottom:363.442183pt;}
.y6e{bottom:363.445026pt;}
.y1c5{bottom:364.497333pt;}
.y29{bottom:364.574699pt;}
.yd5{bottom:364.726599pt;}
.y21b{bottom:366.388141pt;}
.y249{bottom:366.917171pt;}
.y312{bottom:366.993366pt;}
.y1fd{bottom:367.598343pt;}
.y2c9{bottom:367.599772pt;}
.y366{bottom:371.682023pt;}
.y284{bottom:372.515117pt;}
.y3b8{bottom:372.894368pt;}
.y1c3{bottom:373.715943pt;}
.y193{bottom:373.720000pt;}
.y191{bottom:373.720816pt;}
.y186{bottom:373.871651pt;}
.yb2{bottom:376.522367pt;}
.y98{bottom:377.277932pt;}
.y115{bottom:377.425989pt;}
.y6d{bottom:377.428833pt;}
.y192{bottom:378.406667pt;}
.y311{bottom:378.407928pt;}
.y28{bottom:378.558505pt;}
.yd4{bottom:378.710405pt;}
.y2c8{bottom:379.014333pt;}
.y21a{bottom:380.373009pt;}
.y25e{bottom:380.900977pt;}
.y1fc{bottom:381.582149pt;}
.y365{bottom:383.095734pt;}
.y3b7{bottom:383.476662pt;}
.y283{bottom:383.928828pt;}
.y185{bottom:386.646286pt;}
.y1c2{bottom:387.625362pt;}
.y190{bottom:387.629171pt;}
.y310{bottom:389.821639pt;}
.y2c7{bottom:390.428045pt;}
.yb1{bottom:390.506173pt;}
.y97{bottom:391.186288pt;}
.y114{bottom:391.334345pt;}
.y6c{bottom:391.338251pt;}
.y35{bottom:392.466861pt;}
.yd3{bottom:392.618761pt;}
.y3b6{bottom:394.135466pt;}
.y219{bottom:394.281365pt;}
.y364{bottom:394.585106pt;}
.y248{bottom:394.809333pt;}
.y282{bottom:395.342539pt;}
.y1fb{bottom:395.490505pt;}
.y184{bottom:399.420921pt;}
.y30f{bottom:401.235350pt;}
.y1c1{bottom:401.609168pt;}
.y18f{bottom:401.612977pt;}
.y2c6{bottom:401.842606pt;}
.yb0{bottom:404.414529pt;}
.y3b5{bottom:404.717760pt;}
.y96{bottom:405.171157pt;}
.y113{bottom:405.319214pt;}
.y6b{bottom:405.322057pt;}
.y363{bottom:405.999667pt;}
.y27{bottom:406.450667pt;}
.y281{bottom:406.757100pt;}
.y218{bottom:408.265171pt;}
.y1fa{bottom:409.474311pt;}
.y183{bottom:412.120000pt;}
.y30e{bottom:412.649911pt;}
.y2c5{bottom:413.256317pt;}
.y3b4{bottom:415.375715pt;}
.y1c0{bottom:415.517524pt;}
.y18e{bottom:415.521333pt;}
.y18c{bottom:415.521527pt;}
.y362{bottom:417.413378pt;}
.y280{bottom:418.170811pt;}
.yaf{bottom:418.399397pt;}
.y95{bottom:419.079513pt;}
.y112{bottom:419.227570pt;}
.y6a{bottom:419.230413pt;}
.y18d{bottom:420.282667pt;}
.yd2{bottom:420.511986pt;}
.y217{bottom:422.248977pt;}
.y1f9{bottom:423.382667pt;}
.y30d{bottom:424.063622pt;}
.y2c4{bottom:424.670028pt;}
.y261{bottom:424.744032pt;}
.y3b3{bottom:426.034519pt;}
.y361{bottom:428.827939pt;}
.y1bf{bottom:429.501330pt;}
.y18b{bottom:429.505333pt;}
.y27f{bottom:429.585372pt;}
.yae{bottom:432.307753pt;}
.y94{bottom:433.063319pt;}
.y111{bottom:433.211376pt;}
.y69{bottom:433.214219pt;}
.y30c{bottom:435.477333pt;}
.y2c3{bottom:436.084589pt;}
.y216{bottom:436.157333pt;}
.y3b2{bottom:436.616813pt;}
.y260{bottom:437.518667pt;}
.y360{bottom:440.241650pt;}
.y27e{bottom:440.999084pt;}
.y93{bottom:446.971674pt;}
.y110{bottom:447.119732pt;}
.y68{bottom:447.123638pt;}
.y3b1{bottom:447.274767pt;}
.y2c2{bottom:447.573961pt;}
.yd1{bottom:450.822807pt;}
.y35f{bottom:451.655361pt;}
.y27d{bottom:452.488455pt;}
.y30a{bottom:452.636578pt;}
.y215{bottom:453.316953pt;}
.y30b{bottom:456.416000pt;}
.y3b0{bottom:457.857061pt;}
.y2c1{bottom:458.988522pt;}
.y26{bottom:459.289684pt;}
.y1dc{bottom:459.439587pt;}
.yad{bottom:460.199915pt;}
.y92{bottom:460.956543pt;}
.y10f{bottom:461.103538pt;}
.y67{bottom:461.107444pt;}
.y35e{bottom:463.069923pt;}
.y27c{bottom:463.903017pt;}
.y308{bottom:464.050289pt;}
.yd0{bottom:464.807676pt;}
.y214{bottom:466.091587pt;}
.y309{bottom:467.829333pt;}
.y3af{bottom:468.515866pt;}
.y2c0{bottom:470.402233pt;}
.y25{bottom:472.064319pt;}
.y1db{bottom:472.138667pt;}
.y35d{bottom:474.559294pt;}
.y91{bottom:474.864899pt;}
.y10e{bottom:475.012956pt;}
.y66{bottom:475.015800pt;}
.y27b{bottom:475.316728pt;}
.y307{bottom:475.464000pt;}
.ycf{bottom:478.716032pt;}
.y213{bottom:478.790667pt;}
.y3ae{bottom:479.098159pt;}
.y2bf{bottom:481.815945pt;}
.y24{bottom:484.838954pt;}
.y35c{bottom:485.973856pt;}
.y27a{bottom:486.730439pt;}
.y90{bottom:488.848705pt;}
.y10d{bottom:488.996762pt;}
.y65{bottom:488.999606pt;}
.y3ad{bottom:489.756114pt;}
.yce{bottom:492.699838pt;}
.y2be{bottom:493.230506pt;}
.y306{bottom:496.479815pt;}
.y35b{bottom:497.387567pt;}
.y23{bottom:497.538033pt;}
.y279{bottom:498.145000pt;}
.y3ac{bottom:500.414068pt;}
.y8f{bottom:502.757061pt;}
.y10c{bottom:502.905118pt;}
.y64{bottom:502.907962pt;}
.y2bd{bottom:504.644217pt;}
.ycd{bottom:506.608194pt;}
.y35a{bottom:508.801278pt;}
.y305{bottom:509.254450pt;}
.y278{bottom:509.558711pt;}
.y22{bottom:510.312668pt;}
.y3ab{bottom:510.997212pt;}
.y2bc{bottom:516.058778pt;}
.y8e{bottom:516.740867pt;}
.y10b{bottom:516.888924pt;}
.y63{bottom:516.892830pt;}
.y359{bottom:520.215839pt;}
.ycc{bottom:520.592000pt;}
.yca{bottom:520.593171pt;}
.y277{bottom:520.973272pt;}
.y3aa{bottom:521.655167pt;}
.y304{bottom:521.953529pt;}
.y21{bottom:523.087302pt;}
.ycb{bottom:525.278667pt;}
.y301{bottom:525.811972pt;}
.y2bb{bottom:527.472489pt;}
.y8d{bottom:530.650286pt;}
.y10a{bottom:530.798343pt;}
.y62{bottom:530.801186pt;}
.y358{bottom:531.629550pt;}
.y3a9{bottom:532.237460pt;}
.y1a{bottom:532.385706pt;}
.y276{bottom:532.386984pt;}
.yc9{bottom:534.501527pt;}
.y20{bottom:535.786382pt;}
.y300{bottom:537.226533pt;}
.y2ba{bottom:538.961861pt;}
.y3a8{bottom:542.895415pt;}
.y357{bottom:543.044112pt;}
.y19{bottom:543.800267pt;}
.y275{bottom:543.876355pt;}
.y8c{bottom:544.634092pt;}
.y109{bottom:544.782149pt;}
.y61{bottom:544.784992pt;}
.yc8{bottom:548.485333pt;}
.yc6{bottom:548.486901pt;}
.y1f{bottom:548.561016pt;}
.y2ff{bottom:548.715905pt;}
.y2b9{bottom:550.376422pt;}
.yc7{bottom:553.172000pt;}
.y3a7{bottom:553.554219pt;}
.y356{bottom:554.457823pt;}
.y18{bottom:555.213978pt;}
.y274{bottom:555.290917pt;}
.y8b{bottom:558.542448pt;}
.y108{bottom:558.690505pt;}
.y60{bottom:558.693348pt;}
.y2fe{bottom:560.129616pt;}
.y1e{bottom:561.335651pt;}
.y2b8{bottom:561.790133pt;}
.yc5{bottom:562.395256pt;}
.y3a6{bottom:564.136513pt;}
.y355{bottom:565.947194pt;}
.y17{bottom:566.627689pt;}
.y273{bottom:566.704628pt;}
.y303{bottom:571.540000pt;}
.y2fd{bottom:571.544178pt;}
.y8a{bottom:572.526254pt;}
.y107{bottom:572.674311pt;}
.y5f{bottom:572.678217pt;}
.y1d{bottom:574.110286pt;}
.y3a5{bottom:574.794468pt;}
.yc4{bottom:576.379063pt;}
.y354{bottom:577.361756pt;}
.y16{bottom:578.042250pt;}
.y272{bottom:578.119189pt;}
.y2b7{bottom:578.873295pt;}
.y2fc{bottom:582.957889pt;}
.y3a4{bottom:585.377612pt;}
.y89{bottom:586.435672pt;}
.y106{bottom:586.582667pt;}
.y104{bottom:586.583838pt;}
.y5e{bottom:586.586573pt;}
.y1c{bottom:586.809365pt;}
.y353{bottom:588.775467pt;}
.y15{bottom:589.455962pt;}
.y271{bottom:589.532900pt;}
.yc3{bottom:590.287418pt;}
.y2b6{bottom:590.362667pt;}
.y105{bottom:591.345333pt;}
.y2fb{bottom:594.372450pt;}
.y3a3{bottom:596.035566pt;}
.y1b{bottom:599.584000pt;}
.y352{bottom:600.189178pt;}
.y103{bottom:600.567644pt;}
.y5d{bottom:600.570379pt;}
.y14{bottom:600.945333pt;}
.y270{bottom:600.946611pt;}
.yc2{bottom:604.272287pt;}
.y2fa{bottom:605.786161pt;}
.y3a2{bottom:606.617860pt;}
.y2b5{bottom:611.301397pt;}
.y26f{bottom:612.361172pt;}
.y88{bottom:614.327834pt;}
.y102{bottom:614.476000pt;}
.y5c{bottom:614.478735pt;}
.y2f9{bottom:617.199872pt;}
.y3a1{bottom:617.275814pt;}
.y351{bottom:617.348000pt;}
.yc1{bottom:618.180643pt;}
.y26e{bottom:623.774884pt;}
.y2b4{bottom:624.076032pt;}
.y13{bottom:625.586667pt;}
.y3a0{bottom:627.934619pt;}
.yff{bottom:628.459838pt;}
.y101{bottom:628.460000pt;}
.y5b{bottom:628.463604pt;}
.y2f8{bottom:628.614433pt;}
.y100{bottom:633.146667pt;}
.y26d{bottom:635.264255pt;}
.y2b3{bottom:636.850667pt;}
.y350{bottom:638.288195pt;}
.y39f{bottom:638.516912pt;}
.y2f7{bottom:640.103805pt;}
.y87{bottom:642.221059pt;}
.yfe{bottom:642.443644pt;}
.y5a{bottom:642.447410pt;}
.yc0{bottom:646.072805pt;}
.y26c{bottom:646.678817pt;}
.y39e{bottom:649.174867pt;}
.y34f{bottom:651.062830pt;}
.y2f6{bottom:651.517516pt;}
.yfd{bottom:656.352000pt;}
.yfb{bottom:656.353365pt;}
.y59{bottom:656.355766pt;}
.y26b{bottom:658.092528pt;}
.y39d{bottom:659.757161pt;}
.yfc{bottom:661.114667pt;}
.y2f5{bottom:662.932078pt;}
.y26a{bottom:669.507089pt;}
.y12{bottom:669.581333pt;}
.yfa{bottom:670.337171pt;}
.y58{bottom:670.339572pt;}
.y39c{bottom:670.415965pt;}
.y11{bottom:673.360000pt;}
.y2f4{bottom:674.345789pt;}
.y269{bottom:680.920800pt;}
.y10{bottom:680.994667pt;}
.y39b{bottom:681.073920pt;}
.ybe{bottom:684.245333pt;}
.yf9{bottom:684.245527pt;}
.y57{bottom:684.248990pt;}
.yf{bottom:684.774667pt;}
.y2f3{bottom:685.760350pt;}
.y34e{bottom:688.554667pt;}
.ybf{bottom:689.008000pt;}
.y39a{bottom:691.656213pt;}
.y268{bottom:692.334511pt;}
.ye{bottom:692.409333pt;}
.y34d{bottom:692.788000pt;}
.y2b2{bottom:693.471084pt;}
.yd{bottom:696.189333pt;}
.y2f2{bottom:697.174061pt;}
.ybd{bottom:698.229333pt;}
.ybb{bottom:698.230311pt;}
.y56{bottom:698.232796pt;}
.y34c{bottom:701.253365pt;}
.y399{bottom:702.315018pt;}
.ybc{bottom:702.916000pt;}
.yc{bottom:703.823962pt;}
.y2b1{bottom:704.884795pt;}
.y2f1{bottom:708.587772pt;}
.y267{bottom:709.493333pt;}
.yba{bottom:712.138667pt;}
.yf8{bottom:712.140956pt;}
.y55{bottom:712.141152pt;}
.y398{bottom:712.897312pt;}
.y34b{bottom:714.028000pt;}
.yb{bottom:715.313333pt;}
.y2b0{bottom:716.299356pt;}
.yb9{bottom:716.901333pt;}
.y34a{bottom:718.261333pt;}
.ya{bottom:719.093333pt;}
.y2f0{bottom:720.002333pt;}
.y397{bottom:723.555266pt;}
.yf7{bottom:726.124762pt;}
.y54{bottom:726.124958pt;}
.y9{bottom:726.728000pt;}
.y349{bottom:726.802667pt;}
.y2af{bottom:727.788728pt;}
.y8{bottom:730.506667pt;}
.y266{bottom:730.507651pt;}
.y348{bottom:731.036000pt;}
.y2ef{bottom:731.491705pt;}
.y396{bottom:734.137560pt;}
.y2ae{bottom:739.202439pt;}
.y347{bottom:739.502667pt;}
.yf6{bottom:740.033118pt;}
.y53{bottom:740.033314pt;}
.y2ee{bottom:742.906267pt;}
.y265{bottom:743.206730pt;}
.y346{bottom:743.810667pt;}
.y395{bottom:744.796365pt;}
.y7{bottom:748.649333pt;}
.y5{bottom:748.650835pt;}
.y2ad{bottom:750.617000pt;}
.y345{bottom:752.277333pt;}
.yf5{bottom:754.016924pt;}
.y52{bottom:754.018183pt;}
.y2ed{bottom:754.319978pt;}
.y6{bottom:754.846667pt;}
.y394{bottom:755.454319pt;}
.y264{bottom:755.981365pt;}
.y344{bottom:756.510667pt;}
.y2ac{bottom:762.030711pt;}
.y343{bottom:765.052000pt;}
.y2ec{bottom:765.733689pt;}
.y3{bottom:765.884000pt;}
.y393{bottom:766.036613pt;}
.yf4{bottom:767.926343pt;}
.y51{bottom:767.926539pt;}
.y263{bottom:768.756000pt;}
.y342{bottom:769.285333pt;}
.y4{bottom:772.157333pt;}
.y2ab{bottom:773.445272pt;}
.y392{bottom:776.694567pt;}
.y2eb{bottom:777.148250pt;}
.y341{bottom:777.750667pt;}
.yf3{bottom:781.910149pt;}
.y50{bottom:781.910345pt;}
.y340{bottom:782.060000pt;}
.y2aa{bottom:784.858984pt;}
.y391{bottom:787.277711pt;}
.y2ea{bottom:788.561961pt;}
.y33f{bottom:790.525333pt;}
.y33e{bottom:794.758667pt;}
.yf2{bottom:795.818505pt;}
.y4f{bottom:795.818701pt;}
.y2a9{bottom:796.272695pt;}
.y390{bottom:797.935665pt;}
.y2{bottom:799.219748pt;}
.y2e9{bottom:799.976522pt;}
.y33d{bottom:803.301333pt;}
.y33c{bottom:807.533333pt;}
.y2a8{bottom:807.687256pt;}
.y38f{bottom:808.593620pt;}
.yf1{bottom:809.802311pt;}
.y4e{bottom:809.803570pt;}
.y2e8{bottom:811.390233pt;}
.y38e{bottom:819.175914pt;}
.y2a7{bottom:819.176628pt;}
.y262{bottom:819.251857pt;}
.y33b{bottom:819.327722pt;}
.y1{bottom:822.198667pt;}
.y2e7{bottom:822.879605pt;}
.yf0{bottom:823.710667pt;}
.yee{bottom:823.710861pt;}
.y4d{bottom:823.711925pt;}
.yef{bottom:828.472000pt;}
.y38d{bottom:829.834718pt;}
.y2a6{bottom:830.591189pt;}
.y33a{bottom:830.741433pt;}
.y2e6{bottom:834.294167pt;}
.yeb{bottom:837.694311pt;}
.yed{bottom:837.694667pt;}
.y4c{bottom:837.695732pt;}
.y38c{bottom:840.417012pt;}
.y2a5{bottom:842.004900pt;}
.y339{bottom:842.155995pt;}
.yec{bottom:842.381333pt;}
.y2e5{bottom:845.707878pt;}
.y38b{bottom:851.074966pt;}
.yea{bottom:851.602667pt;}
.y4b{bottom:851.604087pt;}
.ye8{bottom:851.604194pt;}
.y2a4{bottom:853.418611pt;}
.y338{bottom:853.569706pt;}
.ye9{bottom:856.365333pt;}
.y2e4{bottom:857.121589pt;}
.y38a{bottom:861.658110pt;}
.y2a3{bottom:864.833172pt;}
.y337{bottom:864.984267pt;}
.ye7{bottom:865.588000pt;}
.ye5{bottom:865.588816pt;}
.y4a{bottom:865.588956pt;}
.y2e3{bottom:868.536150pt;}
.ye6{bottom:870.274667pt;}
.y389{bottom:872.316065pt;}
.y2a2{bottom:876.246884pt;}
.y336{bottom:876.397978pt;}
.ye4{bottom:879.497171pt;}
.y49{bottom:879.497312pt;}
.y2e2{bottom:879.949861pt;}
.y388{bottom:882.974019pt;}
.y2a1{bottom:887.661445pt;}
.y335{bottom:887.811689pt;}
.y2e1{bottom:891.364422pt;}
.y3b{bottom:892.194667pt;}
.ye3{bottom:893.480977pt;}
.y48{bottom:893.481118pt;}
.y387{bottom:893.556313pt;}
.y2a0{bottom:899.150817pt;}
.y334{bottom:899.301911pt;}
.y2e0{bottom:902.853794pt;}
.y386{bottom:904.215118pt;}
.ye2{bottom:907.389333pt;}
.y47{bottom:907.389474pt;}
.ye0{bottom:907.390699pt;}
.y29f{bottom:910.564528pt;}
.y333{bottom:910.715622pt;}
.ye1{bottom:912.150667pt;}
.y385{bottom:914.797411pt;}
.y2df{bottom:919.936956pt;}
.y46{bottom:921.374343pt;}
.ydf{bottom:921.374505pt;}
.y29e{bottom:921.979089pt;}
.y332{bottom:922.129333pt;}
.y384{bottom:925.455366pt;}
.y3a{bottom:929.310667pt;}
.y2de{bottom:931.350667pt;}
.y29d{bottom:933.392800pt;}
.y45{bottom:935.282699pt;}
.yde{bottom:935.282861pt;}
.y383{bottom:936.113320pt;}
.y330{bottom:939.212917pt;}
.y331{bottom:942.992000pt;}
.y382{bottom:946.696464pt;}
.ydb{bottom:949.266311pt;}
.y44{bottom:949.266505pt;}
.ydd{bottom:949.266667pt;}
.y29c{bottom:950.551622pt;}
.y32e{bottom:950.702289pt;}
.y2dd{bottom:952.366286pt;}
.ydc{bottom:953.953333pt;}
.y32f{bottom:954.481333pt;}
.y381{bottom:957.354418pt;}
.y29b{bottom:961.965333pt;}
.y32d{bottom:962.116000pt;}
.yd8{bottom:963.170590pt;}
.yda{bottom:963.174667pt;}
.y43{bottom:963.174861pt;}
.y2dc{bottom:965.140921pt;}
.y39{bottom:966.500000pt;}
.y380{bottom:967.936712pt;}
.yd9{bottom:967.937333pt;}
.yd7{bottom:977.154396pt;}
.y42{bottom:977.158667pt;}
.y2db{bottom:977.840000pt;}
.y37f{bottom:978.594667pt;}
.y29a{bottom:979.805333pt;}
.y32c{bottom:979.956000pt;}
.y3e{bottom:1002.226640pt;}
.y2da{bottom:1003.082325pt;}
.y85{bottom:1003.226640pt;}
.y299{bottom:1003.229547pt;}
.y14e{bottom:1003.229707pt;}
.y32b{bottom:1003.231676pt;}
.y3d9{bottom:1003.236245pt;}
.y84{bottom:1003.237333pt;}
.h5{height:20.907656pt;}
.h10{height:22.417031pt;}
.h11{height:23.522344pt;}
.h12{height:25.219219pt;}
.hd{height:28.021406pt;}
.h6{height:29.887031pt;}
.hc{height:29.887500pt;}
.hb{height:30.647691pt;}
.he{height:31.064661pt;}
.h13{height:32.199145pt;}
.h7{height:32.689219pt;}
.h4{height:32.997656pt;}
.h8{height:33.623437pt;}
.h9{height:37.359844pt;}
.h3{height:49.501875pt;}
.h2{height:63.044531pt;}
.ha{height:65.378906pt;}
.h1{height:1058.000000pt;}
.hf{height:1058.116000pt;}
.h0{height:1058.268000pt;}
.w2{width:793.549333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.xe{left:55.785733pt;}
.x18{left:56.844000pt;}
.x6f{left:58.129067pt;}
.xdb{left:62.513136pt;}
.x15{left:66.065235pt;}
.xff{left:67.501986pt;}
.xde{left:73.548543pt;}
.x24{left:79.596145pt;}
.x2d{left:83.074000pt;}
.x2b{left:87.155867pt;}
.x70{left:88.062933pt;}
.x2e{left:93.732267pt;}
.x71{left:96.604667pt;}
.x2c{left:97.738533pt;}
.xf0{left:102.349600pt;}
.x20{left:103.935962pt;}
.x2f{left:105.146400pt;}
.xda{left:106.279013pt;}
.xc8{left:108.170000pt;}
.x2{left:113.611290pt;}
.x78{left:114.519600pt;}
.x36{left:115.729067pt;}
.x82{left:119.433067pt;}
.x3{left:122.532267pt;}
.x79{left:125.102267pt;}
.x30{left:126.689733pt;}
.xc9{left:130.242400pt;}
.xe8{left:132.358145pt;}
.xb{left:134.021333pt;}
.x7a{left:136.516000pt;}
.xbd{left:137.953333pt;}
.xf1{left:138.858162pt;}
.xca{left:144.982667pt;}
.x72{left:147.098141pt;}
.x4{left:148.460000pt;}
.xc{left:151.105333pt;}
.xad{left:153.600000pt;}
.xce{left:155.112000pt;}
.xa0{left:160.176000pt;}
.xae{left:164.182667pt;}
.xaa{left:166.752000pt;}
.x28{left:170.832731pt;}
.xaf{left:175.597333pt;}
.x27{left:177.786909pt;}
.xa1{left:182.173333pt;}
.x89{left:185.498667pt;}
.xb0{left:186.784000pt;}
.xab{left:188.825333pt;}
.xa2{left:192.832000pt;}
.x8a{left:196.081333pt;}
.xb1{left:197.366667pt;}
.xac{left:199.484000pt;}
.x100{left:202.580953pt;}
.x8b{left:207.496000pt;}
.xb2{left:208.781333pt;}
.xb4{left:210.670667pt;}
.xef{left:212.712000pt;}
.xb3{left:213.694667pt;}
.x8c{left:218.154667pt;}
.x73{left:219.891367pt;}
.xb5{left:222.085333pt;}
.xf7{left:225.334667pt;}
.xcb{left:227.981333pt;}
.x85{left:229.341333pt;}
.xb6{left:232.742667pt;}
.x21{left:234.479824pt;}
.xcc{left:238.640000pt;}
.x86{left:240.000000pt;}
.xcd{left:250.053333pt;}
.x87{left:251.414667pt;}
.x7e{left:253.304000pt;}
.x19{left:254.284172pt;}
.x12{left:256.022755pt;}
.xd{left:257.008000pt;}
.x5{left:258.897333pt;}
.x88{left:262.072000pt;}
.x7f{left:263.962667pt;}
.x74{left:267.137333pt;}
.x14{left:269.329333pt;}
.x1c{left:271.294667pt;}
.xa3{left:274.242667pt;}
.x80{left:275.376000pt;}
.x6{left:276.661333pt;}
.x75{left:277.720000pt;}
.xe0{left:280.362336pt;}
.x1f{left:285.503341pt;}
.x76{left:289.133333pt;}
.x81{left:291.628000pt;}
.xd0{left:294.044101pt;}
.xa4{left:296.238667pt;}
.xb9{left:297.297333pt;}
.xa6{left:298.356000pt;}
.x77{left:299.792000pt;}
.x37{left:303.042667pt;}
.x1a{left:304.554667pt;}
.x31{left:305.688000pt;}
.xa5{left:306.897333pt;}
.xba{left:307.956000pt;}
.xa7{left:309.014667pt;}
.x38{left:313.625333pt;}
.x32{left:316.346667pt;}
.xbb{left:319.370667pt;}
.xa8{left:320.428000pt;}
.xf2{left:322.393333pt;}
.x39{left:325.040000pt;}
.x83{left:326.853333pt;}
.x33{left:327.760000pt;}
.xa9{left:331.010667pt;}
.xbc{left:332.220000pt;}
.x84{left:338.268000pt;}
.x13{left:339.171292pt;}
.x1d{left:341.786667pt;}
.x8d{left:345.221333pt;}
.x34{left:349.304000pt;}
.xe1{left:351.341406pt;}
.x7b{left:352.252000pt;}
.x8e{left:355.880000pt;}
.xb7{left:361.096000pt;}
.x7c{left:362.834667pt;}
.x8f{left:367.294667pt;}
.xdc{left:368.575888pt;}
.xb8{left:371.754667pt;}
.x7d{left:374.249333pt;}
.x1b{left:375.458667pt;}
.x90{left:377.952000pt;}
.xcf{left:379.461256pt;}
.x35{left:380.372000pt;}
.xe2{left:386.868770pt;}
.xe9{left:389.967458pt;}
.xd9{left:392.559973pt;}
.x26{left:394.946693pt;}
.xf3{left:398.664000pt;}
.x7{left:409.020000pt;}
.xf8{left:415.139007pt;}
.xfe{left:416.273067pt;}
.xe3{left:422.395285pt;}
.x17{left:424.738863pt;}
.x8{left:425.877333pt;}
.xea{left:428.367378pt;}
.xd5{left:433.058667pt;}
.xf{left:441.066068pt;}
.xd6{left:443.716000pt;}
.xdd{left:445.827993pt;}
.x55{left:452.333333pt;}
.x4c{left:455.962667pt;}
.xe4{left:457.922650pt;}
.xeb{left:463.213797pt;}
.x16{left:464.348135pt;}
.x4d{left:466.545333pt;}
.x3e{left:468.510667pt;}
.x56{left:474.406667pt;}
.x67{left:477.128000pt;}
.x4e{left:478.034667pt;}
.x10{left:479.919103pt;}
.x11{left:483.547415pt;}
.x3f{left:490.506667pt;}
.x22{left:492.770574pt;}
.xfa{left:494.206118pt;}
.xe5{left:497.985405pt;}
.x48{left:501.542667pt;}
.xec{left:502.823438pt;}
.x40{left:506.985333pt;}
.xbe{left:511.294667pt;}
.x49{left:512.201333pt;}
.x3a{left:514.772000pt;}
.xd1{left:521.041050pt;}
.xbf{left:522.708000pt;}
.x4a{left:523.616000pt;}
.x3b{left:525.354667pt;}
.x41{left:527.093333pt;}
.xd3{left:532.762667pt;}
.x4b{left:534.198667pt;}
.xc0{left:535.634667pt;}
.x3c{left:536.768000pt;}
.x42{left:537.676000pt;}
.xd7{left:540.397333pt;}
.x1e{left:541.613320pt;}
.x6c{left:547.350667pt;}
.x9{left:548.409333pt;}
.x3d{left:550.980000pt;}
.x57{left:552.188467pt;}
.x9c{left:553.172000pt;}
.xfb{left:555.509121pt;}
.x29{left:558.759814pt;}
.x43{left:559.748000pt;}
.x52{left:561.336000pt;}
.xc1{left:562.469333pt;}
.x9d{left:563.754667pt;}
.xa{left:566.324000pt;}
.x6d{left:569.348000pt;}
.x5d{left:570.557333pt;}
.xd2{left:571.540000pt;}
.x53{left:572.749333pt;}
.x9e{left:575.168000pt;}
.xd8{left:577.814667pt;}
.x6e{left:580.006667pt;}
.x5e{left:582.046667pt;}
.x54{left:583.332000pt;}
.xc2{left:584.466667pt;}
.xfd{left:588.163931pt;}
.x9f{left:589.153333pt;}
.x5f{left:594.746667pt;}
.x63{left:596.409333pt;}
.x4f{left:597.392000pt;}
.x59{left:605.253333pt;}
.x64{left:607.068000pt;}
.x50{left:608.050667pt;}
.xf4{left:609.184000pt;}
.x5a{left:615.912000pt;}
.x65{left:618.481333pt;}
.x51{left:619.464000pt;}
.x96{left:621.354667pt;}
.xd4{left:623.244000pt;}
.x5b{left:627.325333pt;}
.x66{left:629.064000pt;}
.x2a{left:630.570415pt;}
.x97{left:631.937333pt;}
.x58{left:634.202921pt;}
.x5c{left:637.984000pt;}
.xc7{left:639.949333pt;}
.xe6{left:641.983832pt;}
.x98{left:643.350667pt;}
.xdf{left:646.972336pt;}
.x25{left:649.080000pt;}
.x44{left:650.078667pt;}
.x99{left:654.009333pt;}
.x94{left:656.806667pt;}
.xfc{left:658.084601pt;}
.x45{left:660.737333pt;}
.x95{left:667.389333pt;}
.x46{left:672.150667pt;}
.x68{left:673.133333pt;}
.xf9{left:676.301822pt;}
.x23{left:678.947859pt;}
.xed{left:680.685545pt;}
.x47{left:682.809333pt;}
.x69{left:683.716000pt;}
.xc3{left:687.722667pt;}
.xf5{left:692.182667pt;}
.x91{left:693.241333pt;}
.x6a{left:695.130667pt;}
.xc4{left:698.305333pt;}
.x92{left:704.654667pt;}
.x6b{left:708.661333pt;}
.xc5{left:709.720000pt;}
.x60{left:710.853333pt;}
.xe7{left:714.474414pt;}
.xee{left:715.457153pt;}
.xf6{left:717.354667pt;}
.x93{left:718.941333pt;}
.xc6{left:720.377333pt;}
.x61{left:721.512000pt;}
.x9a{left:729.977333pt;}
.x62{left:732.925333pt;}
.x9b{left:740.560000pt;}
}




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