
    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_5e9dbc962750f5596cfe055c.woff')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_445ae17f59d081283bdcc718.woff')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_c675f8e553dfc769f71a26f7.woff')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_156834415ab3b0bc34b4c857.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893000;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_da37d0a2469c7a5eeccfa017.woff')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_6875707c2bd338af2472e819.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d059de3458d9926ff8c87067.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18312dbd92418cf8694b9e49.woff')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_af7a00554b1fe7dda8a526c1.woff')format("woff");}.ff9{font-family:ff9;line-height:1.096680;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_a236e3c6bb42a1dd67fc6ba6.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_3ab89a0205089b39ec9012a1.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c7bfde0c75c84f3e4dc92751.woff')format("woff");}.ffc{font-family:ffc;line-height:0.748000;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_5b66a2a6be40cc7e0124fb47.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_f2fd40563afa7e0e36b985f1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_257ad04826ccffdc501b1c26.woff')format("woff");}.fff{font-family:fff;line-height:0.276000;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_0456d5b041a3e37152fbbee2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.105000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5fd40d9f8fb9ecf27fdd9ecb.woff')format("woff");}.ff11{font-family:ff11;line-height:0.766000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_fbf980e85a2b4c54d3078fc6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.230000;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.208332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208332,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m8{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);}
.m3{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);}
.m4{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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-7.155215px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.020001px;}
.v2{vertical-align:2.379486px;}
.v1{vertical-align:4.080539px;}
.v9{vertical-align:9.862242px;}
.v8{vertical-align:12.246856px;}
.v4{vertical-align:13.944000px;}
.v3{vertical-align:17.328535px;}
.v6{vertical-align:32.652000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000006px;}
.ls6{letter-spacing:0.000012px;}
.ls5{letter-spacing:0.000132px;}
.lsc{letter-spacing:0.195879px;}
.ls1d{letter-spacing:0.845444px;}
.ls15{letter-spacing:1.020001px;}
.lsa{letter-spacing:2.936700px;}
.ls7{letter-spacing:2.997600px;}
.ls2{letter-spacing:3.615246px;}
.ls3{letter-spacing:3.615306px;}
.ls1a{letter-spacing:11.361854px;}
.lsd{letter-spacing:13.179357px;}
.ls1c{letter-spacing:16.579402px;}
.ls16{letter-spacing:16.918928px;}
.ls0{letter-spacing:19.038201px;}
.ls11{letter-spacing:20.026702px;}
.ls18{letter-spacing:20.030527px;}
.ls1b{letter-spacing:24.785417px;}
.ls14{letter-spacing:25.120161px;}
.ls10{letter-spacing:89.800726px;}
.lsf{letter-spacing:121.434116px;}
.ls19{letter-spacing:182.581548px;}
.ls17{letter-spacing:226.123844px;}
.ls13{letter-spacing:254.356329px;}
.ls12{letter-spacing:254.696802px;}
.ls8{letter-spacing:362.573205px;}
.ls9{letter-spacing:390.805690px;}
.lsb{letter-spacing:520.017129px;}
.lse{letter-spacing:1137.264727px;}
.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;}
}
.wse{word-spacing:-47.820600px;}
.wsd{word-spacing:-38.256000px;}
.ws4d{word-spacing:-38.255400px;}
.ws1f{word-spacing:-30.844287px;}
.wsa{word-spacing:-24.230394px;}
.ws5d{word-spacing:-22.953240px;}
.ws46{word-spacing:-21.538128px;}
.wsc{word-spacing:-21.270336px;}
.ws4{word-spacing:-14.011436px;}
.ws9{word-spacing:-13.437589px;}
.ws1{word-spacing:-12.610134px;}
.ws3{word-spacing:-11.955150px;}
.ws1b{word-spacing:-11.208832px;}
.ws0{word-spacing:-10.759500px;}
.ws13{word-spacing:-9.563850px;}
.wsb{word-spacing:0.000000px;}
.ws5{word-spacing:1.557976px;}
.ws6{word-spacing:1.700001px;}
.ws8{word-spacing:1.755950px;}
.ws7{word-spacing:1.928102px;}
.ws1e{word-spacing:6.917223px;}
.ws5c{word-spacing:12.670188px;}
.ws5f{word-spacing:12.674014px;}
.ws5b{word-spacing:12.781129px;}
.ws5e{word-spacing:16.074919px;}
.ws2{word-spacing:16.182491px;}
.ws5a{word-spacing:16.187273px;}
.ws22{word-spacing:56.602690px;}
.ws28{word-spacing:56.671550px;}
.ws27{word-spacing:56.728933px;}
.ws24{word-spacing:56.878129px;}
.ws25{word-spacing:60.244604px;}
.ws21{word-spacing:66.748022px;}
.ws26{word-spacing:67.383062px;}
.ws29{word-spacing:67.555211px;}
.ws20{word-spacing:72.746469px;}
.ws57{word-spacing:76.920133px;}
.ws56{word-spacing:77.107584px;}
.ws4e{word-spacing:77.264431px;}
.ws54{word-spacing:77.287385px;}
.ws55{word-spacing:77.386849px;}
.ws58{word-spacing:80.653860px;}
.ws4f{word-spacing:87.157278px;}
.ws49{word-spacing:87.796143px;}
.ws23{word-spacing:90.776239px;}
.ws59{word-spacing:96.047833px;}
.ws53{word-spacing:96.514549px;}
.ws52{word-spacing:113.526725px;}
.ws51{word-spacing:115.175533px;}
.ws50{word-spacing:115.642249px;}
.ws2c{word-spacing:148.549544px;}
.ws2b{word-spacing:148.572497px;}
.ws2e{word-spacing:148.645182px;}
.ws36{word-spacing:148.694914px;}
.ws3d{word-spacing:148.817332px;}
.ws40{word-spacing:148.874715px;}
.ws2f{word-spacing:148.985655px;}
.ws3f{word-spacing:149.268745px;}
.ws2d{word-spacing:159.230451px;}
.ws47{word-spacing:165.213596px;}
.ws37{word-spacing:167.822614px;}
.ws34{word-spacing:167.945032px;}
.ws3a{word-spacing:169.785116px;}
.ws35{word-spacing:171.487482px;}
.ws42{word-spacing:179.674137px;}
.ws16{word-spacing:186.139300px;}
.ws12{word-spacing:186.204334px;}
.ws1c{word-spacing:186.231113px;}
.ws15{word-spacing:186.246415px;}
.ws14{word-spacing:186.250240px;}
.ws38{word-spacing:186.789642px;}
.ws33{word-spacing:186.950314px;}
.ws32{word-spacing:187.072732px;}
.ws3e{word-spacing:187.524145px;}
.ws1a{word-spacing:189.505775px;}
.ws19{word-spacing:190.328266px;}
.ws4c{word-spacing:191.835529px;}
.ws11{word-spacing:196.009193px;}
.ws4a{word-spacing:202.730667px;}
.ws10{word-spacing:205.102502px;}
.ws45{word-spacing:206.338151px;}
.ws30{word-spacing:206.801041px;}
.ws3c{word-spacing:208.040516px;}
.ws3b{word-spacing:209.742882px;}
.ws41{word-spacing:212.302168px;}
.ws31{word-spacing:219.654856px;}
.ws1d{word-spacing:223.201131px;}
.ws39{word-spacing:225.045042px;}
.ws4b{word-spacing:264.979854px;}
.wsf{word-spacing:268.797743px;}
.ws48{word-spacing:281.548267px;}
.ws43{word-spacing:285.783140px;}
.ws44{word-spacing:289.264382px;}
.ws17{word-spacing:313.916161px;}
.ws2a{word-spacing:326.368294px;}
.ws18{word-spacing:336.257315px;}
._4{margin-left:-17.343592px;}
._11{margin-left:-12.074665px;}
._b{margin-left:-5.134853px;}
._a{margin-left:-4.109718px;}
._5{margin-left:-2.892182px;}
._3{margin-left:-1.824783px;}
._6{width:1.037216px;}
._1{width:2.041634px;}
._0{width:3.389274px;}
._7{width:4.473769px;}
._9{width:5.604574px;}
._c{width:6.953115px;}
._f{width:8.067335px;}
._e{width:9.301107px;}
._d{width:10.460399px;}
._2{width:11.586253px;}
._8{width:12.959383px;}
._12{width:15.469964px;}
._13{width:16.832851px;}
._15{width:18.018802px;}
._10{width:20.318240px;}
._18{width:22.125836px;}
._74{width:23.130824px;}
._75{width:24.288839px;}
._17{width:26.430446px;}
._16{width:27.692909px;}
._14{width:29.854401px;}
._2c{width:45.993853px;}
._2b{width:47.079381px;}
._33{width:68.959184px;}
._36{width:71.549075px;}
._34{width:77.516917px;}
._35{width:79.785462px;}
._65{width:88.373800px;}
._31{width:101.985071px;}
._66{width:124.735557px;}
._71{width:126.231343px;}
._2d{width:142.765327px;}
._73{width:144.069836px;}
._37{width:150.776008px;}
._6e{width:163.197536px;}
._4d{width:165.228898px;}
._4c{width:166.433943px;}
._50{width:168.400271px;}
._44{width:178.790437px;}
._43{width:179.995483px;}
._6f{width:182.325236px;}
._6a{width:183.821023px;}
._52{width:195.362677px;}
._57{width:196.380270px;}
._27{width:197.723035px;}
._40{width:198.732977px;}
._3f{width:200.450645px;}
._46{width:201.824014px;}
._2f{width:210.454432px;}
._22{width:213.556945px;}
._70{width:214.670177px;}
._1a{width:216.797177px;}
._3d{width:219.249348px;}
._3e{width:220.270768px;}
._41{width:221.644137px;}
._48{width:228.889215px;}
._47{width:230.863688px;}
._5e{width:231.911886px;}
._61{width:234.329627px;}
._3c{width:236.253874px;}
._1c{width:238.185771px;}
._42{width:241.567549px;}
._45{width:244.934024px;}
._3b{width:251.437442px;}
._67{width:252.925577px;}
._6c{width:255.898022px;}
._38{width:257.661596px;}
._2a{width:260.129069px;}
._4b{width:269.145867px;}
._29{width:271.666898px;}
._49{width:273.606446px;}
._68{width:275.025722px;}
._3a{width:276.368486px;}
._20{width:280.186375px;}
._19{width:290.213115px;}
._5a{width:296.991972px;}
._53{width:300.239856px;}
._62{width:303.973583px;}
._4f{width:306.441056px;}
._59{width:309.103632px;}
._21{width:314.271937px;}
._6d{width:317.814387px;}
._72{width:328.170123px;}
._6b{width:332.779899px;}
._39{width:334.440183px;}
._69{width:336.942087px;}
._63{width:348.468439px;}
._1e{width:350.117246px;}
._32{width:351.234304px;}
._1b{width:354.325340px;}
._5f{width:357.534968px;}
._23{width:365.901424px;}
._25{width:369.646628px;}
._58{width:371.268657px;}
._5c{width:375.702458px;}
._55{width:376.739179px;}
._1f{width:385.771279px;}
._1d{width:387.110218px;}
._4e{width:392.653426px;}
._5b{width:405.201197px;}
._30{width:416.230229px;}
._54{width:421.497997px;}
._56{width:472.224658px;}
._28{width:475.258311px;}
._51{width:476.585773px;}
._60{width:482.591871px;}
._64{width:489.133544px;}
._26{width:496.184015px;}
._5d{width:503.632341px;}
._24{width:515.571851px;}
._2e{width:587.002334px;}
._4a{width:590.472099px;}
.fc2{color:rgb(12,118,159);}
.fc1{color:rgb(33,150,209);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:26.761800px;}
.fsd{font-size:26.778600px;}
.fs10{font-size:30.108600px;}
.fse{font-size:31.083000px;}
.fsa{font-size:33.472800px;}
.fs8{font-size:35.867400px;}
.fs3{font-size:38.255400px;}
.fs9{font-size:38.256000px;}
.fs4{font-size:41.842200px;}
.fs2{font-size:42.237000px;}
.fs5{font-size:43.038000px;}
.fs11{font-size:46.050600px;}
.fs6{font-size:47.820600px;}
.fsf{font-size:51.168000px;}
.fsc{font-size:57.385200px;}
.fs1{font-size:63.362400px;}
.fs0{font-size:80.697000px;}
.fs7{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:47.430000px;}
.y38{bottom:76.859985px;}
.yfa{bottom:78.407586px;}
.y140{bottom:78.409138px;}
.yc4{bottom:78.409356px;}
.y2e1{bottom:78.491250px;}
.y195{bottom:78.491386px;}
.y27d{bottom:79.171650px;}
.y80{bottom:79.344316px;}
.y31d{bottom:80.533018px;}
.y303{bottom:80.533886px;}
.y27e{bottom:81.212550px;}
.y27c{bottom:81.214258px;}
.y258{bottom:81.214286px;}
.y3ae{bottom:81.554336px;}
.y39b{bottom:81.555038px;}
.y3c2{bottom:85.126478px;}
.y1fc{bottom:85.296228px;}
.y285{bottom:87.081986px;}
.y1ef{bottom:88.867258px;}
.y214{bottom:89.546400px;}
.y388{bottom:90.992100px;}
.y37{bottom:91.199985px;}
.y215{bottom:91.502250px;}
.y213{bottom:91.503118px;}
.y194{bottom:92.777850px;}
.yf9{bottom:94.139368px;}
.yc3{bottom:94.141138px;}
.y13f{bottom:94.142115px;}
.y7f{bottom:95.076098px;}
.y31c{bottom:96.179918px;}
.y302{bottom:96.180786px;}
.y27b{bottom:96.861158px;}
.y257{bottom:96.861186px;}
.y3ad{bottom:97.286117px;}
.y39a{bottom:97.288016px;}
.y1fb{bottom:98.221771px;}
.y3c1{bottom:100.859456px;}
.y284{bottom:102.813767px;}
.y1ee{bottom:104.599040px;}
.y36{bottom:105.629970px;}
.y222{bottom:107.234032px;}
.y212{bottom:107.234900px;}
.yf8{bottom:109.786268px;}
.yc2{bottom:109.788038px;}
.y13e{bottom:109.789016px;}
.y31a{bottom:109.955850px;}
.y7e{bottom:110.724194px;}
.y1fa{bottom:111.063152px;}
.y31b{bottom:111.911700px;}
.y319{bottom:111.912050px;}
.y301{bottom:111.912568px;}
.y256{bottom:112.592968px;}
.y27a{bottom:112.594136px;}
.yc8{bottom:112.932150px;}
.y3ac{bottom:112.933018px;}
.y399{bottom:112.934916px;}
.y3c0{bottom:116.591238px;}
.y283{bottom:118.460668px;}
.y34{bottom:119.905636px;}
.y1ed{bottom:120.247136px;}
.y210{bottom:120.925950px;}
.y221{bottom:122.880932px;}
.y211{bottom:122.881800px;}
.y20f{bottom:122.882318px;}
.yf6{bottom:123.477150px;}
.y1f9{bottom:123.903577px;}
.yf7{bottom:125.518050px;}
.y13d{bottom:125.520798px;}
.yc1{bottom:125.521016px;}
.yf5{bottom:125.525179px;}
.y317{bottom:125.603100px;}
.y7d{bottom:126.455976px;}
.y318{bottom:127.558950px;}
.y300{bottom:127.559468px;}
.y316{bottom:127.560316px;}
.y255{bottom:128.239868px;}
.y279{bottom:128.241036px;}
.y3ab{bottom:128.664800px;}
.y398{bottom:128.666698px;}
.y3bf{bottom:132.238138px;}
.y33{bottom:134.192100px;}
.y282{bottom:134.192450px;}
.y1ec{bottom:135.978917px;}
.y20d{bottom:136.573200px;}
.y1f8{bottom:136.744959px;}
.y220{bottom:138.612714px;}
.y20e{bottom:138.614100px;}
.y20c{bottom:138.616198px;}
.y13c{bottom:141.167698px;}
.yc0{bottom:141.167916px;}
.yf4{bottom:141.173275px;}
.y2fe{bottom:141.335400px;}
.y253{bottom:142.015650px;}
.y7c{bottom:142.102876px;}
.y3a9{bottom:142.355850px;}
.y2ff{bottom:143.291250px;}
.y2fd{bottom:143.291600px;}
.y315{bottom:143.292098px;}
.y252{bottom:143.971100px;}
.y254{bottom:143.971650px;}
.y278{bottom:143.972818px;}
.y3aa{bottom:144.311700px;}
.y397{bottom:144.313598px;}
.y3a8{bottom:144.314576px;}
.y3be{bottom:147.971115px;}
.y1f7{bottom:149.585384px;}
.y281{bottom:149.839350px;}
.y1eb{bottom:151.625818px;}
.y21f{bottom:154.259614px;}
.y20b{bottom:154.263098px;}
.y13b{bottom:156.899480px;}
.ybf{bottom:156.899698px;}
.y7b{bottom:157.834658px;}
.y2fc{bottom:158.938500px;}
.y314{bottom:158.940194px;}
.y251{bottom:159.618000px;}
.y250{bottom:159.619658px;}
.y277{bottom:159.619718px;}
.y2f{bottom:159.703536px;}
.y3a7{bottom:160.046358px;}
.y396{bottom:160.046576px;}
.y1f6{bottom:162.425809px;}
.y3bd{bottom:163.618016px;}
.y1ea{bottom:167.357600px;}
.y21e{bottom:169.992592px;}
.y20a{bottom:169.996076px;}
.ybe{bottom:172.546598px;}
.y13a{bottom:172.547576px;}
.yf3{bottom:172.551957px;}
.y2fb{bottom:172.714500px;}
.y275{bottom:173.395500px;}
.y7a{bottom:173.567636px;}
.y2e{bottom:174.075000px;}
.y2fa{bottom:174.670718px;}
.y313{bottom:174.671976px;}
.y1f5{bottom:175.267190px;}
.y276{bottom:175.351500px;}
.y24f{bottom:175.352636px;}
.y274{bottom:175.352758px;}
.y3a6{bottom:175.693258px;}
.y395{bottom:175.693476px;}
.y3bc{bottom:179.349798px;}
.y1e9{bottom:183.004500px;}
.y1e7{bottom:183.006036px;}
.y2a5{bottom:183.514536px;}
.y21d{bottom:185.639492px;}
.y209{bottom:185.642976px;}
.y139{bottom:188.279358px;}
.ybd{bottom:188.279576px;}
.y1e8{bottom:188.362500px;}
.y79{bottom:189.214536px;}
.y2f9{bottom:190.402500px;}
.y312{bottom:190.403758px;}
.y2f8{bottom:190.405136px;}
.y24e{bottom:190.999536px;}
.y273{bottom:190.999658px;}
.y3a5{bottom:191.425040px;}
.y394{bottom:191.425258px;}
.y1f4{bottom:194.995500px;}
.y3bb{bottom:194.996698px;}
.y2a4{bottom:197.886000px;}
.y1e6{bottom:198.737818px;}
.y21c{bottom:201.371274px;}
.y208{bottom:201.374758px;}
.y138{bottom:203.926258px;}
.ybc{bottom:203.926476px;}
.y78{bottom:204.946318px;}
.y311{bottom:206.050658px;}
.y2f7{bottom:206.052036px;}
.y24d{bottom:206.731318px;}
.y272{bottom:206.732636px;}
.y393{bottom:207.072158px;}
.y3a4{bottom:207.073136px;}
.y3ba{bottom:210.728480px;}
.yf2{bottom:212.179693px;}
.y1e5{bottom:214.384718px;}
.y1f3{bottom:214.724608px;}
.y2c{bottom:216.938578px;}
.y21b{bottom:217.018174px;}
.y207{bottom:217.021658px;}
.y137{bottom:219.658040px;}
.ybb{bottom:219.658258px;}
.y77{bottom:220.593218px;}
.y310{bottom:221.783636px;}
.y2f6{bottom:221.783818px;}
.y24c{bottom:222.463100px;}
.y271{bottom:222.464417px;}
.y3a3{bottom:222.804917px;}
.y392{bottom:222.805136px;}
.y3b9{bottom:226.376576px;}
.yf1{bottom:227.912670px;}
.y1f2{bottom:229.096072px;}
.y1e4{bottom:230.116500px;}
.y1e2{bottom:230.117818px;}
.y2b{bottom:232.585478px;}
.y21a{bottom:232.751152px;}
.y206{bottom:232.754636px;}
.y75{bottom:234.283500px;}
.yba{bottom:235.305158px;}
.y136{bottom:235.306136px;}
.y1e3{bottom:235.389000px;}
.y74{bottom:236.324600px;}
.y76{bottom:236.325000px;}
.y30f{bottom:237.430536px;}
.y2f5{bottom:237.430718px;}
.y24b{bottom:238.110000px;}
.y24a{bottom:238.110218px;}
.y270{bottom:238.111318px;}
.y3a2{bottom:238.451818px;}
.y391{bottom:238.452036px;}
.y446{bottom:240.158769px;}
.y3b8{bottom:242.108358px;}
.y1f1{bottom:243.467536px;}
.yf0{bottom:243.559570px;}
.y3fd{bottom:245.345245px;}
.y1e1{bottom:245.764718px;}
.y2a{bottom:248.318456px;}
.y219{bottom:248.398052px;}
.y205{bottom:248.401536px;}
.y135{bottom:251.037917px;}
.yb9{bottom:251.038136px;}
.y2f3{bottom:251.121000px;}
.y73{bottom:251.971500px;}
.y71{bottom:251.972818px;}
.y445{bottom:252.063849px;}
.y30e{bottom:253.162318px;}
.y2f4{bottom:253.162500px;}
.y2f2{bottom:253.163576px;}
.y249{bottom:253.842000px;}
.y26f{bottom:253.843100px;}
.y248{bottom:253.845956px;}
.y3a1{bottom:254.183600px;}
.y390{bottom:254.183818px;}
.y72{bottom:257.329500px;}
.y3fc{bottom:257.336400px;}
.y1f0{bottom:257.754000px;}
.y3b7{bottom:257.755258px;}
.yef{bottom:259.291352px;}
.y1df{bottom:261.496318px;}
.y1e0{bottom:261.496500px;}
.y29{bottom:263.965356px;}
.y444{bottom:264.054048px;}
.y218{bottom:264.129834px;}
.y204{bottom:264.133318px;}
.y134{bottom:266.684818px;}
.yb8{bottom:266.685036px;}
.y26d{bottom:267.534000px;}
.y70{bottom:267.704600px;}
.y39f{bottom:267.874500px;}
.y30d{bottom:268.809218px;}
.y2f1{bottom:268.810476px;}
.y3fb{bottom:269.241480px;}
.y26e{bottom:269.490000px;}
.y26c{bottom:269.490218px;}
.y247{bottom:269.492856px;}
.y3a0{bottom:269.830500px;}
.y38f{bottom:269.830718px;}
.y3b6{bottom:273.487040px;}
.yee{bottom:274.938252px;}
.y443{bottom:276.044247px;}
.y1de{bottom:277.143218px;}
.y28{bottom:279.697138px;}
.y217{bottom:279.776734px;}
.y203{bottom:279.780218px;}
.y3fa{bottom:281.231679px;}
.y133{bottom:282.416600px;}
.yb7{bottom:282.416818px;}
.y30b{bottom:282.501000px;}
.y26a{bottom:283.180500px;}
.y6f{bottom:283.351500px;}
.y6d{bottom:283.358535px;}
.y38d{bottom:283.521000px;}
.y30c{bottom:284.541000px;}
.y2f0{bottom:284.542258px;}
.y26b{bottom:285.222000px;}
.y246{bottom:285.224638px;}
.y269{bottom:285.225615px;}
.y38e{bottom:285.562500px;}
.y38c{bottom:285.563417px;}
.y442{bottom:287.950284px;}
.y6e{bottom:288.708000px;}
.y3b5{bottom:289.135136px;}
.yed{bottom:290.670034px;}
.y1dd{bottom:292.875000px;}
.y1dc{bottom:292.876250px;}
.y3f9{bottom:293.222834px;}
.y27{bottom:295.344038px;}
.y216{bottom:295.509712px;}
.y202{bottom:295.512000px;}
.y131{bottom:296.107500px;}
.y132{bottom:298.063500px;}
.yb6{bottom:298.063718px;}
.y130{bottom:298.066296px;}
.y1ae{bottom:299.084636px;}
.y6c{bottom:299.091512px;}
.y441{bottom:299.940482px;}
.y2ef{bottom:300.189158px;}
.y245{bottom:300.871538px;}
.y268{bottom:300.872516px;}
.y39e{bottom:301.209400px;}
.y38b{bottom:301.210318px;}
.y3b4{bottom:304.866917px;}
.y3f8{bottom:305.127915px;}
.yec{bottom:306.318130px;}
.y1db{bottom:308.523150px;}
.y26{bottom:311.077016px;}
.y440{bottom:311.845563px;}
.yb3{bottom:313.795100px;}
.yb5{bottom:313.795500px;}
.y12f{bottom:313.798078px;}
.y1ad{bottom:314.731536px;}
.y6b{bottom:314.738413px;}
.y2ee{bottom:315.922136px;}
.y267{bottom:316.604298px;}
.y244{bottom:316.604516px;}
.y39d{bottom:316.941182px;}
.y38a{bottom:316.942100px;}
.y3f7{bottom:317.118113px;}
.yb4{bottom:319.068000px;}
.y3b3{bottom:320.513818px;}
.yeb{bottom:322.049912px;}
.y43f{bottom:323.835762px;}
.y1da{bottom:324.256127px;}
.y25{bottom:326.723916px;}
.y237{bottom:327.402000px;}
.y3f6{bottom:329.023194px;}
.y236{bottom:329.187000px;}
.yb0{bottom:329.441272px;}
.yb2{bottom:329.442000px;}
.y12e{bottom:329.444978px;}
.y1ac{bottom:330.463318px;}
.y6a{bottom:330.470195px;}
.y2ed{bottom:331.569036px;}
.y266{bottom:332.251198px;}
.y243{bottom:332.251416px;}
.y39c{bottom:332.588083px;}
.y389{bottom:332.589000px;}
.yb1{bottom:334.800000px;}
.y43e{bottom:335.741798px;}
.y3b2{bottom:336.245600px;}
.yea{bottom:337.781694px;}
.y3f5{bottom:341.014349px;}
.y24{bottom:342.455698px;}
.yaf{bottom:345.174250px;}
.y12d{bottom:345.177956px;}
.y1ab{bottom:346.110218px;}
.y69{bottom:346.117095px;}
.y2ec{bottom:347.300818px;}
.y43d{bottom:347.731997px;}
.y265{bottom:347.982980px;}
.y242{bottom:347.983198px;}
.y1d9{bottom:350.532352px;}
.y3b1{bottom:351.892500px;}
.y3f4{bottom:352.919429px;}
.ye9{bottom:353.428594px;}
.y23{bottom:358.102598px;}
.y1d8{bottom:358.698804px;}
.y43c{bottom:359.722196px;}
.y1aa{bottom:359.802000px;}
.yae{bottom:360.821150px;}
.y12c{bottom:360.824856px;}
.y1a9{bottom:361.842000px;}
.y68{bottom:361.848877px;}
.y2eb{bottom:362.947718px;}
.y241{bottom:363.630098px;}
.y264{bottom:363.631076px;}
.y3b0{bottom:364.479000px;}
.y3f3{bottom:364.909628px;}
.y3af{bottom:366.264000px;}
.ye8{bottom:369.161572px;}
.y43b{bottom:371.628233px;}
.y22{bottom:373.835576px;}
.y1a8{bottom:375.534000px;}
.yad{bottom:376.552932px;}
.y12b{bottom:376.556638px;}
.y2e9{bottom:376.639500px;}
.y3f2{bottom:376.899827px;}
.y1a7{bottom:377.490218px;}
.y67{bottom:377.496973px;}
.y30a{bottom:378.677394px;}
.y2ea{bottom:378.679500px;}
.y2e8{bottom:378.680758px;}
.y263{bottom:379.362858px;}
.y240{bottom:379.363076px;}
.y43a{bottom:383.618432px;}
.y3c4{bottom:383.782500px;}
.ye7{bottom:384.808472px;}
.y3c3{bottom:385.569000px;}
.y3f1{bottom:388.805864px;}
.y21{bottom:389.482476px;}
.y1d7{bottom:389.653078px;}
.y1a5{bottom:391.180500px;}
.yac{bottom:392.199832px;}
.y12a{bottom:392.203538px;}
.y1a6{bottom:393.222000px;}
.y1a4{bottom:393.223318px;}
.y66{bottom:393.228754px;}
.y309{bottom:394.324294px;}
.y2e7{bottom:394.327658px;}
.y262{bottom:395.009758px;}
.y23f{bottom:395.009976px;}
.y439{bottom:395.523512px;}
.ye6{bottom:400.540254px;}
.y3f0{bottom:400.796062px;}
.y20{bottom:405.214258px;}
.y1d6{bottom:405.299978px;}
.y438{bottom:407.513711px;}
.yab{bottom:407.932810px;}
.y129{bottom:407.936516px;}
.y1a3{bottom:408.870218px;}
.y65{bottom:408.875655px;}
.y308{bottom:410.057272px;}
.y2e6{bottom:410.060636px;}
.y261{bottom:410.741540px;}
.y23e{bottom:410.741758px;}
.y3ef{bottom:412.701143px;}
.ye5{bottom:416.187154px;}
.y437{bottom:419.504866px;}
.y1f{bottom:420.946040px;}
.y1d5{bottom:421.032956px;}
.y1a1{bottom:422.560500px;}
.yaa{bottom:423.579710px;}
.y128{bottom:423.583416px;}
.y1a0{bottom:424.601600px;}
.y1a2{bottom:424.602000px;}
.y64{bottom:424.607437px;}
.y3ee{bottom:424.691342px;}
.y307{bottom:425.704172px;}
.y2e5{bottom:425.707536px;}
.y23d{bottom:426.388658px;}
.y260{bottom:426.389636px;}
.y436{bottom:431.409946px;}
.ye4{bottom:431.920132px;}
.y1e{bottom:436.594136px;}
.y1d4{bottom:436.679856px;}
.y3ed{bottom:436.682497px;}
.ya9{bottom:439.311492px;}
.y127{bottom:439.315198px;}
.y19f{bottom:440.248500px;}
.y387{bottom:440.248718px;}
.y19d{bottom:440.249758px;}
.y365{bottom:440.251697px;}
.y63{bottom:440.255532px;}
.y306{bottom:441.435954px;}
.y2e4{bottom:441.439318px;}
.y25f{bottom:442.121417px;}
.y23c{bottom:442.121636px;}
.y435{bottom:443.400145px;}
.y19e{bottom:445.606500px;}
.ye3{bottom:447.567032px;}
.y3ec{bottom:448.587577px;}
.y1d{bottom:452.325917px;}
.y1d3{bottom:452.411638px;}
.y385{bottom:453.940500px;}
.ya8{bottom:454.958392px;}
.y126{bottom:454.962098px;}
.y434{bottom:455.305226px;}
.y386{bottom:455.980500px;}
.y19c{bottom:455.981540px;}
.y384{bottom:455.983136px;}
.y364{bottom:455.983478px;}
.y62{bottom:455.987314px;}
.y305{bottom:457.082854px;}
.y2e3{bottom:457.086218px;}
.y25e{bottom:457.768318px;}
.y23b{bottom:457.768536px;}
.y3eb{bottom:460.577776px;}
.ye2{bottom:463.298814px;}
.y433{bottom:467.296381px;}
.y1c{bottom:467.972818px;}
.y1d2{bottom:468.058538px;}
.ya7{bottom:470.690174px;}
.y125{bottom:470.695076px;}
.y19b{bottom:471.629636px;}
.y383{bottom:471.630036px;}
.y363{bottom:471.631574px;}
.y61{bottom:471.634215px;}
.y3ea{bottom:472.483813px;}
.y304{bottom:472.814636px;}
.y2e2{bottom:472.818000px;}
.y25d{bottom:473.500100px;}
.y23a{bottom:473.500318px;}
.ye1{bottom:478.945714px;}
.y432{bottom:479.286579px;}
.y2d{bottom:483.704600px;}
.y1d1{bottom:483.791516px;}
.y3e9{bottom:484.474012px;}
.ya6{bottom:486.338270px;}
.y124{bottom:486.341976px;}
.y25b{bottom:487.191000px;}
.y19a{bottom:487.361417px;}
.y382{bottom:487.361818px;}
.y60{bottom:487.365997px;}
.y25a{bottom:489.143132px;}
.y25c{bottom:489.147000px;}
.y239{bottom:489.147218px;}
.y431{bottom:491.191660px;}
.ye0{bottom:494.678692px;}
.y3e8{bottom:496.379092px;}
.y1b{bottom:499.351500px;}
.y1d0{bottom:499.438416px;}
.ya5{bottom:502.070052px;}
.y123{bottom:502.073758px;}
.y199{bottom:503.008318px;}
.y381{bottom:503.008718px;}
.y362{bottom:503.010256px;}
.y5f{bottom:503.014092px;}
.y430{bottom:503.181859px;}
.y259{bottom:504.874914px;}
.y238{bottom:504.879000px;}
.y337{bottom:506.409000px;}
.y3e7{bottom:508.369291px;}
.ydf{bottom:510.325592px;}
.y42f{bottom:515.087896px;}
.y1cf{bottom:515.170198px;}
.y37f{bottom:516.699000px;}
.ya4{bottom:517.716952px;}
.y122{bottom:517.720658px;}
.y198{bottom:518.740100px;}
.y380{bottom:518.740500px;}
.y37e{bottom:518.742038px;}
.y5e{bottom:518.745874px;}
.y3e6{bottom:520.360446px;}
.y191{bottom:521.890037px;}
.y171{bottom:525.119978px;}
.yde{bottom:526.057374px;}
.y42e{bottom:527.078094px;}
.y336{bottom:527.670881px;}
.y1ce{bottom:530.817098px;}
.y3e5{bottom:532.265527px;}
.y196{bottom:532.431000px;}
.ya3{bottom:533.448734px;}
.y121{bottom:533.453636px;}
.y197{bottom:534.387000px;}
.y361{bottom:534.390134px;}
.y5d{bottom:534.392775px;}
.y280{bottom:536.683500px;}
.y190{bottom:537.536938px;}
.y27f{bottom:538.468500px;}
.y42d{bottom:538.983175px;}
.y335{bottom:540.512262px;}
.y170{bottom:540.852956px;}
.ydd{bottom:541.704274px;}
.y3e4{bottom:544.255725px;}
.y1cd{bottom:546.550076px;}
.ya2{bottom:549.181711px;}
.y120{bottom:549.185417px;}
.y360{bottom:550.121916px;}
.y5c{bottom:550.124557px;}
.y42c{bottom:550.974330px;}
.y18f{bottom:553.268719px;}
.y334{bottom:553.352687px;}
.y3e3{bottom:556.160806px;}
.y16f{bottom:556.499856px;}
.ydc{bottom:557.437251px;}
.y1a{bottom:558.880466px;}
.y1cc{bottom:562.196976px;}
.y42b{bottom:562.964529px;}
.ya1{bottom:564.828612px;}
.y11f{bottom:564.832318px;}
.y35f{bottom:565.768816px;}
.y5b{bottom:565.771457px;}
.y333{bottom:566.193112px;}
.y3e2{bottom:568.151961px;}
.y18e{bottom:568.915620px;}
.y16e{bottom:572.231638px;}
.ydb{bottom:573.084152px;}
.y19{bottom:573.251930px;}
.y42a{bottom:574.869609px;}
.y1cb{bottom:577.928758px;}
.y332{bottom:579.119612px;}
.y3e1{bottom:580.142160px;}
.ya0{bottom:580.560394px;}
.y11e{bottom:580.564100px;}
.y35e{bottom:581.500598px;}
.y5a{bottom:581.504434px;}
.y18d{bottom:584.648597px;}
.y429{bottom:586.859808px;}
.y18{bottom:587.538394px;}
.y16d{bottom:587.878538px;}
.yda{bottom:588.815934px;}
.y331{bottom:591.960037px;}
.y3e0{bottom:592.047240px;}
.y1ca{bottom:593.575658px;}
.y9f{bottom:596.207294px;}
.y11d{bottom:596.215366px;}
.y35d{bottom:597.148694px;}
.y59{bottom:597.151335px;}
.y428{bottom:598.765845px;}
.y2e0{bottom:599.612818px;}
.y18c{bottom:600.295498px;}
.y17{bottom:601.909859px;}
.y16c{bottom:603.611516px;}
.y3df{bottom:604.038395px;}
.y330{bottom:604.801419px;}
.y1c9{bottom:609.308636px;}
.y427{bottom:610.756043px;}
.y9e{bottom:611.940271px;}
.y11c{bottom:611.948344px;}
.y35c{bottom:612.880476px;}
.y2bd{bottom:612.882958px;}
.y58{bottom:612.883116px;}
.y2df{bottom:615.259718px;}
.y3de{bottom:615.943476px;}
.y18b{bottom:616.027279px;}
.y16{bottom:616.281323px;}
.y32f{bottom:617.641844px;}
.y16b{bottom:619.258416px;}
.yd9{bottom:620.194616px;}
.y426{bottom:622.746242px;}
.y1c8{bottom:624.955536px;}
.y9d{bottom:627.587172px;}
.y11b{bottom:627.595244px;}
.y3dd{bottom:627.933674px;}
.y35b{bottom:628.527376px;}
.y57{bottom:628.530017px;}
.y2bc{bottom:628.531054px;}
.y2dd{bottom:628.951500px;}
.y32e{bottom:630.482269px;}
.y15{bottom:630.567787px;}
.y2de{bottom:630.991500px;}
.y2dc{bottom:630.994076px;}
.y18a{bottom:631.674180px;}
.y235{bottom:632.865838px;}
.y425{bottom:634.651323px;}
.y16a{bottom:634.990198px;}
.y3dc{bottom:639.923873px;}
.y1c7{bottom:640.687318px;}
.y9c{bottom:643.318954px;}
.y32d{bottom:643.323650px;}
.y11a{bottom:643.327026px;}
.y35a{bottom:644.259158px;}
.y2bb{bottom:644.262836px;}
.y56{bottom:644.262994px;}
.y14{bottom:644.939251px;}
.y234{bottom:645.706263px;}
.y2db{bottom:646.640976px;}
.y424{bottom:646.642478px;}
.y189{bottom:647.407157px;}
.y169{bottom:650.721980px;}
.y3db{bottom:651.829910px;}
.yd8{bottom:653.530356px;}
.y32c{bottom:656.164075px;}
.y1c6{bottom:656.334218px;}
.y2a3{bottom:656.419179px;}
.y423{bottom:658.547558px;}
.y233{bottom:658.632762px;}
.y9b{bottom:658.965854px;}
.y119{bottom:658.973926px;}
.y13{bottom:659.310715px;}
.y359{bottom:659.906059px;}
.y2ba{bottom:659.909736px;}
.y55{bottom:659.909894px;}
.y2da{bottom:662.372758px;}
.y188{bottom:663.054057px;}
.y3da{bottom:663.820109px;}
.y168{bottom:666.370076px;}
.y32b{bottom:669.004500px;}
.yd7{bottom:669.177256px;}
.y1c4{bottom:670.024500px;}
.y422{bottom:670.537757px;}
.y2a2{bottom:670.790643px;}
.y232{bottom:671.473187px;}
.y1c5{bottom:672.066000px;}
.y1c3{bottom:672.066917px;}
.y12{bottom:673.597179px;}
.y9a{bottom:674.698831px;}
.y118{bottom:674.706903px;}
.y358{bottom:675.639036px;}
.y2b9{bottom:675.641518px;}
.y54{bottom:675.641676px;}
.y3d9{bottom:675.725189px;}
.y2d9{bottom:678.019658px;}
.y187{bottom:678.785839px;}
.y167{bottom:682.101858px;}
.y421{bottom:682.443794px;}
.y231{bottom:684.313612px;}
.yd6{bottom:684.909038px;}
.y2a1{bottom:685.162108px;}
.y32a{bottom:687.202500px;}
.y1c2{bottom:687.713818px;}
.y3d8{bottom:687.715388px;}
.y11{bottom:687.968643px;}
.y329{bottom:688.734000px;}
.y99{bottom:690.345732px;}
.y117{bottom:690.353804px;}
.y357{bottom:691.285936px;}
.y53{bottom:691.288577px;}
.y2b8{bottom:691.289614px;}
.y2d8{bottom:693.752636px;}
.y186{bottom:694.432740px;}
.y420{bottom:694.433993px;}
.yc{bottom:695.453225px;}
.y230{bottom:697.154994px;}
.y166{bottom:697.748758px;}
.y2a0{bottom:699.448572px;}
.y3d7{bottom:699.621425px;}
.yd5{bottom:700.557134px;}
.y10{bottom:702.340108px;}
.y1c1{bottom:703.445600px;}
.y98{bottom:706.077513px;}
.y116{bottom:706.085586px;}
.y41f{bottom:706.424191px;}
.y356{bottom:707.017718px;}
.y2b7{bottom:707.021396px;}
.y52{bottom:707.021554px;}
.yb{bottom:708.293650px;}
.y328{bottom:708.463572px;}
.y2d7{bottom:709.399536px;}
.y22f{bottom:709.995419px;}
.y185{bottom:710.165717px;}
.y3d6{bottom:711.611624px;}
.y165{bottom:713.480540px;}
.y29f{bottom:713.820036px;}
.yd4{bottom:716.288916px;}
.yf{bottom:716.711572px;}
.y41e{bottom:718.329272px;}
.y1c0{bottom:719.092500px;}
.y354{bottom:720.708000px;}
.ya{bottom:721.135032px;}
.y97{bottom:721.724414px;}
.y115{bottom:721.732486px;}
.y355{bottom:722.749500px;}
.y353{bottom:722.750540px;}
.y2b6{bottom:722.753178px;}
.y51{bottom:722.753336px;}
.y327{bottom:722.835036px;}
.y22e{bottom:722.836800px;}
.y3d5{bottom:723.601822px;}
.y2d6{bottom:725.131318px;}
.y184{bottom:725.812617px;}
.y29e{bottom:728.191500px;}
.y164{bottom:729.128636px;}
.y41d{bottom:730.320427px;}
.ye{bottom:730.998036px;}
.yd3{bottom:731.935816px;}
.y1bf{bottom:732.784500px;}
.y9{bottom:733.975457px;}
.y1be{bottom:734.825600px;}
.y3d4{bottom:735.506903px;}
.y22d{bottom:735.677225px;}
.y326{bottom:737.206500px;}
.y114{bottom:737.464268px;}
.y37d{bottom:738.396400px;}
.y352{bottom:738.398636px;}
.y2b5{bottom:738.400078px;}
.y50{bottom:738.400236px;}
.y2d5{bottom:740.863100px;}
.y41c{bottom:742.225507px;}
.y163{bottom:744.860417px;}
.yd{bottom:745.369500px;}
.y8{bottom:746.901000px;}
.y3d3{bottom:747.498058px;}
.yd2{bottom:747.667598px;}
.y1bc{bottom:748.516500px;}
.y22c{bottom:748.517650px;}
.y29d{bottom:749.370878px;}
.y1bd{bottom:750.472500px;}
.y1bb{bottom:750.473636px;}
.y96{bottom:753.104291px;}
.y113{bottom:753.112364px;}
.y37c{bottom:754.128182px;}
.y351{bottom:754.130417px;}
.y4f{bottom:754.132018px;}
.y2b4{bottom:754.133055px;}
.y41b{bottom:754.215706px;}
.y2d3{bottom:754.554000px;}
.y2d4{bottom:756.510000px;}
.y2d2{bottom:756.511598px;}
.y183{bottom:757.191300px;}
.y3d2{bottom:759.403138px;}
.y162{bottom:760.507318px;}
.y22b{bottom:761.444150px;}
.y29c{bottom:762.297377px;}
.yd1{bottom:763.315694px;}
.y1ba{bottom:766.205417px;}
.y41a{bottom:766.205905px;}
.y112{bottom:768.844146px;}
.y37b{bottom:769.775083px;}
.y350{bottom:769.777318px;}
.y2b3{bottom:769.779956px;}
.y4e{bottom:769.780114px;}
.y3d1{bottom:771.393337px;}
.y2d1{bottom:772.244576px;}
.y22a{bottom:774.284575px;}
.y7{bottom:774.624000px;}
.y29b{bottom:775.137802px;}
.y161{bottom:776.239100px;}
.y419{bottom:778.111942px;}
.y324{bottom:779.046000px;}
.yd0{bottom:779.047476px;}
.y325{bottom:780.831000px;}
.y323{bottom:780.832036px;}
.y1b9{bottom:781.852318px;}
.y3d0{bottom:783.384492px;}
.y111{bottom:784.491046px;}
.y95{bottom:785.503943px;}
.y37a{bottom:785.506864px;}
.y34f{bottom:785.509100px;}
.y2b2{bottom:785.511738px;}
.y4d{bottom:785.511896px;}
.y229{bottom:787.125000px;}
.y2d0{bottom:787.891476px;}
.y29a{bottom:787.978227px;}
.y15f{bottom:789.930000px;}
.y418{bottom:790.102141px;}
.y160{bottom:791.886000px;}
.y182{bottom:791.887536px;}
.y15e{bottom:791.888636px;}
.y321{bottom:793.332000px;}
.ycf{bottom:794.779258px;}
.y322{bottom:795.118500px;}
.y320{bottom:795.118536px;}
.y3cf{bottom:795.289573px;}
.y1b8{bottom:797.584100px;}
.y34d{bottom:799.200000px;}
.y299{bottom:800.819609px;}
.y94{bottom:801.150844px;}
.y379{bottom:801.154960px;}
.y34e{bottom:801.156000px;}
.y34c{bottom:801.157318px;}
.y2b1{bottom:801.158638px;}
.y4c{bottom:801.158796px;}
.y417{bottom:802.007221px;}
.y2cf{bottom:803.623258px;}
.y228{bottom:805.237500px;}
.y227{bottom:806.853000px;}
.y3ce{bottom:807.279772px;}
.y181{bottom:807.619318px;}
.y15d{bottom:807.620417px;}
.y31f{bottom:807.703500px;}
.y31e{bottom:809.490000px;}
.yce{bottom:810.426158px;}
.y1b6{bottom:811.275000px;}
.y1b7{bottom:813.231000px;}
.y1b5{bottom:813.232718px;}
.y298{bottom:813.660034px;}
.y416{bottom:813.997420px;}
.y110{bottom:815.870924px;}
.y93{bottom:816.882626px;}
.y378{bottom:816.886742px;}
.y34b{bottom:816.889100px;}
.y4b{bottom:816.890578px;}
.y2b0{bottom:816.891615px;}
.y3cd{bottom:819.184852px;}
.y2ce{bottom:819.270158px;}
.y180{bottom:823.266218px;}
.y15c{bottom:823.267318px;}
.y6{bottom:824.117575px;}
.y415{bottom:825.903457px;}
.ycd{bottom:826.159136px;}
.y297{bottom:826.501415px;}
.y226{bottom:826.583572px;}
.y1b3{bottom:827.007000px;}
.y1b2{bottom:828.958403px;}
.y1b4{bottom:828.964500px;}
.y349{bottom:830.580000px;}
.y3cc{bottom:831.176007px;}
.y92{bottom:832.529526px;}
.y377{bottom:832.533642px;}
.y348{bottom:832.535818px;}
.y34a{bottom:832.536000px;}
.y4a{bottom:832.537478px;}
.y2af{bottom:832.538516px;}
.y2cd{bottom:835.003136px;}
.y5{bottom:836.958000px;}
.y414{bottom:837.893655px;}
.y17f{bottom:838.998000px;}
.y15b{bottom:838.999100px;}
.y17e{bottom:838.999318px;}
.y296{bottom:839.341840px;}
.y225{bottom:840.870036px;}
.ycc{bottom:841.806036px;}
.y3cb{bottom:843.081088px;}
.y1b1{bottom:844.605303px;}
.y91{bottom:848.262503px;}
.y376{bottom:848.265424px;}
.y347{bottom:848.267600px;}
.y2ae{bottom:848.270298px;}
.y49{bottom:848.270456px;}
.y413{bottom:849.883854px;}
.y2cc{bottom:850.650036px;}
.y295{bottom:852.182265px;}
.y15a{bottom:854.646000px;}
.y17d{bottom:854.646218px;}
.y159{bottom:854.647476px;}
.y3ca{bottom:855.071286px;}
.y224{bottom:855.241500px;}
.ycb{bottom:857.537818px;}
.y1b0{bottom:860.337085px;}
.y3{bottom:861.619500px;}
.y412{bottom:861.789891px;}
.y345{bottom:861.958500px;}
.y90{bottom:863.909404px;}
.y375{bottom:863.913520px;}
.y346{bottom:863.914500px;}
.y2ad{bottom:863.917198px;}
.y48{bottom:863.917356px;}
.y344{bottom:863.917416px;}
.y10f{bottom:863.917476px;}
.y294{bottom:865.108765px;}
.y2cb{bottom:866.381818px;}
.y3c9{bottom:867.061485px;}
.y17b{bottom:868.336500px;}
.y4{bottom:868.677000px;}
.y17c{bottom:870.378000px;}
.y17a{bottom:870.379040px;}
.y158{bottom:870.379258px;}
.yca{bottom:873.184718px;}
.y411{bottom:873.780090px;}
.y1af{bottom:875.985181px;}
.y293{bottom:877.949190px;}
.y3c8{bottom:878.967522px;}
.y8f{bottom:879.641186px;}
.y374{bottom:879.645302px;}
.y2ac{bottom:879.648980px;}
.y47{bottom:879.649138px;}
.y343{bottom:879.649198px;}
.y10e{bottom:879.649258px;}
.y2ca{bottom:882.028718px;}
.y410{bottom:885.685170px;}
.y157{bottom:886.026158px;}
.y179{bottom:886.027136px;}
.yc9{bottom:888.916500px;}
.y292{bottom:890.790571px;}
.y3c7{bottom:890.957721px;}
.y8e{bottom:895.288086px;}
.y373{bottom:895.292202px;}
.y46{bottom:895.296038px;}
.y342{bottom:895.296098px;}
.y10d{bottom:895.296158px;}
.y2ab{bottom:895.297076px;}
.y2c8{bottom:895.719000px;}
.y40f{bottom:897.675369px;}
.y2c9{bottom:897.760500px;}
.y2c7{bottom:897.762228px;}
.y223{bottom:898.015500px;}
.y2{bottom:899.122216px;}
.y178{bottom:901.758917px;}
.y156{bottom:901.759136px;}
.y3c6{bottom:902.862801px;}
.y291{bottom:903.630996px;}
.y40e{bottom:909.666524px;}
.y8d{bottom:911.021063px;}
.y372{bottom:911.023984px;}
.y2aa{bottom:911.028858px;}
.y45{bottom:911.029016px;}
.y341{bottom:911.029076px;}
.y10c{bottom:911.029136px;}
.y2c6{bottom:913.410323px;}
.y3c5{bottom:914.853000px;}
.y290{bottom:916.471421px;}
.y201{bottom:916.555075px;}
.y177{bottom:917.405818px;}
.y155{bottom:917.406036px;}
.y40d{bottom:921.570648px;}
.y1{bottom:924.973500px;}
.y8c{bottom:926.667964px;}
.y371{bottom:926.670885px;}
.y2a9{bottom:926.675758px;}
.y44{bottom:926.675916px;}
.y340{bottom:926.675976px;}
.y10b{bottom:926.676036px;}
.y2c5{bottom:929.142105px;}
.y28f{bottom:929.312803px;}
.y151{bottom:929.395500px;}
.y14f{bottom:929.396269px;}
.y176{bottom:933.137600px;}
.y154{bottom:933.137818px;}
.y40c{bottom:933.560847px;}
.y150{bottom:933.646500px;}
.y28e{bottom:942.153228px;}
.y14e{bottom:942.237650px;}
.y1ff{bottom:942.238303px;}
.y8b{bottom:942.399746px;}
.y370{bottom:942.403862px;}
.y2a8{bottom:942.407540px;}
.y43{bottom:942.407698px;}
.y33f{bottom:942.407758px;}
.y10a{bottom:942.407818px;}
.y2c4{bottom:944.789006px;}
.y40b{bottom:945.465927px;}
.y200{bottom:946.488000px;}
.y174{bottom:946.828500px;}
.y173{bottom:948.781802px;}
.y175{bottom:948.784500px;}
.y28d{bottom:954.994609px;}
.y14d{bottom:955.078075px;}
.y1fe{bottom:955.078728px;}
.y40a{bottom:957.457083px;}
.y8a{bottom:958.046646px;}
.y36f{bottom:958.050762px;}
.y42{bottom:958.054598px;}
.y33e{bottom:958.054658px;}
.y109{bottom:958.054718px;}
.y2a7{bottom:958.055636px;}
.y172{bottom:964.513584px;}
.y153{bottom:964.516500px;}
.y14c{bottom:967.918500px;}
.y14a{bottom:967.920109px;}
.y28c{bottom:967.920152px;}
.y409{bottom:969.362163px;}
.y107{bottom:971.745000px;}
.y14b{bottom:972.169500px;}
.y89{bottom:973.779623px;}
.y36e{bottom:973.782544px;}
.y106{bottom:973.786100px;}
.y108{bottom:973.786500px;}
.y2a6{bottom:973.787417px;}
.y41{bottom:973.787576px;}
.y33d{bottom:973.787636px;}
.y2c3{bottom:976.168883px;}
.y28b{bottom:980.760577px;}
.y149{bottom:980.845652px;}
.y408{bottom:981.352362px;}
.y104{bottom:987.477000px;}
.y88{bottom:989.426524px;}
.y36d{bottom:989.429445px;}
.y105{bottom:989.433000px;}
.y103{bottom:989.434318px;}
.y40{bottom:989.434476px;}
.y33c{bottom:989.434536px;}
.y407{bottom:993.342561px;}
.y28a{bottom:993.601959px;}
.y148{bottom:993.686077px;}
.y193{bottom:998.107500px;}
.y32{bottom:1003.719000px;}
.y87{bottom:1005.158305px;}
.y36c{bottom:1005.162422px;}
.y102{bottom:1005.166100px;}
.y3f{bottom:1005.166258px;}
.y33b{bottom:1005.166318px;}
.y406{bottom:1005.248597px;}
.y289{bottom:1006.442384px;}
.y147{bottom:1006.527459px;}
.y405{bottom:1017.238796px;}
.y100{bottom:1018.857000px;}
.y288{bottom:1019.282809px;}
.y146{bottom:1019.367884px;}
.y86{bottom:1020.805206px;}
.y36b{bottom:1020.809322px;}
.y101{bottom:1020.813000px;}
.y3e{bottom:1020.813158px;}
.yff{bottom:1020.813218px;}
.y404{bottom:1029.143877px;}
.y287{bottom:1032.124190px;}
.y145{bottom:1032.208309px;}
.yfd{bottom:1034.503500px;}
.y85{bottom:1036.536988px;}
.y36a{bottom:1036.541104px;}
.y33a{bottom:1036.544600px;}
.y2c2{bottom:1036.544782px;}
.yfe{bottom:1036.545000px;}
.y3d{bottom:1036.546136px;}
.y403{bottom:1041.135032px;}
.y144{bottom:1045.049690px;}
.y31{bottom:1045.474500px;}
.y286{bottom:1051.852500px;}
.y1fd{bottom:1051.937575px;}
.y84{bottom:1052.185084px;}
.y369{bottom:1052.188004px;}
.y339{bottom:1052.191500px;}
.y2c1{bottom:1052.191682px;}
.y3c{bottom:1052.193036px;}
.y402{bottom:1053.125231px;}
.y192{bottom:1063.162500px;}
.y143{bottom:1064.778000px;}
.y401{bottom:1065.030311px;}
.y338{bottom:1065.883500px;}
.y83{bottom:1067.916865px;}
.y368{bottom:1067.920982px;}
.y2c0{bottom:1067.923464px;}
.y3b{bottom:1067.924818px;}
.y400{bottom:1077.020510px;}
.y82{bottom:1083.563766px;}
.y367{bottom:1083.567882px;}
.y2bf{bottom:1083.570364px;}
.y3a{bottom:1083.571718px;}
.y142{bottom:1084.507536px;}
.y30{bottom:1087.312500px;}
.y3ff{bottom:1088.926547px;}
.yfc{bottom:1097.263500px;}
.y141{bottom:1098.879000px;}
.yfb{bottom:1099.294905px;}
.y81{bottom:1099.295548px;}
.y366{bottom:1099.299664px;}
.y2be{bottom:1099.303342px;}
.y39{bottom:1099.303500px;}
.y3fe{bottom:1100.916745px;}
.y35{bottom:1127.504970px;}
.yc6{bottom:1128.629970px;}
.y447{bottom:1128.639477px;}
.y152{bottom:1128.640143px;}
.yc5{bottom:1128.642000px;}
.hd{height:23.521113px;}
.h12{height:25.860650px;}
.h13{height:26.462637px;}
.h14{height:31.130206px;}
.hb{height:31.524082px;}
.h5{height:33.622910px;}
.hc{height:33.623438px;}
.ha{height:34.478653px;}
.h11{height:34.589568px;}
.h18{height:36.224038px;}
.h16{height:36.564511px;}
.h17{height:36.568337px;}
.h6{height:36.775371px;}
.h4{height:37.122363px;}
.h7{height:37.826367px;}
.he{height:38.907166px;}
.h8{height:42.029824px;}
.h15{height:45.625634px;}
.h3{height:55.689609px;}
.h2{height:70.925098px;}
.h9{height:73.551270px;}
.hf{height:74.672609px;}
.h10{height:74.686512px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:56.381100px;}
.xbf{left:61.993650px;}
.xe{left:63.949500px;}
.x39{left:65.396862px;}
.xb{left:74.323389px;}
.x27{left:75.854055px;}
.x14{left:80.701462px;}
.x53{left:86.995200px;}
.x2{left:89.971092px;}
.xca{left:94.562794px;}
.x65{left:96.094350px;}
.xa1{left:98.900700px;}
.x4e{left:101.026650px;}
.x88{left:103.152750px;}
.x54{left:106.639350px;}
.x17{left:107.744850px;}
.x3{left:110.211000px;}
.x18{left:112.847100px;}
.x4{left:116.673900px;}
.x4f{left:118.800000px;}
.x3c{left:121.266000px;}
.x6a{left:123.816126px;}
.x3d{left:125.518050px;}
.x3a{left:128.324400px;}
.xd0{left:131.554810px;}
.x3b{left:132.576300px;}
.x56{left:133.936950px;}
.x78{left:139.464450px;}
.xa2{left:143.376300px;}
.xcb{left:144.650590px;}
.xba{left:147.033000px;}
.x83{left:149.754300px;}
.xa3{left:153.411000px;}
.xc5{left:156.727500px;}
.xcd{left:158.171961px;}
.xb3{left:161.064000px;}
.xc6{left:163.615500px;}
.x16{left:168.205987px;}
.x68{left:170.247661px;}
.xc7{left:172.543315px;}
.x99{left:177.817500px;}
.x70{left:178.923000px;}
.xbc{left:181.134000px;}
.x1c{left:186.151500px;}
.xc0{left:187.171500px;}
.x71{left:189.042000px;}
.x2a{left:193.890000px;}
.x19{left:197.459674px;}
.xc8{left:199.585344px;}
.xc1{left:202.224000px;}
.x72{left:203.584500px;}
.x8b{left:205.370544px;}
.x1d{left:206.730000px;}
.xa4{left:209.452500px;}
.x73{left:213.703500px;}
.x9a{left:221.953500px;}
.x79{left:225.864000px;}
.x38{left:226.969500px;}
.x74{left:230.796000px;}
.x86{left:232.497000px;}
.x7a{left:234.879000px;}
.xcc{left:236.831758px;}
.xc9{left:238.107575px;}
.xac{left:239.130000px;}
.x87{left:241.512000px;}
.x50{left:247.974000px;}
.xcf{left:249.247548px;}
.x9f{left:251.373827px;}
.xf{left:262.853921px;}
.x6e{left:263.962500px;}
.x51{left:265.663500px;}
.x69{left:268.212089px;}
.x9b{left:271.191000px;}
.x89{left:273.571500px;}
.x8d{left:276.292500px;}
.x6f{left:277.738500px;}
.xbd{left:281.224500px;}
.x8c{left:282.586500px;}
.x9c{left:283.861500px;}
.x8a{left:285.136500px;}
.x7b{left:291.430500px;}
.x40{left:292.536000px;}
.x12{left:294.235500px;}
.xd1{left:296.359073px;}
.xbe{left:301.974000px;}
.x7{left:302.995500px;}
.x41{left:305.461500px;}
.x7c{left:308.523000px;}
.x9d{left:310.308000px;}
.x75{left:317.112000px;}
.x5{left:320.594889px;}
.x9e{left:322.554000px;}
.x66{left:327.738448px;}
.x76{left:330.802500px;}
.xaa{left:337.861500px;}
.x10{left:342.624000px;}
.x3e{left:345.855000px;}
.x3f{left:348.576000px;}
.x13{left:355.260000px;}
.x15{left:356.311903px;}
.x52{left:359.292000px;}
.xab{left:361.246500px;}
.x11{left:365.074500px;}
.x7d{left:376.894500px;}
.xce{left:378.505850px;}
.x67{left:391.092260px;}
.xb4{left:399.855000px;}
.x4d{left:403.337317px;}
.x2b{left:405.978000px;}
.xb5{left:408.868500px;}
.x6{left:412.436541px;}
.x55{left:415.246500px;}
.x1a{left:420.094500px;}
.xbb{left:422.901000px;}
.x1b{left:425.196000px;}
.x84{left:429.958500px;}
.xa9{left:441.629970px;}
.x29{left:444.315030px;}
.x85{left:445.947000px;}
.x7e{left:454.195500px;}
.xc{left:459.888932px;}
.x6b{left:468.907500px;}
.xd{left:477.831221px;}
.xd2{left:484.719099px;}
.x20{left:486.081208px;}
.x35{left:496.204500px;}
.x21{left:498.756000px;}
.x22{left:503.859000px;}
.x94{left:505.303500px;}
.xc4{left:509.725500px;}
.x25{left:512.022987px;}
.xa7{left:514.998000px;}
.x57{left:517.380000px;}
.x5e{left:518.995500px;}
.x95{left:520.611000px;}
.x96{left:527.244000px;}
.x44{left:529.369500px;}
.x7f{left:535.578000px;}
.x30{left:538.468500px;}
.xd7{left:539.568735px;}
.x45{left:542.466000px;}
.x31{left:546.037500px;}
.x8{left:547.820391px;}
.x63{left:555.307500px;}
.xda{left:558.957528px;}
.x64{left:560.409000px;}
.xa5{left:565.171500px;}
.x42{left:567.892500px;}
.xd5{left:570.948683px;}
.x46{left:572.145000px;}
.x47{left:575.716500px;}
.xa6{left:579.033000px;}
.x43{left:581.158500px;}
.x58{left:584.050500px;}
.xd9{left:587.785841px;}
.x48{left:589.237500px;}
.x5f{left:591.448500px;}
.x23{left:594.936000px;}
.xb6{left:597.571500px;}
.x6c{left:598.845792px;}
.x80{left:600.378000px;}
.xd3{left:601.902084px;}
.x24{left:603.609000px;}
.x2c{left:605.820000px;}
.xd6{left:609.641151px;}
.x60{left:613.813500px;}
.x2d{left:619.681500px;}
.x33{left:621.297000px;}
.x26{left:631.841087px;}
.x34{left:635.668500px;}
.xd4{left:639.488971px;}
.xb7{left:641.622000px;}
.x97{left:649.701000px;}
.xb8{left:651.571500px;}
.x98{left:659.820000px;}
.x81{left:662.371500px;}
.x77{left:667.213929px;}
.x32{left:669.345000px;}
.x1f{left:674.781296px;}
.xd8{left:678.181438px;}
.x59{left:680.230500px;}
.x28{left:681.810015px;}
.x1e{left:684.731567px;}
.x90{left:686.352000px;}
.x9{left:689.750031px;}
.xaf{left:692.646000px;}
.x5a{left:697.918500px;}
.x91{left:700.554000px;}
.xc3{left:704.721000px;}
.xb0{left:706.336500px;}
.x4b{left:707.953500px;}
.x8e{left:711.694500px;}
.x4c{left:713.905500px;}
.xa{left:716.451882px;}
.x36{left:718.327500px;}
.x8f{left:721.303500px;}
.x37{left:727.936500px;}
.x61{left:730.914000px;}
.x92{left:732.613500px;}
.xb9{left:734.485500px;}
.x62{left:735.930000px;}
.xae{left:737.631000px;}
.x93{left:742.648500px;}
.xa0{left:748.771500px;}
.x2e{left:759.402000px;}
.x2f{left:772.072500px;}
.x6d{left:773.518500px;}
.xb1{left:784.998000px;}
.x5c{left:788.314500px;}
.xa8{left:796.391947px;}
.x5d{left:798.349500px;}
.xad{left:800.305500px;}
.xb2{left:803.707500px;}
.x49{left:806.002500px;}
.x4a{left:809.574000px;}
.x82{left:820.714500px;}
.xc2{left:823.175687px;}
.x5b{left:826.413000px;}
@media print{
.v5{vertical-align:-6.360191pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.906667pt;}
.v2{vertical-align:2.115099pt;}
.v1{vertical-align:3.627145pt;}
.v9{vertical-align:8.766437pt;}
.v8{vertical-align:10.886094pt;}
.v4{vertical-align:12.394667pt;}
.v3{vertical-align:15.403143pt;}
.v6{vertical-align:29.024000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000005pt;}
.ls6{letter-spacing:0.000011pt;}
.ls5{letter-spacing:0.000117pt;}
.lsc{letter-spacing:0.174114pt;}
.ls1d{letter-spacing:0.751506pt;}
.ls15{letter-spacing:0.906667pt;}
.lsa{letter-spacing:2.610400pt;}
.ls7{letter-spacing:2.664533pt;}
.ls2{letter-spacing:3.213552pt;}
.ls3{letter-spacing:3.213605pt;}
.ls1a{letter-spacing:10.099426pt;}
.lsd{letter-spacing:11.714984pt;}
.ls1c{letter-spacing:14.737246pt;}
.ls16{letter-spacing:15.039047pt;}
.ls0{letter-spacing:16.922845pt;}
.ls11{letter-spacing:17.801513pt;}
.ls18{letter-spacing:17.804913pt;}
.ls1b{letter-spacing:22.031482pt;}
.ls14{letter-spacing:22.329032pt;}
.ls10{letter-spacing:79.822868pt;}
.lsf{letter-spacing:107.941437pt;}
.ls19{letter-spacing:162.294709pt;}
.ls17{letter-spacing:200.998972pt;}
.ls13{letter-spacing:226.094515pt;}
.ls12{letter-spacing:226.397157pt;}
.ls8{letter-spacing:322.287293pt;}
.ls9{letter-spacing:347.382835pt;}
.lsb{letter-spacing:462.237448pt;}
.lse{letter-spacing:1010.901980pt;}
.wse{word-spacing:-42.507200pt;}
.wsd{word-spacing:-34.005333pt;}
.ws4d{word-spacing:-34.004800pt;}
.ws1f{word-spacing:-27.417144pt;}
.wsa{word-spacing:-21.538128pt;}
.ws5d{word-spacing:-20.402880pt;}
.ws46{word-spacing:-19.145003pt;}
.wsc{word-spacing:-18.906965pt;}
.ws4{word-spacing:-12.454610pt;}
.ws9{word-spacing:-11.944523pt;}
.ws1{word-spacing:-11.209008pt;}
.ws3{word-spacing:-10.626800pt;}
.ws1b{word-spacing:-9.963406pt;}
.ws0{word-spacing:-9.564000pt;}
.ws13{word-spacing:-8.501200pt;}
.wsb{word-spacing:0.000000pt;}
.ws5{word-spacing:1.384867pt;}
.ws6{word-spacing:1.511112pt;}
.ws8{word-spacing:1.560845pt;}
.ws7{word-spacing:1.713869pt;}
.ws1e{word-spacing:6.148643pt;}
.ws5c{word-spacing:11.262390pt;}
.ws5f{word-spacing:11.265790pt;}
.ws5b{word-spacing:11.361004pt;}
.ws5e{word-spacing:14.288817pt;}
.ws2{word-spacing:14.384436pt;}
.ws5a{word-spacing:14.388687pt;}
.ws22{word-spacing:50.313502pt;}
.ws28{word-spacing:50.374711pt;}
.ws27{word-spacing:50.425718pt;}
.ws24{word-spacing:50.558337pt;}
.ws25{word-spacing:53.550759pt;}
.ws21{word-spacing:59.331575pt;}
.ws26{word-spacing:59.896055pt;}
.ws29{word-spacing:60.049076pt;}
.ws20{word-spacing:64.663528pt;}
.ws57{word-spacing:68.373451pt;}
.ws56{word-spacing:68.540075pt;}
.ws4e{word-spacing:68.679495pt;}
.ws54{word-spacing:68.699897pt;}
.ws55{word-spacing:68.788310pt;}
.ws58{word-spacing:71.692320pt;}
.ws4f{word-spacing:77.473136pt;}
.ws49{word-spacing:78.041016pt;}
.ws23{word-spacing:80.689990pt;}
.ws59{word-spacing:85.375851pt;}
.ws53{word-spacing:85.790710pt;}
.ws52{word-spacing:100.912644pt;}
.ws51{word-spacing:102.378251pt;}
.ws50{word-spacing:102.793110pt;}
.ws2c{word-spacing:132.044039pt;}
.ws2b{word-spacing:132.064442pt;}
.ws2e{word-spacing:132.129051pt;}
.ws36{word-spacing:132.173257pt;}
.ws3d{word-spacing:132.282072pt;}
.ws40{word-spacing:132.333080pt;}
.ws2f{word-spacing:132.431694pt;}
.ws3f{word-spacing:132.683329pt;}
.ws2d{word-spacing:141.538179pt;}
.ws47{word-spacing:146.856530pt;}
.ws37{word-spacing:149.175657pt;}
.ws34{word-spacing:149.284472pt;}
.ws3a{word-spacing:150.920103pt;}
.ws35{word-spacing:152.433317pt;}
.ws42{word-spacing:159.710344pt;}
.ws16{word-spacing:165.457155pt;}
.ws12{word-spacing:165.514964pt;}
.ws1c{word-spacing:165.538767pt;}
.ws15{word-spacing:165.552369pt;}
.ws14{word-spacing:165.555769pt;}
.ws38{word-spacing:166.035237pt;}
.ws33{word-spacing:166.178057pt;}
.ws32{word-spacing:166.286872pt;}
.ws3e{word-spacing:166.688129pt;}
.ws1a{word-spacing:168.449578pt;}
.ws19{word-spacing:169.180681pt;}
.ws4c{word-spacing:170.520470pt;}
.ws11{word-spacing:174.230394pt;}
.ws4a{word-spacing:180.205037pt;}
.ws10{word-spacing:182.313335pt;}
.ws45{word-spacing:183.411690pt;}
.ws30{word-spacing:183.823148pt;}
.ws3c{word-spacing:184.924903pt;}
.ws3b{word-spacing:186.438117pt;}
.ws41{word-spacing:188.713038pt;}
.ws31{word-spacing:195.248761pt;}
.ws1d{word-spacing:198.401006pt;}
.ws39{word-spacing:200.040037pt;}
.ws4b{word-spacing:235.537648pt;}
.wsf{word-spacing:238.931327pt;}
.ws48{word-spacing:250.265127pt;}
.ws43{word-spacing:254.029458pt;}
.ws44{word-spacing:257.123895pt;}
.ws17{word-spacing:279.036588pt;}
.ws2a{word-spacing:290.105150pt;}
.ws18{word-spacing:298.895391pt;}
._4{margin-left:-15.416526pt;}
._11{margin-left:-10.733036pt;}
._b{margin-left:-4.564314pt;}
._a{margin-left:-3.653082pt;}
._5{margin-left:-2.570829pt;}
._3{margin-left:-1.622029pt;}
._6{width:0.921970pt;}
._1{width:1.814786pt;}
._0{width:3.012688pt;}
._7{width:3.976683pt;}
._9{width:4.981844pt;}
._c{width:6.180547pt;}
._f{width:7.170965pt;}
._e{width:8.267650pt;}
._d{width:9.298133pt;}
._2{width:10.298892pt;}
._8{width:11.519451pt;}
._12{width:13.751079pt;}
._13{width:14.962534pt;}
._15{width:16.016713pt;}
._10{width:18.060658pt;}
._18{width:19.667410pt;}
._74{width:20.560733pt;}
._75{width:21.590079pt;}
._17{width:23.493729pt;}
._16{width:24.615920pt;}
._14{width:26.537245pt;}
._2c{width:40.883425pt;}
._2b{width:41.848338pt;}
._33{width:61.297052pt;}
._36{width:63.599177pt;}
._34{width:68.903926pt;}
._35{width:70.920411pt;}
._65{width:78.554488pt;}
._31{width:90.653396pt;}
._66{width:110.876051pt;}
._71{width:112.205639pt;}
._2d{width:126.902513pt;}
._73{width:128.062077pt;}
._37{width:134.023118pt;}
._6e{width:145.064477pt;}
._4d{width:146.870132pt;}
._4c{width:147.941283pt;}
._50{width:149.689130pt;}
._44{width:158.924833pt;}
._43{width:159.995984pt;}
._6f{width:162.066877pt;}
._6a{width:163.396464pt;}
._52{width:173.655713pt;}
._57{width:174.560240pt;}
._27{width:175.753809pt;}
._40{width:176.651536pt;}
._3f{width:178.178351pt;}
._46{width:179.399123pt;}
._2f{width:187.070606pt;}
._22{width:189.828396pt;}
._70{width:190.817935pt;}
._1a{width:192.708602pt;}
._3d{width:194.888310pt;}
._3e{width:195.796238pt;}
._41{width:197.017010pt;}
._48{width:203.457080pt;}
._47{width:205.212167pt;}
._5e{width:206.143899pt;}
._61{width:208.293002pt;}
._3c{width:210.003443pt;}
._1c{width:211.720686pt;}
._42{width:214.726710pt;}
._45{width:217.719132pt;}
._3b{width:223.499948pt;}
._67{width:224.822735pt;}
._6c{width:227.464908pt;}
._38{width:229.032529pt;}
._2a{width:231.225839pt;}
._4b{width:239.240770pt;}
._29{width:241.481687pt;}
._49{width:243.205730pt;}
._68{width:244.467308pt;}
._3a{width:245.660877pt;}
._20{width:249.054556pt;}
._19{width:257.967214pt;}
._5a{width:263.992864pt;}
._53{width:266.879872pt;}
._62{width:270.198740pt;}
._4f{width:272.392050pt;}
._59{width:274.758784pt;}
._21{width:279.352832pt;}
._6d{width:282.501677pt;}
._72{width:291.706776pt;}
._6b{width:295.804355pt;}
._39{width:297.280163pt;}
._69{width:299.504077pt;}
._63{width:309.749723pt;}
._1e{width:311.215330pt;}
._32{width:312.208270pt;}
._1b{width:314.955858pt;}
._5f{width:317.808861pt;}
._23{width:325.245711pt;}
._25{width:328.574780pt;}
._58{width:330.016584pt;}
._5c{width:333.957740pt;}
._55{width:334.879270pt;}
._1f{width:342.907804pt;}
._1d{width:344.097972pt;}
._4e{width:349.025267pt;}
._5b{width:360.178842pt;}
._30{width:369.982425pt;}
._54{width:374.664886pt;}
._56{width:419.755251pt;}
._28{width:422.451832pt;}
._51{width:423.631798pt;}
._60{width:428.970552pt;}
._64{width:434.785373pt;}
._26{width:441.052457pt;}
._5d{width:447.673192pt;}
._24{width:458.286090pt;}
._2e{width:521.779853pt;}
._4a{width:524.864088pt;}
.fsb{font-size:23.788267pt;}
.fsd{font-size:23.803200pt;}
.fs10{font-size:26.763200pt;}
.fse{font-size:27.629333pt;}
.fsa{font-size:29.753600pt;}
.fs8{font-size:31.882133pt;}
.fs3{font-size:34.004800pt;}
.fs9{font-size:34.005333pt;}
.fs4{font-size:37.193067pt;}
.fs2{font-size:37.544000pt;}
.fs5{font-size:38.256000pt;}
.fs11{font-size:40.933867pt;}
.fs6{font-size:42.507200pt;}
.fsf{font-size:45.482667pt;}
.fsc{font-size:51.009067pt;}
.fs1{font-size:56.322133pt;}
.fs0{font-size:71.730667pt;}
.fs7{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:42.160000pt;}
.y38{bottom:68.319987pt;}
.yfa{bottom:69.695632pt;}
.y140{bottom:69.697012pt;}
.yc4{bottom:69.697205pt;}
.y2e1{bottom:69.770000pt;}
.y195{bottom:69.770121pt;}
.y27d{bottom:70.374800pt;}
.y80{bottom:70.528281pt;}
.y31d{bottom:71.584905pt;}
.y303{bottom:71.585676pt;}
.y27e{bottom:72.188933pt;}
.y27c{bottom:72.190451pt;}
.y258{bottom:72.190476pt;}
.y3ae{bottom:72.492743pt;}
.y39b{bottom:72.493367pt;}
.y3c2{bottom:75.667981pt;}
.y1fc{bottom:75.818869pt;}
.y285{bottom:77.406209pt;}
.y1ef{bottom:78.993118pt;}
.y214{bottom:79.596800pt;}
.y388{bottom:80.881867pt;}
.y37{bottom:81.066653pt;}
.y215{bottom:81.335333pt;}
.y213{bottom:81.336105pt;}
.y194{bottom:82.469200pt;}
.yf9{bottom:83.679438pt;}
.yc3{bottom:83.681012pt;}
.y13f{bottom:83.681880pt;}
.y7f{bottom:84.512087pt;}
.y31c{bottom:85.493261pt;}
.y302{bottom:85.494032pt;}
.y27b{bottom:86.098807pt;}
.y257{bottom:86.098832pt;}
.y3ad{bottom:86.476549pt;}
.y39a{bottom:86.478236pt;}
.y1fb{bottom:87.308241pt;}
.y3c1{bottom:89.652850pt;}
.y284{bottom:91.390016pt;}
.y1ee{bottom:92.976924pt;}
.y36{bottom:93.893307pt;}
.y222{bottom:95.319139pt;}
.y212{bottom:95.319911pt;}
.yf8{bottom:97.587794pt;}
.yc2{bottom:97.589367pt;}
.y13e{bottom:97.590236pt;}
.y31a{bottom:97.738533pt;}
.y7e{bottom:98.421506pt;}
.y1fa{bottom:98.722802pt;}
.y31b{bottom:99.477067pt;}
.y319{bottom:99.477377pt;}
.y301{bottom:99.477838pt;}
.y256{bottom:100.082638pt;}
.y27a{bottom:100.083676pt;}
.yc8{bottom:100.384133pt;}
.y3ac{bottom:100.384905pt;}
.y399{bottom:100.386592pt;}
.y3c0{bottom:103.636656pt;}
.y283{bottom:105.298371pt;}
.y34{bottom:106.582787pt;}
.y1ed{bottom:106.886343pt;}
.y210{bottom:107.489733pt;}
.y221{bottom:109.227495pt;}
.y211{bottom:109.228267pt;}
.y20f{bottom:109.228727pt;}
.yf6{bottom:109.757467pt;}
.y1f9{bottom:110.136513pt;}
.yf7{bottom:111.571600pt;}
.y13d{bottom:111.574042pt;}
.yc1{bottom:111.574236pt;}
.yf5{bottom:111.577937pt;}
.y317{bottom:111.647200pt;}
.y7d{bottom:112.405312pt;}
.y318{bottom:113.385733pt;}
.y300{bottom:113.386194pt;}
.y316{bottom:113.386948pt;}
.y255{bottom:113.990994pt;}
.y279{bottom:113.992032pt;}
.y3ab{bottom:114.368711pt;}
.y398{bottom:114.370398pt;}
.y3bf{bottom:117.545012pt;}
.y33{bottom:119.281867pt;}
.y282{bottom:119.282177pt;}
.y1ec{bottom:120.870149pt;}
.y20d{bottom:121.398400pt;}
.y1f8{bottom:121.551074pt;}
.y220{bottom:123.211301pt;}
.y20e{bottom:123.212533pt;}
.y20c{bottom:123.214398pt;}
.y13c{bottom:125.482398pt;}
.yc0{bottom:125.482592pt;}
.yf4{bottom:125.487355pt;}
.y2fe{bottom:125.631467pt;}
.y253{bottom:126.236133pt;}
.y7c{bottom:126.313668pt;}
.y3a9{bottom:126.538533pt;}
.y2ff{bottom:127.370000pt;}
.y2fd{bottom:127.370311pt;}
.y315{bottom:127.370754pt;}
.y252{bottom:127.974311pt;}
.y254{bottom:127.974800pt;}
.y278{bottom:127.975838pt;}
.y3aa{bottom:128.277067pt;}
.y397{bottom:128.278754pt;}
.y3a8{bottom:128.279623pt;}
.y3be{bottom:131.529880pt;}
.y1f7{bottom:132.964786pt;}
.y281{bottom:133.190533pt;}
.y1eb{bottom:134.778505pt;}
.y21f{bottom:137.119657pt;}
.y20b{bottom:137.122754pt;}
.y13b{bottom:139.466204pt;}
.ybf{bottom:139.466398pt;}
.y7b{bottom:140.297474pt;}
.y2fc{bottom:141.278667pt;}
.y314{bottom:141.280173pt;}
.y251{bottom:141.882667pt;}
.y250{bottom:141.884141pt;}
.y277{bottom:141.884194pt;}
.y2f{bottom:141.958699pt;}
.y3a7{bottom:142.263429pt;}
.y396{bottom:142.263623pt;}
.y1f6{bottom:144.378497pt;}
.y3bd{bottom:145.438236pt;}
.y1ea{bottom:148.762311pt;}
.y21e{bottom:151.104526pt;}
.y20a{bottom:151.107623pt;}
.ybe{bottom:153.374754pt;}
.y13a{bottom:153.375623pt;}
.yf3{bottom:153.379517pt;}
.y2fb{bottom:153.524000pt;}
.y275{bottom:154.129333pt;}
.y7a{bottom:154.282343pt;}
.y2e{bottom:154.733333pt;}
.y2fa{bottom:155.262861pt;}
.y313{bottom:155.263979pt;}
.y1f5{bottom:155.793058pt;}
.y276{bottom:155.868000pt;}
.y24f{bottom:155.869009pt;}
.y274{bottom:155.869118pt;}
.y3a6{bottom:156.171785pt;}
.y395{bottom:156.171979pt;}
.y3bc{bottom:159.422042pt;}
.y1e9{bottom:162.670667pt;}
.y1e7{bottom:162.672032pt;}
.y2a5{bottom:163.124032pt;}
.y21d{bottom:165.012882pt;}
.y209{bottom:165.015979pt;}
.y139{bottom:167.359429pt;}
.ybd{bottom:167.359623pt;}
.y1e8{bottom:167.433333pt;}
.y79{bottom:168.190699pt;}
.y2f9{bottom:169.246667pt;}
.y312{bottom:169.247785pt;}
.y2f8{bottom:169.249009pt;}
.y24e{bottom:169.777365pt;}
.y273{bottom:169.777474pt;}
.y3a5{bottom:170.155591pt;}
.y394{bottom:170.155785pt;}
.y1f4{bottom:173.329333pt;}
.y3bb{bottom:173.330398pt;}
.y2a4{bottom:175.898667pt;}
.y1e6{bottom:176.655838pt;}
.y21c{bottom:178.996688pt;}
.y208{bottom:178.999785pt;}
.y138{bottom:181.267785pt;}
.ybc{bottom:181.267979pt;}
.y78{bottom:182.174505pt;}
.y311{bottom:183.156141pt;}
.y2f7{bottom:183.157365pt;}
.y24d{bottom:183.761171pt;}
.y272{bottom:183.762343pt;}
.y393{bottom:184.064141pt;}
.y3a4{bottom:184.065009pt;}
.y3ba{bottom:187.314204pt;}
.yf2{bottom:188.604171pt;}
.y1e5{bottom:190.564194pt;}
.y1f3{bottom:190.866318pt;}
.y2c{bottom:192.834292pt;}
.y21b{bottom:192.905044pt;}
.y207{bottom:192.908141pt;}
.y137{bottom:195.251591pt;}
.ybb{bottom:195.251785pt;}
.y77{bottom:196.082861pt;}
.y310{bottom:197.141009pt;}
.y2f6{bottom:197.141171pt;}
.y24c{bottom:197.744977pt;}
.y271{bottom:197.746149pt;}
.y3a3{bottom:198.048816pt;}
.y392{bottom:198.049009pt;}
.y3b9{bottom:201.223623pt;}
.yf1{bottom:202.589040pt;}
.y1f2{bottom:203.640953pt;}
.y1e4{bottom:204.548000pt;}
.y1e2{bottom:204.549171pt;}
.y2b{bottom:206.742647pt;}
.y21a{bottom:206.889913pt;}
.y206{bottom:206.893009pt;}
.y75{bottom:208.252000pt;}
.yba{bottom:209.160141pt;}
.y136{bottom:209.161009pt;}
.y1e3{bottom:209.234667pt;}
.y74{bottom:210.066311pt;}
.y76{bottom:210.066667pt;}
.y30f{bottom:211.049365pt;}
.y2f5{bottom:211.049527pt;}
.y24b{bottom:211.653333pt;}
.y24a{bottom:211.653527pt;}
.y270{bottom:211.654505pt;}
.y3a2{bottom:211.957171pt;}
.y391{bottom:211.957365pt;}
.y446{bottom:213.474461pt;}
.y3b8{bottom:215.207429pt;}
.y1f1{bottom:216.415587pt;}
.yf0{bottom:216.497396pt;}
.y3fd{bottom:218.084662pt;}
.y1e1{bottom:218.457527pt;}
.y2a{bottom:220.727516pt;}
.y219{bottom:220.798268pt;}
.y205{bottom:220.801365pt;}
.y135{bottom:223.144816pt;}
.yb9{bottom:223.145009pt;}
.y2f3{bottom:223.218667pt;}
.y73{bottom:223.974667pt;}
.y71{bottom:223.975838pt;}
.y445{bottom:224.056755pt;}
.y30e{bottom:225.033171pt;}
.y2f4{bottom:225.033333pt;}
.y2f2{bottom:225.034289pt;}
.y249{bottom:225.637333pt;}
.y26f{bottom:225.638311pt;}
.y248{bottom:225.640850pt;}
.y3a1{bottom:225.940977pt;}
.y390{bottom:225.941171pt;}
.y72{bottom:228.737333pt;}
.y3fc{bottom:228.743466pt;}
.y1f0{bottom:229.114667pt;}
.y3b7{bottom:229.115785pt;}
.yef{bottom:230.481202pt;}
.y1df{bottom:232.441171pt;}
.y1e0{bottom:232.441333pt;}
.y29{bottom:234.635872pt;}
.y444{bottom:234.714709pt;}
.y218{bottom:234.782075pt;}
.y204{bottom:234.785171pt;}
.y134{bottom:237.053171pt;}
.yb8{bottom:237.053365pt;}
.y26d{bottom:237.808000pt;}
.y70{bottom:237.959644pt;}
.y39f{bottom:238.110667pt;}
.y30d{bottom:238.941527pt;}
.y2f1{bottom:238.942645pt;}
.y3fb{bottom:239.325760pt;}
.y26e{bottom:239.546667pt;}
.y26c{bottom:239.546861pt;}
.y247{bottom:239.549205pt;}
.y3a0{bottom:239.849333pt;}
.y38f{bottom:239.849527pt;}
.y3b6{bottom:243.099591pt;}
.yee{bottom:244.389558pt;}
.y443{bottom:245.372664pt;}
.y1de{bottom:246.349527pt;}
.y28{bottom:248.619678pt;}
.y217{bottom:248.690430pt;}
.y203{bottom:248.693527pt;}
.y3fa{bottom:249.983715pt;}
.y133{bottom:251.036977pt;}
.yb7{bottom:251.037171pt;}
.y30b{bottom:251.112000pt;}
.y26a{bottom:251.716000pt;}
.y6f{bottom:251.868000pt;}
.y6d{bottom:251.874253pt;}
.y38d{bottom:252.018667pt;}
.y30c{bottom:252.925333pt;}
.y2f0{bottom:252.926451pt;}
.y26b{bottom:253.530667pt;}
.y246{bottom:253.533012pt;}
.y269{bottom:253.533880pt;}
.y38e{bottom:253.833333pt;}
.y38c{bottom:253.834149pt;}
.y442{bottom:255.955808pt;}
.y6e{bottom:256.629333pt;}
.y3b5{bottom:257.009009pt;}
.yed{bottom:258.373364pt;}
.y1dd{bottom:260.333333pt;}
.y1dc{bottom:260.334444pt;}
.y3f9{bottom:260.642519pt;}
.y27{bottom:262.528034pt;}
.y216{bottom:262.675299pt;}
.y202{bottom:262.677333pt;}
.y131{bottom:263.206667pt;}
.y132{bottom:264.945333pt;}
.yb6{bottom:264.945527pt;}
.y130{bottom:264.947819pt;}
.y1ae{bottom:265.853009pt;}
.y6c{bottom:265.859122pt;}
.y441{bottom:266.613762pt;}
.y2ef{bottom:266.834807pt;}
.y245{bottom:267.441367pt;}
.y268{bottom:267.442236pt;}
.y39e{bottom:267.741689pt;}
.y38b{bottom:267.742505pt;}
.y3b4{bottom:270.992816pt;}
.y3f8{bottom:271.224813pt;}
.yec{bottom:272.282782pt;}
.y1db{bottom:274.242800pt;}
.y26{bottom:276.512903pt;}
.y440{bottom:277.196056pt;}
.yb3{bottom:278.928977pt;}
.yb5{bottom:278.929333pt;}
.y12f{bottom:278.931625pt;}
.y1ad{bottom:279.761365pt;}
.y6b{bottom:279.767478pt;}
.y2ee{bottom:280.819676pt;}
.y267{bottom:281.426042pt;}
.y244{bottom:281.426236pt;}
.y39d{bottom:281.725495pt;}
.y38a{bottom:281.726311pt;}
.y3f7{bottom:281.882767pt;}
.yb4{bottom:283.616000pt;}
.y3b3{bottom:284.901171pt;}
.yeb{bottom:286.266589pt;}
.y43f{bottom:287.854010pt;}
.y1da{bottom:288.227669pt;}
.y25{bottom:290.421259pt;}
.y237{bottom:291.024000pt;}
.y3f6{bottom:292.465061pt;}
.y236{bottom:292.610667pt;}
.yb0{bottom:292.836687pt;}
.yb2{bottom:292.837333pt;}
.y12e{bottom:292.839981pt;}
.y1ac{bottom:293.745171pt;}
.y6a{bottom:293.751284pt;}
.y2ed{bottom:294.728032pt;}
.y266{bottom:295.334398pt;}
.y243{bottom:295.334592pt;}
.y39c{bottom:295.633851pt;}
.y389{bottom:295.634667pt;}
.yb1{bottom:297.600000pt;}
.y43e{bottom:298.437154pt;}
.y3b2{bottom:298.884977pt;}
.yea{bottom:300.250395pt;}
.y3f5{bottom:303.123866pt;}
.y24{bottom:304.405065pt;}
.yaf{bottom:306.821555pt;}
.y12d{bottom:306.824850pt;}
.y1ab{bottom:307.653527pt;}
.y69{bottom:307.659640pt;}
.y2ec{bottom:308.711838pt;}
.y43d{bottom:309.095109pt;}
.y265{bottom:309.318204pt;}
.y242{bottom:309.318398pt;}
.y1d9{bottom:311.584313pt;}
.y3b1{bottom:312.793333pt;}
.y3f4{bottom:313.706159pt;}
.ye9{bottom:314.158750pt;}
.y23{bottom:318.313421pt;}
.y1d8{bottom:318.843381pt;}
.y43c{bottom:319.753063pt;}
.y1aa{bottom:319.824000pt;}
.yae{bottom:320.729911pt;}
.y12c{bottom:320.733205pt;}
.y1a9{bottom:321.637333pt;}
.y68{bottom:321.643446pt;}
.y2eb{bottom:322.620194pt;}
.y241{bottom:323.226754pt;}
.y264{bottom:323.227623pt;}
.y3b0{bottom:323.981333pt;}
.y3f3{bottom:324.364114pt;}
.y3af{bottom:325.568000pt;}
.ye8{bottom:328.143619pt;}
.y43b{bottom:330.336207pt;}
.y22{bottom:332.298289pt;}
.y1a8{bottom:333.808000pt;}
.yad{bottom:334.713717pt;}
.y12b{bottom:334.717012pt;}
.y2e9{bottom:334.790667pt;}
.y3f2{bottom:335.022068pt;}
.y1a7{bottom:335.546861pt;}
.y67{bottom:335.552865pt;}
.y30a{bottom:336.602128pt;}
.y2ea{bottom:336.604000pt;}
.y2e8{bottom:336.605118pt;}
.y263{bottom:337.211429pt;}
.y240{bottom:337.211623pt;}
.y43a{bottom:340.994161pt;}
.y3c4{bottom:341.140000pt;}
.ye7{bottom:342.051975pt;}
.y3c3{bottom:342.728000pt;}
.y3f1{bottom:345.605212pt;}
.y21{bottom:346.206645pt;}
.y1d7{bottom:346.358292pt;}
.y1a5{bottom:347.716000pt;}
.yac{bottom:348.622073pt;}
.y12a{bottom:348.625367pt;}
.y1a6{bottom:349.530667pt;}
.y1a4{bottom:349.531838pt;}
.y66{bottom:349.536671pt;}
.y309{bottom:350.510484pt;}
.y2e7{bottom:350.513474pt;}
.y262{bottom:351.119785pt;}
.y23f{bottom:351.119979pt;}
.y439{bottom:351.576455pt;}
.ye6{bottom:356.035781pt;}
.y3f0{bottom:356.263167pt;}
.y20{bottom:360.190451pt;}
.y1d6{bottom:360.266647pt;}
.y438{bottom:362.234410pt;}
.yab{bottom:362.606942pt;}
.y129{bottom:362.610236pt;}
.y1a3{bottom:363.440194pt;}
.y65{bottom:363.445026pt;}
.y308{bottom:364.495353pt;}
.y2e6{bottom:364.498343pt;}
.y261{bottom:365.103591pt;}
.y23e{bottom:365.103785pt;}
.y3ef{bottom:366.845460pt;}
.ye5{bottom:369.944137pt;}
.y437{bottom:372.893214pt;}
.y1f{bottom:374.174258pt;}
.y1d5{bottom:374.251516pt;}
.y1a1{bottom:375.609333pt;}
.yaa{bottom:376.515298pt;}
.y128{bottom:376.518592pt;}
.y1a0{bottom:377.423644pt;}
.y1a2{bottom:377.424000pt;}
.y64{bottom:377.428833pt;}
.y3ee{bottom:377.503415pt;}
.y307{bottom:378.403708pt;}
.y2e5{bottom:378.406699pt;}
.y23d{bottom:379.012141pt;}
.y260{bottom:379.013009pt;}
.y436{bottom:383.475508pt;}
.ye4{bottom:383.929006pt;}
.y1e{bottom:388.083676pt;}
.y1d4{bottom:388.159872pt;}
.y3ed{bottom:388.162219pt;}
.ya9{bottom:390.499104pt;}
.y127{bottom:390.502398pt;}
.y19f{bottom:391.332000pt;}
.y387{bottom:391.332194pt;}
.y19d{bottom:391.333118pt;}
.y365{bottom:391.334841pt;}
.y63{bottom:391.338251pt;}
.y306{bottom:392.387514pt;}
.y2e4{bottom:392.390505pt;}
.y25f{bottom:392.996816pt;}
.y23c{bottom:392.997009pt;}
.y435{bottom:394.133462pt;}
.y19e{bottom:396.094667pt;}
.ye3{bottom:397.837362pt;}
.y3ec{bottom:398.744513pt;}
.y1d{bottom:402.067482pt;}
.y1d3{bottom:402.143678pt;}
.y385{bottom:403.502667pt;}
.ya8{bottom:404.407460pt;}
.y126{bottom:404.410754pt;}
.y434{bottom:404.715756pt;}
.y386{bottom:405.316000pt;}
.y19c{bottom:405.316924pt;}
.y384{bottom:405.318343pt;}
.y364{bottom:405.318647pt;}
.y62{bottom:405.322057pt;}
.y305{bottom:406.295870pt;}
.y2e3{bottom:406.298861pt;}
.y25e{bottom:406.905171pt;}
.y23b{bottom:406.905365pt;}
.y3eb{bottom:409.402468pt;}
.ye2{bottom:411.821168pt;}
.y433{bottom:415.374561pt;}
.y1c{bottom:415.975838pt;}
.y1d2{bottom:416.052034pt;}
.ya7{bottom:418.391266pt;}
.y125{bottom:418.395623pt;}
.y19b{bottom:419.226343pt;}
.y383{bottom:419.226699pt;}
.y363{bottom:419.228066pt;}
.y61{bottom:419.230413pt;}
.y3ea{bottom:419.985612pt;}
.y304{bottom:420.279676pt;}
.y2e2{bottom:420.282667pt;}
.y25d{bottom:420.888977pt;}
.y23a{bottom:420.889171pt;}
.ye1{bottom:425.729524pt;}
.y432{bottom:426.032515pt;}
.y2d{bottom:429.959644pt;}
.y1d1{bottom:430.036903pt;}
.y3e9{bottom:430.643566pt;}
.ya6{bottom:432.300684pt;}
.y124{bottom:432.303979pt;}
.y25b{bottom:433.058667pt;}
.y19a{bottom:433.210149pt;}
.y382{bottom:433.210505pt;}
.y60{bottom:433.214219pt;}
.y25a{bottom:434.793895pt;}
.y25c{bottom:434.797333pt;}
.y239{bottom:434.797527pt;}
.y431{bottom:436.614809pt;}
.ye0{bottom:439.714392pt;}
.y3e8{bottom:441.225860pt;}
.y1b{bottom:443.868000pt;}
.y1d0{bottom:443.945259pt;}
.ya5{bottom:446.284490pt;}
.y123{bottom:446.287785pt;}
.y199{bottom:447.118505pt;}
.y381{bottom:447.118861pt;}
.y362{bottom:447.120228pt;}
.y5f{bottom:447.123638pt;}
.y430{bottom:447.272763pt;}
.y259{bottom:448.777701pt;}
.y238{bottom:448.781333pt;}
.y337{bottom:450.141333pt;}
.y3e7{bottom:451.883814pt;}
.ydf{bottom:453.622748pt;}
.y42f{bottom:457.855907pt;}
.y1cf{bottom:457.929065pt;}
.y37f{bottom:459.288000pt;}
.ya4{bottom:460.192846pt;}
.y122{bottom:460.196141pt;}
.y198{bottom:461.102311pt;}
.y380{bottom:461.102667pt;}
.y37e{bottom:461.104034pt;}
.y5e{bottom:461.107444pt;}
.y3e6{bottom:462.542619pt;}
.y191{bottom:463.902255pt;}
.y171{bottom:466.773314pt;}
.yde{bottom:467.606554pt;}
.y42e{bottom:468.513862pt;}
.y336{bottom:469.040783pt;}
.y1ce{bottom:471.837421pt;}
.y3e5{bottom:473.124912pt;}
.y196{bottom:473.272000pt;}
.ya3{bottom:474.176652pt;}
.y121{bottom:474.181009pt;}
.y197{bottom:475.010667pt;}
.y361{bottom:475.013453pt;}
.y5d{bottom:475.015800pt;}
.y280{bottom:477.052000pt;}
.y190{bottom:477.810611pt;}
.y27f{bottom:478.638667pt;}
.y42d{bottom:479.096155pt;}
.y335{bottom:480.455344pt;}
.y170{bottom:480.758183pt;}
.ydd{bottom:481.514910pt;}
.y3e4{bottom:483.782867pt;}
.y1cd{bottom:485.822289pt;}
.ya2{bottom:488.161521pt;}
.y120{bottom:488.164816pt;}
.y360{bottom:488.997259pt;}
.y5c{bottom:488.999606pt;}
.y42c{bottom:489.754960pt;}
.y18f{bottom:491.794417pt;}
.y334{bottom:491.869056pt;}
.y3e3{bottom:494.365161pt;}
.y16f{bottom:494.666539pt;}
.ydc{bottom:495.499779pt;}
.y1a{bottom:496.782637pt;}
.y1cc{bottom:499.730645pt;}
.y42b{bottom:500.412914pt;}
.ya1{bottom:502.069877pt;}
.y11f{bottom:502.073171pt;}
.y35f{bottom:502.905615pt;}
.y5b{bottom:502.907962pt;}
.y333{bottom:503.282767pt;}
.y3e2{bottom:505.023965pt;}
.y18e{bottom:505.702773pt;}
.y16e{bottom:508.650345pt;}
.ydb{bottom:509.408135pt;}
.y19{bottom:509.557271pt;}
.y42a{bottom:510.995208pt;}
.y1cb{bottom:513.714451pt;}
.y332{bottom:514.772989pt;}
.y3e1{bottom:515.681920pt;}
.ya0{bottom:516.053683pt;}
.y11e{bottom:516.056977pt;}
.y35e{bottom:516.889421pt;}
.y5a{bottom:516.892830pt;}
.y18d{bottom:519.687642pt;}
.y429{bottom:521.653163pt;}
.y18{bottom:522.256351pt;}
.y16d{bottom:522.558701pt;}
.yda{bottom:523.391941pt;}
.y331{bottom:526.186700pt;}
.y3e0{bottom:526.264213pt;}
.y1ca{bottom:527.622807pt;}
.y9f{bottom:529.962039pt;}
.y11d{bottom:529.969214pt;}
.y35d{bottom:530.798839pt;}
.y59{bottom:530.801186pt;}
.y428{bottom:532.236306pt;}
.y2e0{bottom:532.989171pt;}
.y18c{bottom:533.595998pt;}
.y17{bottom:535.030985pt;}
.y16c{bottom:536.543570pt;}
.y3df{bottom:536.923018pt;}
.y330{bottom:537.601261pt;}
.y1c9{bottom:541.607676pt;}
.y427{bottom:542.894261pt;}
.y9e{bottom:543.946908pt;}
.y11c{bottom:543.954083pt;}
.y35c{bottom:544.782645pt;}
.y2bd{bottom:544.784852pt;}
.y58{bottom:544.784992pt;}
.y2df{bottom:546.897527pt;}
.y3de{bottom:547.505312pt;}
.y18b{bottom:547.579804pt;}
.y16{bottom:547.805620pt;}
.y32f{bottom:549.014972pt;}
.y16b{bottom:550.451925pt;}
.yd9{bottom:551.284103pt;}
.y426{bottom:553.552215pt;}
.y1c8{bottom:555.516032pt;}
.y9d{bottom:557.855264pt;}
.y11b{bottom:557.862439pt;}
.y3dd{bottom:558.163266pt;}
.y35b{bottom:558.691001pt;}
.y57{bottom:558.693348pt;}
.y2bc{bottom:558.694270pt;}
.y2dd{bottom:559.068000pt;}
.y32e{bottom:560.428683pt;}
.y15{bottom:560.504699pt;}
.y2de{bottom:560.881333pt;}
.y2dc{bottom:560.883623pt;}
.y18a{bottom:561.488160pt;}
.y235{bottom:562.547411pt;}
.y425{bottom:564.134509pt;}
.y16a{bottom:564.435732pt;}
.y3dc{bottom:568.821221pt;}
.y1c7{bottom:569.499838pt;}
.y9c{bottom:571.839070pt;}
.y32d{bottom:571.843244pt;}
.y11a{bottom:571.846245pt;}
.y35a{bottom:572.674807pt;}
.y2bb{bottom:572.678076pt;}
.y56{bottom:572.678217pt;}
.y14{bottom:573.279334pt;}
.y234{bottom:573.961123pt;}
.y2db{bottom:574.791979pt;}
.y424{bottom:574.793314pt;}
.y189{bottom:575.473029pt;}
.y169{bottom:578.419538pt;}
.y3db{bottom:579.404365pt;}
.yd8{bottom:580.915872pt;}
.y32c{bottom:583.256956pt;}
.y1c6{bottom:583.408194pt;}
.y2a3{bottom:583.483715pt;}
.y423{bottom:585.375607pt;}
.y233{bottom:585.451344pt;}
.y9b{bottom:585.747426pt;}
.y119{bottom:585.754601pt;}
.y13{bottom:586.053969pt;}
.y359{bottom:586.583163pt;}
.y2ba{bottom:586.586432pt;}
.y55{bottom:586.586573pt;}
.y2da{bottom:588.775785pt;}
.y188{bottom:589.381384pt;}
.y3da{bottom:590.062319pt;}
.y168{bottom:592.328956pt;}
.y32b{bottom:594.670667pt;}
.yd7{bottom:594.824228pt;}
.y1c4{bottom:595.577333pt;}
.y422{bottom:596.033562pt;}
.y2a2{bottom:596.258350pt;}
.y232{bottom:596.865056pt;}
.y1c5{bottom:597.392000pt;}
.y1c3{bottom:597.392816pt;}
.y12{bottom:598.753048pt;}
.y9a{bottom:599.732294pt;}
.y118{bottom:599.739470pt;}
.y358{bottom:600.568032pt;}
.y2b9{bottom:600.570238pt;}
.y54{bottom:600.570379pt;}
.y3d9{bottom:600.644613pt;}
.y2d9{bottom:602.684141pt;}
.y187{bottom:603.365191pt;}
.y167{bottom:606.312762pt;}
.y421{bottom:606.616706pt;}
.y231{bottom:608.278767pt;}
.yd6{bottom:608.808034pt;}
.y2a1{bottom:609.032985pt;}
.y32a{bottom:610.846667pt;}
.y1c2{bottom:611.301171pt;}
.y3d8{bottom:611.302567pt;}
.y11{bottom:611.527683pt;}
.y329{bottom:612.208000pt;}
.y99{bottom:613.640650pt;}
.y117{bottom:613.647826pt;}
.y357{bottom:614.476388pt;}
.y53{bottom:614.478735pt;}
.y2b8{bottom:614.479657pt;}
.y2d8{bottom:616.669009pt;}
.y186{bottom:617.273546pt;}
.y420{bottom:617.274660pt;}
.yc{bottom:618.180645pt;}
.y230{bottom:619.693328pt;}
.y166{bottom:620.221118pt;}
.y2a0{bottom:621.732064pt;}
.y3d7{bottom:621.885711pt;}
.yd5{bottom:622.717453pt;}
.y10{bottom:624.302318pt;}
.y1c1{bottom:625.284977pt;}
.y98{bottom:627.624456pt;}
.y116{bottom:627.631632pt;}
.y41f{bottom:627.932615pt;}
.y356{bottom:628.460194pt;}
.y2b7{bottom:628.463463pt;}
.y52{bottom:628.463604pt;}
.yb{bottom:629.594356pt;}
.y328{bottom:629.745397pt;}
.y2d7{bottom:630.577365pt;}
.y22f{bottom:631.107039pt;}
.y185{bottom:631.258415pt;}
.y3d6{bottom:632.543665pt;}
.y165{bottom:634.204924pt;}
.y29f{bottom:634.506699pt;}
.yd4{bottom:636.701259pt;}
.yf{bottom:637.076953pt;}
.y41e{bottom:638.514908pt;}
.y1c0{bottom:639.193333pt;}
.y354{bottom:640.629333pt;}
.ya{bottom:641.008917pt;}
.y97{bottom:641.532812pt;}
.y115{bottom:641.539988pt;}
.y355{bottom:642.444000pt;}
.y353{bottom:642.444924pt;}
.y2b6{bottom:642.447269pt;}
.y51{bottom:642.447410pt;}
.y327{bottom:642.520032pt;}
.y22e{bottom:642.521600pt;}
.y3d5{bottom:643.201620pt;}
.y2d6{bottom:644.561171pt;}
.y184{bottom:645.166771pt;}
.y29e{bottom:647.281333pt;}
.y164{bottom:648.114343pt;}
.y41d{bottom:649.173713pt;}
.ye{bottom:649.776032pt;}
.yd3{bottom:650.609615pt;}
.y1bf{bottom:651.364000pt;}
.y9{bottom:652.422628pt;}
.y1be{bottom:653.178311pt;}
.y3d4{bottom:653.783914pt;}
.y22d{bottom:653.935311pt;}
.y326{bottom:655.294667pt;}
.y114{bottom:655.523794pt;}
.y37d{bottom:656.352356pt;}
.y352{bottom:656.354343pt;}
.y2b5{bottom:656.355625pt;}
.y50{bottom:656.355766pt;}
.y2d5{bottom:658.544977pt;}
.y41c{bottom:659.756007pt;}
.y163{bottom:662.098149pt;}
.yd{bottom:662.550667pt;}
.y8{bottom:663.912000pt;}
.y3d3{bottom:664.442718pt;}
.yd2{bottom:664.593421pt;}
.y1bc{bottom:665.348000pt;}
.y22c{bottom:665.349023pt;}
.y29d{bottom:666.107447pt;}
.y1bd{bottom:667.086667pt;}
.y1bb{bottom:667.087676pt;}
.y96{bottom:669.426037pt;}
.y113{bottom:669.433212pt;}
.y37c{bottom:670.336162pt;}
.y351{bottom:670.338149pt;}
.y4f{bottom:670.339572pt;}
.y2b4{bottom:670.340494pt;}
.y41b{bottom:670.413961pt;}
.y2d3{bottom:670.714667pt;}
.y2d4{bottom:672.453333pt;}
.y2d2{bottom:672.454754pt;}
.y183{bottom:673.058933pt;}
.y3d2{bottom:675.025012pt;}
.y162{bottom:676.006505pt;}
.y22b{bottom:676.839244pt;}
.y29c{bottom:677.597669pt;}
.yd1{bottom:678.502839pt;}
.y1ba{bottom:681.071482pt;}
.y41a{bottom:681.071916pt;}
.y112{bottom:683.417018pt;}
.y37b{bottom:684.244518pt;}
.y350{bottom:684.246505pt;}
.y2b3{bottom:684.248850pt;}
.y4e{bottom:684.248990pt;}
.y3d1{bottom:685.682966pt;}
.y2d1{bottom:686.439623pt;}
.y22a{bottom:688.252956pt;}
.y7{bottom:688.554667pt;}
.y29b{bottom:689.011380pt;}
.y161{bottom:689.990311pt;}
.y419{bottom:691.655059pt;}
.y324{bottom:692.485333pt;}
.yd0{bottom:692.486645pt;}
.y325{bottom:694.072000pt;}
.y323{bottom:694.072921pt;}
.y1b9{bottom:694.979838pt;}
.y3d0{bottom:696.341771pt;}
.y111{bottom:697.325374pt;}
.y95{bottom:698.225728pt;}
.y37a{bottom:698.228324pt;}
.y34f{bottom:698.230311pt;}
.y2b2{bottom:698.232656pt;}
.y4d{bottom:698.232796pt;}
.y229{bottom:699.666667pt;}
.y2d0{bottom:700.347979pt;}
.y29a{bottom:700.425091pt;}
.y15f{bottom:702.160000pt;}
.y418{bottom:702.313014pt;}
.y160{bottom:703.898667pt;}
.y182{bottom:703.900032pt;}
.y15e{bottom:703.901009pt;}
.y321{bottom:705.184000pt;}
.ycf{bottom:706.470451pt;}
.y322{bottom:706.772000pt;}
.y320{bottom:706.772032pt;}
.y3cf{bottom:706.924065pt;}
.y1b8{bottom:708.963644pt;}
.y34d{bottom:710.400000pt;}
.y299{bottom:711.839652pt;}
.y94{bottom:712.134083pt;}
.y379{bottom:712.137742pt;}
.y34e{bottom:712.138667pt;}
.y34c{bottom:712.139838pt;}
.y2b1{bottom:712.141012pt;}
.y4c{bottom:712.141152pt;}
.y417{bottom:712.895308pt;}
.y2cf{bottom:714.331785pt;}
.y228{bottom:715.766667pt;}
.y227{bottom:717.202667pt;}
.y3ce{bottom:717.582019pt;}
.y181{bottom:717.883838pt;}
.y15d{bottom:717.884816pt;}
.y31f{bottom:717.958667pt;}
.y31e{bottom:719.546667pt;}
.yce{bottom:720.378807pt;}
.y1b6{bottom:721.133333pt;}
.y1b7{bottom:722.872000pt;}
.y1b5{bottom:722.873527pt;}
.y298{bottom:723.253363pt;}
.y416{bottom:723.553262pt;}
.y110{bottom:725.218599pt;}
.y93{bottom:726.117890pt;}
.y378{bottom:726.121549pt;}
.y34b{bottom:726.123644pt;}
.y4b{bottom:726.124958pt;}
.y2b0{bottom:726.125880pt;}
.y3cd{bottom:728.164313pt;}
.y2ce{bottom:728.240141pt;}
.y180{bottom:731.792194pt;}
.y15c{bottom:731.793171pt;}
.y6{bottom:732.548956pt;}
.y415{bottom:734.136406pt;}
.ycd{bottom:734.363676pt;}
.y297{bottom:734.667925pt;}
.y226{bottom:734.740953pt;}
.y1b3{bottom:735.117333pt;}
.y1b2{bottom:736.851914pt;}
.y1b4{bottom:736.857333pt;}
.y349{bottom:738.293333pt;}
.y3cc{bottom:738.823118pt;}
.y92{bottom:740.026245pt;}
.y377{bottom:740.029904pt;}
.y348{bottom:740.031838pt;}
.y34a{bottom:740.032000pt;}
.y4a{bottom:740.033314pt;}
.y2af{bottom:740.034236pt;}
.y2cd{bottom:742.225009pt;}
.y5{bottom:743.962667pt;}
.y414{bottom:744.794360pt;}
.y17f{bottom:745.776000pt;}
.y15b{bottom:745.776977pt;}
.y17e{bottom:745.777171pt;}
.y296{bottom:746.081636pt;}
.y225{bottom:747.440032pt;}
.ycc{bottom:748.272032pt;}
.y3cb{bottom:749.405411pt;}
.y1b1{bottom:750.760269pt;}
.y91{bottom:754.011114pt;}
.y376{bottom:754.013711pt;}
.y347{bottom:754.015644pt;}
.y2ae{bottom:754.018042pt;}
.y49{bottom:754.018183pt;}
.y413{bottom:755.452315pt;}
.y2cc{bottom:756.133365pt;}
.y295{bottom:757.495347pt;}
.y15a{bottom:759.685333pt;}
.y17d{bottom:759.685527pt;}
.y159{bottom:759.686645pt;}
.y3ca{bottom:760.063366pt;}
.y224{bottom:760.214667pt;}
.ycb{bottom:762.255838pt;}
.y1b0{bottom:764.744076pt;}
.y3{bottom:765.884000pt;}
.y412{bottom:766.035459pt;}
.y345{bottom:766.185333pt;}
.y90{bottom:767.919470pt;}
.y375{bottom:767.923129pt;}
.y346{bottom:767.924000pt;}
.y2ad{bottom:767.926398pt;}
.y48{bottom:767.926539pt;}
.y344{bottom:767.926592pt;}
.y10f{bottom:767.926645pt;}
.y294{bottom:768.985569pt;}
.y2cb{bottom:770.117171pt;}
.y3c9{bottom:770.721320pt;}
.y17b{bottom:771.854667pt;}
.y4{bottom:772.157333pt;}
.y17c{bottom:773.669333pt;}
.y17a{bottom:773.670258pt;}
.y158{bottom:773.670451pt;}
.yca{bottom:776.164194pt;}
.y411{bottom:776.693413pt;}
.y1af{bottom:778.653494pt;}
.y293{bottom:780.399280pt;}
.y3c8{bottom:781.304464pt;}
.y8f{bottom:781.903276pt;}
.y374{bottom:781.906935pt;}
.y2ac{bottom:781.910204pt;}
.y47{bottom:781.910345pt;}
.y343{bottom:781.910398pt;}
.y10e{bottom:781.910451pt;}
.y2ca{bottom:784.025527pt;}
.y410{bottom:787.275707pt;}
.y157{bottom:787.578807pt;}
.y179{bottom:787.579676pt;}
.yc9{bottom:790.148000pt;}
.y292{bottom:791.813841pt;}
.y3c7{bottom:791.962418pt;}
.y8e{bottom:795.811632pt;}
.y373{bottom:795.815291pt;}
.y46{bottom:795.818701pt;}
.y342{bottom:795.818754pt;}
.y10d{bottom:795.818807pt;}
.y2ab{bottom:795.819623pt;}
.y2c8{bottom:796.194667pt;}
.y40f{bottom:797.933661pt;}
.y2c9{bottom:798.009333pt;}
.y2c7{bottom:798.010869pt;}
.y223{bottom:798.236000pt;}
.y2{bottom:799.219748pt;}
.y178{bottom:801.563482pt;}
.y156{bottom:801.563676pt;}
.y3c6{bottom:802.544712pt;}
.y291{bottom:803.227552pt;}
.y40e{bottom:808.592466pt;}
.y8d{bottom:809.796501pt;}
.y372{bottom:809.799097pt;}
.y2aa{bottom:809.803429pt;}
.y45{bottom:809.803570pt;}
.y341{bottom:809.803623pt;}
.y10c{bottom:809.803676pt;}
.y2c6{bottom:811.920287pt;}
.y3c5{bottom:813.202667pt;}
.y290{bottom:814.641263pt;}
.y201{bottom:814.715622pt;}
.y177{bottom:815.471838pt;}
.y155{bottom:815.472032pt;}
.y40d{bottom:819.173910pt;}
.y1{bottom:822.198667pt;}
.y8c{bottom:823.704857pt;}
.y371{bottom:823.707453pt;}
.y2a9{bottom:823.711785pt;}
.y44{bottom:823.711925pt;}
.y340{bottom:823.711979pt;}
.y10b{bottom:823.712032pt;}
.y2c5{bottom:825.904094pt;}
.y28f{bottom:826.055825pt;}
.y151{bottom:826.129333pt;}
.y14f{bottom:826.130017pt;}
.y176{bottom:829.455644pt;}
.y154{bottom:829.455838pt;}
.y40c{bottom:829.831864pt;}
.y150{bottom:829.908000pt;}
.y28e{bottom:837.469536pt;}
.y14e{bottom:837.544578pt;}
.y1ff{bottom:837.545158pt;}
.y8b{bottom:837.688663pt;}
.y370{bottom:837.692322pt;}
.y2a8{bottom:837.695591pt;}
.y43{bottom:837.695732pt;}
.y33f{bottom:837.695785pt;}
.y10a{bottom:837.695838pt;}
.y2c4{bottom:839.812449pt;}
.y40b{bottom:840.414158pt;}
.y200{bottom:841.322667pt;}
.y174{bottom:841.625333pt;}
.y173{bottom:843.361602pt;}
.y175{bottom:843.364000pt;}
.y28d{bottom:848.884097pt;}
.y14d{bottom:848.958289pt;}
.y1fe{bottom:848.958869pt;}
.y40a{bottom:851.072962pt;}
.y8a{bottom:851.597019pt;}
.y36f{bottom:851.600678pt;}
.y42{bottom:851.604087pt;}
.y33e{bottom:851.604141pt;}
.y109{bottom:851.604194pt;}
.y2a7{bottom:851.605009pt;}
.y172{bottom:857.345408pt;}
.y153{bottom:857.348000pt;}
.y14c{bottom:860.372000pt;}
.y14a{bottom:860.373430pt;}
.y28c{bottom:860.373469pt;}
.y409{bottom:861.655256pt;}
.y107{bottom:863.773333pt;}
.y14b{bottom:864.150667pt;}
.y89{bottom:865.581887pt;}
.y36e{bottom:865.584484pt;}
.y106{bottom:865.587644pt;}
.y108{bottom:865.588000pt;}
.y2a6{bottom:865.588816pt;}
.y41{bottom:865.588956pt;}
.y33d{bottom:865.589009pt;}
.y2c3{bottom:867.705674pt;}
.y28b{bottom:871.787180pt;}
.y149{bottom:871.862802pt;}
.y408{bottom:872.313211pt;}
.y104{bottom:877.757333pt;}
.y88{bottom:879.490243pt;}
.y36d{bottom:879.492840pt;}
.y105{bottom:879.496000pt;}
.y103{bottom:879.497171pt;}
.y40{bottom:879.497312pt;}
.y33c{bottom:879.497365pt;}
.y407{bottom:882.971165pt;}
.y28a{bottom:883.201741pt;}
.y148{bottom:883.276513pt;}
.y193{bottom:887.206667pt;}
.y32{bottom:892.194667pt;}
.y87{bottom:893.474049pt;}
.y36c{bottom:893.477708pt;}
.y102{bottom:893.480977pt;}
.y3f{bottom:893.481118pt;}
.y33b{bottom:893.481171pt;}
.y406{bottom:893.554309pt;}
.y289{bottom:894.615452pt;}
.y147{bottom:894.691074pt;}
.y405{bottom:904.212263pt;}
.y100{bottom:905.650667pt;}
.y288{bottom:906.029163pt;}
.y146{bottom:906.104786pt;}
.y86{bottom:907.382405pt;}
.y36b{bottom:907.386064pt;}
.y101{bottom:907.389333pt;}
.y3e{bottom:907.389474pt;}
.yff{bottom:907.389527pt;}
.y404{bottom:914.794557pt;}
.y287{bottom:917.443725pt;}
.y145{bottom:917.518497pt;}
.yfd{bottom:919.558667pt;}
.y85{bottom:921.366211pt;}
.y36a{bottom:921.369870pt;}
.y33a{bottom:921.372977pt;}
.y2c2{bottom:921.373139pt;}
.yfe{bottom:921.373333pt;}
.y3d{bottom:921.374343pt;}
.y403{bottom:925.453362pt;}
.y144{bottom:928.933058pt;}
.y31{bottom:929.310667pt;}
.y286{bottom:934.980000pt;}
.y1fd{bottom:935.055622pt;}
.y84{bottom:935.275630pt;}
.y369{bottom:935.278226pt;}
.y339{bottom:935.281333pt;}
.y2c1{bottom:935.281495pt;}
.y3c{bottom:935.282699pt;}
.y402{bottom:936.111316pt;}
.y192{bottom:945.033333pt;}
.y143{bottom:946.469333pt;}
.y401{bottom:946.693610pt;}
.y338{bottom:947.452000pt;}
.y83{bottom:949.259436pt;}
.y368{bottom:949.263095pt;}
.y2c0{bottom:949.265301pt;}
.y3b{bottom:949.266505pt;}
.y400{bottom:957.351564pt;}
.y82{bottom:963.167792pt;}
.y367{bottom:963.171451pt;}
.y2bf{bottom:963.173657pt;}
.y3a{bottom:963.174861pt;}
.y142{bottom:964.006699pt;}
.y30{bottom:966.500000pt;}
.y3ff{bottom:967.934708pt;}
.yfc{bottom:975.345333pt;}
.y141{bottom:976.781333pt;}
.yfb{bottom:977.151027pt;}
.y81{bottom:977.151598pt;}
.y366{bottom:977.155257pt;}
.y2be{bottom:977.158526pt;}
.y39{bottom:977.158667pt;}
.y3fe{bottom:978.592663pt;}
.y35{bottom:1002.226640pt;}
.yc6{bottom:1003.226640pt;}
.y447{bottom:1003.235091pt;}
.y152{bottom:1003.235683pt;}
.yc5{bottom:1003.237333pt;}
.hd{height:20.907656pt;}
.h12{height:22.987245pt;}
.h13{height:23.522344pt;}
.h14{height:27.671294pt;}
.hb{height:28.021406pt;}
.h5{height:29.887031pt;}
.hc{height:29.887500pt;}
.ha{height:30.647691pt;}
.h11{height:30.746283pt;}
.h18{height:32.199145pt;}
.h16{height:32.501788pt;}
.h17{height:32.505188pt;}
.h6{height:32.689219pt;}
.h4{height:32.997656pt;}
.h7{height:33.623437pt;}
.he{height:34.584147pt;}
.h8{height:37.359844pt;}
.h15{height:40.556120pt;}
.h3{height:49.501875pt;}
.h2{height:63.044531pt;}
.h9{height:65.378906pt;}
.hf{height:66.375653pt;}
.h10{height:66.388011pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:50.116533pt;}
.xbf{left:55.105467pt;}
.xe{left:56.844000pt;}
.x39{left:58.130544pt;}
.xb{left:66.065235pt;}
.x27{left:67.425827pt;}
.x14{left:71.734633pt;}
.x53{left:77.329067pt;}
.x2{left:79.974304pt;}
.xca{left:84.055817pt;}
.x65{left:85.417200pt;}
.xa1{left:87.911733pt;}
.x4e{left:89.801467pt;}
.x88{left:91.691333pt;}
.x54{left:94.790533pt;}
.x17{left:95.773200pt;}
.x3{left:97.965333pt;}
.x18{left:100.308533pt;}
.x4{left:103.710133pt;}
.x4f{left:105.600000pt;}
.x3c{left:107.792000pt;}
.x6a{left:110.058778pt;}
.x3d{left:111.571600pt;}
.x3a{left:114.066133pt;}
.xd0{left:116.937609pt;}
.x3b{left:117.845600pt;}
.x56{left:119.055067pt;}
.x78{left:123.968400pt;}
.xa2{left:127.445600pt;}
.xcb{left:128.578302pt;}
.xba{left:130.696000pt;}
.x83{left:133.114933pt;}
.xa3{left:136.365333pt;}
.xc5{left:139.313333pt;}
.xcd{left:140.597298pt;}
.xb3{left:143.168000pt;}
.xc6{left:145.436000pt;}
.x16{left:149.516432pt;}
.x68{left:151.331254pt;}
.xc7{left:153.371836pt;}
.x99{left:158.060000pt;}
.x70{left:159.042667pt;}
.xbc{left:161.008000pt;}
.x1c{left:165.468000pt;}
.xc0{left:166.374667pt;}
.x71{left:168.037333pt;}
.x2a{left:172.346667pt;}
.x19{left:175.519710pt;}
.xc8{left:177.409195pt;}
.xc1{left:179.754667pt;}
.x72{left:180.964000pt;}
.x8b{left:182.551594pt;}
.x1d{left:183.760000pt;}
.xa4{left:186.180000pt;}
.x73{left:189.958667pt;}
.x9a{left:197.292000pt;}
.x79{left:200.768000pt;}
.x38{left:201.750667pt;}
.x74{left:205.152000pt;}
.x86{left:206.664000pt;}
.x7a{left:208.781333pt;}
.xcc{left:210.517118pt;}
.xc9{left:211.651178pt;}
.xac{left:212.560000pt;}
.x87{left:214.677333pt;}
.x50{left:220.421333pt;}
.xcf{left:221.553376pt;}
.x9f{left:223.443402pt;}
.xf{left:233.647930pt;}
.x6e{left:234.633333pt;}
.x51{left:236.145333pt;}
.x69{left:238.410746pt;}
.x9b{left:241.058667pt;}
.x89{left:243.174667pt;}
.x8d{left:245.593333pt;}
.x6f{left:246.878667pt;}
.xbd{left:249.977333pt;}
.x8c{left:251.188000pt;}
.x9c{left:252.321333pt;}
.x8a{left:253.454667pt;}
.x7b{left:259.049333pt;}
.x40{left:260.032000pt;}
.x12{left:261.542667pt;}
.xd1{left:263.430287pt;}
.xbe{left:268.421333pt;}
.x7{left:269.329333pt;}
.x41{left:271.521333pt;}
.x7c{left:274.242667pt;}
.x9d{left:275.829333pt;}
.x75{left:281.877333pt;}
.x5{left:284.973235pt;}
.x9e{left:286.714667pt;}
.x66{left:291.323065pt;}
.x76{left:294.046667pt;}
.xaa{left:300.321333pt;}
.x10{left:304.554667pt;}
.x3e{left:307.426667pt;}
.x3f{left:309.845333pt;}
.x13{left:315.786667pt;}
.x15{left:316.721692pt;}
.x52{left:319.370667pt;}
.xab{left:321.108000pt;}
.x11{left:324.510667pt;}
.x7d{left:335.017333pt;}
.xce{left:336.449644pt;}
.x67{left:347.637564pt;}
.xb4{left:355.426667pt;}
.x4d{left:358.522059pt;}
.x2b{left:360.869333pt;}
.xb5{left:363.438667pt;}
.x6{left:366.610258pt;}
.x55{left:369.108000pt;}
.x1a{left:373.417333pt;}
.xbb{left:375.912000pt;}
.x1b{left:377.952000pt;}
.x84{left:382.185333pt;}
.xa9{left:392.559973pt;}
.x29{left:394.946693pt;}
.x85{left:396.397333pt;}
.x7e{left:403.729333pt;}
.xc{left:408.790162pt;}
.x6b{left:416.806667pt;}
.xd{left:424.738863pt;}
.xd2{left:430.861421pt;}
.x20{left:432.072185pt;}
.x35{left:441.070667pt;}
.x21{left:443.338667pt;}
.x22{left:447.874667pt;}
.x94{left:449.158667pt;}
.xc4{left:453.089333pt;}
.x25{left:455.131544pt;}
.xa7{left:457.776000pt;}
.x57{left:459.893333pt;}
.x5e{left:461.329333pt;}
.x95{left:462.765333pt;}
.x96{left:468.661333pt;}
.x44{left:470.550667pt;}
.x7f{left:476.069333pt;}
.x30{left:478.638667pt;}
.xd7{left:479.616653pt;}
.x45{left:482.192000pt;}
.x31{left:485.366667pt;}
.x8{left:486.951459pt;}
.x63{left:493.606667pt;}
.xda{left:496.851136pt;}
.x64{left:498.141333pt;}
.xa5{left:502.374667pt;}
.x42{left:504.793333pt;}
.xd5{left:507.509941pt;}
.x46{left:508.573333pt;}
.x47{left:511.748000pt;}
.xa6{left:514.696000pt;}
.x43{left:516.585333pt;}
.x58{left:519.156000pt;}
.xd9{left:522.476303pt;}
.x48{left:523.766667pt;}
.x5f{left:525.732000pt;}
.x23{left:528.832000pt;}
.xb6{left:531.174667pt;}
.x6c{left:532.307370pt;}
.x80{left:533.669333pt;}
.xd3{left:535.024074pt;}
.x24{left:536.541333pt;}
.x2c{left:538.506667pt;}
.xd6{left:541.903245pt;}
.x60{left:545.612000pt;}
.x2d{left:550.828000pt;}
.x33{left:552.264000pt;}
.x26{left:561.636522pt;}
.x34{left:565.038667pt;}
.xd4{left:568.434640pt;}
.xb7{left:570.330667pt;}
.x97{left:577.512000pt;}
.xb8{left:579.174667pt;}
.x98{left:586.506667pt;}
.x81{left:588.774667pt;}
.x77{left:593.079048pt;}
.x32{left:594.973333pt;}
.x1f{left:599.805596pt;}
.xd8{left:602.827945pt;}
.x59{left:604.649333pt;}
.x28{left:606.053347pt;}
.x1e{left:608.650282pt;}
.x90{left:610.090667pt;}
.x9{left:613.111139pt;}
.xaf{left:615.685333pt;}
.x5a{left:620.372000pt;}
.x91{left:622.714667pt;}
.xc3{left:626.418667pt;}
.xb0{left:627.854667pt;}
.x4b{left:629.292000pt;}
.x8e{left:632.617333pt;}
.x4c{left:634.582667pt;}
.xa{left:636.846118pt;}
.x36{left:638.513333pt;}
.x8f{left:641.158667pt;}
.x37{left:647.054667pt;}
.x61{left:649.701333pt;}
.x92{left:651.212000pt;}
.xb9{left:652.876000pt;}
.x62{left:654.160000pt;}
.xae{left:655.672000pt;}
.x93{left:660.132000pt;}
.xa0{left:665.574667pt;}
.x2e{left:675.024000pt;}
.x2f{left:686.286667pt;}
.x6d{left:687.572000pt;}
.xb1{left:697.776000pt;}
.x5c{left:700.724000pt;}
.xa8{left:707.903953pt;}
.x5d{left:709.644000pt;}
.xad{left:711.382667pt;}
.xb2{left:714.406667pt;}
.x49{left:716.446667pt;}
.x4a{left:719.621333pt;}
.x82{left:729.524000pt;}
.xc2{left:731.711721pt;}
.x5b{left:734.589333pt;}
}




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