
    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_631312d3fb3010c1882ee1c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.972000;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_c8ffd27e664216e5ff9b9dad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_587f933220fd2ec5598dd755.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_455a2de7fbfe0fb6c0c50b71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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_1c091362fd6040d22e9b91cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.962000;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_b5b4f60fdc0081241c0e6dcd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-41.604000px;}
.v8{vertical-align:-35.862000px;}
.va{vertical-align:-32.088000px;}
.vf{vertical-align:-29.892000px;}
.vc{vertical-align:-24.726000px;}
.v9{vertical-align:-21.690000px;}
.v7{vertical-align:-18.990000px;}
.v6{vertical-align:-16.878000px;}
.v2{vertical-align:-14.364000px;}
.ve{vertical-align:-13.014000px;}
.vb{vertical-align:-4.812000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:13.092000px;}
.v4{vertical-align:16.878000px;}
.v5{vertical-align:21.690000px;}
.v3{vertical-align:22.854000px;}
.v1{vertical-align:31.242000px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.001048px;}
.ls15{letter-spacing:0.001668px;}
.ls13{letter-spacing:0.003163px;}
.lsd{letter-spacing:2.987521px;}
.ls7{letter-spacing:10.956529px;}
.lsf{letter-spacing:10.957031px;}
.lse{letter-spacing:10.957988px;}
.ls3{letter-spacing:10.958041px;}
.ls1{letter-spacing:10.958148px;}
.lsc{letter-spacing:10.959217px;}
.ls5{letter-spacing:10.959553px;}
.ls10{letter-spacing:10.960285px;}
.lsa{letter-spacing:13.568688px;}
.ls12{letter-spacing:13.569163px;}
.ls2{letter-spacing:15.200012px;}
.lsb{letter-spacing:16.554298px;}
.ls4{letter-spacing:16.554836px;}
.ls6{letter-spacing:16.557188px;}
.ls16{letter-spacing:18.087163px;}
.ls14{letter-spacing:18.093163px;}
.ls19{letter-spacing:25.756903px;}
.ls1b{letter-spacing:35.151163px;}
.ls11{letter-spacing:35.862668px;}
.ls17{letter-spacing:35.864714px;}
.ls9{letter-spacing:35.865516px;}
.ls18{letter-spacing:35.868658px;}
.ls0{letter-spacing:1414.806996px;}
.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;}
}
.ws28{word-spacing:-54.372022px;}
.ws92{word-spacing:-29.887800px;}
.ws1c{word-spacing:-27.186125px;}
.ws11a{word-spacing:-24.807293px;}
.ws1b{word-spacing:-22.654952px;}
.ws22{word-spacing:-22.415850px;}
.wsb1{word-spacing:-21.949655px;}
.wsb3{word-spacing:-21.806522px;}
.wsb2{word-spacing:-21.806194px;}
.wsc{word-spacing:-20.389594px;}
.wse{word-spacing:-20.174400px;}
.ws9{word-spacing:-18.124007px;}
.ws2b{word-spacing:-17.932725px;}
.ws2e{word-spacing:-16.976270px;}
.ws96{word-spacing:-16.916495px;}
.ws32{word-spacing:-16.852307px;}
.ws7d{word-spacing:-16.426445px;}
.ws3f{word-spacing:-13.688612px;}
.ws26{word-spacing:-11.261798px;}
.ws6f{word-spacing:-11.104656px;}
.ws109{word-spacing:-11.046605px;}
.ws1d{word-spacing:-10.974874px;}
.ws5b{word-spacing:-10.950917px;}
.ws38{word-spacing:-10.904294px;}
.ws156{word-spacing:-10.903142px;}
.ws119{word-spacing:-10.014554px;}
.ws6d{word-spacing:-9.823760px;}
.ws72{word-spacing:-9.385975px;}
.ws12{word-spacing:-9.384769px;}
.ws1a{word-spacing:-9.324994px;}
.ws116{word-spacing:-9.147738px;}
.wse0{word-spacing:-9.147360px;}
.ws14f{word-spacing:-9.147148px;}
.ws70{word-spacing:-9.147090px;}
.ws7c{word-spacing:-9.146860px;}
.wseb{word-spacing:-9.146638px;}
.ws10e{word-spacing:-9.146282px;}
.ws42{word-spacing:-9.146186px;}
.ws63{word-spacing:-9.146064px;}
.ws10a{word-spacing:-9.146036px;}
.wsdf{word-spacing:-9.145694px;}
.ws11{word-spacing:-9.145667px;}
.ws117{word-spacing:-9.145489px;}
.ws49{word-spacing:-9.145310px;}
.ws106{word-spacing:-9.144907px;}
.ws76{word-spacing:-9.144874px;}
.ws16{word-spacing:-9.144852px;}
.ws157{word-spacing:-9.144812px;}
.wsa5{word-spacing:-9.144725px;}
.ws12b{word-spacing:-9.144618px;}
.ws56{word-spacing:-9.144470px;}
.ws97{word-spacing:-9.144144px;}
.ws16e{word-spacing:-9.144041px;}
.wsa3{word-spacing:-9.143970px;}
.wsa1{word-spacing:-9.143923px;}
.ws15c{word-spacing:-9.143539px;}
.ws93{word-spacing:-9.143156px;}
.wsae{word-spacing:-9.143106px;}
.ws128{word-spacing:-9.142978px;}
.wsd8{word-spacing:-9.142890px;}
.ws1e{word-spacing:-9.142878px;}
.ws15d{word-spacing:-9.142824px;}
.ws75{word-spacing:-9.142250px;}
.ws73{word-spacing:-9.141904px;}
.ws15a{word-spacing:-9.141860px;}
.ws158{word-spacing:-9.141163px;}
.wsb5{word-spacing:-9.140605px;}
.wsda{word-spacing:-9.140273px;}
.ws144{word-spacing:-9.117973px;}
.wsb4{word-spacing:-9.090194px;}
.ws172{word-spacing:-9.089714px;}
.ws171{word-spacing:-9.088908px;}
.ws145{word-spacing:-9.087343px;}
.wsd1{word-spacing:-9.087186px;}
.wse3{word-spacing:-9.086750px;}
.ws15b{word-spacing:-9.086419px;}
.ws165{word-spacing:-9.086296px;}
.wsf5{word-spacing:-9.086071px;}
.ws18{word-spacing:-9.085891px;}
.ws10b{word-spacing:-9.085874px;}
.ws134{word-spacing:-9.085801px;}
.ws160{word-spacing:-9.085248px;}
.wsa2{word-spacing:-9.084194px;}
.ws98{word-spacing:-9.083959px;}
.wsfa{word-spacing:-9.083099px;}
.ws170{word-spacing:-9.082657px;}
.ws10f{word-spacing:-9.082290px;}
.ws3d{word-spacing:-9.081685px;}
.ws14d{word-spacing:-9.081583px;}
.ws153{word-spacing:-9.081534px;}
.wsd9{word-spacing:-9.081148px;}
.ws3e{word-spacing:-9.080750px;}
.ws17b{word-spacing:-9.080700px;}
.ws159{word-spacing:-9.080578px;}
.ws132{word-spacing:-9.080071px;}
.ws95{word-spacing:-9.078985px;}
.ws186{word-spacing:-9.056357px;}
.ws18e{word-spacing:-9.051533px;}
.ws181{word-spacing:-9.045922px;}
.ws18b{word-spacing:-9.043760px;}
.ws16d{word-spacing:-9.030329px;}
.wsc0{word-spacing:-9.028854px;}
.ws175{word-spacing:-9.028061px;}
.ws177{word-spacing:-9.027196px;}
.ws17e{word-spacing:-9.025816px;}
.ws166{word-spacing:-9.023448px;}
.ws178{word-spacing:-9.023222px;}
.ws111{word-spacing:-8.906542px;}
.ws25{word-spacing:-8.905144px;}
.ws19{word-spacing:-8.901811px;}
.ws74{word-spacing:-8.901476px;}
.ws110{word-spacing:-8.899667px;}
.ws15f{word-spacing:-8.844259px;}
.ws78{word-spacing:-8.783962px;}
.ws9b{word-spacing:-8.781521px;}
.ws6e{word-spacing:-8.761890px;}
.ws135{word-spacing:-8.725817px;}
.wsb{word-spacing:-8.446349px;}
.wsd5{word-spacing:-8.427224px;}
.wsa{word-spacing:-8.392550px;}
.ws8{word-spacing:-8.233594px;}
.ws7{word-spacing:-8.231155px;}
.ws21{word-spacing:-8.212826px;}
.wsac{word-spacing:-8.179324px;}
.wsd{word-spacing:-8.177357px;}
.wsea{word-spacing:-7.761124px;}
.wsd6{word-spacing:-7.713188px;}
.ws50{word-spacing:-7.507834px;}
.ws71{word-spacing:-7.506751px;}
.ws102{word-spacing:-7.460014px;}
.wsa9{word-spacing:-7.364372px;}
.ws4{word-spacing:-7.316552px;}
.ws39{word-spacing:-7.313088px;}
.ws3a{word-spacing:-7.286297px;}
.wsad{word-spacing:-7.280087px;}
.ws6a{word-spacing:-7.272044px;}
.ws163{word-spacing:-7.271689px;}
.ws5f{word-spacing:-7.271564px;}
.ws164{word-spacing:-7.271457px;}
.ws29{word-spacing:-7.271057px;}
.ws2a{word-spacing:-7.270728px;}
.ws14{word-spacing:-7.270390px;}
.ws15{word-spacing:-7.269514px;}
.wse5{word-spacing:-7.269477px;}
.ws5{word-spacing:-7.268887px;}
.ws13{word-spacing:-7.268731px;}
.ws7b{word-spacing:-7.268616px;}
.ws3b{word-spacing:-7.268000px;}
.ws31{word-spacing:-7.267222px;}
.ws68{word-spacing:-7.265258px;}
.ws47{word-spacing:-7.261484px;}
.ws80{word-spacing:-7.250699px;}
.wsfe{word-spacing:-7.242886px;}
.ws13f{word-spacing:-7.241651px;}
.ws12f{word-spacing:-7.240600px;}
.wsde{word-spacing:-7.233004px;}
.ws100{word-spacing:-7.225181px;}
.ws3c{word-spacing:-7.220179px;}
.ws184{word-spacing:-7.107240px;}
.ws142{word-spacing:-7.062842px;}
.wsa4{word-spacing:-7.020751px;}
.wsab{word-spacing:-7.002720px;}
.wsb8{word-spacing:-6.909540px;}
.ws60{word-spacing:-6.874987px;}
.ws146{word-spacing:-6.873422px;}
.ws16f{word-spacing:-6.872996px;}
.ws94{word-spacing:-6.814788px;}
.wsbc{word-spacing:-6.791880px;}
.ws120{word-spacing:-6.270354px;}
.ws115{word-spacing:-6.171877px;}
.wsb9{word-spacing:-6.062676px;}
.ws17{word-spacing:-5.625214px;}
.ws2c{word-spacing:-5.454947px;}
.ws11e{word-spacing:-5.326656px;}
.ws183{word-spacing:-5.128230px;}
.wsd7{word-spacing:-5.100596px;}
.ws150{word-spacing:-4.843422px;}
.ws15e{word-spacing:-4.662497px;}
.ws1f{word-spacing:-4.621715px;}
.wsaa{word-spacing:-4.618717px;}
.ws105{word-spacing:-4.618499px;}
.ws24{word-spacing:-4.602721px;}
.ws9a{word-spacing:-4.561542px;}
.ws173{word-spacing:-4.542946px;}
.wse2{word-spacing:-4.430903px;}
.ws77{word-spacing:-4.381957px;}
.ws11f{word-spacing:-4.361234px;}
.ws6b{word-spacing:-4.324309px;}
.ws123{word-spacing:-3.972163px;}
.ws54{word-spacing:-3.682186px;}
.ws125{word-spacing:-3.597093px;}
.ws34{word-spacing:-3.430903px;}
.ws126{word-spacing:-3.180882px;}
.ws124{word-spacing:-2.896549px;}
.ws154{word-spacing:-2.885051px;}
.ws11d{word-spacing:-2.672099px;}
.ws176{word-spacing:-2.570351px;}
.ws8c{word-spacing:-2.486671px;}
.wsc5{word-spacing:-2.295998px;}
.wse1{word-spacing:-2.293627px;}
.ws127{word-spacing:-1.906072px;}
.ws79{word-spacing:-1.614720px;}
.wsba{word-spacing:-1.613026px;}
.ws118{word-spacing:-1.612727px;}
.wsbd{word-spacing:-1.612189px;}
.ws51{word-spacing:-1.570866px;}
.ws113{word-spacing:-1.569092px;}
.ws7e{word-spacing:-1.568734px;}
.wsaf{word-spacing:-1.568335px;}
.ws35{word-spacing:-1.568015px;}
.ws89{word-spacing:-1.567936px;}
.ws147{word-spacing:-1.567139px;}
.ws112{word-spacing:-1.566880px;}
.ws121{word-spacing:-1.566601px;}
.ws10c{word-spacing:-1.566421px;}
.ws151{word-spacing:-1.565325px;}
.wsbf{word-spacing:-1.562773px;}
.ws130{word-spacing:-1.562693px;}
.wsf3{word-spacing:-1.560521px;}
.ws14e{word-spacing:-1.560421px;}
.wsb6{word-spacing:-1.522368px;}
.wsdc{word-spacing:-1.518860px;}
.ws140{word-spacing:-1.517086px;}
.wsf7{word-spacing:-1.492727px;}
.ws107{word-spacing:-1.450567px;}
.ws12d{word-spacing:-0.371315px;}
.ws12a{word-spacing:-0.371203px;}
.ws66{word-spacing:-0.371043px;}
.wsf1{word-spacing:-0.370706px;}
.wsb0{word-spacing:-0.370370px;}
.ws139{word-spacing:-0.370087px;}
.ws114{word-spacing:-0.370081px;}
.ws122{word-spacing:-0.370028px;}
.ws104{word-spacing:-0.370022px;}
.wsff{word-spacing:-0.369974px;}
.wse7{word-spacing:-0.369916px;}
.ws2f{word-spacing:-0.369862px;}
.ws7a{word-spacing:-0.369472px;}
.ws9e{word-spacing:-0.369467px;}
.ws12c{word-spacing:-0.369184px;}
.wsd3{word-spacing:-0.368959px;}
.wsa0{word-spacing:-0.368906px;}
.ws9c{word-spacing:-0.368404px;}
.ws101{word-spacing:-0.368179px;}
.ws108{word-spacing:-0.368014px;}
.wsd0{word-spacing:-0.367955px;}
.ws162{word-spacing:-0.367843px;}
.wsc7{word-spacing:-0.367730px;}
.ws152{word-spacing:-0.367725px;}
.ws90{word-spacing:-0.367559px;}
.ws11c{word-spacing:-0.367501px;}
.ws53{word-spacing:-0.367458px;}
.ws5a{word-spacing:-0.367453px;}
.ws84{word-spacing:-0.367394px;}
.ws45{word-spacing:-0.367287px;}
.ws36{word-spacing:-0.367180px;}
.wsc1{word-spacing:-0.366892px;}
.wsf9{word-spacing:-0.366721px;}
.wsbe{word-spacing:-0.366384px;}
.ws4c{word-spacing:-0.366336px;}
.ws8e{word-spacing:-0.366218px;}
.wsbb{word-spacing:-0.366165px;}
.wsc8{word-spacing:-0.366042px;}
.ws87{word-spacing:-0.365882px;}
.wsa7{word-spacing:-0.365775px;}
.wsfc{word-spacing:-0.341657px;}
.ws131{word-spacing:-0.340706px;}
.wsee{word-spacing:-0.340653px;}
.ws149{word-spacing:-0.340477px;}
.ws9d{word-spacing:-0.340252px;}
.ws7f{word-spacing:-0.339969px;}
.wse4{word-spacing:-0.339745px;}
.wsc4{word-spacing:-0.339301px;}
.wsce{word-spacing:-0.339184px;}
.wsdb{word-spacing:-0.338569px;}
.wscb{word-spacing:-0.338345px;}
.ws5e{word-spacing:-0.337960px;}
.ws4f{word-spacing:-0.337789px;}
.ws13e{word-spacing:-0.337784px;}
.wscc{word-spacing:-0.337394px;}
.ws8a{word-spacing:-0.337223px;}
.ws141{word-spacing:-0.336833px;}
.wsc9{word-spacing:-0.336667px;}
.wsdd{word-spacing:-0.336437px;}
.wsb7{word-spacing:-0.336384px;}
.ws81{word-spacing:-0.336277px;}
.ws13b{word-spacing:-0.336218px;}
.ws137{word-spacing:-0.335882px;}
.ws59{word-spacing:-0.179254px;}
.wsf2{word-spacing:-0.177420px;}
.wsec{word-spacing:-0.177305px;}
.ws4a{word-spacing:-0.176226px;}
.ws55{word-spacing:-0.176124px;}
.ws6c{word-spacing:-0.175446px;}
.ws41{word-spacing:-0.175279px;}
.ws61{word-spacing:-0.175270px;}
.ws43{word-spacing:-0.174889px;}
.ws52{word-spacing:-0.173029px;}
.ws5c{word-spacing:-0.122348px;}
.ws62{word-spacing:-0.121494px;}
.ws82{word-spacing:-0.121264px;}
.ws57{word-spacing:-0.119254px;}
.ws5d{word-spacing:-0.115248px;}
.ws143{word-spacing:-0.095790px;}
.ws37{word-spacing:-0.092901px;}
.ws3{word-spacing:-0.087935px;}
.ws1{word-spacing:-0.086077px;}
.ws0{word-spacing:-0.085789px;}
.ws6{word-spacing:-0.071731px;}
.wse9{word-spacing:-0.065455px;}
.ws23{word-spacing:-0.059776px;}
.ws33{word-spacing:-0.059231px;}
.ws46{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.002810px;}
.ws20{word-spacing:0.000000px;}
.wse8{word-spacing:0.191282px;}
.ws18d{word-spacing:1.016185px;}
.ws187{word-spacing:1.135736px;}
.ws86{word-spacing:1.195515px;}
.ws14a{word-spacing:1.863581px;}
.ws58{word-spacing:2.270776px;}
.ws48{word-spacing:2.270963px;}
.ws64{word-spacing:2.276776px;}
.ws40{word-spacing:2.277038px;}
.ws4e{word-spacing:2.330551px;}
.ws88{word-spacing:2.438851px;}
.ws161{word-spacing:2.909479px;}
.ws8f{word-spacing:2.913526px;}
.ws27{word-spacing:2.917057px;}
.wse6{word-spacing:2.951579px;}
.ws138{word-spacing:2.953712px;}
.ws65{word-spacing:2.954589px;}
.ws4b{word-spacing:2.954928px;}
.ws8d{word-spacing:2.956303px;}
.ws133{word-spacing:2.956403px;}
.ws44{word-spacing:2.957001px;}
.ws83{word-spacing:2.958017px;}
.ws129{word-spacing:2.959114px;}
.ws4d{word-spacing:2.959971px;}
.ws155{word-spacing:2.960589px;}
.wsf0{word-spacing:2.961127px;}
.wsc3{word-spacing:2.961147px;}
.wsca{word-spacing:2.964877px;}
.ws13d{word-spacing:3.002987px;}
.ws13a{word-spacing:3.004303px;}
.wsfb{word-spacing:3.005200px;}
.wsed{word-spacing:3.005619px;}
.ws2d{word-spacing:3.116071px;}
.ws69{word-spacing:3.251801px;}
.ws17d{word-spacing:3.526760px;}
.ws85{word-spacing:3.921289px;}
.ws14c{word-spacing:4.348264px;}
.ws8b{word-spacing:4.638598px;}
.ws13c{word-spacing:4.686419px;}
.ws91{word-spacing:4.973342px;}
.ws179{word-spacing:5.678682px;}
.wsc2{word-spacing:6.073216px;}
.ws180{word-spacing:6.097111px;}
.ws67{word-spacing:6.551422px;}
.ws99{word-spacing:6.796374px;}
.ws14b{word-spacing:6.798599px;}
.wsfd{word-spacing:7.794758px;}
.ws12e{word-spacing:7.839883px;}
.ws174{word-spacing:8.129482px;}
.ws185{word-spacing:8.308808px;}
.ws30{word-spacing:9.516299px;}
.ws17f{word-spacing:9.564096px;}
.ws17a{word-spacing:10.078021px;}
.ws188{word-spacing:10.221628px;}
.ws18c{word-spacing:10.640057px;}
.ws182{word-spacing:10.879159px;}
.ws9f{word-spacing:11.572585px;}
.wsd4{word-spacing:11.811688px;}
.wscd{word-spacing:13.198486px;}
.ws18a{word-spacing:14.884124px;}
.ws189{word-spacing:20.622582px;}
.ws17c{word-spacing:22.894055px;}
.ws16a{word-spacing:49.075768px;}
.ws16c{word-spacing:49.079770px;}
.ws16b{word-spacing:49.139678px;}
.ws169{word-spacing:63.485689px;}
.ws168{word-spacing:101.622522px;}
.wsf8{word-spacing:139.794868px;}
.ws148{word-spacing:221.900095px;}
.ws167{word-spacing:230.494847px;}
.wsf{word-spacing:253.174281px;}
.wsf4{word-spacing:253.818659px;}
.ws10d{word-spacing:280.346392px;}
.ws136{word-spacing:387.598841px;}
.ws10{word-spacing:420.600556px;}
.wsa6{word-spacing:689.517825px;}
.ws103{word-spacing:999.606595px;}
.wscf{word-spacing:1258.235120px;}
.wsa8{word-spacing:1333.400509px;}
.ws11b{word-spacing:1523.173034px;}
.wsc6{word-spacing:1545.755659px;}
.wsef{word-spacing:1563.537406px;}
.wsd2{word-spacing:1739.464702px;}
.wsf6{word-spacing:1785.326589px;}
._6{margin-left:-2681.984889px;}
._16{margin-left:-11.763868px;}
._12{margin-left:-10.663937px;}
._1d{margin-left:-8.588574px;}
._1e{margin-left:-7.284900px;}
._b{margin-left:-6.245360px;}
._4{margin-left:-4.734246px;}
._7{margin-left:-3.647539px;}
._0{margin-left:-2.582316px;}
._1{margin-left:-1.377235px;}
._2{width:1.377235px;}
._9{width:2.964877px;}
._1a{width:4.590778px;}
._19{width:5.642831px;}
._40{width:7.072482px;}
._48{width:8.110997px;}
._18{width:10.845714px;}
._2b{width:12.568964px;}
._d{width:13.772333px;}
._5{width:15.100573px;}
._a{width:16.128749px;}
._e{width:18.034438px;}
._f{width:19.060937px;}
._10{width:20.088690px;}
._29{width:22.131376px;}
._41{width:23.142726px;}
._20{width:24.216352px;}
._31{width:25.230144px;}
._3{width:26.511778px;}
._27{width:27.831589px;}
._1b{width:29.133482px;}
._2a{width:30.547801px;}
._17{width:32.470198px;}
._42{width:33.816273px;}
._2e{width:34.822969px;}
._c{width:35.865516px;}
._4a{width:37.696188px;}
._13{width:38.734276px;}
._4c{width:39.748394px;}
._44{width:40.898476px;}
._49{width:42.223612px;}
._45{width:43.456861px;}
._46{width:45.629165px;}
._43{width:48.172022px;}
._4b{width:52.249171px;}
._24{width:57.795981px;}
._47{width:63.254550px;}
._3b{width:84.096137px;}
._3e{width:86.028413px;}
._3f{width:96.898644px;}
._28{width:152.265439px;}
._14{width:154.749173px;}
._23{width:182.632807px;}
._37{width:188.404592px;}
._22{width:194.522104px;}
._2c{width:203.305504px;}
._3d{width:208.258324px;}
._39{width:214.279576px;}
._38{width:216.975772px;}
._25{width:228.159021px;}
._3a{width:229.177676px;}
._21{width:237.541605px;}
._34{width:239.799290px;}
._2f{width:242.392269px;}
._32{width:249.262634px;}
._30{width:262.956511px;}
._36{width:272.395157px;}
._3c{width:280.653764px;}
._35{width:284.607878px;}
._33{width:286.822353px;}
._1f{width:288.017177px;}
._1c{width:297.431850px;}
._2d{width:298.632438px;}
._26{width:302.049597px;}
._8{width:339.264614px;}
._15{width:776.315482px;}
._11{width:2472.806509px;}
.fc8{color:transparent;}
.fc7{color:rgb(255,0,255);}
.fc5{color:rgb(255,128,0);}
.fca{color:rgb(219,112,147);}
.fc4{color:rgb(170,175,0);}
.fc3{color:rgb(255,130,0);}
.fc6{color:rgb(147,112,219);}
.fc2{color:rgb(28,57,187);}
.fcc{color:rgb(238,43,137);}
.fcb{color:rgb(50,105,0);}
.fc1{color:rgb(170,0,0);}
.fc9{color:rgb(0,84,115);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:29.887800px;}
.fs9{font-size:41.842800px;}
.fs1{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs8{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs6{font-size:84.000000px;}
.fs0{font-size:86.077200px;}
.fsb{font-size:125.010000px;}
.fs7{font-size:143.461800px;}
.fsa{font-size:524.316000px;}
.y27e{bottom:-289.416000px;}
.y27d{bottom:-274.473000px;}
.y27c{bottom:-259.528500px;}
.y27b{bottom:-244.585500px;}
.y27a{bottom:-229.641000px;}
.y279{bottom:-214.696500px;}
.y278{bottom:-199.753500px;}
.y277{bottom:-184.809000px;}
.y276{bottom:-169.864500px;}
.y275{bottom:-154.921500px;}
.y274{bottom:-139.977000px;}
.y273{bottom:-125.032500px;}
.y272{bottom:-105.870000px;}
.y271{bottom:-92.275500px;}
.y270{bottom:-77.332500px;}
.y26f{bottom:-62.388000px;}
.y26e{bottom:-47.443500px;}
.y26d{bottom:-32.500500px;}
.y26c{bottom:-17.556000px;}
.y2c0{bottom:-6.426000px;}
.y26b{bottom:-2.611500px;}
.y0{bottom:0.000000px;}
.y43{bottom:5.182350px;}
.y31b{bottom:7.747500px;}
.y2bf{bottom:8.518500px;}
.y179{bottom:8.766000px;}
.y4bf{bottom:11.281500px;}
.y26a{bottom:12.331500px;}
.y31a{bottom:22.690500px;}
.y2be{bottom:23.461500px;}
.y178{bottom:23.710500px;}
.y269{bottom:27.276000px;}
.y319{bottom:37.635000px;}
.y2bd{bottom:38.406000px;}
.y177{bottom:38.653500px;}
.yef{bottom:42.219000px;}
.y268{bottom:46.438500px;}
.y4be{bottom:48.784500px;}
.y318{bottom:52.579500px;}
.y2bc{bottom:53.350500px;}
.y176{bottom:53.598000px;}
.y267{bottom:59.124000px;}
.y4ba{bottom:61.330500px;}
.yee{bottom:61.383000px;}
.y2bb{bottom:68.293500px;}
.y175{bottom:68.542500px;}
.y317{bottom:71.742000px;}
.y266{bottom:74.068500px;}
.yed{bottom:75.180000px;}
.y2ba{bottom:83.238000px;}
.y316{bottom:85.539000px;}
.y4bd{bottom:86.287500px;}
.y174{bottom:87.705000px;}
.y265{bottom:89.011500px;}
.yec{bottom:90.124500px;}
.y2b9{bottom:98.182500px;}
.y315{bottom:100.483500px;}
.y172{bottom:101.299500px;}
.y264{bottom:103.956000px;}
.yeb{bottom:105.067500px;}
.y426{bottom:109.458000px;}
.y2b8{bottom:113.125500px;}
.y85{bottom:114.619500px;}
.y314{bottom:115.426500px;}
.y171{bottom:116.242500px;}
.y263{bottom:118.900500px;}
.y4bc{bottom:123.790500px;}
.yea{bottom:124.231500px;}
.y425{bottom:124.401000px;}
.y2b7{bottom:128.070000px;}
.y313{bottom:130.371000px;}
.y170{bottom:131.187000px;}
.y3b8{bottom:133.752000px;}
.y262{bottom:133.843500px;}
.ye9{bottom:136.893000px;}
.y424{bottom:139.345500px;}
.y312{bottom:145.315500px;}
.y16f{bottom:146.131500px;}
.y2b6{bottom:147.232500px;}
.y3b7{bottom:148.695000px;}
.ye8{bottom:151.836000px;}
.y261{bottom:153.007500px;}
.y7d{bottom:153.414000px;}
.y423{bottom:154.290000px;}
.y41{bottom:159.451500px;}
.y3ea{bottom:159.744000px;}
.y16e{bottom:161.074500px;}
.y4bb{bottom:161.293500px;}
.y229{bottom:163.332000px;}
.y195{bottom:163.935000px;}
.y311{bottom:164.478000px;}
.y84{bottom:164.826000px;}
.y25d{bottom:166.600500px;}
.ye7{bottom:166.780500px;}
.y2b5{bottom:166.804500px;}
.y284{bottom:166.924500px;}
.y3d{bottom:167.526000px;}
.y7c{bottom:168.358500px;}
.y499{bottom:168.418500px;}
.y489{bottom:168.582000px;}
.y422{bottom:169.233000px;}
.y185{bottom:172.492500px;}
.y2f4{bottom:174.396000px;}
.y16d{bottom:176.019000px;}
.y30f{bottom:178.275000px;}
.y25c{bottom:181.545000px;}
.ye6{bottom:181.725000px;}
.y3a3{bottom:181.750500px;}
.y40{bottom:181.867500px;}
.y3e9{bottom:182.160000px;}
.y7b{bottom:183.303000px;}
.y228{bottom:185.748000px;}
.ybf{bottom:186.351000px;}
.y83{bottom:187.242000px;}
.y421{bottom:188.397000px;}
.y2f3{bottom:189.340500px;}
.y498{bottom:190.834500px;}
.y16c{bottom:190.963500px;}
.y488{bottom:190.998000px;}
.y283{bottom:192.328500px;}
.y2b4{bottom:192.688500px;}
.y30e{bottom:193.219500px;}
.ya0{bottom:193.356000px;}
.y184{bottom:194.908500px;}
.y3c{bottom:195.655500px;}
.y25b{bottom:196.489500px;}
.ye5{bottom:196.668000px;}
.y4eb{bottom:196.812000px;}
.y7a{bottom:198.246000px;}
.y45a{bottom:199.696500px;}
.y420{bottom:202.086000px;}
.y36d{bottom:202.849500px;}
.y3a2{bottom:204.166500px;}
.y3f{bottom:204.283500px;}
.y3e8{bottom:204.576000px;}
.y16b{bottom:205.906500px;}
.y3a9{bottom:207.642000px;}
.y30d{bottom:208.164000px;}
.y9f{bottom:208.299000px;}
.ybe{bottom:208.767000px;}
.y82{bottom:209.658000px;}
.y125{bottom:210.261000px;}
.y25a{bottom:211.432500px;}
.ye4{bottom:211.612500px;}
.y79{bottom:213.190500px;}
.y497{bottom:213.250500px;}
.y487{bottom:213.414000px;}
.y227{bottom:214.141500px;}
.y282{bottom:214.744500px;}
.y345{bottom:216.084000px;}
.y41f{bottom:217.029000px;}
.y183{bottom:217.324500px;}
.y32{bottom:218.419500px;}
.y4ea{bottom:219.228000px;}
.y16a{bottom:220.851000px;}
.y3a8{bottom:222.585000px;}
.y30c{bottom:223.107000px;}
.y9e{bottom:223.243500px;}
.y2b3{bottom:224.368500px;}
.y36c{bottom:225.265500px;}
.y259{bottom:226.377000px;}
.ye3{bottom:226.557000px;}
.y3a1{bottom:226.582500px;}
.y3e{bottom:226.699500px;}
.y3e7{bottom:226.990500px;}
.y459{bottom:231.078000px;}
.ybd{bottom:231.183000px;}
.y81{bottom:232.074000px;}
.y2b2{bottom:232.306500px;}
.y78{bottom:232.353000px;}
.y124{bottom:232.677000px;}
.y31{bottom:233.362500px;}
.y4fc{bottom:235.666500px;}
.y169{bottom:235.795500px;}
.y226{bottom:236.557500px;}
.y281{bottom:237.160500px;}
.y3a7{bottom:237.529500px;}
.y30b{bottom:238.051500px;}
.y9d{bottom:238.188000px;}
.y344{bottom:238.500000px;}
.y486{bottom:238.818000px;}
.y182{bottom:239.740500px;}
.ye2{bottom:241.500000px;}
.y4e9{bottom:241.644000px;}
.y310{bottom:245.523000px;}
.y258{bottom:245.539500px;}
.y6d{bottom:245.947500px;}
.y496{bottom:247.621500px;}
.y30{bottom:248.307000px;}
.y3a0{bottom:248.998500px;}
.y3b{bottom:249.115500px;}
.y1f8{bottom:250.216500px;}
.y168{bottom:250.738500px;}
.y3a6{bottom:252.472500px;}
.y30a{bottom:252.994500px;}
.y9c{bottom:253.131000px;}
.ybc{bottom:253.599000px;}
.y80{bottom:254.490000px;}
.y2b1{bottom:254.722500px;}
.y123{bottom:255.093000px;}
.y3e6{bottom:255.385500px;}
.ye1{bottom:256.444500px;}
.y4fb{bottom:258.082500px;}
.y225{bottom:258.973500px;}
.y256{bottom:259.134000px;}
.y280{bottom:259.576500px;}
.y6c{bottom:260.892000px;}
.y343{bottom:260.916000px;}
.y485{bottom:261.234000px;}
.y181{bottom:262.156500px;}
.y2f{bottom:263.251500px;}
.y4e8{bottom:264.060000px;}
.y167{bottom:265.683000px;}
.y3a5{bottom:267.417000px;}
.y309{bottom:267.939000px;}
.y9b{bottom:268.075500px;}
.y495{bottom:270.037500px;}
.ye0{bottom:271.389000px;}
.y39f{bottom:271.413000px;}
.y3a{bottom:271.531500px;}
.y255{bottom:274.078500px;}
.y6b{bottom:275.835000px;}
.ybb{bottom:276.015000px;}
.y2f2{bottom:276.660000px;}
.y7f{bottom:276.906000px;}
.y2b0{bottom:277.138500px;}
.y458{bottom:277.405500px;}
.y122{bottom:277.509000px;}
.y3e5{bottom:277.800000px;}
.y2e{bottom:278.194500px;}
.y482{bottom:279.166500px;}
.y4fa{bottom:280.498500px;}
.y166{bottom:280.626000px;}
.y3ac{bottom:280.966500px;}
.y27f{bottom:281.992500px;}
.y4de{bottom:282.037500px;}
.y3a4{bottom:282.361500px;}
.y9a{bottom:283.018500px;}
.y342{bottom:283.332000px;}
.y484{bottom:283.650000px;}
.y180{bottom:284.572500px;}
.ydf{bottom:286.332000px;}
.y1a6{bottom:286.476000px;}
.y224{bottom:287.367000px;}
.y254{bottom:289.021500px;}
.y308{bottom:290.355000px;}
.y6a{bottom:290.779500px;}
.y194{bottom:290.959500px;}
.y494{bottom:292.453500px;}
.y2d{bottom:293.139000px;}
.y39e{bottom:293.829000px;}
.y39{bottom:293.947500px;}
.y481{bottom:294.111000px;}
.y3ab{bottom:295.909500px;}
.y99{bottom:297.963000px;}
.yba{bottom:298.431000px;}
.y2f1{bottom:299.076000px;}
.y7e{bottom:299.322000px;}
.y2af{bottom:299.554500px;}
.y165{bottom:299.790000px;}
.y457{bottom:299.820000px;}
.y3e4{bottom:300.216000px;}
.y4f9{bottom:302.914500px;}
.y253{bottom:303.966000px;}
.y11f{bottom:304.408500px;}
.y4dd{bottom:304.453500px;}
.y1f7{bottom:305.058000px;}
.yde{bottom:305.496000px;}
.y69{bottom:305.724000px;}
.y341{bottom:305.748000px;}
.y17f{bottom:306.988500px;}
.y260{bottom:307.398000px;}
.y2c{bottom:308.082000px;}
.y1a5{bottom:308.892000px;}
.y480{bottom:309.054000px;}
.y223{bottom:309.783000px;}
.y3aa{bottom:310.854000px;}
.y121{bottom:311.880000px;}
.y160{bottom:312.451500px;}
.y307{bottom:312.771000px;}
.y98{bottom:312.907500px;}
.y493{bottom:314.869500px;}
.y38{bottom:316.363500px;}
.y252{bottom:318.910500px;}
.y11e{bottom:319.353000px;}
.y68{bottom:320.667000px;}
.yb9{bottom:320.847000px;}
.y2ef{bottom:321.492000px;}
.y77{bottom:321.738000px;}
.y39d{bottom:322.222500px;}
.y3b1{bottom:322.906500px;}
.y2b{bottom:323.026500px;}
.y47f{bottom:323.998500px;}
.y36b{bottom:325.390500px;}
.y399{bottom:326.622000px;}
.y4dc{bottom:326.869500px;}
.y15f{bottom:327.396000px;}
.y1f6{bottom:327.474000px;}
.y340{bottom:328.164000px;}
.y41e{bottom:328.210500px;}
.y456{bottom:328.215000px;}
.y3e3{bottom:328.609500px;}
.y17e{bottom:329.404500px;}
.y25f{bottom:329.812500px;}
.ydd{bottom:331.308000px;}
.y483{bottom:331.470000px;}
.y222{bottom:332.197500px;}
.y2ae{bottom:333.556500px;}
.y251{bottom:333.853500px;}
.y11d{bottom:334.296000px;}
.y306{bottom:335.187000px;}
.y67{bottom:335.611500px;}
.y2ee{bottom:336.436500px;}
.y3b0{bottom:337.849500px;}
.y2a{bottom:337.971000px;}
.y37{bottom:338.779500px;}
.y47e{bottom:338.943000px;}
.y398{bottom:341.566500px;}
.y15e{bottom:342.339000px;}
.yb8{bottom:343.263000px;}
.y2f0{bottom:343.908000px;}
.y76{bottom:344.154000px;}
.y39c{bottom:344.638500px;}
.ydc{bottom:346.251000px;}
.y193{bottom:347.746500px;}
.y36a{bottom:347.805000px;}
.y250{bottom:348.798000px;}
.y11c{bottom:349.240500px;}
.y4db{bottom:349.285500px;}
.y1f5{bottom:349.890000px;}
.y66{bottom:350.556000px;}
.y33f{bottom:350.580000px;}
.y41d{bottom:350.626500px;}
.y3e2{bottom:351.025500px;}
.y2ed{bottom:351.379500px;}
.y17d{bottom:351.819000px;}
.y25e{bottom:352.228500px;}
.y3af{bottom:352.794000px;}
.y29{bottom:352.914000px;}
.y1a4{bottom:353.724000px;}
.y47d{bottom:353.886000px;}
.y221{bottom:354.613500px;}
.y2ad{bottom:355.972500px;}
.y397{bottom:356.511000px;}
.y455{bottom:356.608500px;}
.y120{bottom:356.712000px;}
.y15d{bottom:357.283500px;}
.y305{bottom:357.603000px;}
.y36{bottom:361.195500px;}
.y24f{bottom:363.742500px;}
.y11b{bottom:364.185000px;}
.yb7{bottom:365.679000px;}
.y2ec{bottom:366.324000px;}
.y75{bottom:366.570000px;}
.ydb{bottom:366.618000px;}
.y39b{bottom:367.054500px;}
.y3ae{bottom:367.738500px;}
.y65{bottom:369.718500px;}
.y192{bottom:370.162500px;}
.y369{bottom:370.221000px;}
.y492{bottom:371.656500px;}
.y4da{bottom:371.701500px;}
.y28{bottom:372.078000px;}
.y1f4{bottom:372.306000px;}
.y33e{bottom:372.996000px;}
.y41c{bottom:373.042500px;}
.y3e1{bottom:373.441500px;}
.y17c{bottom:374.235000px;}
.y257{bottom:374.644500px;}
.y396{bottom:375.673500px;}
.y1a3{bottom:376.140000px;}
.y47c{bottom:376.302000px;}
.y15c{bottom:376.446000px;}
.y4ec{bottom:377.634000px;}
.y2ac{bottom:378.388500px;}
.y454{bottom:379.023000px;}
.y11a{bottom:379.128000px;}
.y304{bottom:380.019000px;}
.y3ad{bottom:382.681500px;}
.y24e{bottom:382.905000px;}
.y220{bottom:383.007000px;}
.y35{bottom:383.611500px;}
.y64{bottom:384.370500px;}
.yb6{bottom:388.095000px;}
.y2eb{bottom:388.740000px;}
.y74{bottom:388.986000px;}
.y392{bottom:389.470500px;}
.y156{bottom:390.243000px;}
.y40a{bottom:391.083000px;}
.y191{bottom:392.578500px;}
.y368{bottom:392.637000px;}
.y491{bottom:394.072500px;}
.y1f3{bottom:394.722000px;}
.y33d{bottom:395.412000px;}
.y24b{bottom:395.566500px;}
.y3e0{bottom:395.857500px;}
.y17b{bottom:396.651000px;}
.y47b{bottom:398.718000px;}
.y63{bottom:399.315000px;}
.y24d{bottom:400.050000px;}
.y453{bottom:401.439000px;}
.y119{bottom:401.544000px;}
.y303{bottom:402.435000px;}
.y4b6{bottom:402.594000px;}
.y391{bottom:404.415000px;}
.y4d9{bottom:404.623500px;}
.y155{bottom:405.187500px;}
.y21f{bottom:405.423000px;}
.y34{bottom:406.027500px;}
.y43a{bottom:406.789500px;}
.y41b{bottom:407.304000px;}
.y33b{bottom:407.367000px;}
.yb5{bottom:410.511000px;}
.y73{bottom:411.400500px;}
.y39a{bottom:411.886500px;}
.y2ab{bottom:412.389000px;}
.yda{bottom:413.499000px;}
.y62{bottom:414.258000px;}
.y190{bottom:414.994500px;}
.y367{bottom:415.053000px;}
.y2ea{bottom:416.284500px;}
.y490{bottom:416.488500px;}
.y1f2{bottom:417.138000px;}
.y33c{bottom:417.828000px;}
.y3df{bottom:418.273500px;}
.y17a{bottom:419.067000px;}
.y390{bottom:419.359500px;}
.y469{bottom:419.476500px;}
.y154{bottom:420.132000px;}
.y409{bottom:420.972000px;}
.y47a{bottom:421.134000px;}
.y439{bottom:421.732500px;}
.y24c{bottom:422.466000px;}
.y118{bottom:423.960000px;}
.y4b5{bottom:425.010000px;}
.y24a{bottom:425.454000px;}
.y3de{bottom:425.746500px;}
.y4d8{bottom:427.039500px;}
.y21e{bottom:427.839000px;}
.y33{bottom:428.443500px;}
.y41a{bottom:429.720000px;}
.y452{bottom:429.832500px;}
.y2a4{bottom:430.720500px;}
.y302{bottom:430.828500px;}
.y1a2{bottom:432.927000px;}
.y61{bottom:433.422000px;}
.y72{bottom:433.816500px;}
.y38f{bottom:434.302500px;}
.y2aa{bottom:434.805000px;}
.y408{bottom:435.915000px;}
.y438{bottom:436.677000px;}
.y18f{bottom:437.409000px;}
.y2e9{bottom:438.700500px;}
.y48f{bottom:438.904500px;}
.y153{bottom:439.294500px;}
.y1f1{bottom:439.554000px;}
.y33a{bottom:440.244000px;}
.y249{bottom:440.398500px;}
.y3dd{bottom:440.689500px;}
.y173{bottom:441.483000px;}
.y366{bottom:443.446500px;}
.y479{bottom:443.550000px;}
.yb4{bottom:444.882000px;}
.y2a3{bottom:445.665000px;}
.y117{bottom:446.376000px;}
.y4b4{bottom:447.424500px;}
.y38e{bottom:449.247000px;}
.y4d7{bottom:449.455500px;}
.y27{bottom:450.859500px;}
.y364{bottom:450.919500px;}
.y419{bottom:452.136000px;}
.y451{bottom:452.248500px;}
.y151{bottom:452.889000px;}
.y301{bottom:453.244500px;}
.y2e6{bottom:454.696500px;}
.y1a1{bottom:455.343000px;}
.y21d{bottom:456.232500px;}
.y395{bottom:456.718500px;}
.y2a9{bottom:457.221000px;}
.y60{bottom:457.582500px;}
.y40b{bottom:458.331000px;}
.y18e{bottom:459.825000px;}
.y2a2{bottom:460.608000px;}
.y48e{bottom:461.320500px;}
.y217{bottom:461.613000px;}
.y1f0{bottom:461.970000px;}
.y339{bottom:462.660000px;}
.y164{bottom:463.899000px;}
.y38d{bottom:464.191500px;}
.y407{bottom:465.802500px;}
.y363{bottom:465.862500px;}
.y478{bottom:465.966000px;}
.yb3{bottom:467.298000px;}
.y150{bottom:467.832000px;}
.y71{bottom:468.187500px;}
.y116{bottom:468.792000px;}
.y3dc{bottom:469.083000px;}
.y2e5{bottom:469.641000px;}
.y4b3{bottom:469.840500px;}
.y248{bottom:470.286000px;}
.y4d6{bottom:471.871500px;}
.yd9{bottom:473.275500px;}
.y418{bottom:474.552000px;}
.y450{bottom:474.664500px;}
.y2a1{bottom:475.552500px;}
.y2e8{bottom:476.064000px;}
.y216{bottom:476.557500px;}
.y1a0{bottom:477.759000px;}
.y21c{bottom:478.648500px;}
.y38c{bottom:479.134500px;}
.y2a8{bottom:479.637000px;}
.y406{bottom:480.747000px;}
.y362{bottom:480.807000px;}
.y25{bottom:481.156500px;}
.y300{bottom:481.638000px;}
.y18d{bottom:482.241000px;}
.y14f{bottom:482.776500px;}
.y97{bottom:483.288000px;}
.y2e4{bottom:484.585500px;}
.y338{bottom:485.076000px;}
.y247{bottom:485.230500px;}
.y163{bottom:486.315000px;}
.y477{bottom:488.382000px;}
.y1ef{bottom:489.355500px;}
.yb2{bottom:489.714000px;}
.y2a0{bottom:490.497000px;}
.y70{bottom:490.603500px;}
.y3db{bottom:491.499000px;}
.y215{bottom:491.500500px;}
.y38b{bottom:494.079000px;}
.y4d5{bottom:494.287500px;}
.yd8{bottom:495.691500px;}
.y361{bottom:495.751500px;}
.y14e{bottom:497.721000px;}
.y96{bottom:498.231000px;}
.y2e3{bottom:499.528500px;}
.y246{bottom:500.175000px;}
.y21b{bottom:501.064500px;}
.y394{bottom:501.550500px;}
.y44f{bottom:503.058000px;}
.y115{bottom:503.163000px;}
.y365{bottom:503.223000px;}
.y21{bottom:504.138000px;}
.y4b2{bottom:504.213000px;}
.y29f{bottom:505.440000px;}
.y214{bottom:506.445000px;}
.y2a7{bottom:507.660000px;}
.y162{bottom:508.731000px;}
.y417{bottom:508.815000px;}
.y38a{bottom:509.022000px;}
.y5f{bottom:510.031500px;}
.y18c{bottom:510.634500px;}
.y360{bottom:510.694500px;}
.y1ee{bottom:511.771500px;}
.yb1{bottom:512.130000px;}
.y14d{bottom:512.664000px;}
.y6f{bottom:513.019500px;}
.y95{bottom:513.175500px;}
.y3da{bottom:513.915000px;}
.y2e2{bottom:514.473000px;}
.y109{bottom:514.975500px;}
.y245{bottom:515.118000px;}
.y476{bottom:516.775500px;}
.y2ff{bottom:517.503000px;}
.yd7{bottom:518.107500px;}
.y29e{bottom:520.384500px;}
.y48d{bottom:521.095500px;}
.y2e7{bottom:521.944500px;}
.y20{bottom:522.070500px;}
.y4f8{bottom:522.591000px;}
.y389{bottom:523.966500px;}
.y5e{bottom:524.976000px;}
.y26{bottom:525.039000px;}
.y44e{bottom:525.474000px;}
.y114{bottom:525.579000px;}
.y213{bottom:525.607500px;}
.y35f{bottom:525.639000px;}
.y4b1{bottom:526.629000px;}
.y22{bottom:526.719000px;}
.y468{bottom:527.073000px;}
.y4d4{bottom:527.208000px;}
.y14c{bottom:527.608500px;}
.y94{bottom:528.120000px;}
.y337{bottom:529.110000px;}
.y2e1{bottom:529.417500px;}
.y21a{bottom:529.458000px;}
.y108{bottom:529.918500px;}
.y161{bottom:531.147000px;}
.y416{bottom:531.231000px;}
.y2fe{bottom:532.447500px;}
.y1ed{bottom:534.187500px;}
.yb0{bottom:534.546000px;}
.y29d{bottom:535.327500px;}
.y6e{bottom:535.435500px;}
.y2a6{bottom:535.683000px;}
.y3d9{bottom:536.331000px;}
.y413{bottom:537.361500px;}
.y244{bottom:537.534000px;}
.y388{bottom:538.911000px;}
.y18b{bottom:539.028000px;}
.y20e{bottom:539.406000px;}
.y5d{bottom:539.919000px;}
.y1f{bottom:540.003000px;}
.yd6{bottom:540.523500px;}
.y14b{bottom:542.553000px;}
.y93{bottom:543.063000px;}
.y48c{bottom:543.511500px;}
.y2e0{bottom:544.360500px;}
.y107{bottom:544.863000px;}
.y4f7{bottom:545.005500px;}
.y393{bottom:546.382500px;}
.y4e7{bottom:546.501000px;}
.y3b6{bottom:547.414500px;}
.y44d{bottom:547.890000px;}
.y405{bottom:547.995000px;}
.y35e{bottom:548.055000px;}
.y4b0{bottom:549.043500px;}
.y467{bottom:549.489000px;}
.y4d3{bottom:549.624000px;}
.y29c{bottom:550.272000px;}
.y475{bottom:551.146500px;}
.y219{bottom:551.874000px;}
.y412{bottom:552.306000px;}
.y15b{bottom:553.563000px;}
.y415{bottom:553.647000px;}
.y387{bottom:553.854000px;}
.y20d{bottom:554.349000px;}
.y5c{bottom:554.863500px;}
.y1ec{bottom:556.603500px;}
.yaf{bottom:556.962000px;}
.y14a{bottom:557.496000px;}
.y1e{bottom:557.937000px;}
.y92{bottom:558.007500px;}
.y3d8{bottom:558.747000px;}
.y106{bottom:559.807500px;}
.y113{bottom:559.950000px;}
.y3b5{bottom:562.359000px;}
.yd5{bottom:562.939500px;}
.y29b{bottom:565.216500px;}
.y48b{bottom:565.927500px;}
.y2df{bottom:566.776500px;}
.y2fd{bottom:566.818500px;}
.y411{bottom:567.250500px;}
.y18a{bottom:567.421500px;}
.y386{bottom:568.798500px;}
.y4e6{bottom:568.917000px;}
.y20c{bottom:569.293500px;}
.y2a5{bottom:569.683500px;}
.y5b{bottom:569.806500px;}
.y404{bottom:570.411000px;}
.y35d{bottom:570.471000px;}
.y4af{bottom:571.459500px;}
.y4d2{bottom:572.040000px;}
.y149{bottom:572.440500px;}
.y91{bottom:572.950500px;}
.y474{bottom:573.562500px;}
.y218{bottom:574.290000px;}
.y3fc{bottom:574.726500px;}
.y105{bottom:574.750500px;}
.y1d{bottom:575.869500px;}
.y3b4{bottom:577.303500px;}
.y336{bottom:578.631000px;}
.y1eb{bottom:579.019500px;}
.yae{bottom:579.378000px;}
.y23{bottom:579.772500px;}
.y29a{bottom:580.159500px;}
.y466{bottom:580.872000px;}
.y430{bottom:581.763000px;}
.y410{bottom:582.193500px;}
.y44c{bottom:582.261000px;}
.y112{bottom:582.366000px;}
.y20b{bottom:584.238000px;}
.yd4{bottom:585.355500px;}
.y3d7{bottom:587.140500px;}
.y148{bottom:587.385000px;}
.y90{bottom:587.895000px;}
.y414{bottom:587.910000px;}
.y15a{bottom:587.934000px;}
.y48a{bottom:588.343500px;}
.y2de{bottom:589.192500px;}
.y2fc{bottom:589.234500px;}
.y3fb{bottom:589.671000px;}
.y104{bottom:589.695000px;}
.y189{bottom:589.837500px;}
.y385{bottom:591.214500px;}
.y4e5{bottom:591.333000px;}
.y5a{bottom:592.222500px;}
.y3b3{bottom:592.246500px;}
.y403{bottom:592.827000px;}
.y35c{bottom:592.887000px;}
.y1c{bottom:593.802000px;}
.y4ae{bottom:593.875500px;}
.y299{bottom:595.104000px;}
.y473{bottom:595.978500px;}
.y212{bottom:596.706000px;}
.y40f{bottom:597.138000px;}
.y20a{bottom:599.181000px;}
.y335{bottom:601.047000px;}
.y1ea{bottom:601.435500px;}
.y24{bottom:601.773000px;}
.yad{bottom:601.794000px;}
.y147{bottom:602.328000px;}
.y465{bottom:603.288000px;}
.y42f{bottom:604.179000px;}
.y103{bottom:604.638000px;}
.y111{bottom:604.782000px;}
.y4d1{bottom:604.962000px;}
.y3b2{bottom:607.191000px;}
.yd3{bottom:607.771500px;}
.y3fa{bottom:608.833500px;}
.y382{bottom:608.856000px;}
.y3d6{bottom:609.556500px;}
.y298{bottom:610.048500px;}
.y159{bottom:610.350000px;}
.y2dd{bottom:611.608500px;}
.y1b{bottom:611.734500px;}
.y40e{bottom:612.082500px;}
.y4b9{bottom:612.222000px;}
.y188{bottom:612.253500px;}
.y384{bottom:613.630500px;}
.y19f{bottom:613.749000px;}
.y59{bottom:614.638500px;}
.y402{bottom:615.243000px;}
.y35b{bottom:615.303000px;}
.y4ad{bottom:616.291500px;}
.y2d4{bottom:617.215500px;}
.y146{bottom:617.272500px;}
.y209{bottom:618.345000px;}
.y472{bottom:618.394500px;}
.y211{bottom:619.122000px;}
.y102{bottom:619.582500px;}
.y3f9{bottom:622.630500px;}
.y334{bottom:623.463000px;}
.y381{bottom:623.800500px;}
.y1e9{bottom:623.851500px;}
.yac{bottom:624.208500px;}
.y1be{bottom:624.903000px;}
.y464{bottom:625.704000px;}
.y40d{bottom:627.025500px;}
.y110{bottom:627.198000px;}
.y4d0{bottom:627.378000px;}
.y44b{bottom:628.588500px;}
.y201{bottom:629.499000px;}
.y1a{bottom:629.667000px;}
.yd2{bottom:630.187500px;}
.y3d5{bottom:631.972500px;}
.y2d3{bottom:632.160000px;}
.y145{bottom:632.215500px;}
.y297{bottom:632.464500px;}
.y158{bottom:632.766000px;}
.y2dc{bottom:634.024500px;}
.y101{bottom:634.527000px;}
.y187{bottom:634.669500px;}
.y19e{bottom:636.165000px;}
.y58{bottom:637.054500px;}
.y3f8{bottom:637.575000px;}
.y401{bottom:637.659000px;}
.y35a{bottom:637.719000px;}
.y2fb{bottom:638.659500px;}
.y380{bottom:638.743500px;}
.y1bd{bottom:639.846000px;}
.y471{bottom:640.810500px;}
.y210{bottom:641.538000px;}
.y4f6{bottom:643.636500px;}
.yab{bottom:646.624500px;}
.y2d2{bottom:647.103000px;}
.y144{bottom:647.160000px;}
.y19{bottom:647.599500px;}
.y4e4{bottom:648.120000px;}
.y100{bottom:649.470000px;}
.y10f{bottom:649.614000px;}
.y4cf{bottom:649.794000px;}
.y42e{bottom:650.614500px;}
.y3d1{bottom:650.931000px;}
.y44a{bottom:651.004500px;}
.y1e8{bottom:651.237000px;}
.y333{bottom:651.700500px;}
.y383{bottom:651.841500px;}
.y4aa{bottom:652.236000px;}
.y3f7{bottom:652.519500px;}
.yd1{bottom:652.602000px;}
.y241{bottom:653.631000px;}
.y37f{bottom:653.688000px;}
.y42c{bottom:654.097500px;}
.y3d4{bottom:654.388500px;}
.y1bc{bottom:654.790500px;}
.y296{bottom:654.880500px;}
.y157{bottom:655.182000px;}
.y2db{bottom:656.440500px;}
.y186{bottom:657.085500px;}
.y19d{bottom:658.581000px;}
.y57{bottom:659.470500px;}
.y400{bottom:660.075000px;}
.y359{bottom:660.135000px;}
.y2d1{bottom:662.047500px;}
.y143{bottom:662.104500px;}
.y200{bottom:664.062000px;}
.yff{bottom:664.414500px;}
.y18{bottom:665.533500px;}
.y3d0{bottom:665.874000px;}
.y4f5{bottom:666.052500px;}
.y3f6{bottom:667.462500px;}
.y240{bottom:668.575500px;}
.y37e{bottom:668.631000px;}
.yaa{bottom:669.040500px;}
.y1bb{bottom:669.735000px;}
.y20f{bottom:669.931500px;}
.y4e3{bottom:670.536000px;}
.y10e{bottom:672.030000px;}
.y4ce{bottom:672.210000px;}
.y449{bottom:673.419000px;}
.y1e7{bottom:673.653000px;}
.y332{bottom:674.116500px;}
.y4a9{bottom:674.652000px;}
.yd0{bottom:675.018000px;}
.y3d3{bottom:676.804500px;}
.y2d0{bottom:676.992000px;}
.y142{bottom:677.047500px;}
.y295{bottom:677.296500px;}
.y152{bottom:677.598000px;}
.y2da{bottom:678.856500px;}
.yfe{bottom:679.359000px;}
.y19c{bottom:680.997000px;}
.y56{bottom:681.886500px;}
.y3f5{bottom:682.407000px;}
.y358{bottom:682.551000px;}
.y17{bottom:683.466000px;}
.y23f{bottom:683.518500px;}
.y37d{bottom:683.575500px;}
.y42b{bottom:683.985000px;}
.y1ba{bottom:684.678000px;}
.y3cf{bottom:685.038000px;}
.y470{bottom:687.136500px;}
.y3ff{bottom:688.468500px;}
.y1ff{bottom:689.335500px;}
.ya9{bottom:691.456500px;}
.y2cf{bottom:691.935000px;}
.y208{bottom:692.347500px;}
.y4e2{bottom:692.952000px;}
.yfd{bottom:694.302000px;}
.y10d{bottom:694.446000px;}
.y448{bottom:695.835000px;}
.y1e6{bottom:696.069000px;}
.y331{bottom:696.532500px;}
.y4a8{bottom:697.066500px;}
.y3f4{bottom:697.351500px;}
.ycf{bottom:697.434000px;}
.y3cb{bottom:697.699500px;}
.y23e{bottom:698.463000px;}
.y37c{bottom:698.520000px;}
.y42a{bottom:698.929500px;}
.y3d2{bottom:699.220500px;}
.y1b9{bottom:699.622500px;}
.y294{bottom:699.712500px;}
.y141{bottom:700.014000px;}
.y2d9{bottom:701.272500px;}
.y16{bottom:701.398500px;}
.y1cc{bottom:703.003500px;}
.y19b{bottom:703.411500px;}
.y357{bottom:704.967000px;}
.y4cd{bottom:705.132000px;}
.y42d{bottom:706.401000px;}
.y2ce{bottom:706.879500px;}
.yfc{bottom:709.246500px;}
.y13c{bottom:710.008500px;}
.y3fe{bottom:710.884500px;}
.y3f3{bottom:712.294500px;}
.y3ca{bottom:712.642500px;}
.y23d{bottom:713.406000px;}
.y429{bottom:713.872500px;}
.y207{bottom:714.763500px;}
.y4e1{bottom:715.368000px;}
.y55{bottom:716.257500px;}
.y1fe{bottom:716.796000px;}
.y10c{bottom:716.862000px;}
.y447{bottom:718.251000px;}
.y1e5{bottom:718.485000px;}
.y1b8{bottom:718.785000px;}
.y15{bottom:719.331000px;}
.ya8{bottom:719.850000px;}
.y37b{bottom:720.936000px;}
.y3ce{bottom:721.636500px;}
.y2cd{bottom:721.824000px;}
.y140{bottom:722.430000px;}
.y2d8{bottom:723.688500px;}
.yfb{bottom:724.191000px;}
.y330{bottom:724.771500px;}
.y13b{bottom:724.953000px;}
.y1cb{bottom:725.418000px;}
.y4a7{bottom:726.955500px;}
.y3f2{bottom:727.239000px;}
.y4cc{bottom:727.548000px;}
.y3c9{bottom:727.587000px;}
.y46f{bottom:728.337000px;}
.y23c{bottom:728.350500px;}
.yce{bottom:728.817000px;}
.y1b7{bottom:732.379500px;}
.y3fd{bottom:733.300500px;}
.y32c{bottom:736.339500px;}
.y1e0{bottom:736.903500px;}
.y206{bottom:737.179500px;}
.y14{bottom:737.263500px;}
.y19a{bottom:737.784000px;}
.y54{bottom:738.673500px;}
.yfa{bottom:739.278000px;}
.y46d{bottom:739.545000px;}
.y13a{bottom:739.896000px;}
.y446{bottom:740.667000px;}
.y463{bottom:740.772000px;}
.y1e4{bottom:740.901000px;}
.y2cc{bottom:741.046500px;}
.y3f1{bottom:742.183500px;}
.y243{bottom:742.266000px;}
.y356{bottom:742.326000px;}
.y3c8{bottom:742.531500px;}
.y23b{bottom:743.295000px;}
.y37a{bottom:743.352000px;}
.y428{bottom:743.761500px;}
.y3cd{bottom:744.052500px;}
.y13f{bottom:744.846000px;}
.y2d7{bottom:746.104500px;}
.y32f{bottom:747.187500px;}
.y1b6{bottom:747.324000px;}
.y1ca{bottom:747.834000px;}
.ya7{bottom:748.243500px;}
.y293{bottom:748.767000px;}
.y4a6{bottom:749.371500px;}
.y4e0{bottom:749.739000px;}
.y4cb{bottom:749.964000px;}
.y46e{bottom:750.753000px;}
.ycd{bottom:751.233000px;}
.y32b{bottom:751.284000px;}
.y1df{bottom:751.848000px;}
.y1fd{bottom:753.043500px;}
.yf9{bottom:754.221000px;}
.y46c{bottom:754.489500px;}
.y139{bottom:754.840500px;}
.y13{bottom:755.196000px;}
.y4f4{bottom:755.716500px;}
.y3f0{bottom:757.126500px;}
.y3c7{bottom:757.474500px;}
.y378{bottom:758.295000px;}
.y427{bottom:758.704500px;}
.y205{bottom:759.595500px;}
.y199{bottom:760.200000px;}
.y53{bottom:761.089500px;}
.y10b{bottom:761.694000px;}
.y1b5{bottom:762.267000px;}
.y23a{bottom:762.457500px;}
.y462{bottom:763.188000px;}
.y1e3{bottom:763.317000px;}
.y242{bottom:764.682000px;}
.y355{bottom:764.742000px;}
.y379{bottom:765.768000px;}
.y32a{bottom:766.227000px;}
.y1de{bottom:766.792500px;}
.y13e{bottom:767.262000px;}
.y2d6{bottom:768.520500px;}
.yf8{bottom:769.165500px;}
.y46b{bottom:769.432500px;}
.y138{bottom:769.785000px;}
.ya6{bottom:770.659500px;}
.y4a5{bottom:771.787500px;}
.y445{bottom:772.050000px;}
.y3ef{bottom:772.071000px;}
.y4df{bottom:772.155000px;}
.y3c6{bottom:772.419000px;}
.y12{bottom:773.130000px;}
.ycc{bottom:773.649000px;}
.y235{bottom:775.143000px;}
.y1b4{bottom:777.211500px;}
.y4f3{bottom:778.132500px;}
.y1fc{bottom:778.317000px;}
.y2cb{bottom:778.717500px;}
.y329{bottom:781.171500px;}
.y1dd{bottom:781.735500px;}
.y1c9{bottom:782.206500px;}
.y3cc{bottom:782.263500px;}
.y4ca{bottom:782.886000px;}
.y52{bottom:783.505500px;}
.yf7{bottom:784.110000px;}
.y32e{bottom:784.315500px;}
.y46a{bottom:784.377000px;}
.y137{bottom:784.728000px;}
.y1e2{bottom:785.733000px;}
.y3ee{bottom:787.014000px;}
.y239{bottom:787.098000px;}
.y354{bottom:787.158000px;}
.y3c5{bottom:787.362000px;}
.y377{bottom:788.184000px;}
.y13d{bottom:789.678000px;}
.y234{bottom:790.087500px;}
.y2d5{bottom:790.936500px;}
.y11{bottom:791.062500px;}
.y1b3{bottom:792.156000px;}
.y204{bottom:793.966500px;}
.y444{bottom:794.466000px;}
.y198{bottom:794.571000px;}
.ycb{bottom:796.065000px;}
.y328{bottom:796.114500px;}
.y1dc{bottom:796.680000px;}
.y461{bottom:797.559000px;}
.yf6{bottom:799.053000px;}
.y136{bottom:799.672500px;}
.y4f2{bottom:800.548500px;}
.y292{bottom:801.217500px;}
.y4a4{bottom:801.675000px;}
.y3c4{bottom:802.306500px;}
.yd{bottom:803.017500px;}
.y1c8{bottom:804.621000px;}
.ya5{bottom:805.030500px;}
.y4c9{bottom:805.302000px;}
.y51{bottom:805.921500px;}
.y3ed{bottom:806.178000px;}
.y10a{bottom:806.526000px;}
.y32d{bottom:806.731500px;}
.y1b2{bottom:807.099000px;}
.y1e1{bottom:808.149000px;}
.y10{bottom:808.995000px;}
.y238{bottom:809.514000px;}
.y4c{bottom:809.823000px;}
.y376{bottom:810.600000px;}
.y327{bottom:811.059000px;}
.y1db{bottom:811.624500px;}
.y2fa{bottom:812.503500px;}
.y2ca{bottom:813.352500px;}
.yf5{bottom:813.997500px;}
.y1fb{bottom:814.566000px;}
.y203{bottom:816.382500px;}
.y443{bottom:816.882000px;}
.y197{bottom:816.987000px;}
.yc{bottom:817.962000px;}
.yca{bottom:818.481000px;}
.y135{bottom:818.835000px;}
.y233{bottom:819.975000px;}
.y3c3{bottom:821.470500px;}
.y1b1{bottom:822.043500px;}
.y4f1{bottom:822.964500px;}
.y291{bottom:823.633500px;}
.y134{bottom:824.049000px;}
.y4a3{bottom:824.091000px;}
.y353{bottom:824.518500px;}
.y4b{bottom:824.766000px;}
.y326{bottom:826.003500px;}
.y1da{bottom:826.567500px;}
.yf{bottom:826.927500px;}
.ya4{bottom:827.446500px;}
.y4c8{bottom:827.718000px;}
.y50{bottom:828.337500px;}
.yf4{bottom:828.942000px;}
.y131{bottom:831.520500px;}
.y460{bottom:831.930000px;}
.yb{bottom:832.905000px;}
.y375{bottom:833.016000px;}
.yc7{bottom:833.424000px;}
.y3c2{bottom:833.593500px;}
.y232{bottom:834.919500px;}
.y2c9{bottom:835.768500px;}
.y1b0{bottom:836.988000px;}
.y202{bottom:838.798500px;}
.y1c7{bottom:838.993500px;}
.y196{bottom:839.401500px;}
.y4fd{bottom:839.403000px;}
.y4a{bottom:839.710500px;}
.y2f9{bottom:840.342000px;}
.yc9{bottom:840.897000px;}
.y325{bottom:840.946500px;}
.y1d9{bottom:841.512000px;}
.ye{bottom:844.860000px;}
.y4f0{bottom:845.380500px;}
.y130{bottom:846.465000px;}
.y352{bottom:846.934500px;}
.ya{bottom:847.849500px;}
.y442{bottom:848.263500px;}
.yc6{bottom:848.368500px;}
.y3c1{bottom:848.536500px;}
.y231{bottom:849.862500px;}
.y4c7{bottom:850.132500px;}
.y4f{bottom:850.753500px;}
.yf3{bottom:851.358000px;}
.y4a2{bottom:853.978500px;}
.y374{bottom:855.430500px;}
.y1af{bottom:856.150500px;}
.y237{bottom:857.335500px;}
.y2c8{bottom:858.184500px;}
.y1fa{bottom:861.214500px;}
.y12f{bottom:861.409500px;}
.ya3{bottom:861.817500px;}
.y9{bottom:862.792500px;}
.yc5{bottom:863.313000px;}
.y324{bottom:863.362500px;}
.y3ba{bottom:863.625000px;}
.y1d8{bottom:863.928000px;}
.y230{bottom:864.807000px;}
.y45f{bottom:866.301000px;}
.y3c0{bottom:867.700500px;}
.y437{bottom:867.828000px;}
.y28d{bottom:867.981000px;}
.y1ae{bottom:868.824000px;}
.y133{bottom:868.881000px;}
.y351{bottom:869.350500px;}
.y8e{bottom:869.463000px;}
.y441{bottom:870.679500px;}
.y4c6{bottom:872.548500px;}
.y290{bottom:872.688000px;}
.y4e{bottom:873.169500px;}
.yf2{bottom:873.774000px;}
.y12e{bottom:876.352500px;}
.y4a1{bottom:876.394500px;}
.y4ef{bottom:876.762000px;}
.y373{bottom:877.846500px;}
.yc4{bottom:878.256000px;}
.y3b9{bottom:878.568000px;}
.y22f{bottom:879.751500px;}
.y2c7{bottom:880.600500px;}
.y8{bottom:880.726500px;}
.y2f8{bottom:882.739500px;}
.y28c{bottom:882.925500px;}
.y1ad{bottom:883.768500px;}
.y1c6{bottom:883.824000px;}
.ya2{bottom:884.233500px;}
.y34e{bottom:884.293500px;}
.yc8{bottom:885.729000px;}
.y323{bottom:885.778500px;}
.y1d7{bottom:886.344000px;}
.y8d{bottom:888.334500px;}
.y1d4{bottom:889.819500px;}
.y12d{bottom:891.297000px;}
.y350{bottom:891.766500px;}
.y440{bottom:893.095500px;}
.yc3{bottom:893.200500px;}
.y22e{bottom:894.694500px;}
.y4c5{bottom:894.964500px;}
.y1c1{bottom:895.585500px;}
.yf1{bottom:896.190000px;}
.y28b{bottom:897.868500px;}
.y4a0{bottom:898.810500px;}
.y4ee{bottom:899.178000px;}
.y34d{bottom:899.238000px;}
.y372{bottom:900.262500px;}
.y236{bottom:902.167500px;}
.y1ac{bottom:902.931000px;}
.y2c6{bottom:903.016500px;}
.y1d3{bottom:904.764000px;}
.y2f7{bottom:905.155500px;}
.y12c{bottom:906.240000px;}
.ya1{bottom:906.649500px;}
.y8c{bottom:907.206000px;}
.y1f9{bottom:907.651500px;}
.yc2{bottom:908.145000px;}
.y322{bottom:908.194500px;}
.y1d6{bottom:908.760000px;}
.y22d{bottom:909.639000px;}
.y45e{bottom:912.627000px;}
.y28a{bottom:912.813000px;}
.y132{bottom:913.713000px;}
.y34c{bottom:914.182500px;}
.y43f{bottom:915.511500px;}
.y1ab{bottom:915.616500px;}
.y436{bottom:916.207500px;}
.y4c4{bottom:917.380500px;}
.yf0{bottom:918.604500px;}
.y1d2{bottom:919.707000px;}
.y12b{bottom:921.184500px;}
.y4ed{bottom:921.594000px;}
.y4d{bottom:922.594500px;}
.y371{bottom:922.678500px;}
.y22c{bottom:924.583500px;}
.y28f{bottom:924.952500px;}
.y2c5{bottom:925.431000px;}
.y8b{bottom:926.077500px;}
.y7{bottom:927.193500px;}
.y2f6{bottom:927.571500px;}
.y289{bottom:927.756000px;}
.y1c5{bottom:928.656000px;}
.y49f{bottom:928.698000px;}
.y34b{bottom:929.125500px;}
.yc1{bottom:930.561000px;}
.y321{bottom:930.610500px;}
.y1d5{bottom:931.176000px;}
.y1d1{bottom:934.651500px;}
.y12a{bottom:936.129000px;}
.y34f{bottom:936.597000px;}
.y43e{bottom:937.927500px;}
.y8a{bottom:941.020500px;}
.y6{bottom:942.138000px;}
.y288{bottom:942.700500px;}
.y45d{bottom:944.010000px;}
.y34a{bottom:944.070000px;}
.y1c0{bottom:945.010500px;}
.y370{bottom:945.094500px;}
.y1aa{bottom:945.504000px;}
.y3bf{bottom:946.998000px;}
.y28e{bottom:947.368500px;}
.y2c4{bottom:947.847000px;}
.y1d0{bottom:949.594500px;}
.y2f5{bottom:949.987500px;}
.y4c3{bottom:950.302500px;}
.y49e{bottom:951.114000px;}
.yc0{bottom:952.977000px;}
.y320{bottom:953.026500px;}
.y89{bottom:955.965000px;}
.y5{bottom:957.081000px;}
.y4b8{bottom:957.459000px;}
.y287{bottom:957.645000px;}
.y349{bottom:959.013000px;}
.y43d{bottom:960.343500px;}
.y1a9{bottom:960.448500px;}
.y1c4{bottom:963.027000px;}
.y8f{bottom:963.436500px;}
.y1cf{bottom:964.539000px;}
.y45c{bottom:966.426000px;}
.y36f{bottom:967.510500px;}
.y435{bottom:968.721000px;}
.y3be{bottom:969.414000px;}
.y2c3{bottom:970.263000px;}
.y129{bottom:970.500000px;}
.y88{bottom:970.909500px;}
.y433{bottom:971.994000px;}
.y3ec{bottom:972.403500px;}
.y286{bottom:972.588000px;}
.y4c2{bottom:972.718500px;}
.y49d{bottom:973.530000px;}
.y434{bottom:975.124500px;}
.y49{bottom:975.393000px;}
.y31f{bottom:975.442500px;}
.y4{bottom:983.980500px;}
.y1c3{bottom:985.443000px;}
.y87{bottom:985.852500px;}
.y1ce{bottom:986.955000px;}
.y45b{bottom:988.842000px;}
.y1a8{bottom:990.336000px;}
.y43c{bottom:991.726500px;}
.y3bd{bottom:991.830000px;}
.y2c2{bottom:992.679000px;}
.y128{bottom:992.916000px;}
.y432{bottom:994.410000px;}
.y285{bottom:995.004000px;}
.y4c1{bottom:995.134500px;}
.y36e{bottom:995.904000px;}
.y48{bottom:997.807500px;}
.y1bf{bottom:997.809000px;}
.y31e{bottom:997.858500px;}
.y348{bottom:999.363000px;}
.y49c{bottom:1003.419000px;}
.y1a7{bottom:1005.280500px;}
.y86{bottom:1008.268500px;}
.y3{bottom:1010.880000px;}
.y4b7{bottom:1011.258000px;}
.y22b{bottom:1012.752000px;}
.y3bc{bottom:1014.246000px;}
.y2c1{bottom:1015.095000px;}
.y431{bottom:1016.826000px;}
.y40c{bottom:1016.880000px;}
.y4c0{bottom:1017.550500px;}
.y1c2{bottom:1019.814000px;}
.y47{bottom:1020.223500px;}
.y31d{bottom:1020.274500px;}
.y1cd{bottom:1020.318000px;}
.y347{bottom:1021.779000px;}
.y43b{bottom:1023.108000px;}
.y49b{bottom:1025.835000px;}
.y22a{bottom:1027.696500px;}
.y3eb{bottom:1030.420500px;}
.y3bb{bottom:1036.662000px;}
.y2{bottom:1037.779500px;}
.y127{bottom:1039.353000px;}
.y46{bottom:1042.639500px;}
.y4ac{bottom:1048.617000px;}
.y49a{bottom:1055.869500px;}
.y346{bottom:1056.150000px;}
.y126{bottom:1063.263000px;}
.y4ab{bottom:1063.561500px;}
.y31c{bottom:1064.308500px;}
.y1{bottom:1064.679000px;}
.y45{bottom:1065.055500px;}
.y44{bottom:1128.120000px;}
.y42{bottom:1146.798150px;}
.hf{height:21.014850px;}
.ha{height:21.399665px;}
.h1b{height:29.959445px;}
.h15{height:34.191729px;}
.h3{height:34.239550px;}
.hd{height:34.481539px;}
.h8{height:35.103550px;}
.h7{height:38.358259px;}
.h5{height:38.519654px;}
.h11{height:42.620003px;}
.h13{height:42.739554px;}
.hb{height:42.799330px;}
.h1d{height:42.805330px;}
.h14{height:42.859105px;}
.h19{height:46.800039px;}
.h1a{height:46.865494px;}
.h4{height:51.287808px;}
.he{height:51.359539px;}
.h1c{height:55.891330px;}
.h9{height:55.929550px;}
.hc{height:55.935550px;}
.h6{height:57.093550px;}
.h16{height:61.114649px;}
.h1{height:61.545198px;}
.h2{height:65.481550px;}
.h10{height:82.400391px;}
.h18{height:85.840649px;}
.h12{height:85.846649px;}
.h17{height:102.718649px;}
.h20{height:119.009520px;}
.h1e{height:188.200500px;}
.h1f{height:499.148832px;}
.h0{height:1188.000000px;}
.w1{width:189.046200px;}
.w3{width:438.148645px;}
.w2{width:447.085672px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1a{left:11.305156px;}
.xb{left:29.068800px;}
.x1{left:108.000000px;}
.xa{left:111.138000px;}
.x18{left:116.967000px;}
.x1c{left:122.944500px;}
.x3{left:125.932500px;}
.xd{left:127.263000px;}
.x4{left:143.865000px;}
.x11{left:146.794500px;}
.x12{left:161.799000px;}
.x13{left:167.388000px;}
.x14{left:179.731500px;}
.x15{left:215.178000px;}
.x16{left:220.165500px;}
.x17{left:226.894500px;}
.x19{left:339.004500px;}
.x1d{left:426.627000px;}
.xf{left:427.681500px;}
.x10{left:429.100500px;}
.xc{left:430.849500px;}
.x1b{left:467.327831px;}
.x2{left:610.117500px;}
.xe{left:619.083000px;}
.x5{left:627.837000px;}
.x6{left:650.322000px;}
.x7{left:710.151000px;}
.x8{left:720.274500px;}
.x9{left:752.373000px;}
@media print{
.vd{vertical-align:-36.981333pt;}
.v8{vertical-align:-31.877333pt;}
.va{vertical-align:-28.522667pt;}
.vf{vertical-align:-26.570667pt;}
.vc{vertical-align:-21.978667pt;}
.v9{vertical-align:-19.280000pt;}
.v7{vertical-align:-16.880000pt;}
.v6{vertical-align:-15.002667pt;}
.v2{vertical-align:-12.768000pt;}
.ve{vertical-align:-11.568000pt;}
.vb{vertical-align:-4.277333pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:11.637333pt;}
.v4{vertical-align:15.002667pt;}
.v5{vertical-align:19.280000pt;}
.v3{vertical-align:20.314667pt;}
.v1{vertical-align:27.770667pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000931pt;}
.ls15{letter-spacing:0.001483pt;}
.ls13{letter-spacing:0.002812pt;}
.lsd{letter-spacing:2.655574pt;}
.ls7{letter-spacing:9.739137pt;}
.lsf{letter-spacing:9.739583pt;}
.lse{letter-spacing:9.740434pt;}
.ls3{letter-spacing:9.740481pt;}
.ls1{letter-spacing:9.740576pt;}
.lsc{letter-spacing:9.741526pt;}
.ls5{letter-spacing:9.741825pt;}
.ls10{letter-spacing:9.742476pt;}
.lsa{letter-spacing:12.061056pt;}
.ls12{letter-spacing:12.061478pt;}
.ls2{letter-spacing:13.511122pt;}
.lsb{letter-spacing:14.714932pt;}
.ls4{letter-spacing:14.715410pt;}
.ls6{letter-spacing:14.717501pt;}
.ls16{letter-spacing:16.077478pt;}
.ls14{letter-spacing:16.082812pt;}
.ls19{letter-spacing:22.895025pt;}
.ls1b{letter-spacing:31.245478pt;}
.ls11{letter-spacing:31.877927pt;}
.ls17{letter-spacing:31.879746pt;}
.ls9{letter-spacing:31.880459pt;}
.ls18{letter-spacing:31.883251pt;}
.ls0{letter-spacing:1257.606219pt;}
.ws28{word-spacing:-48.330686pt;}
.ws92{word-spacing:-26.566933pt;}
.ws1c{word-spacing:-24.165444pt;}
.ws11a{word-spacing:-22.050927pt;}
.ws1b{word-spacing:-20.137735pt;}
.ws22{word-spacing:-19.925200pt;}
.wsb1{word-spacing:-19.510805pt;}
.wsb3{word-spacing:-19.383575pt;}
.wsb2{word-spacing:-19.383283pt;}
.wsc{word-spacing:-18.124083pt;}
.wse{word-spacing:-17.932800pt;}
.ws9{word-spacing:-16.110229pt;}
.ws2b{word-spacing:-15.940200pt;}
.ws2e{word-spacing:-15.090018pt;}
.ws96{word-spacing:-15.036884pt;}
.ws32{word-spacing:-14.979828pt;}
.ws7d{word-spacing:-14.601284pt;}
.ws3f{word-spacing:-12.167655pt;}
.ws26{word-spacing:-10.010487pt;}
.ws6f{word-spacing:-9.870805pt;}
.ws109{word-spacing:-9.819204pt;}
.ws1d{word-spacing:-9.755443pt;}
.ws5b{word-spacing:-9.734149pt;}
.ws38{word-spacing:-9.692706pt;}
.ws156{word-spacing:-9.691682pt;}
.ws119{word-spacing:-8.901826pt;}
.ws6d{word-spacing:-8.732231pt;}
.ws72{word-spacing:-8.343089pt;}
.ws12{word-spacing:-8.342017pt;}
.ws1a{word-spacing:-8.288883pt;}
.ws116{word-spacing:-8.131323pt;}
.wse0{word-spacing:-8.130987pt;}
.ws14f{word-spacing:-8.130798pt;}
.ws70{word-spacing:-8.130747pt;}
.ws7c{word-spacing:-8.130542pt;}
.wseb{word-spacing:-8.130345pt;}
.ws10e{word-spacing:-8.130029pt;}
.ws42{word-spacing:-8.129943pt;}
.ws63{word-spacing:-8.129835pt;}
.ws10a{word-spacing:-8.129810pt;}
.wsdf{word-spacing:-8.129506pt;}
.ws11{word-spacing:-8.129482pt;}
.ws117{word-spacing:-8.129324pt;}
.ws49{word-spacing:-8.129165pt;}
.ws106{word-spacing:-8.128806pt;}
.ws76{word-spacing:-8.128777pt;}
.ws16{word-spacing:-8.128757pt;}
.ws157{word-spacing:-8.128722pt;}
.wsa5{word-spacing:-8.128644pt;}
.ws12b{word-spacing:-8.128549pt;}
.ws56{word-spacing:-8.128418pt;}
.ws97{word-spacing:-8.128128pt;}
.ws16e{word-spacing:-8.128036pt;}
.wsa3{word-spacing:-8.127973pt;}
.wsa1{word-spacing:-8.127932pt;}
.ws15c{word-spacing:-8.127590pt;}
.ws93{word-spacing:-8.127250pt;}
.wsae{word-spacing:-8.127205pt;}
.ws128{word-spacing:-8.127091pt;}
.wsd8{word-spacing:-8.127013pt;}
.ws1e{word-spacing:-8.127003pt;}
.ws15d{word-spacing:-8.126955pt;}
.ws75{word-spacing:-8.126445pt;}
.ws73{word-spacing:-8.126137pt;}
.ws15a{word-spacing:-8.126098pt;}
.ws158{word-spacing:-8.125478pt;}
.wsb5{word-spacing:-8.124982pt;}
.wsda{word-spacing:-8.124687pt;}
.ws144{word-spacing:-8.104865pt;}
.wsb4{word-spacing:-8.080173pt;}
.ws172{word-spacing:-8.079746pt;}
.ws171{word-spacing:-8.079029pt;}
.ws145{word-spacing:-8.077638pt;}
.wsd1{word-spacing:-8.077499pt;}
.wse3{word-spacing:-8.077111pt;}
.ws15b{word-spacing:-8.076817pt;}
.ws165{word-spacing:-8.076707pt;}
.wsf5{word-spacing:-8.076508pt;}
.ws18{word-spacing:-8.076348pt;}
.ws10b{word-spacing:-8.076333pt;}
.ws134{word-spacing:-8.076268pt;}
.ws160{word-spacing:-8.075776pt;}
.wsa2{word-spacing:-8.074839pt;}
.ws98{word-spacing:-8.074630pt;}
.wsfa{word-spacing:-8.073866pt;}
.ws170{word-spacing:-8.073473pt;}
.ws10f{word-spacing:-8.073147pt;}
.ws3d{word-spacing:-8.072609pt;}
.ws14d{word-spacing:-8.072518pt;}
.ws153{word-spacing:-8.072475pt;}
.wsd9{word-spacing:-8.072131pt;}
.ws3e{word-spacing:-8.071778pt;}
.ws17b{word-spacing:-8.071733pt;}
.ws159{word-spacing:-8.071625pt;}
.ws132{word-spacing:-8.071174pt;}
.ws95{word-spacing:-8.070209pt;}
.ws186{word-spacing:-8.050095pt;}
.ws18e{word-spacing:-8.045807pt;}
.ws181{word-spacing:-8.040819pt;}
.ws18b{word-spacing:-8.038898pt;}
.ws16d{word-spacing:-8.026959pt;}
.wsc0{word-spacing:-8.025648pt;}
.ws175{word-spacing:-8.024943pt;}
.ws177{word-spacing:-8.024174pt;}
.ws17e{word-spacing:-8.022947pt;}
.ws166{word-spacing:-8.020843pt;}
.ws178{word-spacing:-8.020642pt;}
.ws111{word-spacing:-7.916926pt;}
.ws25{word-spacing:-7.915683pt;}
.ws19{word-spacing:-7.912721pt;}
.ws74{word-spacing:-7.912423pt;}
.ws110{word-spacing:-7.910815pt;}
.ws15f{word-spacing:-7.861564pt;}
.ws78{word-spacing:-7.807966pt;}
.ws9b{word-spacing:-7.805796pt;}
.ws6e{word-spacing:-7.788347pt;}
.ws135{word-spacing:-7.756282pt;}
.wsb{word-spacing:-7.507866pt;}
.wsd5{word-spacing:-7.490866pt;}
.wsa{word-spacing:-7.460045pt;}
.ws8{word-spacing:-7.318750pt;}
.ws7{word-spacing:-7.316582pt;}
.ws21{word-spacing:-7.300290pt;}
.wsac{word-spacing:-7.270510pt;}
.wsd{word-spacing:-7.268762pt;}
.wsea{word-spacing:-6.898777pt;}
.wsd6{word-spacing:-6.856167pt;}
.ws50{word-spacing:-6.673630pt;}
.ws71{word-spacing:-6.672668pt;}
.ws102{word-spacing:-6.631123pt;}
.wsa9{word-spacing:-6.546109pt;}
.ws4{word-spacing:-6.503602pt;}
.ws39{word-spacing:-6.500523pt;}
.ws3a{word-spacing:-6.476708pt;}
.wsad{word-spacing:-6.471188pt;}
.ws6a{word-spacing:-6.464039pt;}
.ws163{word-spacing:-6.463724pt;}
.ws5f{word-spacing:-6.463612pt;}
.ws164{word-spacing:-6.463517pt;}
.ws29{word-spacing:-6.463162pt;}
.ws2a{word-spacing:-6.462869pt;}
.ws14{word-spacing:-6.462569pt;}
.ws15{word-spacing:-6.461790pt;}
.wse5{word-spacing:-6.461757pt;}
.ws5{word-spacing:-6.461233pt;}
.ws13{word-spacing:-6.461094pt;}
.ws7b{word-spacing:-6.460992pt;}
.ws3b{word-spacing:-6.460444pt;}
.ws31{word-spacing:-6.459753pt;}
.ws68{word-spacing:-6.458007pt;}
.ws47{word-spacing:-6.454653pt;}
.ws80{word-spacing:-6.445066pt;}
.wsfe{word-spacing:-6.438121pt;}
.ws13f{word-spacing:-6.437023pt;}
.ws12f{word-spacing:-6.436089pt;}
.wsde{word-spacing:-6.429337pt;}
.ws100{word-spacing:-6.422383pt;}
.ws3c{word-spacing:-6.417937pt;}
.ws184{word-spacing:-6.317547pt;}
.ws142{word-spacing:-6.278082pt;}
.wsa4{word-spacing:-6.240668pt;}
.wsab{word-spacing:-6.224640pt;}
.wsb8{word-spacing:-6.141813pt;}
.ws60{word-spacing:-6.111100pt;}
.ws146{word-spacing:-6.109709pt;}
.ws16f{word-spacing:-6.109330pt;}
.ws94{word-spacing:-6.057589pt;}
.wsbc{word-spacing:-6.037227pt;}
.ws120{word-spacing:-5.573648pt;}
.ws115{word-spacing:-5.486113pt;}
.wsb9{word-spacing:-5.389045pt;}
.ws17{word-spacing:-5.000190pt;}
.ws2c{word-spacing:-4.848842pt;}
.ws11e{word-spacing:-4.734805pt;}
.ws183{word-spacing:-4.558427pt;}
.wsd7{word-spacing:-4.533863pt;}
.ws150{word-spacing:-4.305264pt;}
.ws15e{word-spacing:-4.144442pt;}
.ws1f{word-spacing:-4.108191pt;}
.wsaa{word-spacing:-4.105526pt;}
.ws105{word-spacing:-4.105332pt;}
.ws24{word-spacing:-4.091308pt;}
.ws9a{word-spacing:-4.054704pt;}
.ws173{word-spacing:-4.038174pt;}
.wse2{word-spacing:-3.938580pt;}
.ws77{word-spacing:-3.895073pt;}
.ws11f{word-spacing:-3.876653pt;}
.ws6b{word-spacing:-3.843830pt;}
.ws123{word-spacing:-3.530812pt;}
.ws54{word-spacing:-3.273054pt;}
.ws125{word-spacing:-3.197416pt;}
.ws34{word-spacing:-3.049692pt;}
.ws126{word-spacing:-2.827451pt;}
.ws124{word-spacing:-2.574710pt;}
.ws154{word-spacing:-2.564490pt;}
.ws11d{word-spacing:-2.375199pt;}
.ws176{word-spacing:-2.284756pt;}
.ws8c{word-spacing:-2.210374pt;}
.wsc5{word-spacing:-2.040887pt;}
.wse1{word-spacing:-2.038780pt;}
.ws127{word-spacing:-1.694286pt;}
.ws79{word-spacing:-1.435307pt;}
.wsba{word-spacing:-1.433801pt;}
.ws118{word-spacing:-1.433535pt;}
.wsbd{word-spacing:-1.433057pt;}
.ws51{word-spacing:-1.396325pt;}
.ws113{word-spacing:-1.394749pt;}
.ws7e{word-spacing:-1.394430pt;}
.wsaf{word-spacing:-1.394075pt;}
.ws35{word-spacing:-1.393791pt;}
.ws89{word-spacing:-1.393721pt;}
.ws147{word-spacing:-1.393012pt;}
.ws112{word-spacing:-1.392782pt;}
.ws121{word-spacing:-1.392534pt;}
.ws10c{word-spacing:-1.392374pt;}
.ws151{word-spacing:-1.391400pt;}
.wsbf{word-spacing:-1.389132pt;}
.ws130{word-spacing:-1.389061pt;}
.wsf3{word-spacing:-1.387130pt;}
.ws14e{word-spacing:-1.387041pt;}
.wsb6{word-spacing:-1.353216pt;}
.wsdc{word-spacing:-1.350098pt;}
.ws140{word-spacing:-1.348521pt;}
.wsf7{word-spacing:-1.326868pt;}
.ws107{word-spacing:-1.289393pt;}
.ws12d{word-spacing:-0.330058pt;}
.ws12a{word-spacing:-0.329958pt;}
.ws66{word-spacing:-0.329816pt;}
.wsf1{word-spacing:-0.329517pt;}
.wsb0{word-spacing:-0.329218pt;}
.ws139{word-spacing:-0.328966pt;}
.ws114{word-spacing:-0.328961pt;}
.ws122{word-spacing:-0.328914pt;}
.ws104{word-spacing:-0.328909pt;}
.wsff{word-spacing:-0.328866pt;}
.wse7{word-spacing:-0.328814pt;}
.ws2f{word-spacing:-0.328766pt;}
.ws7a{word-spacing:-0.328420pt;}
.ws9e{word-spacing:-0.328415pt;}
.ws12c{word-spacing:-0.328163pt;}
.wsd3{word-spacing:-0.327964pt;}
.wsa0{word-spacing:-0.327916pt;}
.ws9c{word-spacing:-0.327470pt;}
.ws101{word-spacing:-0.327270pt;}
.ws108{word-spacing:-0.327123pt;}
.wsd0{word-spacing:-0.327071pt;}
.ws162{word-spacing:-0.326971pt;}
.wsc7{word-spacing:-0.326871pt;}
.ws152{word-spacing:-0.326867pt;}
.ws90{word-spacing:-0.326719pt;}
.ws11c{word-spacing:-0.326667pt;}
.ws53{word-spacing:-0.326629pt;}
.ws5a{word-spacing:-0.326625pt;}
.ws84{word-spacing:-0.326572pt;}
.ws45{word-spacing:-0.326477pt;}
.ws36{word-spacing:-0.326382pt;}
.wsc1{word-spacing:-0.326126pt;}
.wsf9{word-spacing:-0.325974pt;}
.wsbe{word-spacing:-0.325675pt;}
.ws4c{word-spacing:-0.325632pt;}
.ws8e{word-spacing:-0.325527pt;}
.wsbb{word-spacing:-0.325480pt;}
.wsc8{word-spacing:-0.325371pt;}
.ws87{word-spacing:-0.325228pt;}
.wsa7{word-spacing:-0.325133pt;}
.wsfc{word-spacing:-0.303695pt;}
.ws131{word-spacing:-0.302850pt;}
.wsee{word-spacing:-0.302803pt;}
.ws149{word-spacing:-0.302646pt;}
.ws9d{word-spacing:-0.302446pt;}
.ws7f{word-spacing:-0.302195pt;}
.wse4{word-spacing:-0.301995pt;}
.wsc4{word-spacing:-0.301601pt;}
.wsce{word-spacing:-0.301497pt;}
.wsdb{word-spacing:-0.300950pt;}
.wscb{word-spacing:-0.300751pt;}
.ws5e{word-spacing:-0.300409pt;}
.ws4f{word-spacing:-0.300257pt;}
.ws13e{word-spacing:-0.300252pt;}
.wscc{word-spacing:-0.299906pt;}
.ws8a{word-spacing:-0.299754pt;}
.ws141{word-spacing:-0.299407pt;}
.wsc9{word-spacing:-0.299260pt;}
.wsdd{word-spacing:-0.299055pt;}
.wsb7{word-spacing:-0.299008pt;}
.ws81{word-spacing:-0.298913pt;}
.ws13b{word-spacing:-0.298861pt;}
.ws137{word-spacing:-0.298562pt;}
.ws59{word-spacing:-0.159337pt;}
.wsf2{word-spacing:-0.157707pt;}
.wsec{word-spacing:-0.157604pt;}
.ws4a{word-spacing:-0.156645pt;}
.ws55{word-spacing:-0.156555pt;}
.ws6c{word-spacing:-0.155952pt;}
.ws41{word-spacing:-0.155804pt;}
.ws61{word-spacing:-0.155795pt;}
.ws43{word-spacing:-0.155457pt;}
.ws52{word-spacing:-0.153804pt;}
.ws5c{word-spacing:-0.108754pt;}
.ws62{word-spacing:-0.107995pt;}
.ws82{word-spacing:-0.107790pt;}
.ws57{word-spacing:-0.106003pt;}
.ws5d{word-spacing:-0.102443pt;}
.ws143{word-spacing:-0.085147pt;}
.ws37{word-spacing:-0.082579pt;}
.ws3{word-spacing:-0.078164pt;}
.ws1{word-spacing:-0.076513pt;}
.ws0{word-spacing:-0.076257pt;}
.ws6{word-spacing:-0.063761pt;}
.wse9{word-spacing:-0.058182pt;}
.ws23{word-spacing:-0.053134pt;}
.ws33{word-spacing:-0.052650pt;}
.ws46{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.002498pt;}
.ws20{word-spacing:0.000000pt;}
.wse8{word-spacing:0.170029pt;}
.ws18d{word-spacing:0.903276pt;}
.ws187{word-spacing:1.009543pt;}
.ws86{word-spacing:1.062680pt;}
.ws14a{word-spacing:1.656517pt;}
.ws58{word-spacing:2.018467pt;}
.ws48{word-spacing:2.018634pt;}
.ws64{word-spacing:2.023801pt;}
.ws40{word-spacing:2.024034pt;}
.ws4e{word-spacing:2.071601pt;}
.ws88{word-spacing:2.167867pt;}
.ws161{word-spacing:2.586204pt;}
.ws8f{word-spacing:2.589801pt;}
.ws27{word-spacing:2.592939pt;}
.wse6{word-spacing:2.623626pt;}
.ws138{word-spacing:2.625522pt;}
.ws65{word-spacing:2.626301pt;}
.ws4b{word-spacing:2.626603pt;}
.ws8d{word-spacing:2.627825pt;}
.ws133{word-spacing:2.627914pt;}
.ws44{word-spacing:2.628445pt;}
.ws83{word-spacing:2.629349pt;}
.ws129{word-spacing:2.630323pt;}
.ws4d{word-spacing:2.631085pt;}
.ws155{word-spacing:2.631635pt;}
.wsf0{word-spacing:2.632113pt;}
.wsc3{word-spacing:2.632131pt;}
.wsca{word-spacing:2.635446pt;}
.ws13d{word-spacing:2.669322pt;}
.ws13a{word-spacing:2.670492pt;}
.wsfb{word-spacing:2.671289pt;}
.wsed{word-spacing:2.671661pt;}
.ws2d{word-spacing:2.769841pt;}
.ws69{word-spacing:2.890490pt;}
.ws17d{word-spacing:3.134898pt;}
.ws85{word-spacing:3.485590pt;}
.ws14c{word-spacing:3.865123pt;}
.ws8b{word-spacing:4.123198pt;}
.ws13c{word-spacing:4.165706pt;}
.ws91{word-spacing:4.420749pt;}
.ws179{word-spacing:5.047717pt;}
.wsc2{word-spacing:5.398414pt;}
.ws180{word-spacing:5.419654pt;}
.ws67{word-spacing:5.823486pt;}
.ws99{word-spacing:6.041221pt;}
.ws14b{word-spacing:6.043199pt;}
.wsfd{word-spacing:6.928674pt;}
.ws12e{word-spacing:6.968785pt;}
.ws174{word-spacing:7.226206pt;}
.ws185{word-spacing:7.385607pt;}
.ws30{word-spacing:8.458933pt;}
.ws17f{word-spacing:8.501419pt;}
.ws17a{word-spacing:8.958241pt;}
.ws188{word-spacing:9.085891pt;}
.ws18c{word-spacing:9.457828pt;}
.ws182{word-spacing:9.670364pt;}
.ws9f{word-spacing:10.286742pt;}
.wsd4{word-spacing:10.499278pt;}
.wscd{word-spacing:11.731987pt;}
.ws18a{word-spacing:13.230333pt;}
.ws189{word-spacing:18.331184pt;}
.ws17c{word-spacing:20.350271pt;}
.ws16a{word-spacing:43.622905pt;}
.ws16c{word-spacing:43.626462pt;}
.ws16b{word-spacing:43.679714pt;}
.ws169{word-spacing:56.431724pt;}
.ws168{word-spacing:90.331131pt;}
.wsf8{word-spacing:124.262105pt;}
.ws148{word-spacing:197.244529pt;}
.ws167{word-spacing:204.884308pt;}
.wsf{word-spacing:225.043805pt;}
.wsf4{word-spacing:225.616586pt;}
.ws10d{word-spacing:249.196793pt;}
.ws136{word-spacing:344.532303pt;}
.ws10{word-spacing:373.867161pt;}
.wsa6{word-spacing:612.904733pt;}
.ws103{word-spacing:888.539196pt;}
.wscf{word-spacing:1118.431218pt;}
.wsa8{word-spacing:1185.244897pt;}
.ws11b{word-spacing:1353.931586pt;}
.wsc6{word-spacing:1374.005030pt;}
.wsef{word-spacing:1389.811028pt;}
.wsd2{word-spacing:1546.190846pt;}
.wsf6{word-spacing:1586.956968pt;}
._6{margin-left:-2383.986568pt;}
._16{margin-left:-10.456771pt;}
._12{margin-left:-9.479055pt;}
._1d{margin-left:-7.634288pt;}
._1e{margin-left:-6.475467pt;}
._b{margin-left:-5.551431pt;}
._4{margin-left:-4.208219pt;}
._7{margin-left:-3.242257pt;}
._0{margin-left:-2.295392pt;}
._1{margin-left:-1.224209pt;}
._2{width:1.224209pt;}
._9{width:2.635446pt;}
._1a{width:4.080691pt;}
._19{width:5.015850pt;}
._40{width:6.286651pt;}
._48{width:7.209775pt;}
._18{width:9.640635pt;}
._2b{width:11.172413pt;}
._d{width:12.242074pt;}
._5{width:13.422731pt;}
._a{width:14.336666pt;}
._e{width:16.030611pt;}
._f{width:16.943055pt;}
._10{width:17.856613pt;}
._29{width:19.672334pt;}
._41{width:20.571312pt;}
._20{width:21.525646pt;}
._31{width:22.426795pt;}
._3{width:23.566025pt;}
._27{width:24.739190pt;}
._1b{width:25.896429pt;}
._2a{width:27.153601pt;}
._17{width:28.862398pt;}
._42{width:30.058909pt;}
._2e{width:30.953750pt;}
._c{width:31.880459pt;}
._4a{width:33.507723pt;}
._13{width:34.430467pt;}
._4c{width:35.331906pt;}
._44{width:36.354201pt;}
._49{width:37.532099pt;}
._45{width:38.628321pt;}
._46{width:40.559258pt;}
._43{width:42.819575pt;}
._4b{width:46.443708pt;}
._24{width:51.374205pt;}
._47{width:56.226267pt;}
._3b{width:74.752122pt;}
._3e{width:76.469700pt;}
._3f{width:86.132128pt;}
._28{width:135.347057pt;}
._14{width:137.554820pt;}
._23{width:162.340273pt;}
._37{width:167.470749pt;}
._22{width:172.908537pt;}
._2c{width:180.716004pt;}
._3d{width:185.118510pt;}
._39{width:190.470734pt;}
._38{width:192.867353pt;}
._25{width:202.808019pt;}
._3a{width:203.713490pt;}
._21{width:211.148093pt;}
._34{width:213.154925pt;}
._2f{width:215.459795pt;}
._32{width:221.566786pt;}
._30{width:233.739121pt;}
._36{width:242.129028pt;}
._3c{width:249.470013pt;}
._35{width:252.984781pt;}
._33{width:254.953203pt;}
._1f{width:256.015268pt;}
._1c{width:264.383867pt;}
._2d{width:265.451056pt;}
._26{width:268.488531pt;}
._8{width:301.568546pt;}
._15{width:690.058206pt;}
._11{width:2198.050230pt;}
.fs2{font-size:26.566933pt;}
.fs9{font-size:37.193600pt;}
.fs1{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs8{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs6{font-size:74.666667pt;}
.fs0{font-size:76.513067pt;}
.fsb{font-size:111.120000pt;}
.fs7{font-size:127.521600pt;}
.fsa{font-size:466.058667pt;}
.y27e{bottom:-257.258667pt;}
.y27d{bottom:-243.976000pt;}
.y27c{bottom:-230.692000pt;}
.y27b{bottom:-217.409333pt;}
.y27a{bottom:-204.125333pt;}
.y279{bottom:-190.841333pt;}
.y278{bottom:-177.558667pt;}
.y277{bottom:-164.274667pt;}
.y276{bottom:-150.990667pt;}
.y275{bottom:-137.708000pt;}
.y274{bottom:-124.424000pt;}
.y273{bottom:-111.140000pt;}
.y272{bottom:-94.106667pt;}
.y271{bottom:-82.022667pt;}
.y270{bottom:-68.740000pt;}
.y26f{bottom:-55.456000pt;}
.y26e{bottom:-42.172000pt;}
.y26d{bottom:-28.889333pt;}
.y26c{bottom:-15.605333pt;}
.y2c0{bottom:-5.712000pt;}
.y26b{bottom:-2.321333pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:4.606533pt;}
.y31b{bottom:6.886667pt;}
.y2bf{bottom:7.572000pt;}
.y179{bottom:7.792000pt;}
.y4bf{bottom:10.028000pt;}
.y26a{bottom:10.961333pt;}
.y31a{bottom:20.169333pt;}
.y2be{bottom:20.854667pt;}
.y178{bottom:21.076000pt;}
.y269{bottom:24.245333pt;}
.y319{bottom:33.453333pt;}
.y2bd{bottom:34.138667pt;}
.y177{bottom:34.358667pt;}
.yef{bottom:37.528000pt;}
.y268{bottom:41.278667pt;}
.y4be{bottom:43.364000pt;}
.y318{bottom:46.737333pt;}
.y2bc{bottom:47.422667pt;}
.y176{bottom:47.642667pt;}
.y267{bottom:52.554667pt;}
.y4ba{bottom:54.516000pt;}
.yee{bottom:54.562667pt;}
.y2bb{bottom:60.705333pt;}
.y175{bottom:60.926667pt;}
.y317{bottom:63.770667pt;}
.y266{bottom:65.838667pt;}
.yed{bottom:66.826667pt;}
.y2ba{bottom:73.989333pt;}
.y316{bottom:76.034667pt;}
.y4bd{bottom:76.700000pt;}
.y174{bottom:77.960000pt;}
.y265{bottom:79.121333pt;}
.yec{bottom:80.110667pt;}
.y2b9{bottom:87.273333pt;}
.y315{bottom:89.318667pt;}
.y172{bottom:90.044000pt;}
.y264{bottom:92.405333pt;}
.yeb{bottom:93.393333pt;}
.y426{bottom:97.296000pt;}
.y2b8{bottom:100.556000pt;}
.y85{bottom:101.884000pt;}
.y314{bottom:102.601333pt;}
.y171{bottom:103.326667pt;}
.y263{bottom:105.689333pt;}
.y4bc{bottom:110.036000pt;}
.yea{bottom:110.428000pt;}
.y425{bottom:110.578667pt;}
.y2b7{bottom:113.840000pt;}
.y313{bottom:115.885333pt;}
.y170{bottom:116.610667pt;}
.y3b8{bottom:118.890667pt;}
.y262{bottom:118.972000pt;}
.ye9{bottom:121.682667pt;}
.y424{bottom:123.862667pt;}
.y312{bottom:129.169333pt;}
.y16f{bottom:129.894667pt;}
.y2b6{bottom:130.873333pt;}
.y3b7{bottom:132.173333pt;}
.ye8{bottom:134.965333pt;}
.y261{bottom:136.006667pt;}
.y7d{bottom:136.368000pt;}
.y423{bottom:137.146667pt;}
.y41{bottom:141.734667pt;}
.y3ea{bottom:141.994667pt;}
.y16e{bottom:143.177333pt;}
.y4bb{bottom:143.372000pt;}
.y229{bottom:145.184000pt;}
.y195{bottom:145.720000pt;}
.y311{bottom:146.202667pt;}
.y84{bottom:146.512000pt;}
.y25d{bottom:148.089333pt;}
.ye7{bottom:148.249333pt;}
.y2b5{bottom:148.270667pt;}
.y284{bottom:148.377333pt;}
.y3d{bottom:148.912000pt;}
.y7c{bottom:149.652000pt;}
.y499{bottom:149.705333pt;}
.y489{bottom:149.850667pt;}
.y422{bottom:150.429333pt;}
.y185{bottom:153.326667pt;}
.y2f4{bottom:155.018667pt;}
.y16d{bottom:156.461333pt;}
.y30f{bottom:158.466667pt;}
.y25c{bottom:161.373333pt;}
.ye6{bottom:161.533333pt;}
.y3a3{bottom:161.556000pt;}
.y40{bottom:161.660000pt;}
.y3e9{bottom:161.920000pt;}
.y7b{bottom:162.936000pt;}
.y228{bottom:165.109333pt;}
.ybf{bottom:165.645333pt;}
.y83{bottom:166.437333pt;}
.y421{bottom:167.464000pt;}
.y2f3{bottom:168.302667pt;}
.y498{bottom:169.630667pt;}
.y16c{bottom:169.745333pt;}
.y488{bottom:169.776000pt;}
.y283{bottom:170.958667pt;}
.y2b4{bottom:171.278667pt;}
.y30e{bottom:171.750667pt;}
.ya0{bottom:171.872000pt;}
.y184{bottom:173.252000pt;}
.y3c{bottom:173.916000pt;}
.y25b{bottom:174.657333pt;}
.ye5{bottom:174.816000pt;}
.y4eb{bottom:174.944000pt;}
.y7a{bottom:176.218667pt;}
.y45a{bottom:177.508000pt;}
.y420{bottom:179.632000pt;}
.y36d{bottom:180.310667pt;}
.y3a2{bottom:181.481333pt;}
.y3f{bottom:181.585333pt;}
.y3e8{bottom:181.845333pt;}
.y16b{bottom:183.028000pt;}
.y3a9{bottom:184.570667pt;}
.y30d{bottom:185.034667pt;}
.y9f{bottom:185.154667pt;}
.ybe{bottom:185.570667pt;}
.y82{bottom:186.362667pt;}
.y125{bottom:186.898667pt;}
.y25a{bottom:187.940000pt;}
.ye4{bottom:188.100000pt;}
.y79{bottom:189.502667pt;}
.y497{bottom:189.556000pt;}
.y487{bottom:189.701333pt;}
.y227{bottom:190.348000pt;}
.y282{bottom:190.884000pt;}
.y345{bottom:192.074667pt;}
.y41f{bottom:192.914667pt;}
.y183{bottom:193.177333pt;}
.y32{bottom:194.150667pt;}
.y4ea{bottom:194.869333pt;}
.y16a{bottom:196.312000pt;}
.y3a8{bottom:197.853333pt;}
.y30c{bottom:198.317333pt;}
.y9e{bottom:198.438667pt;}
.y2b3{bottom:199.438667pt;}
.y36c{bottom:200.236000pt;}
.y259{bottom:201.224000pt;}
.ye3{bottom:201.384000pt;}
.y3a1{bottom:201.406667pt;}
.y3e{bottom:201.510667pt;}
.y3e7{bottom:201.769333pt;}
.y459{bottom:205.402667pt;}
.ybd{bottom:205.496000pt;}
.y81{bottom:206.288000pt;}
.y2b2{bottom:206.494667pt;}
.y78{bottom:206.536000pt;}
.y124{bottom:206.824000pt;}
.y31{bottom:207.433333pt;}
.y4fc{bottom:209.481333pt;}
.y169{bottom:209.596000pt;}
.y226{bottom:210.273333pt;}
.y281{bottom:210.809333pt;}
.y3a7{bottom:211.137333pt;}
.y30b{bottom:211.601333pt;}
.y9d{bottom:211.722667pt;}
.y344{bottom:212.000000pt;}
.y486{bottom:212.282667pt;}
.y182{bottom:213.102667pt;}
.ye2{bottom:214.666667pt;}
.y4e9{bottom:214.794667pt;}
.y310{bottom:218.242667pt;}
.y258{bottom:218.257333pt;}
.y6d{bottom:218.620000pt;}
.y496{bottom:220.108000pt;}
.y30{bottom:220.717333pt;}
.y3a0{bottom:221.332000pt;}
.y3b{bottom:221.436000pt;}
.y1f8{bottom:222.414667pt;}
.y168{bottom:222.878667pt;}
.y3a6{bottom:224.420000pt;}
.y30a{bottom:224.884000pt;}
.y9c{bottom:225.005333pt;}
.ybc{bottom:225.421333pt;}
.y80{bottom:226.213333pt;}
.y2b1{bottom:226.420000pt;}
.y123{bottom:226.749333pt;}
.y3e6{bottom:227.009333pt;}
.ye1{bottom:227.950667pt;}
.y4fb{bottom:229.406667pt;}
.y225{bottom:230.198667pt;}
.y256{bottom:230.341333pt;}
.y280{bottom:230.734667pt;}
.y6c{bottom:231.904000pt;}
.y343{bottom:231.925333pt;}
.y485{bottom:232.208000pt;}
.y181{bottom:233.028000pt;}
.y2f{bottom:234.001333pt;}
.y4e8{bottom:234.720000pt;}
.y167{bottom:236.162667pt;}
.y3a5{bottom:237.704000pt;}
.y309{bottom:238.168000pt;}
.y9b{bottom:238.289333pt;}
.y495{bottom:240.033333pt;}
.ye0{bottom:241.234667pt;}
.y39f{bottom:241.256000pt;}
.y3a{bottom:241.361333pt;}
.y255{bottom:243.625333pt;}
.y6b{bottom:245.186667pt;}
.ybb{bottom:245.346667pt;}
.y2f2{bottom:245.920000pt;}
.y7f{bottom:246.138667pt;}
.y2b0{bottom:246.345333pt;}
.y458{bottom:246.582667pt;}
.y122{bottom:246.674667pt;}
.y3e5{bottom:246.933333pt;}
.y2e{bottom:247.284000pt;}
.y482{bottom:248.148000pt;}
.y4fa{bottom:249.332000pt;}
.y166{bottom:249.445333pt;}
.y3ac{bottom:249.748000pt;}
.y27f{bottom:250.660000pt;}
.y4de{bottom:250.700000pt;}
.y3a4{bottom:250.988000pt;}
.y9a{bottom:251.572000pt;}
.y342{bottom:251.850667pt;}
.y484{bottom:252.133333pt;}
.y180{bottom:252.953333pt;}
.ydf{bottom:254.517333pt;}
.y1a6{bottom:254.645333pt;}
.y224{bottom:255.437333pt;}
.y254{bottom:256.908000pt;}
.y308{bottom:258.093333pt;}
.y6a{bottom:258.470667pt;}
.y194{bottom:258.630667pt;}
.y494{bottom:259.958667pt;}
.y2d{bottom:260.568000pt;}
.y39e{bottom:261.181333pt;}
.y39{bottom:261.286667pt;}
.y481{bottom:261.432000pt;}
.y3ab{bottom:263.030667pt;}
.y99{bottom:264.856000pt;}
.yba{bottom:265.272000pt;}
.y2f1{bottom:265.845333pt;}
.y7e{bottom:266.064000pt;}
.y2af{bottom:266.270667pt;}
.y165{bottom:266.480000pt;}
.y457{bottom:266.506667pt;}
.y3e4{bottom:266.858667pt;}
.y4f9{bottom:269.257333pt;}
.y253{bottom:270.192000pt;}
.y11f{bottom:270.585333pt;}
.y4dd{bottom:270.625333pt;}
.y1f7{bottom:271.162667pt;}
.yde{bottom:271.552000pt;}
.y69{bottom:271.754667pt;}
.y341{bottom:271.776000pt;}
.y17f{bottom:272.878667pt;}
.y260{bottom:273.242667pt;}
.y2c{bottom:273.850667pt;}
.y1a5{bottom:274.570667pt;}
.y480{bottom:274.714667pt;}
.y223{bottom:275.362667pt;}
.y3aa{bottom:276.314667pt;}
.y121{bottom:277.226667pt;}
.y160{bottom:277.734667pt;}
.y307{bottom:278.018667pt;}
.y98{bottom:278.140000pt;}
.y493{bottom:279.884000pt;}
.y38{bottom:281.212000pt;}
.y252{bottom:283.476000pt;}
.y11e{bottom:283.869333pt;}
.y68{bottom:285.037333pt;}
.yb9{bottom:285.197333pt;}
.y2ef{bottom:285.770667pt;}
.y77{bottom:285.989333pt;}
.y39d{bottom:286.420000pt;}
.y3b1{bottom:287.028000pt;}
.y2b{bottom:287.134667pt;}
.y47f{bottom:287.998667pt;}
.y36b{bottom:289.236000pt;}
.y399{bottom:290.330667pt;}
.y4dc{bottom:290.550667pt;}
.y15f{bottom:291.018667pt;}
.y1f6{bottom:291.088000pt;}
.y340{bottom:291.701333pt;}
.y41e{bottom:291.742667pt;}
.y456{bottom:291.746667pt;}
.y3e3{bottom:292.097333pt;}
.y17e{bottom:292.804000pt;}
.y25f{bottom:293.166667pt;}
.ydd{bottom:294.496000pt;}
.y483{bottom:294.640000pt;}
.y222{bottom:295.286667pt;}
.y2ae{bottom:296.494667pt;}
.y251{bottom:296.758667pt;}
.y11d{bottom:297.152000pt;}
.y306{bottom:297.944000pt;}
.y67{bottom:298.321333pt;}
.y2ee{bottom:299.054667pt;}
.y3b0{bottom:300.310667pt;}
.y2a{bottom:300.418667pt;}
.y37{bottom:301.137333pt;}
.y47e{bottom:301.282667pt;}
.y398{bottom:303.614667pt;}
.y15e{bottom:304.301333pt;}
.yb8{bottom:305.122667pt;}
.y2f0{bottom:305.696000pt;}
.y76{bottom:305.914667pt;}
.y39c{bottom:306.345333pt;}
.ydc{bottom:307.778667pt;}
.y193{bottom:309.108000pt;}
.y36a{bottom:309.160000pt;}
.y250{bottom:310.042667pt;}
.y11c{bottom:310.436000pt;}
.y4db{bottom:310.476000pt;}
.y1f5{bottom:311.013333pt;}
.y66{bottom:311.605333pt;}
.y33f{bottom:311.626667pt;}
.y41d{bottom:311.668000pt;}
.y3e2{bottom:312.022667pt;}
.y2ed{bottom:312.337333pt;}
.y17d{bottom:312.728000pt;}
.y25e{bottom:313.092000pt;}
.y3af{bottom:313.594667pt;}
.y29{bottom:313.701333pt;}
.y1a4{bottom:314.421333pt;}
.y47d{bottom:314.565333pt;}
.y221{bottom:315.212000pt;}
.y2ad{bottom:316.420000pt;}
.y397{bottom:316.898667pt;}
.y455{bottom:316.985333pt;}
.y120{bottom:317.077333pt;}
.y15d{bottom:317.585333pt;}
.y305{bottom:317.869333pt;}
.y36{bottom:321.062667pt;}
.y24f{bottom:323.326667pt;}
.y11b{bottom:323.720000pt;}
.yb7{bottom:325.048000pt;}
.y2ec{bottom:325.621333pt;}
.y75{bottom:325.840000pt;}
.ydb{bottom:325.882667pt;}
.y39b{bottom:326.270667pt;}
.y3ae{bottom:326.878667pt;}
.y65{bottom:328.638667pt;}
.y192{bottom:329.033333pt;}
.y369{bottom:329.085333pt;}
.y492{bottom:330.361333pt;}
.y4da{bottom:330.401333pt;}
.y28{bottom:330.736000pt;}
.y1f4{bottom:330.938667pt;}
.y33e{bottom:331.552000pt;}
.y41c{bottom:331.593333pt;}
.y3e1{bottom:331.948000pt;}
.y17c{bottom:332.653333pt;}
.y257{bottom:333.017333pt;}
.y396{bottom:333.932000pt;}
.y1a3{bottom:334.346667pt;}
.y47c{bottom:334.490667pt;}
.y15c{bottom:334.618667pt;}
.y4ec{bottom:335.674667pt;}
.y2ac{bottom:336.345333pt;}
.y454{bottom:336.909333pt;}
.y11a{bottom:337.002667pt;}
.y304{bottom:337.794667pt;}
.y3ad{bottom:340.161333pt;}
.y24e{bottom:340.360000pt;}
.y220{bottom:340.450667pt;}
.y35{bottom:340.988000pt;}
.y64{bottom:341.662667pt;}
.yb6{bottom:344.973333pt;}
.y2eb{bottom:345.546667pt;}
.y74{bottom:345.765333pt;}
.y392{bottom:346.196000pt;}
.y156{bottom:346.882667pt;}
.y40a{bottom:347.629333pt;}
.y191{bottom:348.958667pt;}
.y368{bottom:349.010667pt;}
.y491{bottom:350.286667pt;}
.y1f3{bottom:350.864000pt;}
.y33d{bottom:351.477333pt;}
.y24b{bottom:351.614667pt;}
.y3e0{bottom:351.873333pt;}
.y17b{bottom:352.578667pt;}
.y47b{bottom:354.416000pt;}
.y63{bottom:354.946667pt;}
.y24d{bottom:355.600000pt;}
.y453{bottom:356.834667pt;}
.y119{bottom:356.928000pt;}
.y303{bottom:357.720000pt;}
.y4b6{bottom:357.861333pt;}
.y391{bottom:359.480000pt;}
.y4d9{bottom:359.665333pt;}
.y155{bottom:360.166667pt;}
.y21f{bottom:360.376000pt;}
.y34{bottom:360.913333pt;}
.y43a{bottom:361.590667pt;}
.y41b{bottom:362.048000pt;}
.y33b{bottom:362.104000pt;}
.yb5{bottom:364.898667pt;}
.y73{bottom:365.689333pt;}
.y39a{bottom:366.121333pt;}
.y2ab{bottom:366.568000pt;}
.yda{bottom:367.554667pt;}
.y62{bottom:368.229333pt;}
.y190{bottom:368.884000pt;}
.y367{bottom:368.936000pt;}
.y2ea{bottom:370.030667pt;}
.y490{bottom:370.212000pt;}
.y1f2{bottom:370.789333pt;}
.y33c{bottom:371.402667pt;}
.y3df{bottom:371.798667pt;}
.y17a{bottom:372.504000pt;}
.y390{bottom:372.764000pt;}
.y469{bottom:372.868000pt;}
.y154{bottom:373.450667pt;}
.y409{bottom:374.197333pt;}
.y47a{bottom:374.341333pt;}
.y439{bottom:374.873333pt;}
.y24c{bottom:375.525333pt;}
.y118{bottom:376.853333pt;}
.y4b5{bottom:377.786667pt;}
.y24a{bottom:378.181333pt;}
.y3de{bottom:378.441333pt;}
.y4d8{bottom:379.590667pt;}
.y21e{bottom:380.301333pt;}
.y33{bottom:380.838667pt;}
.y41a{bottom:381.973333pt;}
.y452{bottom:382.073333pt;}
.y2a4{bottom:382.862667pt;}
.y302{bottom:382.958667pt;}
.y1a2{bottom:384.824000pt;}
.y61{bottom:385.264000pt;}
.y72{bottom:385.614667pt;}
.y38f{bottom:386.046667pt;}
.y2aa{bottom:386.493333pt;}
.y408{bottom:387.480000pt;}
.y438{bottom:388.157333pt;}
.y18f{bottom:388.808000pt;}
.y2e9{bottom:389.956000pt;}
.y48f{bottom:390.137333pt;}
.y153{bottom:390.484000pt;}
.y1f1{bottom:390.714667pt;}
.y33a{bottom:391.328000pt;}
.y249{bottom:391.465333pt;}
.y3dd{bottom:391.724000pt;}
.y173{bottom:392.429333pt;}
.y366{bottom:394.174667pt;}
.y479{bottom:394.266667pt;}
.yb4{bottom:395.450667pt;}
.y2a3{bottom:396.146667pt;}
.y117{bottom:396.778667pt;}
.y4b4{bottom:397.710667pt;}
.y38e{bottom:399.330667pt;}
.y4d7{bottom:399.516000pt;}
.y27{bottom:400.764000pt;}
.y364{bottom:400.817333pt;}
.y419{bottom:401.898667pt;}
.y451{bottom:401.998667pt;}
.y151{bottom:402.568000pt;}
.y301{bottom:402.884000pt;}
.y2e6{bottom:404.174667pt;}
.y1a1{bottom:404.749333pt;}
.y21d{bottom:405.540000pt;}
.y395{bottom:405.972000pt;}
.y2a9{bottom:406.418667pt;}
.y60{bottom:406.740000pt;}
.y40b{bottom:407.405333pt;}
.y18e{bottom:408.733333pt;}
.y2a2{bottom:409.429333pt;}
.y48e{bottom:410.062667pt;}
.y217{bottom:410.322667pt;}
.y1f0{bottom:410.640000pt;}
.y339{bottom:411.253333pt;}
.y164{bottom:412.354667pt;}
.y38d{bottom:412.614667pt;}
.y407{bottom:414.046667pt;}
.y363{bottom:414.100000pt;}
.y478{bottom:414.192000pt;}
.yb3{bottom:415.376000pt;}
.y150{bottom:415.850667pt;}
.y71{bottom:416.166667pt;}
.y116{bottom:416.704000pt;}
.y3dc{bottom:416.962667pt;}
.y2e5{bottom:417.458667pt;}
.y4b3{bottom:417.636000pt;}
.y248{bottom:418.032000pt;}
.y4d6{bottom:419.441333pt;}
.yd9{bottom:420.689333pt;}
.y418{bottom:421.824000pt;}
.y450{bottom:421.924000pt;}
.y2a1{bottom:422.713333pt;}
.y2e8{bottom:423.168000pt;}
.y216{bottom:423.606667pt;}
.y1a0{bottom:424.674667pt;}
.y21c{bottom:425.465333pt;}
.y38c{bottom:425.897333pt;}
.y2a8{bottom:426.344000pt;}
.y406{bottom:427.330667pt;}
.y362{bottom:427.384000pt;}
.y25{bottom:427.694667pt;}
.y300{bottom:428.122667pt;}
.y18d{bottom:428.658667pt;}
.y14f{bottom:429.134667pt;}
.y97{bottom:429.589333pt;}
.y2e4{bottom:430.742667pt;}
.y338{bottom:431.178667pt;}
.y247{bottom:431.316000pt;}
.y163{bottom:432.280000pt;}
.y477{bottom:434.117333pt;}
.y1ef{bottom:434.982667pt;}
.yb2{bottom:435.301333pt;}
.y2a0{bottom:435.997333pt;}
.y70{bottom:436.092000pt;}
.y3db{bottom:436.888000pt;}
.y215{bottom:436.889333pt;}
.y38b{bottom:439.181333pt;}
.y4d5{bottom:439.366667pt;}
.yd8{bottom:440.614667pt;}
.y361{bottom:440.668000pt;}
.y14e{bottom:442.418667pt;}
.y96{bottom:442.872000pt;}
.y2e3{bottom:444.025333pt;}
.y246{bottom:444.600000pt;}
.y21b{bottom:445.390667pt;}
.y394{bottom:445.822667pt;}
.y44f{bottom:447.162667pt;}
.y115{bottom:447.256000pt;}
.y365{bottom:447.309333pt;}
.y21{bottom:448.122667pt;}
.y4b2{bottom:448.189333pt;}
.y29f{bottom:449.280000pt;}
.y214{bottom:450.173333pt;}
.y2a7{bottom:451.253333pt;}
.y162{bottom:452.205333pt;}
.y417{bottom:452.280000pt;}
.y38a{bottom:452.464000pt;}
.y5f{bottom:453.361333pt;}
.y18c{bottom:453.897333pt;}
.y360{bottom:453.950667pt;}
.y1ee{bottom:454.908000pt;}
.yb1{bottom:455.226667pt;}
.y14d{bottom:455.701333pt;}
.y6f{bottom:456.017333pt;}
.y95{bottom:456.156000pt;}
.y3da{bottom:456.813333pt;}
.y2e2{bottom:457.309333pt;}
.y109{bottom:457.756000pt;}
.y245{bottom:457.882667pt;}
.y476{bottom:459.356000pt;}
.y2ff{bottom:460.002667pt;}
.yd7{bottom:460.540000pt;}
.y29e{bottom:462.564000pt;}
.y48d{bottom:463.196000pt;}
.y2e7{bottom:463.950667pt;}
.y20{bottom:464.062667pt;}
.y4f8{bottom:464.525333pt;}
.y389{bottom:465.748000pt;}
.y5e{bottom:466.645333pt;}
.y26{bottom:466.701333pt;}
.y44e{bottom:467.088000pt;}
.y114{bottom:467.181333pt;}
.y213{bottom:467.206667pt;}
.y35f{bottom:467.234667pt;}
.y4b1{bottom:468.114667pt;}
.y22{bottom:468.194667pt;}
.y468{bottom:468.509333pt;}
.y4d4{bottom:468.629333pt;}
.y14c{bottom:468.985333pt;}
.y94{bottom:469.440000pt;}
.y337{bottom:470.320000pt;}
.y2e1{bottom:470.593333pt;}
.y21a{bottom:470.629333pt;}
.y108{bottom:471.038667pt;}
.y161{bottom:472.130667pt;}
.y416{bottom:472.205333pt;}
.y2fe{bottom:473.286667pt;}
.y1ed{bottom:474.833333pt;}
.yb0{bottom:475.152000pt;}
.y29d{bottom:475.846667pt;}
.y6e{bottom:475.942667pt;}
.y2a6{bottom:476.162667pt;}
.y3d9{bottom:476.738667pt;}
.y413{bottom:477.654667pt;}
.y244{bottom:477.808000pt;}
.y388{bottom:479.032000pt;}
.y18b{bottom:479.136000pt;}
.y20e{bottom:479.472000pt;}
.y5d{bottom:479.928000pt;}
.y1f{bottom:480.002667pt;}
.yd6{bottom:480.465333pt;}
.y14b{bottom:482.269333pt;}
.y93{bottom:482.722667pt;}
.y48c{bottom:483.121333pt;}
.y2e0{bottom:483.876000pt;}
.y107{bottom:484.322667pt;}
.y4f7{bottom:484.449333pt;}
.y393{bottom:485.673333pt;}
.y4e7{bottom:485.778667pt;}
.y3b6{bottom:486.590667pt;}
.y44d{bottom:487.013333pt;}
.y405{bottom:487.106667pt;}
.y35e{bottom:487.160000pt;}
.y4b0{bottom:488.038667pt;}
.y467{bottom:488.434667pt;}
.y4d3{bottom:488.554667pt;}
.y29c{bottom:489.130667pt;}
.y475{bottom:489.908000pt;}
.y219{bottom:490.554667pt;}
.y412{bottom:490.938667pt;}
.y15b{bottom:492.056000pt;}
.y415{bottom:492.130667pt;}
.y387{bottom:492.314667pt;}
.y20d{bottom:492.754667pt;}
.y5c{bottom:493.212000pt;}
.y1ec{bottom:494.758667pt;}
.yaf{bottom:495.077333pt;}
.y14a{bottom:495.552000pt;}
.y1e{bottom:495.944000pt;}
.y92{bottom:496.006667pt;}
.y3d8{bottom:496.664000pt;}
.y106{bottom:497.606667pt;}
.y113{bottom:497.733333pt;}
.y3b5{bottom:499.874667pt;}
.yd5{bottom:500.390667pt;}
.y29b{bottom:502.414667pt;}
.y48b{bottom:503.046667pt;}
.y2df{bottom:503.801333pt;}
.y2fd{bottom:503.838667pt;}
.y411{bottom:504.222667pt;}
.y18a{bottom:504.374667pt;}
.y386{bottom:505.598667pt;}
.y4e6{bottom:505.704000pt;}
.y20c{bottom:506.038667pt;}
.y2a5{bottom:506.385333pt;}
.y5b{bottom:506.494667pt;}
.y404{bottom:507.032000pt;}
.y35d{bottom:507.085333pt;}
.y4af{bottom:507.964000pt;}
.y4d2{bottom:508.480000pt;}
.y149{bottom:508.836000pt;}
.y91{bottom:509.289333pt;}
.y474{bottom:509.833333pt;}
.y218{bottom:510.480000pt;}
.y3fc{bottom:510.868000pt;}
.y105{bottom:510.889333pt;}
.y1d{bottom:511.884000pt;}
.y3b4{bottom:513.158667pt;}
.y336{bottom:514.338667pt;}
.y1eb{bottom:514.684000pt;}
.yae{bottom:515.002667pt;}
.y23{bottom:515.353333pt;}
.y29a{bottom:515.697333pt;}
.y466{bottom:516.330667pt;}
.y430{bottom:517.122667pt;}
.y410{bottom:517.505333pt;}
.y44c{bottom:517.565333pt;}
.y112{bottom:517.658667pt;}
.y20b{bottom:519.322667pt;}
.yd4{bottom:520.316000pt;}
.y3d7{bottom:521.902667pt;}
.y148{bottom:522.120000pt;}
.y90{bottom:522.573333pt;}
.y414{bottom:522.586667pt;}
.y15a{bottom:522.608000pt;}
.y48a{bottom:522.972000pt;}
.y2de{bottom:523.726667pt;}
.y2fc{bottom:523.764000pt;}
.y3fb{bottom:524.152000pt;}
.y104{bottom:524.173333pt;}
.y189{bottom:524.300000pt;}
.y385{bottom:525.524000pt;}
.y4e5{bottom:525.629333pt;}
.y5a{bottom:526.420000pt;}
.y3b3{bottom:526.441333pt;}
.y403{bottom:526.957333pt;}
.y35c{bottom:527.010667pt;}
.y1c{bottom:527.824000pt;}
.y4ae{bottom:527.889333pt;}
.y299{bottom:528.981333pt;}
.y473{bottom:529.758667pt;}
.y212{bottom:530.405333pt;}
.y40f{bottom:530.789333pt;}
.y20a{bottom:532.605333pt;}
.y335{bottom:534.264000pt;}
.y1ea{bottom:534.609333pt;}
.y24{bottom:534.909333pt;}
.yad{bottom:534.928000pt;}
.y147{bottom:535.402667pt;}
.y465{bottom:536.256000pt;}
.y42f{bottom:537.048000pt;}
.y103{bottom:537.456000pt;}
.y111{bottom:537.584000pt;}
.y4d1{bottom:537.744000pt;}
.y3b2{bottom:539.725333pt;}
.yd3{bottom:540.241333pt;}
.y3fa{bottom:541.185333pt;}
.y382{bottom:541.205333pt;}
.y3d6{bottom:541.828000pt;}
.y298{bottom:542.265333pt;}
.y159{bottom:542.533333pt;}
.y2dd{bottom:543.652000pt;}
.y1b{bottom:543.764000pt;}
.y40e{bottom:544.073333pt;}
.y4b9{bottom:544.197333pt;}
.y188{bottom:544.225333pt;}
.y384{bottom:545.449333pt;}
.y19f{bottom:545.554667pt;}
.y59{bottom:546.345333pt;}
.y402{bottom:546.882667pt;}
.y35b{bottom:546.936000pt;}
.y4ad{bottom:547.814667pt;}
.y2d4{bottom:548.636000pt;}
.y146{bottom:548.686667pt;}
.y209{bottom:549.640000pt;}
.y472{bottom:549.684000pt;}
.y211{bottom:550.330667pt;}
.y102{bottom:550.740000pt;}
.y3f9{bottom:553.449333pt;}
.y334{bottom:554.189333pt;}
.y381{bottom:554.489333pt;}
.y1e9{bottom:554.534667pt;}
.yac{bottom:554.852000pt;}
.y1be{bottom:555.469333pt;}
.y464{bottom:556.181333pt;}
.y40d{bottom:557.356000pt;}
.y110{bottom:557.509333pt;}
.y4d0{bottom:557.669333pt;}
.y44b{bottom:558.745333pt;}
.y201{bottom:559.554667pt;}
.y1a{bottom:559.704000pt;}
.yd2{bottom:560.166667pt;}
.y3d5{bottom:561.753333pt;}
.y2d3{bottom:561.920000pt;}
.y145{bottom:561.969333pt;}
.y297{bottom:562.190667pt;}
.y158{bottom:562.458667pt;}
.y2dc{bottom:563.577333pt;}
.y101{bottom:564.024000pt;}
.y187{bottom:564.150667pt;}
.y19e{bottom:565.480000pt;}
.y58{bottom:566.270667pt;}
.y3f8{bottom:566.733333pt;}
.y401{bottom:566.808000pt;}
.y35a{bottom:566.861333pt;}
.y2fb{bottom:567.697333pt;}
.y380{bottom:567.772000pt;}
.y1bd{bottom:568.752000pt;}
.y471{bottom:569.609333pt;}
.y210{bottom:570.256000pt;}
.y4f6{bottom:572.121333pt;}
.yab{bottom:574.777333pt;}
.y2d2{bottom:575.202667pt;}
.y144{bottom:575.253333pt;}
.y19{bottom:575.644000pt;}
.y4e4{bottom:576.106667pt;}
.y100{bottom:577.306667pt;}
.y10f{bottom:577.434667pt;}
.y4cf{bottom:577.594667pt;}
.y42e{bottom:578.324000pt;}
.y3d1{bottom:578.605333pt;}
.y44a{bottom:578.670667pt;}
.y1e8{bottom:578.877333pt;}
.y333{bottom:579.289333pt;}
.y383{bottom:579.414667pt;}
.y4aa{bottom:579.765333pt;}
.y3f7{bottom:580.017333pt;}
.yd1{bottom:580.090667pt;}
.y241{bottom:581.005333pt;}
.y37f{bottom:581.056000pt;}
.y42c{bottom:581.420000pt;}
.y3d4{bottom:581.678667pt;}
.y1bc{bottom:582.036000pt;}
.y296{bottom:582.116000pt;}
.y157{bottom:582.384000pt;}
.y2db{bottom:583.502667pt;}
.y186{bottom:584.076000pt;}
.y19d{bottom:585.405333pt;}
.y57{bottom:586.196000pt;}
.y400{bottom:586.733333pt;}
.y359{bottom:586.786667pt;}
.y2d1{bottom:588.486667pt;}
.y143{bottom:588.537333pt;}
.y200{bottom:590.277333pt;}
.yff{bottom:590.590667pt;}
.y18{bottom:591.585333pt;}
.y3d0{bottom:591.888000pt;}
.y4f5{bottom:592.046667pt;}
.y3f6{bottom:593.300000pt;}
.y240{bottom:594.289333pt;}
.y37e{bottom:594.338667pt;}
.yaa{bottom:594.702667pt;}
.y1bb{bottom:595.320000pt;}
.y20f{bottom:595.494667pt;}
.y4e3{bottom:596.032000pt;}
.y10e{bottom:597.360000pt;}
.y4ce{bottom:597.520000pt;}
.y449{bottom:598.594667pt;}
.y1e7{bottom:598.802667pt;}
.y332{bottom:599.214667pt;}
.y4a9{bottom:599.690667pt;}
.yd0{bottom:600.016000pt;}
.y3d3{bottom:601.604000pt;}
.y2d0{bottom:601.770667pt;}
.y142{bottom:601.820000pt;}
.y295{bottom:602.041333pt;}
.y152{bottom:602.309333pt;}
.y2da{bottom:603.428000pt;}
.yfe{bottom:603.874667pt;}
.y19c{bottom:605.330667pt;}
.y56{bottom:606.121333pt;}
.y3f5{bottom:606.584000pt;}
.y358{bottom:606.712000pt;}
.y17{bottom:607.525333pt;}
.y23f{bottom:607.572000pt;}
.y37d{bottom:607.622667pt;}
.y42b{bottom:607.986667pt;}
.y1ba{bottom:608.602667pt;}
.y3cf{bottom:608.922667pt;}
.y470{bottom:610.788000pt;}
.y3ff{bottom:611.972000pt;}
.y1ff{bottom:612.742667pt;}
.ya9{bottom:614.628000pt;}
.y2cf{bottom:615.053333pt;}
.y208{bottom:615.420000pt;}
.y4e2{bottom:615.957333pt;}
.yfd{bottom:617.157333pt;}
.y10d{bottom:617.285333pt;}
.y448{bottom:618.520000pt;}
.y1e6{bottom:618.728000pt;}
.y331{bottom:619.140000pt;}
.y4a8{bottom:619.614667pt;}
.y3f4{bottom:619.868000pt;}
.ycf{bottom:619.941333pt;}
.y3cb{bottom:620.177333pt;}
.y23e{bottom:620.856000pt;}
.y37c{bottom:620.906667pt;}
.y42a{bottom:621.270667pt;}
.y3d2{bottom:621.529333pt;}
.y1b9{bottom:621.886667pt;}
.y294{bottom:621.966667pt;}
.y141{bottom:622.234667pt;}
.y2d9{bottom:623.353333pt;}
.y16{bottom:623.465333pt;}
.y1cc{bottom:624.892000pt;}
.y19b{bottom:625.254667pt;}
.y357{bottom:626.637333pt;}
.y4cd{bottom:626.784000pt;}
.y42d{bottom:627.912000pt;}
.y2ce{bottom:628.337333pt;}
.yfc{bottom:630.441333pt;}
.y13c{bottom:631.118667pt;}
.y3fe{bottom:631.897333pt;}
.y3f3{bottom:633.150667pt;}
.y3ca{bottom:633.460000pt;}
.y23d{bottom:634.138667pt;}
.y429{bottom:634.553333pt;}
.y207{bottom:635.345333pt;}
.y4e1{bottom:635.882667pt;}
.y55{bottom:636.673333pt;}
.y1fe{bottom:637.152000pt;}
.y10c{bottom:637.210667pt;}
.y447{bottom:638.445333pt;}
.y1e5{bottom:638.653333pt;}
.y1b8{bottom:638.920000pt;}
.y15{bottom:639.405333pt;}
.ya8{bottom:639.866667pt;}
.y37b{bottom:640.832000pt;}
.y3ce{bottom:641.454667pt;}
.y2cd{bottom:641.621333pt;}
.y140{bottom:642.160000pt;}
.y2d8{bottom:643.278667pt;}
.yfb{bottom:643.725333pt;}
.y330{bottom:644.241333pt;}
.y13b{bottom:644.402667pt;}
.y1cb{bottom:644.816000pt;}
.y4a7{bottom:646.182667pt;}
.y3f2{bottom:646.434667pt;}
.y4cc{bottom:646.709333pt;}
.y3c9{bottom:646.744000pt;}
.y46f{bottom:647.410667pt;}
.y23c{bottom:647.422667pt;}
.yce{bottom:647.837333pt;}
.y1b7{bottom:651.004000pt;}
.y3fd{bottom:651.822667pt;}
.y32c{bottom:654.524000pt;}
.y1e0{bottom:655.025333pt;}
.y206{bottom:655.270667pt;}
.y14{bottom:655.345333pt;}
.y19a{bottom:655.808000pt;}
.y54{bottom:656.598667pt;}
.yfa{bottom:657.136000pt;}
.y46d{bottom:657.373333pt;}
.y13a{bottom:657.685333pt;}
.y446{bottom:658.370667pt;}
.y463{bottom:658.464000pt;}
.y1e4{bottom:658.578667pt;}
.y2cc{bottom:658.708000pt;}
.y3f1{bottom:659.718667pt;}
.y243{bottom:659.792000pt;}
.y356{bottom:659.845333pt;}
.y3c8{bottom:660.028000pt;}
.y23b{bottom:660.706667pt;}
.y37a{bottom:660.757333pt;}
.y428{bottom:661.121333pt;}
.y3cd{bottom:661.380000pt;}
.y13f{bottom:662.085333pt;}
.y2d7{bottom:663.204000pt;}
.y32f{bottom:664.166667pt;}
.y1b6{bottom:664.288000pt;}
.y1ca{bottom:664.741333pt;}
.ya7{bottom:665.105333pt;}
.y293{bottom:665.570667pt;}
.y4a6{bottom:666.108000pt;}
.y4e0{bottom:666.434667pt;}
.y4cb{bottom:666.634667pt;}
.y46e{bottom:667.336000pt;}
.ycd{bottom:667.762667pt;}
.y32b{bottom:667.808000pt;}
.y1df{bottom:668.309333pt;}
.y1fd{bottom:669.372000pt;}
.yf9{bottom:670.418667pt;}
.y46c{bottom:670.657333pt;}
.y139{bottom:670.969333pt;}
.y13{bottom:671.285333pt;}
.y4f4{bottom:671.748000pt;}
.y3f0{bottom:673.001333pt;}
.y3c7{bottom:673.310667pt;}
.y378{bottom:674.040000pt;}
.y427{bottom:674.404000pt;}
.y205{bottom:675.196000pt;}
.y199{bottom:675.733333pt;}
.y53{bottom:676.524000pt;}
.y10b{bottom:677.061333pt;}
.y1b5{bottom:677.570667pt;}
.y23a{bottom:677.740000pt;}
.y462{bottom:678.389333pt;}
.y1e3{bottom:678.504000pt;}
.y242{bottom:679.717333pt;}
.y355{bottom:679.770667pt;}
.y379{bottom:680.682667pt;}
.y32a{bottom:681.090667pt;}
.y1de{bottom:681.593333pt;}
.y13e{bottom:682.010667pt;}
.y2d6{bottom:683.129333pt;}
.yf8{bottom:683.702667pt;}
.y46b{bottom:683.940000pt;}
.y138{bottom:684.253333pt;}
.ya6{bottom:685.030667pt;}
.y4a5{bottom:686.033333pt;}
.y445{bottom:686.266667pt;}
.y3ef{bottom:686.285333pt;}
.y4df{bottom:686.360000pt;}
.y3c6{bottom:686.594667pt;}
.y12{bottom:687.226667pt;}
.ycc{bottom:687.688000pt;}
.y235{bottom:689.016000pt;}
.y1b4{bottom:690.854667pt;}
.y4f3{bottom:691.673333pt;}
.y1fc{bottom:691.837333pt;}
.y2cb{bottom:692.193333pt;}
.y329{bottom:694.374667pt;}
.y1dd{bottom:694.876000pt;}
.y1c9{bottom:695.294667pt;}
.y3cc{bottom:695.345333pt;}
.y4ca{bottom:695.898667pt;}
.y52{bottom:696.449333pt;}
.yf7{bottom:696.986667pt;}
.y32e{bottom:697.169333pt;}
.y46a{bottom:697.224000pt;}
.y137{bottom:697.536000pt;}
.y1e2{bottom:698.429333pt;}
.y3ee{bottom:699.568000pt;}
.y239{bottom:699.642667pt;}
.y354{bottom:699.696000pt;}
.y3c5{bottom:699.877333pt;}
.y377{bottom:700.608000pt;}
.y13d{bottom:701.936000pt;}
.y234{bottom:702.300000pt;}
.y2d5{bottom:703.054667pt;}
.y11{bottom:703.166667pt;}
.y1b3{bottom:704.138667pt;}
.y204{bottom:705.748000pt;}
.y444{bottom:706.192000pt;}
.y198{bottom:706.285333pt;}
.ycb{bottom:707.613333pt;}
.y328{bottom:707.657333pt;}
.y1dc{bottom:708.160000pt;}
.y461{bottom:708.941333pt;}
.yf6{bottom:710.269333pt;}
.y136{bottom:710.820000pt;}
.y4f2{bottom:711.598667pt;}
.y292{bottom:712.193333pt;}
.y4a4{bottom:712.600000pt;}
.y3c4{bottom:713.161333pt;}
.yd{bottom:713.793333pt;}
.y1c8{bottom:715.218667pt;}
.ya5{bottom:715.582667pt;}
.y4c9{bottom:715.824000pt;}
.y51{bottom:716.374667pt;}
.y3ed{bottom:716.602667pt;}
.y10a{bottom:716.912000pt;}
.y32d{bottom:717.094667pt;}
.y1b2{bottom:717.421333pt;}
.y1e1{bottom:718.354667pt;}
.y10{bottom:719.106667pt;}
.y238{bottom:719.568000pt;}
.y4c{bottom:719.842667pt;}
.y376{bottom:720.533333pt;}
.y327{bottom:720.941333pt;}
.y1db{bottom:721.444000pt;}
.y2fa{bottom:722.225333pt;}
.y2ca{bottom:722.980000pt;}
.yf5{bottom:723.553333pt;}
.y1fb{bottom:724.058667pt;}
.y203{bottom:725.673333pt;}
.y443{bottom:726.117333pt;}
.y197{bottom:726.210667pt;}
.yc{bottom:727.077333pt;}
.yca{bottom:727.538667pt;}
.y135{bottom:727.853333pt;}
.y233{bottom:728.866667pt;}
.y3c3{bottom:730.196000pt;}
.y1b1{bottom:730.705333pt;}
.y4f1{bottom:731.524000pt;}
.y291{bottom:732.118667pt;}
.y134{bottom:732.488000pt;}
.y4a3{bottom:732.525333pt;}
.y353{bottom:732.905333pt;}
.y4b{bottom:733.125333pt;}
.y326{bottom:734.225333pt;}
.y1da{bottom:734.726667pt;}
.yf{bottom:735.046667pt;}
.ya4{bottom:735.508000pt;}
.y4c8{bottom:735.749333pt;}
.y50{bottom:736.300000pt;}
.yf4{bottom:736.837333pt;}
.y131{bottom:739.129333pt;}
.y460{bottom:739.493333pt;}
.yb{bottom:740.360000pt;}
.y375{bottom:740.458667pt;}
.yc7{bottom:740.821333pt;}
.y3c2{bottom:740.972000pt;}
.y232{bottom:742.150667pt;}
.y2c9{bottom:742.905333pt;}
.y1b0{bottom:743.989333pt;}
.y202{bottom:745.598667pt;}
.y1c7{bottom:745.772000pt;}
.y196{bottom:746.134667pt;}
.y4fd{bottom:746.136000pt;}
.y4a{bottom:746.409333pt;}
.y2f9{bottom:746.970667pt;}
.yc9{bottom:747.464000pt;}
.y325{bottom:747.508000pt;}
.y1d9{bottom:748.010667pt;}
.ye{bottom:750.986667pt;}
.y4f0{bottom:751.449333pt;}
.y130{bottom:752.413333pt;}
.y352{bottom:752.830667pt;}
.ya{bottom:753.644000pt;}
.y442{bottom:754.012000pt;}
.yc6{bottom:754.105333pt;}
.y3c1{bottom:754.254667pt;}
.y231{bottom:755.433333pt;}
.y4c7{bottom:755.673333pt;}
.y4f{bottom:756.225333pt;}
.yf3{bottom:756.762667pt;}
.y4a2{bottom:759.092000pt;}
.y374{bottom:760.382667pt;}
.y1af{bottom:761.022667pt;}
.y237{bottom:762.076000pt;}
.y2c8{bottom:762.830667pt;}
.y1fa{bottom:765.524000pt;}
.y12f{bottom:765.697333pt;}
.ya3{bottom:766.060000pt;}
.y9{bottom:766.926667pt;}
.yc5{bottom:767.389333pt;}
.y324{bottom:767.433333pt;}
.y3ba{bottom:767.666667pt;}
.y1d8{bottom:767.936000pt;}
.y230{bottom:768.717333pt;}
.y45f{bottom:770.045333pt;}
.y3c0{bottom:771.289333pt;}
.y437{bottom:771.402667pt;}
.y28d{bottom:771.538667pt;}
.y1ae{bottom:772.288000pt;}
.y133{bottom:772.338667pt;}
.y351{bottom:772.756000pt;}
.y8e{bottom:772.856000pt;}
.y441{bottom:773.937333pt;}
.y4c6{bottom:775.598667pt;}
.y290{bottom:775.722667pt;}
.y4e{bottom:776.150667pt;}
.yf2{bottom:776.688000pt;}
.y12e{bottom:778.980000pt;}
.y4a1{bottom:779.017333pt;}
.y4ef{bottom:779.344000pt;}
.y373{bottom:780.308000pt;}
.yc4{bottom:780.672000pt;}
.y3b9{bottom:780.949333pt;}
.y22f{bottom:782.001333pt;}
.y2c7{bottom:782.756000pt;}
.y8{bottom:782.868000pt;}
.y2f8{bottom:784.657333pt;}
.y28c{bottom:784.822667pt;}
.y1ad{bottom:785.572000pt;}
.y1c6{bottom:785.621333pt;}
.ya2{bottom:785.985333pt;}
.y34e{bottom:786.038667pt;}
.yc8{bottom:787.314667pt;}
.y323{bottom:787.358667pt;}
.y1d7{bottom:787.861333pt;}
.y8d{bottom:789.630667pt;}
.y1d4{bottom:790.950667pt;}
.y12d{bottom:792.264000pt;}
.y350{bottom:792.681333pt;}
.y440{bottom:793.862667pt;}
.yc3{bottom:793.956000pt;}
.y22e{bottom:795.284000pt;}
.y4c5{bottom:795.524000pt;}
.y1c1{bottom:796.076000pt;}
.yf1{bottom:796.613333pt;}
.y28b{bottom:798.105333pt;}
.y4a0{bottom:798.942667pt;}
.y4ee{bottom:799.269333pt;}
.y34d{bottom:799.322667pt;}
.y372{bottom:800.233333pt;}
.y236{bottom:801.926667pt;}
.y1ac{bottom:802.605333pt;}
.y2c6{bottom:802.681333pt;}
.y1d3{bottom:804.234667pt;}
.y2f7{bottom:804.582667pt;}
.y12c{bottom:805.546667pt;}
.ya1{bottom:805.910667pt;}
.y8c{bottom:806.405333pt;}
.y1f9{bottom:806.801333pt;}
.yc2{bottom:807.240000pt;}
.y322{bottom:807.284000pt;}
.y1d6{bottom:807.786667pt;}
.y22d{bottom:808.568000pt;}
.y45e{bottom:811.224000pt;}
.y28a{bottom:811.389333pt;}
.y132{bottom:812.189333pt;}
.y34c{bottom:812.606667pt;}
.y43f{bottom:813.788000pt;}
.y1ab{bottom:813.881333pt;}
.y436{bottom:814.406667pt;}
.y4c4{bottom:815.449333pt;}
.yf0{bottom:816.537333pt;}
.y1d2{bottom:817.517333pt;}
.y12b{bottom:818.830667pt;}
.y4ed{bottom:819.194667pt;}
.y4d{bottom:820.084000pt;}
.y371{bottom:820.158667pt;}
.y22c{bottom:821.852000pt;}
.y28f{bottom:822.180000pt;}
.y2c5{bottom:822.605333pt;}
.y8b{bottom:823.180000pt;}
.y7{bottom:824.172000pt;}
.y2f6{bottom:824.508000pt;}
.y289{bottom:824.672000pt;}
.y1c5{bottom:825.472000pt;}
.y49f{bottom:825.509333pt;}
.y34b{bottom:825.889333pt;}
.yc1{bottom:827.165333pt;}
.y321{bottom:827.209333pt;}
.y1d5{bottom:827.712000pt;}
.y1d1{bottom:830.801333pt;}
.y12a{bottom:832.114667pt;}
.y34f{bottom:832.530667pt;}
.y43e{bottom:833.713333pt;}
.y8a{bottom:836.462667pt;}
.y6{bottom:837.456000pt;}
.y288{bottom:837.956000pt;}
.y45d{bottom:839.120000pt;}
.y34a{bottom:839.173333pt;}
.y1c0{bottom:840.009333pt;}
.y370{bottom:840.084000pt;}
.y1aa{bottom:840.448000pt;}
.y3bf{bottom:841.776000pt;}
.y28e{bottom:842.105333pt;}
.y2c4{bottom:842.530667pt;}
.y1d0{bottom:844.084000pt;}
.y2f5{bottom:844.433333pt;}
.y4c3{bottom:844.713333pt;}
.y49e{bottom:845.434667pt;}
.yc0{bottom:847.090667pt;}
.y320{bottom:847.134667pt;}
.y89{bottom:849.746667pt;}
.y5{bottom:850.738667pt;}
.y4b8{bottom:851.074667pt;}
.y287{bottom:851.240000pt;}
.y349{bottom:852.456000pt;}
.y43d{bottom:853.638667pt;}
.y1a9{bottom:853.732000pt;}
.y1c4{bottom:856.024000pt;}
.y8f{bottom:856.388000pt;}
.y1cf{bottom:857.368000pt;}
.y45c{bottom:859.045333pt;}
.y36f{bottom:860.009333pt;}
.y435{bottom:861.085333pt;}
.y3be{bottom:861.701333pt;}
.y2c3{bottom:862.456000pt;}
.y129{bottom:862.666667pt;}
.y88{bottom:863.030667pt;}
.y433{bottom:863.994667pt;}
.y3ec{bottom:864.358667pt;}
.y286{bottom:864.522667pt;}
.y4c2{bottom:864.638667pt;}
.y49d{bottom:865.360000pt;}
.y434{bottom:866.777333pt;}
.y49{bottom:867.016000pt;}
.y31f{bottom:867.060000pt;}
.y4{bottom:874.649333pt;}
.y1c3{bottom:875.949333pt;}
.y87{bottom:876.313333pt;}
.y1ce{bottom:877.293333pt;}
.y45b{bottom:878.970667pt;}
.y1a8{bottom:880.298667pt;}
.y43c{bottom:881.534667pt;}
.y3bd{bottom:881.626667pt;}
.y2c2{bottom:882.381333pt;}
.y128{bottom:882.592000pt;}
.y432{bottom:883.920000pt;}
.y285{bottom:884.448000pt;}
.y4c1{bottom:884.564000pt;}
.y36e{bottom:885.248000pt;}
.y48{bottom:886.940000pt;}
.y1bf{bottom:886.941333pt;}
.y31e{bottom:886.985333pt;}
.y348{bottom:888.322667pt;}
.y49c{bottom:891.928000pt;}
.y1a7{bottom:893.582667pt;}
.y86{bottom:896.238667pt;}
.y3{bottom:898.560000pt;}
.y4b7{bottom:898.896000pt;}
.y22b{bottom:900.224000pt;}
.y3bc{bottom:901.552000pt;}
.y2c1{bottom:902.306667pt;}
.y431{bottom:903.845333pt;}
.y40c{bottom:903.893333pt;}
.y4c0{bottom:904.489333pt;}
.y1c2{bottom:906.501333pt;}
.y47{bottom:906.865333pt;}
.y31d{bottom:906.910667pt;}
.y1cd{bottom:906.949333pt;}
.y347{bottom:908.248000pt;}
.y43b{bottom:909.429333pt;}
.y49b{bottom:911.853333pt;}
.y22a{bottom:913.508000pt;}
.y3eb{bottom:915.929333pt;}
.y3bb{bottom:921.477333pt;}
.y2{bottom:922.470667pt;}
.y127{bottom:923.869333pt;}
.y46{bottom:926.790667pt;}
.y4ac{bottom:932.104000pt;}
.y49a{bottom:938.550667pt;}
.y346{bottom:938.800000pt;}
.y126{bottom:945.122667pt;}
.y4ab{bottom:945.388000pt;}
.y31c{bottom:946.052000pt;}
.y1{bottom:946.381333pt;}
.y45{bottom:946.716000pt;}
.y44{bottom:1002.773333pt;}
.y42{bottom:1019.376133pt;}
.hf{height:18.679867pt;}
.ha{height:19.021924pt;}
.h1b{height:26.630618pt;}
.h15{height:30.392648pt;}
.h3{height:30.435155pt;}
.hd{height:30.650257pt;}
.h8{height:31.203155pt;}
.h7{height:34.096230pt;}
.h5{height:34.239693pt;}
.h11{height:37.884447pt;}
.h13{height:37.990715pt;}
.hb{height:38.043849pt;}
.h1d{height:38.049182pt;}
.h14{height:38.096982pt;}
.h19{height:41.600035pt;}
.h1a{height:41.658217pt;}
.h4{height:45.589163pt;}
.he{height:45.652924pt;}
.h1c{height:49.681182pt;}
.h9{height:49.715155pt;}
.hc{height:49.720489pt;}
.h6{height:50.749822pt;}
.h16{height:54.324132pt;}
.h1{height:54.706843pt;}
.h2{height:58.205822pt;}
.h10{height:73.244792pt;}
.h18{height:76.302799pt;}
.h12{height:76.308132pt;}
.h17{height:91.305466pt;}
.h20{height:105.786240pt;}
.h1e{height:167.289333pt;}
.h1f{height:443.687851pt;}
.h0{height:1056.000000pt;}
.w1{width:168.041067pt;}
.w3{width:389.465462pt;}
.w2{width:397.409486pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:10.049027pt;}
.xb{left:25.838933pt;}
.x1{left:96.000000pt;}
.xa{left:98.789333pt;}
.x18{left:103.970667pt;}
.x1c{left:109.284000pt;}
.x3{left:111.940000pt;}
.xd{left:113.122667pt;}
.x4{left:127.880000pt;}
.x11{left:130.484000pt;}
.x12{left:143.821333pt;}
.x13{left:148.789333pt;}
.x14{left:159.761333pt;}
.x15{left:191.269333pt;}
.x16{left:195.702667pt;}
.x17{left:201.684000pt;}
.x19{left:301.337333pt;}
.x1d{left:379.224000pt;}
.xf{left:380.161333pt;}
.x10{left:381.422667pt;}
.xc{left:382.977333pt;}
.x1b{left:415.402516pt;}
.x2{left:542.326667pt;}
.xe{left:550.296000pt;}
.x5{left:558.077333pt;}
.x6{left:578.064000pt;}
.x7{left:631.245333pt;}
.x8{left:640.244000pt;}
.x9{left:668.776000pt;}
}




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