
    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_9837bd349ab8f7997ed7eed5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_fe776df9ad74cd4d42d70055.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d0cac88483179c433852123f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_af13690e99b1d0ffb716cca7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.082031;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_ac35b950c386c5331ab089fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);-ms-transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);-webkit-transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.000040px;}
.v3{vertical-align:-12.000000px;}
.vc{vertical-align:-9.000000px;}
.va{vertical-align:-4.920000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.110060px;}
.v9{vertical-align:4.920000px;}
.vb{vertical-align:10.080000px;}
.v4{vertical-align:12.000000px;}
.v8{vertical-align:15.771935px;}
.v1{vertical-align:20.000040px;}
.v6{vertical-align:21.029099px;}
.v7{vertical-align:48.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000060px;}
.ls2{letter-spacing:0.000180px;}
.ls3{letter-spacing:0.060060px;}
.ls5{letter-spacing:4.099757px;}
.ls4{letter-spacing:147.000000px;}
.ls6{letter-spacing:781.405020px;}
.ls7{letter-spacing:786.310020px;}
.ls8{letter-spacing:805.570020px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-28.152000px;}
.ws8{word-spacing:-23.460000px;}
.wsb{word-spacing:-21.114000px;}
.ws6{word-spacing:-20.016000px;}
.wsd{word-spacing:-17.595000px;}
.ws1{word-spacing:-16.680000px;}
.ws9{word-spacing:-15.771935px;}
.ws7{word-spacing:-15.000000px;}
.wsc{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.344000px;}
.ws3{word-spacing:-12.000000px;}
.wsf{word-spacing:-11.828951px;}
.ws2{word-spacing:-11.676000px;}
.wse{word-spacing:-11.250000px;}
.ws4{word-spacing:-9.340800px;}
.ws12{word-spacing:-8.250000px;}
.ws5{word-spacing:0.000000px;}
.ws16{word-spacing:118.558500px;}
.ws14{word-spacing:176.308500px;}
.ws1e{word-spacing:202.678500px;}
.ws1d{word-spacing:211.273500px;}
.ws10{word-spacing:259.048500px;}
.ws11{word-spacing:307.573500px;}
.ws18{word-spacing:345.103500px;}
.ws1b{word-spacing:350.053500px;}
.ws1a{word-spacing:352.573500px;}
.ws20{word-spacing:352.768500px;}
.ws17{word-spacing:356.353500px;}
.ws21{word-spacing:362.563500px;}
.ws1c{word-spacing:383.803500px;}
.ws19{word-spacing:398.788500px;}
.ws1f{word-spacing:447.763500px;}
.ws15{word-spacing:771.565020px;}
.ws13{word-spacing:884.065020px;}
._7{margin-left:-8.820060px;}
._3{margin-left:-7.200000px;}
._5{margin-left:-5.400000px;}
._1{margin-left:-3.552000px;}
._0{margin-left:-1.680000px;}
._2{width:1.200000px;}
._4{width:2.400000px;}
._a{width:4.099694px;}
._79{width:95.323500px;}
._58{width:120.808500px;}
._1d{width:125.065500px;}
._e{width:131.548500px;}
._10{width:134.068500px;}
._69{width:154.093500px;}
._6d{width:155.218500px;}
._5a{width:156.568500px;}
._75{width:205.723500px;}
._45{width:259.123500px;}
._3b{width:264.538500px;}
._2a{width:273.178500px;}
._71{width:279.058500px;}
._7d{width:282.838500px;}
._35{width:297.652020px;}
._52{width:306.463500px;}
._26{width:310.288500px;}
._73{width:317.803500px;}
._19{width:339.043500px;}
._4a{width:367.798500px;}
._2c{width:376.573500px;}
._42{width:381.523500px;}
._34{width:389.038500px;}
._13{width:401.548500px;}
._5b{width:407.068020px;}
._25{width:413.980020px;}
._4e{width:415.318500px;}
._38{width:416.578500px;}
._c{width:419.008500px;}
._15{width:420.733500px;}
._7b{width:426.568500px;}
._6{width:432.360000px;}
._67{width:436.945020px;}
._3d{width:446.548500px;}
._40{width:454.018500px;}
._5c{width:470.062020px;}
._77{width:471.523500px;}
._1b{width:476.563500px;}
._3f{width:482.182020px;}
._48{width:485.680020px;}
._17{width:488.188500px;}
._36{width:491.548500px;}
._29{width:496.543500px;}
._30{width:516.523500px;}
._44{width:517.930020px;}
._5e{width:519.085020px;}
._66{width:539.455020px;}
._5d{width:544.945020px;}
._74{width:550.795020px;}
._21{width:570.310020px;}
._3c{width:575.635020px;}
._28{width:593.275020px;}
._6a{width:595.330020px;}
._43{width:596.590020px;}
._65{width:606.955020px;}
._37{width:615.310020px;}
._41{width:652.705020px;}
._2e{width:654.520020px;}
._39{width:657.880020px;}
._63{width:694.750020px;}
._3a{width:732.850020px;}
._68{width:746.620020px;}
._49{width:750.670020px;}
._4b{width:753.670020px;}
._55{width:756.184020px;}
._2d{width:764.845020px;}
._6b{width:773.002020px;}
._2f{width:779.530020px;}
._27{width:784.567020px;}
._62{width:786.865020px;}
._32{width:796.900020px;}
._61{width:799.735020px;}
._59{width:810.022020px;}
._54{width:814.858020px;}
._1f{width:826.495020px;}
._b{width:853.105020px;}
._23{width:857.725020px;}
._24{width:870.235020px;}
._53{width:880.858020px;}
._31{width:884.005020px;}
._57{width:887.740020px;}
._47{width:889.510020px;}
._64{width:893.155020px;}
._76{width:896.515020px;}
._4c{width:907.810020px;}
._50{width:928.870020px;}
._5f{width:931.297020px;}
._33{width:935.170020px;}
._3e{width:937.690020px;}
._60{width:941.845020px;}
._46{width:946.555020px;}
._4f{width:986.515020px;}
._56{width:996.460020px;}
._51{width:1014.010020px;}
._d{width:1035.655020px;}
._1e{width:1038.940020px;}
._2b{width:1040.200020px;}
._72{width:1058.125020px;}
._1c{width:1061.485020px;}
._7a{width:1106.440020px;}
._f{width:1112.695020px;}
._6c{width:1117.645020px;}
._11{width:1132.720020px;}
._6f{width:1147.705020px;}
._7c{width:1193.965020px;}
._18{width:1199.380020px;}
._20{width:1217.725020px;}
._70{width:1233.970020px;}
._4d{width:1236.445020px;}
._1a{width:1238.920020px;}
._22{width:1248.820020px;}
._6e{width:1251.475020px;}
._78{width:1258.990020px;}
._14{width:1267.720020px;}
._12{width:1273.930020px;}
._16{width:1326.445020px;}
._9{width:2054.207940px;}
._8{width:2078.207940px;}
.fc2{color:rgb(0,75,128);}
.fc1{color:rgb(0,112,144);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:33.000000px;}
.fs4{font-size:33.600000px;}
.fsf{font-size:34.698256px;}
.fs3{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fse{font-size:47.315804px;}
.fs2{font-size:48.000000px;}
.fsa{font-size:50.470191px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:56.778965px;}
.fs1{font-size:60.000000px;}
.fs8{font-size:63.087739px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:69.396513px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:105.900000px;}
.y2c{bottom:111.120000px;}
.y2b{bottom:125.520000px;}
.y2a{bottom:144.420015px;}
.y3a9{bottom:148.649970px;}
.yb2{bottom:149.399970px;}
.y3e5{bottom:149.885190px;}
.y1e6{bottom:150.097500px;}
.y20a{bottom:150.375000px;}
.y3ca{bottom:151.649970px;}
.y2dc{bottom:151.884060px;}
.yca{bottom:152.393925px;}
.y13e{bottom:152.399970px;}
.y86{bottom:154.645665px;}
.y17f{bottom:155.399970px;}
.y169{bottom:158.399970px;}
.y29{bottom:158.820030px;}
.y343{bottom:159.149970px;}
.y27f{bottom:160.589910px;}
.y21e{bottom:160.994940px;}
.y17a{bottom:161.393925px;}
.y156{bottom:161.399970px;}
.y398{bottom:162.149970px;}
.y410{bottom:162.194985px;}
.y1a7{bottom:162.773985px;}
.y1c8{bottom:162.779940px;}
.y30d{bottom:162.893925px;}
.y28a{bottom:163.589910px;}
.y11e{bottom:164.399970px;}
.y3a8{bottom:165.149970px;}
.y2db{bottom:166.134060px;}
.y2a2{bottom:166.184880px;}
.y23d{bottom:166.184970px;}
.y109{bottom:167.399970px;}
.y375{bottom:168.149970px;}
.y29b{bottom:168.780030px;}
.y461{bottom:169.274940px;}
.yb1{bottom:170.399970px;}
.y3e4{bottom:170.885190px;}
.y1e5{bottom:171.097500px;}
.y209{bottom:171.375000px;}
.yc9{bottom:173.393925px;}
.y13d{bottom:173.399970px;}
.y85{bottom:175.645665px;}
.y342{bottom:175.649970px;}
.y17e{bottom:176.399970px;}
.y437{bottom:176.774940px;}
.y28{bottom:177.270030px;}
.y397{bottom:178.649970px;}
.y30c{bottom:179.393925px;}
.y168{bottom:179.399970px;}
.y2da{bottom:180.384060px;}
.y27e{bottom:181.589910px;}
.y3a7{bottom:181.649970px;}
.y21d{bottom:181.994940px;}
.y179{bottom:182.393925px;}
.y155{bottom:182.399970px;}
.y1a6{bottom:183.773985px;}
.y1c7{bottom:183.779940px;}
.y289{bottom:184.589910px;}
.y374{bottom:184.649970px;}
.y11d{bottom:185.399970px;}
.y3da{bottom:185.940405px;}
.y2a1{bottom:187.184880px;}
.y23c{bottom:187.184970px;}
.y108{bottom:188.399970px;}
.y436{bottom:188.774940px;}
.y29a{bottom:189.780030px;}
.y27{bottom:190.770030px;}
.yb0{bottom:191.399970px;}
.y3e3{bottom:191.885190px;}
.y460{bottom:192.044940px;}
.y1e4{bottom:192.097500px;}
.y341{bottom:192.149970px;}
.y208{bottom:192.375090px;}
.y40f{bottom:193.694985px;}
.y56{bottom:194.204955px;}
.yc8{bottom:194.393925px;}
.y13c{bottom:194.399970px;}
.y2d9{bottom:194.634060px;}
.y388{bottom:195.149970px;}
.y84{bottom:196.645665px;}
.y17d{bottom:197.399970px;}
.y396{bottom:198.149970px;}
.y30b{bottom:198.893925px;}
.y167{bottom:200.399970px;}
.y435{bottom:200.774940px;}
.y373{bottom:201.149970px;}
.y27d{bottom:202.589910px;}
.y21c{bottom:202.994940px;}
.y178{bottom:203.393925px;}
.y154{bottom:203.399970px;}
.y3c9{bottom:204.149970px;}
.y26{bottom:204.270030px;}
.y1a5{bottom:204.773985px;}
.y1c6{bottom:204.779940px;}
.y254{bottom:205.589910px;}
.y11c{bottom:206.399970px;}
.y3d9{bottom:206.940405px;}
.y2a0{bottom:208.184880px;}
.y23b{bottom:208.184970px;}
.y2d8{bottom:208.884060px;}
.y12d{bottom:209.399970px;}
.y299{bottom:210.780030px;}
.y340{bottom:211.649970px;}
.yaf{bottom:212.399970px;}
.y3e2{bottom:212.885190px;}
.y1e3{bottom:213.097500px;}
.y395{bottom:214.649970px;}
.y40e{bottom:214.694985px;}
.y45f{bottom:214.814925px;}
.yc7{bottom:215.393925px;}
.y13b{bottom:215.399970px;}
.y83{bottom:217.645665px;}
.y372{bottom:217.649970px;}
.y25{bottom:217.770030px;}
.ye2{bottom:218.399970px;}
.y55{bottom:220.204920px;}
.y3c8{bottom:220.649970px;}
.y166{bottom:221.399970px;}
.y434{bottom:221.774940px;}
.y2d7{bottom:223.134060px;}
.y27c{bottom:223.589910px;}
.y21b{bottom:223.994940px;}
.y107{bottom:224.399970px;}
.y1a4{bottom:225.774075px;}
.y1c5{bottom:225.779940px;}
.y253{bottom:226.589910px;}
.y11b{bottom:227.399970px;}
.y3d8{bottom:227.940405px;}
.y33f{bottom:228.149970px;}
.y23a{bottom:229.184970px;}
.y12c{bottom:230.399970px;}
.y394{bottom:231.149970px;}
.y24{bottom:231.270030px;}
.y207{bottom:231.780030px;}
.y30a{bottom:231.893925px;}
.yae{bottom:233.399970px;}
.y433{bottom:233.774940px;}
.y3e1{bottom:233.885190px;}
.y1e2{bottom:234.097500px;}
.y3a6{bottom:234.149970px;}
.y40d{bottom:235.694985px;}
.y45e{bottom:235.814925px;}
.y371{bottom:237.149970px;}
.y2d6{bottom:237.384060px;}
.y3db{bottom:238.399935px;}
.y82{bottom:238.645665px;}
.y177{bottom:239.393925px;}
.ye1{bottom:239.399970px;}
.yc6{bottom:241.988985px;}
.y13a{bottom:241.995030px;}
.y27b{bottom:244.589910px;}
.y33e{bottom:244.649970px;}
.y23{bottom:244.770030px;}
.y21a{bottom:244.994940px;}
.y54{bottom:245.204955px;}
.y106{bottom:245.399970px;}
.y432{bottom:245.774940px;}
.y1c4{bottom:246.780030px;}
.y252{bottom:247.589910px;}
.y288{bottom:247.590000px;}
.y387{bottom:247.649970px;}
.y11a{bottom:248.399970px;}
.y3d7{bottom:248.940405px;}
.y239{bottom:250.184970px;}
.y393{bottom:250.649970px;}
.y309{bottom:251.393925px;}
.y12b{bottom:251.399970px;}
.y2d5{bottom:251.634060px;}
.y206{bottom:252.780030px;}
.y370{bottom:253.649970px;}
.yad{bottom:254.399970px;}
.y3e0{bottom:254.885190px;}
.y1e1{bottom:255.097500px;}
.y3c7{bottom:256.649970px;}
.y40c{bottom:256.694985px;}
.y45d{bottom:256.814925px;}
.y165{bottom:257.399970px;}
.y22{bottom:258.270030px;}
.y176{bottom:260.393925px;}
.ye0{bottom:260.399970px;}
.y139{bottom:262.995030px;}
.y33d{bottom:264.149970px;}
.y1a3{bottom:265.179015px;}
.y27a{bottom:265.589910px;}
.y2d4{bottom:265.884060px;}
.y219{bottom:265.994940px;}
.y105{bottom:266.399970px;}
.y431{bottom:266.774940px;}
.y392{bottom:267.149970px;}
.y308{bottom:267.893925px;}
.y251{bottom:268.589910px;}
.y119{bottom:269.399970px;}
.y3d6{bottom:269.940405px;}
.y36f{bottom:270.149970px;}
.y238{bottom:271.184970px;}
.y53{bottom:271.204920px;}
.y21{bottom:271.770030px;}
.yc5{bottom:272.394015px;}
.y12a{bottom:272.399970px;}
.y3c6{bottom:273.149970px;}
.y205{bottom:273.780030px;}
.y81{bottom:274.645665px;}
.yac{bottom:275.399970px;}
.y3df{bottom:275.885190px;}
.y1e0{bottom:276.097500px;}
.y40b{bottom:277.694985px;}
.y45c{bottom:277.814925px;}
.y164{bottom:278.399970px;}
.y430{bottom:278.774940px;}
.y2d3{bottom:280.134060px;}
.y33c{bottom:280.649970px;}
.y175{bottom:281.393925px;}
.ydf{bottom:281.399970px;}
.y391{bottom:283.649970px;}
.y72{bottom:284.382015px;}
.y307{bottom:284.393925px;}
.y20{bottom:285.270030px;}
.y1a2{bottom:286.179015px;}
.y1c3{bottom:286.184970px;}
.y279{bottom:286.589910px;}
.y36e{bottom:286.649970px;}
.y218{bottom:286.994940px;}
.y104{bottom:287.399970px;}
.y250{bottom:289.589910px;}
.y3c5{bottom:289.649970px;}
.y118{bottom:290.399970px;}
.y42f{bottom:290.774940px;}
.y3d5{bottom:290.940405px;}
.y237{bottom:292.184970px;}
.y129{bottom:293.399970px;}
.y3de{bottom:293.885190px;}
.y2d2{bottom:294.384060px;}
.y204{bottom:294.780030px;}
.y80{bottom:295.645665px;}
.y52{bottom:296.204955px;}
.yab{bottom:296.399970px;}
.y1df{bottom:297.097500px;}
.y33b{bottom:297.149970px;}
.y40a{bottom:298.694985px;}
.y1f{bottom:298.770030px;}
.y45b{bottom:298.814925px;}
.y163{bottom:299.399970px;}
.y3a0{bottom:300.149970px;}
.y306{bottom:300.893925px;}
.y174{bottom:302.393925px;}
.yde{bottom:302.399970px;}
.y390{bottom:303.149970px;}
.y36d{bottom:306.149970px;}
.y1a1{bottom:307.179015px;}
.y1c2{bottom:307.184970px;}
.y278{bottom:307.589910px;}
.y217{bottom:307.994940px;}
.y103{bottom:308.399970px;}
.y2d1{bottom:308.634060px;}
.y3dd{bottom:308.885190px;}
.y3d4{bottom:308.940405px;}
.y3c4{bottom:309.149970px;}
.y24f{bottom:310.589910px;}
.y117{bottom:311.399970px;}
.y42e{bottom:311.774940px;}
.y1e{bottom:312.270030px;}
.y236{bottom:313.184970px;}
.y128{bottom:314.399970px;}
.y203{bottom:315.780030px;}
.y7f{bottom:316.645665px;}
.y33a{bottom:316.649970px;}
.yaa{bottom:317.399970px;}
.y1de{bottom:318.097500px;}
.y38f{bottom:319.649970px;}
.y409{bottom:319.694985px;}
.y45a{bottom:319.814925px;}
.y305{bottom:320.394015px;}
.y162{bottom:320.399970px;}
.y51{bottom:322.204920px;}
.y36c{bottom:322.649970px;}
.y2d0{bottom:322.884060px;}
.y173{bottom:323.394015px;}
.ydd{bottom:323.399970px;}
.y3c3{bottom:325.649970px;}
.y1d{bottom:325.770030px;}
.y71{bottom:326.387970px;}
.y1a0{bottom:328.179015px;}
.y1c1{bottom:328.184970px;}
.y277{bottom:328.590000px;}
.y287{bottom:328.994940px;}
.y216{bottom:328.995030px;}
.y102{bottom:329.399970px;}
.y24e{bottom:331.590000px;}
.y116{bottom:332.400015px;}
.y42d{bottom:332.774940px;}
.y339{bottom:333.150015px;}
.y235{bottom:334.185015px;}
.y127{bottom:335.400015px;}
.y38e{bottom:336.150015px;}
.y2b0{bottom:336.590010px;}
.y298{bottom:336.779985px;}
.y202{bottom:336.780030px;}
.y304{bottom:336.894015px;}
.y2cf{bottom:337.134015px;}
.y7e{bottom:337.645710px;}
.ya9{bottom:338.400015px;}
.y1dd{bottom:339.097545px;}
.y36b{bottom:339.150015px;}
.y1c{bottom:339.270030px;}
.y408{bottom:340.694985px;}
.y459{bottom:340.814925px;}
.y161{bottom:341.400015px;}
.y3c2{bottom:342.150015px;}
.y172{bottom:344.394015px;}
.ydc{bottom:344.400015px;}
.y50{bottom:347.205000px;}
.y70{bottom:347.388015px;}
.y19f{bottom:349.179015px;}
.y1c0{bottom:349.185015px;}
.y276{bottom:349.590000px;}
.y338{bottom:349.650015px;}
.y286{bottom:349.994985px;}
.y215{bottom:349.995030px;}
.y101{bottom:350.400015px;}
.y2ce{bottom:351.384015px;}
.y2ae{bottom:352.589955px;}
.y24d{bottom:352.590000px;}
.y39f{bottom:352.650015px;}
.y1b{bottom:352.770030px;}
.y303{bottom:353.394015px;}
.y115{bottom:353.400015px;}
.y42c{bottom:353.774940px;}
.y234{bottom:355.184970px;}
.y29d{bottom:355.185015px;}
.y36a{bottom:355.650015px;}
.y153{bottom:356.400015px;}
.y201{bottom:357.780030px;}
.y7d{bottom:358.645710px;}
.y3a5{bottom:358.650015px;}
.ya8{bottom:359.400015px;}
.y1dc{bottom:360.097545px;}
.y407{bottom:361.694985px;}
.y458{bottom:361.814925px;}
.y160{bottom:362.400015px;}
.y171{bottom:365.394015px;}
.ydb{bottom:365.400015px;}
.y2cd{bottom:365.634015px;}
.y6f{bottom:368.388015px;}
.y337{bottom:369.150015px;}
.y19e{bottom:370.179015px;}
.y1bf{bottom:370.185015px;}
.y1a{bottom:370.250025px;}
.y275{bottom:370.590000px;}
.y285{bottom:370.994985px;}
.y214{bottom:370.995030px;}
.y100{bottom:371.400015px;}
.y38d{bottom:372.150015px;}
.y302{bottom:372.894015px;}
.y4f{bottom:373.205010px;}
.y24c{bottom:373.590000px;}
.y114{bottom:374.400015px;}
.y369{bottom:375.150015px;}
.y297{bottom:376.185015px;}
.y152{bottom:377.400015px;}
.y3c1{bottom:378.150015px;}
.y200{bottom:378.780030px;}
.y7c{bottom:379.645710px;}
.y2cc{bottom:379.884015px;}
.ya7{bottom:380.400015px;}
.y1db{bottom:381.097545px;}
.y406{bottom:382.694985px;}
.y457{bottom:382.814925px;}
.y19{bottom:383.250045px;}
.y15f{bottom:383.400015px;}
.y42b{bottom:385.274940px;}
.y336{bottom:385.650015px;}
.yda{bottom:386.400015px;}
.y38c{bottom:388.650015px;}
.y6e{bottom:389.388015px;}
.y301{bottom:389.394015px;}
.y19d{bottom:391.179015px;}
.y1be{bottom:391.185015px;}
.y274{bottom:391.590000px;}
.y368{bottom:391.650015px;}
.y213{bottom:391.994985px;}
.yff{bottom:392.400015px;}
.y2cb{bottom:394.134015px;}
.y2ad{bottom:394.589955px;}
.y233{bottom:394.590000px;}
.y3c0{bottom:394.650015px;}
.y113{bottom:395.400015px;}
.y296{bottom:397.185015px;}
.y151{bottom:398.400015px;}
.y1ff{bottom:399.780030px;}
.y7b{bottom:400.645710px;}
.y170{bottom:401.394015px;}
.ya6{bottom:401.400015px;}
.y1da{bottom:402.097500px;}
.y335{bottom:402.150015px;}
.y4e{bottom:403.205010px;}
.y456{bottom:403.814925px;}
.y15e{bottom:404.400015px;}
.y386{bottom:405.150015px;}
.y300{bottom:405.894015px;}
.yd9{bottom:407.400015px;}
.y367{bottom:408.150015px;}
.y2ca{bottom:408.384015px;}
.y3bf{bottom:411.150015px;}
.y19c{bottom:412.179015px;}
.y1bd{bottom:412.185015px;}
.y273{bottom:412.590000px;}
.y284{bottom:412.994985px;}
.yfe{bottom:413.400015px;}
.y405{bottom:414.194985px;}
.y2ac{bottom:415.589955px;}
.y232{bottom:415.590000px;}
.y6d{bottom:416.388015px;}
.y112{bottom:416.400015px;}
.y42a{bottom:418.004955px;}
.y295{bottom:418.185015px;}
.y334{bottom:418.650015px;}
.y150{bottom:419.400015px;}
.y1fe{bottom:420.780030px;}
.y7a{bottom:421.645710px;}
.y385{bottom:421.650015px;}
.y16f{bottom:422.394015px;}
.ya5{bottom:422.400015px;}
.y2c9{bottom:422.634015px;}
.y366{bottom:424.650015px;}
.y455{bottom:424.814925px;}
.y15d{bottom:425.400015px;}
.y3a4{bottom:427.650015px;}
.y4d{bottom:428.205000px;}
.yd8{bottom:428.400015px;}
.y3be{bottom:430.650015px;}
.y212{bottom:431.400015px;}
.y18{bottom:431.685015px;}
.y19b{bottom:433.179015px;}
.y1bc{bottom:433.185015px;}
.y272{bottom:433.590000px;}
.y283{bottom:433.994985px;}
.yfd{bottom:434.400015px;}
.y24b{bottom:436.589955px;}
.y231{bottom:436.590000px;}
.y2c8{bottom:436.884015px;}
.y111{bottom:437.400015px;}
.y333{bottom:438.150015px;}
.y429{bottom:439.004970px;}
.y294{bottom:439.185015px;}
.y14f{bottom:440.400015px;}
.y38b{bottom:441.150015px;}
.y1d9{bottom:441.502530px;}
.y1fd{bottom:441.780030px;}
.y2ff{bottom:441.894015px;}
.y79{bottom:442.645710px;}
.y16e{bottom:443.394015px;}
.yc4{bottom:443.400015px;}
.y365{bottom:444.150015px;}
.y404{bottom:445.695000px;}
.y454{bottom:445.814925px;}
.y15c{bottom:446.400015px;}
.y3bd{bottom:447.150015px;}
.yd7{bottom:449.400015px;}
.y2c7{bottom:451.134015px;}
.y211{bottom:452.400015px;}
.y19a{bottom:454.179015px;}
.y1bb{bottom:454.185015px;}
.y4c{bottom:454.205010px;}
.y271{bottom:454.590000px;}
.y332{bottom:454.650015px;}
.y2ab{bottom:454.994970px;}
.y282{bottom:454.994985px;}
.yfc{bottom:455.400015px;}
.y230{bottom:457.590000px;}
.y384{bottom:457.650015px;}
.y17{bottom:457.685025px;}
.y6c{bottom:458.394015px;}
.ya4{bottom:458.400015px;}
.y293{bottom:460.185015px;}
.y364{bottom:460.650015px;}
.y180{bottom:460.994985px;}
.y428{bottom:461.234985px;}
.y14e{bottom:461.400015px;}
.y1d8{bottom:462.502530px;}
.y1fc{bottom:462.780030px;}
.y78{bottom:463.645710px;}
.y3bc{bottom:463.650015px;}
.y16d{bottom:464.394015px;}
.yc3{bottom:464.400015px;}
.y2c6{bottom:465.384015px;}
.y453{bottom:466.814925px;}
.y403{bottom:467.925000px;}
.y17c{bottom:470.400015px;}
.y331{bottom:471.150015px;}
.y210{bottom:473.400015px;}
.y383{bottom:474.150015px;}
.y2fe{bottom:474.894015px;}
.y199{bottom:475.179015px;}
.y1ba{bottom:475.185015px;}
.y270{bottom:475.590000px;}
.y2aa{bottom:475.994970px;}
.y24a{bottom:475.994985px;}
.yfb{bottom:476.400015px;}
.y363{bottom:477.150015px;}
.y2af{bottom:478.589955px;}
.y22f{bottom:478.590000px;}
.y4b{bottom:479.205000px;}
.y6b{bottom:479.394015px;}
.ya3{bottom:479.400015px;}
.y2c5{bottom:479.634015px;}
.y29c{bottom:481.184970px;}
.y292{bottom:481.185015px;}
.y14d{bottom:482.400015px;}
.y16{bottom:482.685015px;}
.y3bb{bottom:483.150015px;}
.y427{bottom:483.464985px;}
.y1d7{bottom:483.502530px;}
.y1fb{bottom:483.779985px;}
.y77{bottom:484.645710px;}
.y16c{bottom:485.394015px;}
.yc2{bottom:485.400015px;}
.y330{bottom:487.650015px;}
.y402{bottom:488.925000px;}
.y452{bottom:489.044940px;}
.y382{bottom:490.650015px;}
.y362{bottom:493.650015px;}
.y2c4{bottom:493.884015px;}
.y2fd{bottom:494.394015px;}
.y20f{bottom:494.400015px;}
.y198{bottom:496.179015px;}
.y1b9{bottom:496.184970px;}
.y26f{bottom:496.590000px;}
.y3a3{bottom:496.650015px;}
.y2a9{bottom:496.994970px;}
.y249{bottom:496.994985px;}
.yfa{bottom:497.400015px;}
.y22e{bottom:499.590000px;}
.y3ba{bottom:499.650015px;}
.y6a{bottom:500.394015px;}
.ya2{bottom:500.400015px;}
.y401{bottom:500.925000px;}
.y291{bottom:502.185015px;}
.y138{bottom:502.994985px;}
.y14c{bottom:503.400015px;}
.y15{bottom:503.685015px;}
.y1d6{bottom:504.502530px;}
.y4a{bottom:505.205010px;}
.y76{bottom:505.645710px;}
.y426{bottom:505.695000px;}
.y16b{bottom:506.394015px;}
.yc1{bottom:506.400015px;}
.y32f{bottom:507.150015px;}
.y2c3{bottom:508.134015px;}
.y381{bottom:510.150015px;}
.y2fc{bottom:510.894015px;}
.y451{bottom:511.274940px;}
.yd6{bottom:511.400025px;}
.y400{bottom:512.925000px;}
.y361{bottom:513.150015px;}
.y126{bottom:515.400015px;}
.y3b9{bottom:516.150015px;}
.y197{bottom:517.179015px;}
.y26e{bottom:517.590000px;}
.y2a8{bottom:517.994970px;}
.y248{bottom:517.994985px;}
.y125{bottom:518.400015px;}
.y22d{bottom:520.590000px;}
.y69{bottom:521.394015px;}
.ya1{bottom:521.400015px;}
.y2c2{bottom:522.384015px;}
.y1fa{bottom:523.185015px;}
.y32e{bottom:523.650015px;}
.y137{bottom:523.994985px;}
.y14b{bottom:524.400015px;}
.y1d5{bottom:525.502530px;}
.y75{bottom:526.645710px;}
.y380{bottom:526.650015px;}
.y2fb{bottom:527.394015px;}
.yc0{bottom:527.400015px;}
.y425{bottom:527.925000px;}
.y360{bottom:529.650015px;}
.y14{bottom:529.685025px;}
.y49{bottom:530.205000px;}
.y3b8{bottom:532.650015px;}
.yf9{bottom:533.400015px;}
.y450{bottom:533.504955px;}
.y1b8{bottom:535.590000px;}
.y16a{bottom:536.394015px;}
.y20e{bottom:536.400015px;}
.y2c1{bottom:536.634015px;}
.y196{bottom:538.179015px;}
.y26d{bottom:538.590000px;}
.y2a7{bottom:538.994970px;}
.y247{bottom:538.994985px;}
.y124{bottom:539.400015px;}
.y32d{bottom:540.150015px;}
.y22c{bottom:541.590000px;}
.y68{bottom:542.394015px;}
.ya0{bottom:542.400015px;}
.y37f{bottom:543.150015px;}
.y1f9{bottom:544.185015px;}
.y3ff{bottom:544.425000px;}
.y14a{bottom:545.400015px;}
.y35f{bottom:546.150015px;}
.y1d4{bottom:546.502530px;}
.y2fa{bottom:546.894015px;}
.y74{bottom:547.645710px;}
.ybf{bottom:548.400015px;}
.y424{bottom:548.925000px;}
.y2c0{bottom:550.884015px;}
.y3b7{bottom:552.150015px;}
.yf8{bottom:554.400015px;}
.y13{bottom:554.685015px;}
.y44f{bottom:555.734970px;}
.y48{bottom:556.205010px;}
.y1b7{bottom:556.590000px;}
.y32c{bottom:556.650015px;}
.y20d{bottom:557.400015px;}
.y195{bottom:559.179015px;}
.y26c{bottom:559.590000px;}
.y37e{bottom:559.650015px;}
.y2a6{bottom:559.994970px;}
.y246{bottom:559.994985px;}
.y123{bottom:560.400015px;}
.y22b{bottom:562.590000px;}
.y38a{bottom:562.650015px;}
.y67{bottom:563.394015px;}
.y9f{bottom:563.400015px;}
.y2bf{bottom:565.134015px;}
.y1f8{bottom:565.185015px;}
.y35e{bottom:565.650015px;}
.y149{bottom:566.400015px;}
.y1d3{bottom:567.502530px;}
.y3b6{bottom:568.650015px;}
.yd5{bottom:569.400015px;}
.y423{bottom:569.925000px;}
.yf7{bottom:575.400015px;}
.y12{bottom:575.685015px;}
.y3fe{bottom:575.925000px;}
.y32b{bottom:576.150015px;}
.y1b6{bottom:577.590000px;}
.y73{bottom:577.645710px;}
.y44e{bottom:577.964985px;}
.y20c{bottom:578.400015px;}
.y39e{bottom:579.150015px;}
.y2be{bottom:579.384015px;}
.y2f9{bottom:579.894015px;}
.y194{bottom:580.179015px;}
.y26b{bottom:580.589955px;}
.y2a5{bottom:580.994970px;}
.y245{bottom:580.994985px;}
.y122{bottom:581.400015px;}
.y35d{bottom:582.150015px;}
.y22a{bottom:583.590000px;}
.y66{bottom:584.394015px;}
.y9e{bottom:584.400015px;}
.y3b5{bottom:585.150015px;}
.y1f7{bottom:586.185015px;}
.y47{bottom:586.205010px;}
.y148{bottom:587.400015px;}
.y1d2{bottom:588.502485px;}
.yd4{bottom:590.400015px;}
.y32a{bottom:592.650015px;}
.y2bd{bottom:593.634015px;}
.y37d{bottom:595.650015px;}
.yf6{bottom:596.400015px;}
.y3fd{bottom:596.925000px;}
.y1b5{bottom:598.590000px;}
.y35c{bottom:598.650015px;}
.y2f8{bottom:599.394015px;}
.y20b{bottom:599.400015px;}
.y477{bottom:599.655015px;}
.y44d{bottom:600.194985px;}
.y193{bottom:601.179015px;}
.y422{bottom:601.425000px;}
.y3b2{bottom:601.650015px;}
.y11{bottom:601.685025px;}
.y2a4{bottom:601.994970px;}
.y244{bottom:601.994985px;}
.y121{bottom:602.400015px;}
.y229{bottom:604.590000px;}
.y65{bottom:605.394015px;}
.y9d{bottom:605.400015px;}
.y290{bottom:607.184970px;}
.y1f6{bottom:607.185015px;}
.y2bc{bottom:607.884015px;}
.y147{bottom:608.400015px;}
.y329{bottom:609.150015px;}
.yd3{bottom:611.400015px;}
.y37c{bottom:612.150015px;}
.y35b{bottom:615.150015px;}
.y2f7{bottom:615.894015px;}
.y46{bottom:616.205010px;}
.yf5{bottom:617.400015px;}
.y3fc{bottom:617.925000px;}
.y3b1{bottom:618.150015px;}
.y1b4{bottom:619.590000px;}
.y26a{bottom:619.994970px;}
.y110{bottom:620.400015px;}
.y476{bottom:620.655015px;}
.y2bb{bottom:622.134015px;}
.y191{bottom:622.178970px;}
.y44c{bottom:622.425000px;}
.y2a3{bottom:622.994970px;}
.y243{bottom:622.994985px;}
.y120{bottom:623.400015px;}
.y228{bottom:625.590000px;}
.y64{bottom:626.394015px;}
.y9c{bottom:626.400015px;}
.y10{bottom:626.685015px;}
.y192{bottom:627.178980px;}
.y1d1{bottom:627.907515px;}
.y1f5{bottom:628.185015px;}
.y328{bottom:628.650015px;}
.y146{bottom:629.400015px;}
.y389{bottom:631.650015px;}
.y2f6{bottom:632.394015px;}
.yd2{bottom:632.400015px;}
.y421{bottom:632.925000px;}
.y35a{bottom:634.650015px;}
.y2ba{bottom:636.384015px;}
.y3b4{bottom:637.650015px;}
.yf4{bottom:638.400015px;}
.y3fb{bottom:638.925000px;}
.y1b3{bottom:640.590000px;}
.y269{bottom:640.994970px;}
.y45{bottom:641.205000px;}
.y10f{bottom:641.400015px;}
.y475{bottom:641.655015px;}
.y241{bottom:643.994970px;}
.y242{bottom:643.994985px;}
.y44b{bottom:644.655015px;}
.y327{bottom:645.150015px;}
.y29f{bottom:646.589955px;}
.y227{bottom:646.590000px;}
.y63{bottom:647.394015px;}
.y9b{bottom:647.400015px;}
.y39d{bottom:648.150015px;}
.y1d0{bottom:648.907515px;}
.y190{bottom:649.178970px;}
.y1f4{bottom:649.185015px;}
.y15b{bottom:650.400015px;}
.y2b9{bottom:650.634015px;}
.y3fa{bottom:650.925000px;}
.y359{bottom:651.150015px;}
.y2f5{bottom:651.894015px;}
.yf{bottom:652.685025px;}
.yd1{bottom:653.400015px;}
.y3b0{bottom:654.150015px;}
.yf3{bottom:659.400015px;}
.y1b2{bottom:661.590000px;}
.y326{bottom:661.650015px;}
.y268{bottom:661.994970px;}
.y44{bottom:662.205000px;}
.y10e{bottom:662.400015px;}
.y474{bottom:662.655015px;}
.y420{bottom:664.425000px;}
.y37b{bottom:664.650015px;}
.y2b8{bottom:664.884015px;}
.y240{bottom:664.994970px;}
.y281{bottom:664.994985px;}
.y145{bottom:665.400015px;}
.y44a{bottom:666.885015px;}
.y226{bottom:667.589955px;}
.y28f{bottom:667.590000px;}
.y358{bottom:667.650015px;}
.y62{bottom:668.394015px;}
.y9a{bottom:668.400015px;}
.y1cf{bottom:669.907470px;}
.y1f3{bottom:670.185015px;}
.y3af{bottom:670.650015px;}
.ye{bottom:671.685015px;}
.y3f9{bottom:671.925000px;}
.yd0{bottom:674.400015px;}
.y473{bottom:674.655015px;}
.y2b7{bottom:679.134015px;}
.yf2{bottom:680.400015px;}
.y325{bottom:681.150015px;}
.y1b1{bottom:682.590000px;}
.y267{bottom:682.994970px;}
.y10d{bottom:683.400015px;}
.y357{bottom:684.150015px;}
.y2f4{bottom:684.894015px;}
.y23f{bottom:685.994970px;}
.y280{bottom:685.994985px;}
.y144{bottom:686.400015px;}
.y3a2{bottom:687.150015px;}
.y43{bottom:688.205010px;}
.y18f{bottom:688.584000px;}
.y28e{bottom:688.590000px;}
.y449{bottom:689.115030px;}
.y99{bottom:689.400015px;}
.y1f2{bottom:691.185015px;}
.yd{bottom:692.895015px;}
.y3f8{bottom:692.925000px;}
.y2b6{bottom:693.384015px;}
.y61{bottom:695.394015px;}
.ycf{bottom:695.400015px;}
.y472{bottom:695.655015px;}
.y41f{bottom:695.925000px;}
.y324{bottom:697.650015px;}
.y39c{bottom:700.650015px;}
.yf1{bottom:701.400015px;}
.y1b0{bottom:703.590000px;}
.y356{bottom:703.650015px;}
.y266{bottom:703.994970px;}
.y2f3{bottom:704.394015px;}
.y10c{bottom:704.400015px;}
.y3b3{bottom:706.650015px;}
.y225{bottom:706.994970px;}
.y29e{bottom:706.994985px;}
.y143{bottom:707.400015px;}
.y18e{bottom:709.306500px;}
.y1ce{bottom:709.312500px;}
.y28d{bottom:709.590000px;}
.y98{bottom:710.400015px;}
.y448{bottom:711.345045px;}
.y1f1{bottom:712.184955px;}
.y42{bottom:713.205000px;}
.y3f7{bottom:713.925000px;}
.yc{bottom:714.105015px;}
.y323{bottom:714.150015px;}
.yce{bottom:716.400015px;}
.y471{bottom:716.655015px;}
.y41e{bottom:716.925000px;}
.y37a{bottom:717.150015px;}
.y355{bottom:720.150015px;}
.y2b5{bottom:720.482985px;}
.y2f2{bottom:720.894015px;}
.yf0{bottom:722.400015px;}
.y3ae{bottom:723.150015px;}
.y1af{bottom:724.590000px;}
.y265{bottom:724.995000px;}
.y10b{bottom:725.400015px;}
.y224{bottom:727.995000px;}
.y142{bottom:728.400015px;}
.y470{bottom:728.655015px;}
.y1cd{bottom:730.312500px;}
.y28c{bottom:730.590000px;}
.y97{bottom:731.400015px;}
.y1f0{bottom:733.184985px;}
.y322{bottom:733.650015px;}
.y447{bottom:734.115030px;}
.y41{bottom:734.205000px;}
.y3f6{bottom:734.925000px;}
.yb{bottom:735.315015px;}
.y354{bottom:736.650015px;}
.ycd{bottom:737.400015px;}
.y41d{bottom:737.925000px;}
.y18d{bottom:739.306485px;}
.y3a1{bottom:739.650015px;}
.y2f1{bottom:740.394015px;}
.y60{bottom:742.204995px;}
.yef{bottom:743.400015px;}
.y1ae{bottom:745.590000px;}
.y264{bottom:745.995000px;}
.y10a{bottom:746.400015px;}
.y223{bottom:748.995000px;}
.y141{bottom:749.400015px;}
.y46f{bottom:749.655015px;}
.y321{bottom:750.150015px;}
.y28b{bottom:751.590000px;}
.ybe{bottom:752.400015px;}
.y39b{bottom:753.150015px;}
.y3f5{bottom:755.925000px;}
.y353{bottom:756.150015px;}
.ya{bottom:756.525015px;}
.y446{bottom:756.885015px;}
.y2f0{bottom:756.894015px;}
.y41c{bottom:758.925000px;}
.y40{bottom:760.204995px;}
.yee{bottom:764.400015px;}
.y320{bottom:766.650015px;}
.y2b4{bottom:766.989000px;}
.y263{bottom:766.995000px;}
.y96{bottom:767.400015px;}
.y18c{bottom:769.584000px;}
.y39a{bottom:769.650015px;}
.y1cc{bottom:769.717515px;}
.y222{bottom:769.995000px;}
.y15a{bottom:770.400015px;}
.y46e{bottom:770.655015px;}
.y5f{bottom:772.204995px;}
.y1ad{bottom:772.590000px;}
.y352{bottom:772.650015px;}
.ybd{bottom:773.400015px;}
.y140{bottom:775.995000px;}
.y2ef{bottom:776.394015px;}
.y3f4{bottom:776.925000px;}
.y9{bottom:777.735000px;}
.y445{bottom:779.655015px;}
.y41b{bottom:779.925000px;}
.y3f{bottom:785.205000px;}
.yed{bottom:785.400015px;}
.y31f{bottom:786.150015px;}
.y262{bottom:787.995000px;}
.y95{bottom:788.400015px;}
.y351{bottom:789.150015px;}
.y18b{bottom:790.584000px;}
.y1cb{bottom:790.717515px;}
.y221{bottom:790.995000px;}
.y159{bottom:791.400015px;}
.y46d{bottom:791.655015px;}
.y3ad{bottom:792.150015px;}
.y2ee{bottom:792.894015px;}
.y1ef{bottom:793.590000px;}
.ybc{bottom:794.400015px;}
.y2b3{bottom:796.988985px;}
.y13f{bottom:796.995000px;}
.y5e{bottom:797.205000px;}
.y3f3{bottom:797.925000px;}
.y8{bottom:798.945000px;}
.y41a{bottom:800.925000px;}
.y444{bottom:802.425000px;}
.y31e{bottom:802.650015px;}
.y46c{bottom:803.655015px;}
.y399{bottom:805.650015px;}
.yec{bottom:806.400015px;}
.y350{bottom:808.650015px;}
.y261{bottom:808.995000px;}
.y94{bottom:809.400015px;}
.y3f2{bottom:809.925000px;}
.y3e{bottom:811.204995px;}
.y18a{bottom:811.306485px;}
.y1ca{bottom:811.717515px;}
.y1ac{bottom:811.995000px;}
.y2ed{bottom:812.394015px;}
.y158{bottom:812.400015px;}
.y1ee{bottom:814.590000px;}
.ybb{bottom:815.400015px;}
.y379{bottom:819.150015px;}
.y7{bottom:820.155000px;}
.y419{bottom:821.925000px;}
.y31d{bottom:822.150015px;}
.y5d{bottom:823.204995px;}
.y46b{bottom:824.655015px;}
.y34f{bottom:825.150015px;}
.yeb{bottom:827.400015px;}
.y2ec{bottom:828.894015px;}
.y260{bottom:829.995000px;}
.y93{bottom:830.400015px;}
.y3f1{bottom:830.925000px;}
.y1c9{bottom:832.717485px;}
.y1ab{bottom:832.995000px;}
.y443{bottom:833.925000px;}
.y1ed{bottom:835.590000px;}
.y378{bottom:835.650015px;}
.y3d{bottom:836.205000px;}
.yba{bottom:836.400015px;}
.y46a{bottom:836.655015px;}
.y189{bottom:838.179000px;}
.y31c{bottom:838.650015px;}
.y6{bottom:841.365000px;}
.y34e{bottom:841.650015px;}
.y2b2{bottom:841.995000px;}
.y418{bottom:842.925000px;}
.y3ac{bottom:844.650015px;}
.y2eb{bottom:845.394015px;}
.yea{bottom:848.400015px;}
.y25f{bottom:850.995000px;}
.y92{bottom:851.400015px;}
.y3f0{bottom:851.925000px;}
.y5c{bottom:853.204995px;}
.y1aa{bottom:853.995000px;}
.y377{bottom:855.150015px;}
.y1ec{bottom:856.590000px;}
.yb9{bottom:857.400015px;}
.y469{bottom:857.655000px;}
.y31b{bottom:858.150015px;}
.y34d{bottom:861.150015px;}
.y3c{bottom:862.204995px;}
.y5{bottom:862.575000px;}
.y3ef{bottom:863.925000px;}
.y442{bottom:865.425000px;}
.y2b1{bottom:868.995000px;}
.ye9{bottom:869.400015px;}
.y468{bottom:869.655000px;}
.y376{bottom:871.650015px;}
.y25e{bottom:871.995000px;}
.y91{bottom:872.400015px;}
.y2ea{bottom:873.144015px;}
.y31a{bottom:874.650015px;}
.y1a9{bottom:874.995000px;}
.y441{bottom:877.425000px;}
.y188{bottom:877.584000px;}
.y1eb{bottom:877.590000px;}
.y34c{bottom:877.650015px;}
.y5b{bottom:878.205000px;}
.yb8{bottom:878.400015px;}
.y4{bottom:883.785000px;}
.y3ee{bottom:884.925000px;}
.y3b{bottom:887.205000px;}
.ye8{bottom:890.400015px;}
.y467{bottom:890.655000px;}
.y319{bottom:891.150015px;}
.y25d{bottom:892.995000px;}
.y90{bottom:893.400015px;}
.y34b{bottom:894.150015px;}
.y1a8{bottom:895.995000px;}
.y3ed{bottom:896.925000px;}
.y17b{bottom:898.399995px;}
.y440{bottom:898.425000px;}
.y187{bottom:898.584000px;}
.y1ea{bottom:898.590000px;}
.yb7{bottom:899.400015px;}
.y466{bottom:902.655000px;}
.y5a{bottom:904.204995px;}
.y3{bottom:904.995000px;}
.y417{bottom:905.925000px;}
.y318{bottom:907.650000px;}
.y3a{bottom:908.205000px;}
.y136{bottom:908.400000px;}
.y3d3{bottom:910.372500px;}
.y43f{bottom:910.425000px;}
.y34a{bottom:910.650000px;}
.ye7{bottom:911.400000px;}
.y3ab{bottom:913.650000px;}
.y25c{bottom:913.994985px;}
.y8f{bottom:914.400000px;}
.y2e9{bottom:915.795000px;}
.y220{bottom:916.994985px;}
.y3ec{bottom:917.925000px;}
.y1e9{bottom:919.590000px;}
.yb6{bottom:920.400000px;}
.y465{bottom:923.655000px;}
.y416{bottom:926.925000px;}
.y317{bottom:927.150000px;}
.y135{bottom:929.400000px;}
.y3eb{bottom:929.925000px;}
.y2e8{bottom:930.045000px;}
.y349{bottom:930.150000px;}
.y43e{bottom:931.425000px;}
.ye6{bottom:932.400000px;}
.y39{bottom:934.205010px;}
.y25b{bottom:934.994985px;}
.y8e{bottom:935.400000px;}
.y464{bottom:935.655000px;}
.y186{bottom:937.988985px;}
.y21f{bottom:937.994985px;}
.y23e{bottom:937.995000px;}
.y3d2{bottom:940.650000px;}
.yb5{bottom:941.400000px;}
.y43d{bottom:943.425000px;}
.y316{bottom:943.650000px;}
.y2e7{bottom:944.295000px;}
.y2{bottom:946.293000px;}
.y348{bottom:946.650000px;}
.y415{bottom:947.925000px;}
.y134{bottom:950.400000px;}
.y3ea{bottom:950.925000px;}
.ye5{bottom:953.400000px;}
.y25a{bottom:955.994985px;}
.y8d{bottom:956.400000px;}
.y463{bottom:956.655000px;}
.y2e6{bottom:958.545000px;}
.y185{bottom:958.988985px;}
.y1e8{bottom:958.994985px;}
.y38{bottom:959.205000px;}
.y315{bottom:960.150000px;}
.y3d1{bottom:961.372500px;}
.yb4{bottom:962.400000px;}
.y347{bottom:963.150000px;}
.y43c{bottom:964.425000px;}
.y414{bottom:968.925000px;}
.y133{bottom:971.400000px;}
.y2e5{bottom:972.795000px;}
.ye4{bottom:974.400000px;}
.y1{bottom:976.293000px;}
.y43b{bottom:976.425000px;}
.y259{bottom:976.994985px;}
.y8c{bottom:977.400000px;}
.y314{bottom:979.650000px;}
.y184{bottom:979.989000px;}
.y1e7{bottom:979.994985px;}
.y11f{bottom:979.995000px;}
.y3e9{bottom:982.425000px;}
.y3aa{bottom:982.650000px;}
.yb3{bottom:983.400000px;}
.y37{bottom:985.205010px;}
.y2e4{bottom:987.045000px;}
.y462{bottom:988.155000px;}
.y413{bottom:989.925000px;}
.y3d0{bottom:991.372500px;}
.y132{bottom:992.400000px;}
.y313{bottom:996.150000px;}
.y43a{bottom:997.425000px;}
.y258{bottom:997.995000px;}
.y8b{bottom:998.400000px;}
.y346{bottom:999.150000px;}
.ye3{bottom:1000.995000px;}
.y2e3{bottom:1001.295000px;}
.ycc{bottom:1004.400000px;}
.y183{bottom:1006.989000px;}
.y439{bottom:1009.425000px;}
.y36{bottom:1010.205000px;}
.y412{bottom:1010.925000px;}
.y312{bottom:1012.650000px;}
.y131{bottom:1013.400000px;}
.y3e8{bottom:1013.716875px;}
.y2e2{bottom:1015.545000px;}
.y345{bottom:1015.650000px;}
.y257{bottom:1018.995000px;}
.y8a{bottom:1019.400000px;}
.y438{bottom:1021.425000px;}
.y3cf{bottom:1021.650000px;}
.y157{bottom:1021.995000px;}
.ycb{bottom:1025.400000px;}
.y3e6{bottom:1026.000000px;}
.y2e1{bottom:1029.795000px;}
.y311{bottom:1032.150000px;}
.y130{bottom:1034.400000px;}
.y3cb{bottom:1035.150000px;}
.y35{bottom:1036.204995px;}
.y31{bottom:1039.500000px;}
.y256{bottom:1039.995000px;}
.y89{bottom:1040.400000px;}
.y3ce{bottom:1042.372500px;}
.y2e0{bottom:1044.045000px;}
.y182{bottom:1046.394000px;}
.y310{bottom:1048.650000px;}
.y344{bottom:1051.650000px;}
.y411{bottom:1052.716875px;}
.y12f{bottom:1055.400000px;}
.y3e7{bottom:1055.545500px;}
.y30{bottom:1057.500000px;}
.y2df{bottom:1058.295000px;}
.y255{bottom:1060.995000px;}
.y34{bottom:1061.205000px;}
.y88{bottom:1061.400000px;}
.y3dc{bottom:1066.399995px;}
.y30f{bottom:1068.150000px;}
.y3cd{bottom:1072.245000px;}
.y2de{bottom:1072.545000px;}
.y59{bottom:1074.204000px;}
.y181{bottom:1076.394000px;}
.y12e{bottom:1081.995000px;}
.y87{bottom:1082.400000px;}
.y30e{bottom:1084.650000px;}
.y2f{bottom:1084.890000px;}
.y2dd{bottom:1086.795000px;}
.y33{bottom:1087.204995px;}
.y32{bottom:1087.704015px;}
.y2e{bottom:1105.109985px;}
.y3cc{bottom:1120.920000px;}
.y57{bottom:1120.920045px;}
.y2d{bottom:1130.138985px;}
.h8{height:35.043750px;}
.h5{height:43.804688px;}
.h20{height:44.165039px;}
.h1f{height:45.351562px;}
.h24{height:46.437874px;}
.h7{height:47.109375px;}
.h23{height:49.085039px;}
.h10{height:49.533733px;}
.h22{height:49.826376px;}
.h1b{height:52.998047px;}
.h1d{height:54.421875px;}
.h1c{height:55.725449px;}
.h1e{height:56.320312px;}
.hd{height:58.886719px;}
.h18{height:58.886779px;}
.h16{height:60.468750px;}
.he{height:61.917166px;}
.h6{height:62.578125px;}
.hc{height:64.775391px;}
.h12{height:67.109235px;}
.h14{height:67.109295px;}
.h13{height:67.109355px;}
.h11{height:67.109415px;}
.h19{height:67.109475px;}
.hb{height:68.108882px;}
.h4{height:70.062420px;}
.h3{height:70.062480px;}
.h2{height:70.062540px;}
.h17{height:70.562832px;}
.h1a{height:70.563021px;}
.h15{height:70.886719px;}
.hf{height:75.093750px;}
.ha{height:82.441406px;}
.h1{height:87.609375px;}
.h21{height:92.165039px;}
.h9{height:137.671875px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:32.646000px;}
.x8c{left:34.146000px;}
.x6{left:117.000000px;}
.x8e{left:124.500000px;}
.x1{left:135.003000px;}
.x4{left:144.000015px;}
.x9{left:162.004395px;}
.x90{left:191.955750px;}
.x2{left:197.227245px;}
.xa{left:225.002970px;}
.x6e{left:232.500075px;}
.x6f{left:234.165000px;}
.x67{left:237.210000px;}
.x88{left:239.995665px;}
.x70{left:241.665000px;}
.x68{left:244.710000px;}
.x89{left:247.502310px;}
.x1a{left:251.249880px;}
.x3{left:255.442200px;}
.x1e{left:259.169775px;}
.x1f{left:263.339760px;}
.x7{left:267.600030px;}
.x34{left:268.755000px;}
.x24{left:270.000120px;}
.x44{left:272.924880px;}
.x43{left:274.995120px;}
.x25{left:277.500120px;}
.x13{left:279.633000px;}
.x91{left:281.381250px;}
.x18{left:284.160000px;}
.x6a{left:287.205000px;}
.x82{left:289.580940px;}
.x4e{left:293.996955px;}
.x73{left:296.114985px;}
.x20{left:299.474760px;}
.x45{left:302.084880px;}
.x1b{left:305.879880px;}
.x48{left:307.352760px;}
.x8{left:309.936015px;}
.x92{left:311.385000px;}
.x2f{left:313.020015px;}
.x26{left:317.910120px;}
.x74{left:322.904985px;}
.x83{left:324.008925px;}
.x29{left:328.124925px;}
.x75{left:333.734985px;}
.x19{left:338.790000px;}
.x8a{left:343.359030px;}
.x46{left:345.839880px;}
.x84{left:353.048925px;}
.x30{left:356.775015px;}
.x2a{left:358.109940px;}
.x76{left:362.894985px;}
.x39{left:366.645330px;}
.x8d{left:367.722015px;}
.x23{left:378.555195px;}
.x2d{left:384.188970px;}
.x77{left:391.364985px;}
.x69{left:393.780000px;}
.x49{left:400.410120px;}
.x5c{left:402.899805px;}
.x58{left:406.635000px;}
.x21{left:416.430000px;}
.x3a{left:421.275330px;}
.x2e{left:427.943985px;}
.x59{left:434.969970px;}
.x27{left:436.260090px;}
.x16{left:437.670000px;}
.x31{left:440.144985px;}
.x4a{left:441.825075px;}
.x85{left:443.225925px;}
.x86{left:448.220895px;}
.x78{left:453.089955px;}
.x7c{left:455.925195px;}
.x5d{left:457.529760px;}
.x5e{left:459.389655px;}
.x4f{left:462.311925px;}
.x7d{left:463.425195px;}
.x22{left:471.059970px;}
.x28{left:473.760090px;}
.x4b{left:480.510315px;}
.x2b{left:484.169775px;}
.x32{left:488.070000px;}
.x17{left:492.299970px;}
.x50{left:496.481925px;}
.xb{left:499.755015px;}
.x87{left:501.809925px;}
.x81{left:504.570285px;}
.x3d{left:514.145880px;}
.x4c{left:518.010315px;}
.x51{left:536.786865px;}
.x60{left:540.794775px;}
.x52{left:543.554850px;}
.x3b{left:547.080375px;}
.x3e{left:548.315865px;}
.x6b{left:549.840000px;}
.x3f{left:552.485865px;}
.x4d{left:554.670315px;}
.xc{left:558.270030px;}
.x61{left:560.789745px;}
.x14{left:563.148060px;}
.xd{left:567.015015px;}
.x6d{left:573.735075px;}
.x7a{left:574.961925px;}
.x7b{left:582.461925px;}
.x35{left:585.944910px;}
.x40{left:588.620820px;}
.x62{left:592.937670px;}
.x41{left:595.388805px;}
.x42{left:598.724805px;}
.x3c{left:601.710345px;}
.x1c{left:606.029850px;}
.xe{left:615.660000px;}
.x15{left:617.778030px;}
.x8f{left:623.368380px;}
.xf{left:628.154985px;}
.x36{left:629.699940px;}
.x63{left:632.342700px;}
.x64{left:639.842700px;}
.x5b{left:641.549565px;}
.x71{left:642.840045px;}
.x79{left:646.781850px;}
.x7e{left:652.770165px;}
.x5f{left:654.839535px;}
.x1d{left:660.659820px;}
.x37{left:663.779850px;}
.x8b{left:666.534030px;}
.x7f{left:668.310240px;}
.x72{left:672.825030px;}
.x2c{left:674.483970px;}
.x80{left:675.810240px;}
.x10{left:677.324985px;}
.x54{left:679.265940px;}
.x53{left:685.176000px;}
.x65{left:691.502700px;}
.x6c{left:698.835210px;}
.x47{left:702.182790px;}
.x38{left:705.194865px;}
.x11{left:710.234985px;}
.x55{left:717.305970px;}
.x66{left:720.662700px;}
.x56{left:726.050955px;}
.x5a{left:728.144805px;}
.x33{left:736.844925px;}
.x12{left:742.634910px;}
.x57{left:768.545925px;}
@media print{
.v2{vertical-align:-17.777813pt;}
.v3{vertical-align:-10.666667pt;}
.vc{vertical-align:-8.000000pt;}
.va{vertical-align:-4.373333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.986720pt;}
.v9{vertical-align:4.373333pt;}
.vb{vertical-align:8.960000pt;}
.v4{vertical-align:10.666667pt;}
.v8{vertical-align:14.019498pt;}
.v1{vertical-align:17.777813pt;}
.v6{vertical-align:18.692533pt;}
.v7{vertical-align:42.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000053pt;}
.ls2{letter-spacing:0.000160pt;}
.ls3{letter-spacing:0.053387pt;}
.ls5{letter-spacing:3.644228pt;}
.ls4{letter-spacing:130.666667pt;}
.ls6{letter-spacing:694.582240pt;}
.ls7{letter-spacing:698.942240pt;}
.ls8{letter-spacing:716.062240pt;}
.wsa{word-spacing:-25.024000pt;}
.ws8{word-spacing:-20.853333pt;}
.wsb{word-spacing:-18.768000pt;}
.ws6{word-spacing:-17.792000pt;}
.wsd{word-spacing:-15.640000pt;}
.ws1{word-spacing:-14.826667pt;}
.ws9{word-spacing:-14.019498pt;}
.ws7{word-spacing:-13.333333pt;}
.wsc{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.861333pt;}
.ws3{word-spacing:-10.666667pt;}
.wsf{word-spacing:-10.514623pt;}
.ws2{word-spacing:-10.378667pt;}
.wse{word-spacing:-10.000000pt;}
.ws4{word-spacing:-8.302933pt;}
.ws12{word-spacing:-7.333333pt;}
.ws5{word-spacing:0.000000pt;}
.ws16{word-spacing:105.385333pt;}
.ws14{word-spacing:156.718667pt;}
.ws1e{word-spacing:180.158667pt;}
.ws1d{word-spacing:187.798667pt;}
.ws10{word-spacing:230.265333pt;}
.ws11{word-spacing:273.398667pt;}
.ws18{word-spacing:306.758667pt;}
.ws1b{word-spacing:311.158667pt;}
.ws1a{word-spacing:313.398667pt;}
.ws20{word-spacing:313.572000pt;}
.ws17{word-spacing:316.758667pt;}
.ws21{word-spacing:322.278667pt;}
.ws1c{word-spacing:341.158667pt;}
.ws19{word-spacing:354.478667pt;}
.ws1f{word-spacing:398.012000pt;}
.ws15{word-spacing:685.835573pt;}
.ws13{word-spacing:785.835573pt;}
._7{margin-left:-7.840053pt;}
._3{margin-left:-6.400000pt;}
._5{margin-left:-4.800000pt;}
._1{margin-left:-3.157333pt;}
._0{margin-left:-1.493333pt;}
._2{width:1.066667pt;}
._4{width:2.133333pt;}
._a{width:3.644172pt;}
._79{width:84.732000pt;}
._58{width:107.385333pt;}
._1d{width:111.169333pt;}
._e{width:116.932000pt;}
._10{width:119.172000pt;}
._69{width:136.972000pt;}
._6d{width:137.972000pt;}
._5a{width:139.172000pt;}
._75{width:182.865333pt;}
._45{width:230.332000pt;}
._3b{width:235.145333pt;}
._2a{width:242.825333pt;}
._71{width:248.052000pt;}
._7d{width:251.412000pt;}
._35{width:264.579573pt;}
._52{width:272.412000pt;}
._26{width:275.812000pt;}
._73{width:282.492000pt;}
._19{width:301.372000pt;}
._4a{width:326.932000pt;}
._2c{width:334.732000pt;}
._42{width:339.132000pt;}
._34{width:345.812000pt;}
._13{width:356.932000pt;}
._5b{width:361.838240pt;}
._25{width:367.982240pt;}
._4e{width:369.172000pt;}
._38{width:370.292000pt;}
._c{width:372.452000pt;}
._15{width:373.985333pt;}
._7b{width:379.172000pt;}
._6{width:384.320000pt;}
._67{width:388.395573pt;}
._3d{width:396.932000pt;}
._40{width:403.572000pt;}
._5c{width:417.832907pt;}
._77{width:419.132000pt;}
._1b{width:423.612000pt;}
._3f{width:428.606240pt;}
._48{width:431.715573pt;}
._17{width:433.945333pt;}
._36{width:436.932000pt;}
._29{width:441.372000pt;}
._30{width:459.132000pt;}
._44{width:460.382240pt;}
._5e{width:461.408907pt;}
._66{width:479.515573pt;}
._5d{width:484.395573pt;}
._74{width:489.595573pt;}
._21{width:506.942240pt;}
._3c{width:511.675573pt;}
._28{width:527.355573pt;}
._6a{width:529.182240pt;}
._43{width:530.302240pt;}
._65{width:539.515573pt;}
._37{width:546.942240pt;}
._41{width:580.182240pt;}
._2e{width:581.795573pt;}
._39{width:584.782240pt;}
._63{width:617.555573pt;}
._3a{width:651.422240pt;}
._68{width:663.662240pt;}
._49{width:667.262240pt;}
._4b{width:669.928907pt;}
._55{width:672.163573pt;}
._2d{width:679.862240pt;}
._6b{width:687.112907pt;}
._2f{width:692.915573pt;}
._27{width:697.392907pt;}
._62{width:699.435573pt;}
._32{width:708.355573pt;}
._61{width:710.875573pt;}
._59{width:720.019573pt;}
._54{width:724.318240pt;}
._1f{width:734.662240pt;}
._b{width:758.315573pt;}
._23{width:762.422240pt;}
._24{width:773.542240pt;}
._53{width:782.984907pt;}
._31{width:785.782240pt;}
._57{width:789.102240pt;}
._47{width:790.675573pt;}
._64{width:793.915573pt;}
._76{width:796.902240pt;}
._4c{width:806.942240pt;}
._50{width:825.662240pt;}
._5f{width:827.819573pt;}
._33{width:831.262240pt;}
._3e{width:833.502240pt;}
._60{width:837.195573pt;}
._46{width:841.382240pt;}
._4f{width:876.902240pt;}
._56{width:885.742240pt;}
._51{width:901.342240pt;}
._d{width:920.582240pt;}
._1e{width:923.502240pt;}
._2b{width:924.622240pt;}
._72{width:940.555573pt;}
._1c{width:943.542240pt;}
._7a{width:983.502240pt;}
._f{width:989.062240pt;}
._6c{width:993.462240pt;}
._11{width:1006.862240pt;}
._6f{width:1020.182240pt;}
._7c{width:1061.302240pt;}
._18{width:1066.115573pt;}
._20{width:1082.422240pt;}
._70{width:1096.862240pt;}
._4d{width:1099.062240pt;}
._1a{width:1101.262240pt;}
._22{width:1110.062240pt;}
._6e{width:1112.422240pt;}
._78{width:1119.102240pt;}
._14{width:1126.862240pt;}
._12{width:1132.382240pt;}
._16{width:1179.062240pt;}
._9{width:1825.962613pt;}
._8{width:1847.295947pt;}
.fs10{font-size:29.333333pt;}
.fs4{font-size:29.866667pt;}
.fsf{font-size:30.842895pt;}
.fs3{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fse{font-size:42.058493pt;}
.fs2{font-size:42.666667pt;}
.fsa{font-size:44.862392pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.470191pt;}
.fs1{font-size:53.333333pt;}
.fs8{font-size:56.077990pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:61.685789pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:94.133333pt;}
.y2c{bottom:98.773333pt;}
.y2b{bottom:111.573333pt;}
.y2a{bottom:128.373347pt;}
.y3a9{bottom:132.133307pt;}
.yb2{bottom:132.799973pt;}
.y3e5{bottom:133.231280pt;}
.y1e6{bottom:133.420000pt;}
.y20a{bottom:133.666667pt;}
.y3ca{bottom:134.799973pt;}
.y2dc{bottom:135.008053pt;}
.yca{bottom:135.461267pt;}
.y13e{bottom:135.466640pt;}
.y86{bottom:137.462813pt;}
.y17f{bottom:138.133307pt;}
.y169{bottom:140.799973pt;}
.y29{bottom:141.173360pt;}
.y343{bottom:141.466640pt;}
.y27f{bottom:142.746587pt;}
.y21e{bottom:143.106613pt;}
.y17a{bottom:143.461267pt;}
.y156{bottom:143.466640pt;}
.y398{bottom:144.133307pt;}
.y410{bottom:144.173320pt;}
.y1a7{bottom:144.687987pt;}
.y1c8{bottom:144.693280pt;}
.y30d{bottom:144.794600pt;}
.y28a{bottom:145.413253pt;}
.y11e{bottom:146.133307pt;}
.y3a8{bottom:146.799973pt;}
.y2db{bottom:147.674720pt;}
.y2a2{bottom:147.719893pt;}
.y23d{bottom:147.719973pt;}
.y109{bottom:148.799973pt;}
.y375{bottom:149.466640pt;}
.y29b{bottom:150.026693pt;}
.y461{bottom:150.466613pt;}
.yb1{bottom:151.466640pt;}
.y3e4{bottom:151.897947pt;}
.y1e5{bottom:152.086667pt;}
.y209{bottom:152.333333pt;}
.yc9{bottom:154.127933pt;}
.y13d{bottom:154.133307pt;}
.y85{bottom:156.129480pt;}
.y342{bottom:156.133307pt;}
.y17e{bottom:156.799973pt;}
.y437{bottom:157.133280pt;}
.y28{bottom:157.573360pt;}
.y397{bottom:158.799973pt;}
.y30c{bottom:159.461267pt;}
.y168{bottom:159.466640pt;}
.y2da{bottom:160.341387pt;}
.y27e{bottom:161.413253pt;}
.y3a7{bottom:161.466640pt;}
.y21d{bottom:161.773280pt;}
.y179{bottom:162.127933pt;}
.y155{bottom:162.133307pt;}
.y1a6{bottom:163.354653pt;}
.y1c7{bottom:163.359947pt;}
.y289{bottom:164.079920pt;}
.y374{bottom:164.133307pt;}
.y11d{bottom:164.799973pt;}
.y3da{bottom:165.280360pt;}
.y2a1{bottom:166.386560pt;}
.y23c{bottom:166.386640pt;}
.y108{bottom:167.466640pt;}
.y436{bottom:167.799947pt;}
.y29a{bottom:168.693360pt;}
.y27{bottom:169.573360pt;}
.yb0{bottom:170.133307pt;}
.y3e3{bottom:170.564613pt;}
.y460{bottom:170.706613pt;}
.y1e4{bottom:170.753333pt;}
.y341{bottom:170.799973pt;}
.y208{bottom:171.000080pt;}
.y40f{bottom:172.173320pt;}
.y56{bottom:172.626627pt;}
.yc8{bottom:172.794600pt;}
.y13c{bottom:172.799973pt;}
.y2d9{bottom:173.008053pt;}
.y388{bottom:173.466640pt;}
.y84{bottom:174.796147pt;}
.y17d{bottom:175.466640pt;}
.y396{bottom:176.133307pt;}
.y30b{bottom:176.794600pt;}
.y167{bottom:178.133307pt;}
.y435{bottom:178.466613pt;}
.y373{bottom:178.799973pt;}
.y27d{bottom:180.079920pt;}
.y21c{bottom:180.439947pt;}
.y178{bottom:180.794600pt;}
.y154{bottom:180.799973pt;}
.y3c9{bottom:181.466640pt;}
.y26{bottom:181.573360pt;}
.y1a5{bottom:182.021320pt;}
.y1c6{bottom:182.026613pt;}
.y254{bottom:182.746587pt;}
.y11c{bottom:183.466640pt;}
.y3d9{bottom:183.947027pt;}
.y2a0{bottom:185.053227pt;}
.y23b{bottom:185.053307pt;}
.y2d8{bottom:185.674720pt;}
.y12d{bottom:186.133307pt;}
.y299{bottom:187.360027pt;}
.y340{bottom:188.133307pt;}
.yaf{bottom:188.799973pt;}
.y3e2{bottom:189.231280pt;}
.y1e3{bottom:189.420000pt;}
.y395{bottom:190.799973pt;}
.y40e{bottom:190.839987pt;}
.y45f{bottom:190.946600pt;}
.yc7{bottom:191.461267pt;}
.y13b{bottom:191.466640pt;}
.y83{bottom:193.462813pt;}
.y372{bottom:193.466640pt;}
.y25{bottom:193.573360pt;}
.ye2{bottom:194.133307pt;}
.y55{bottom:195.737707pt;}
.y3c8{bottom:196.133307pt;}
.y166{bottom:196.799973pt;}
.y434{bottom:197.133280pt;}
.y2d7{bottom:198.341387pt;}
.y27c{bottom:198.746587pt;}
.y21b{bottom:199.106613pt;}
.y107{bottom:199.466640pt;}
.y1a4{bottom:200.688067pt;}
.y1c5{bottom:200.693280pt;}
.y253{bottom:201.413253pt;}
.y11b{bottom:202.133307pt;}
.y3d8{bottom:202.613693pt;}
.y33f{bottom:202.799973pt;}
.y23a{bottom:203.719973pt;}
.y12c{bottom:204.799973pt;}
.y394{bottom:205.466640pt;}
.y24{bottom:205.573360pt;}
.y207{bottom:206.026693pt;}
.y30a{bottom:206.127933pt;}
.yae{bottom:207.466640pt;}
.y433{bottom:207.799947pt;}
.y3e1{bottom:207.897947pt;}
.y1e2{bottom:208.086667pt;}
.y3a6{bottom:208.133307pt;}
.y40d{bottom:209.506653pt;}
.y45e{bottom:209.613267pt;}
.y371{bottom:210.799973pt;}
.y2d6{bottom:211.008053pt;}
.y3db{bottom:211.911053pt;}
.y82{bottom:212.129480pt;}
.y177{bottom:212.794600pt;}
.ye1{bottom:212.799973pt;}
.yc6{bottom:215.101320pt;}
.y13a{bottom:215.106693pt;}
.y27b{bottom:217.413253pt;}
.y33e{bottom:217.466640pt;}
.y23{bottom:217.573360pt;}
.y21a{bottom:217.773280pt;}
.y54{bottom:217.959960pt;}
.y106{bottom:218.133307pt;}
.y432{bottom:218.466613pt;}
.y1c4{bottom:219.360027pt;}
.y252{bottom:220.079920pt;}
.y288{bottom:220.080000pt;}
.y387{bottom:220.133307pt;}
.y11a{bottom:220.799973pt;}
.y3d7{bottom:221.280360pt;}
.y239{bottom:222.386640pt;}
.y393{bottom:222.799973pt;}
.y309{bottom:223.461267pt;}
.y12b{bottom:223.466640pt;}
.y2d5{bottom:223.674720pt;}
.y206{bottom:224.693360pt;}
.y370{bottom:225.466640pt;}
.yad{bottom:226.133307pt;}
.y3e0{bottom:226.564613pt;}
.y1e1{bottom:226.753333pt;}
.y3c7{bottom:228.133307pt;}
.y40c{bottom:228.173320pt;}
.y45d{bottom:228.279933pt;}
.y165{bottom:228.799973pt;}
.y22{bottom:229.573360pt;}
.y176{bottom:231.461267pt;}
.ye0{bottom:231.466640pt;}
.y139{bottom:233.773360pt;}
.y33d{bottom:234.799973pt;}
.y1a3{bottom:235.714680pt;}
.y27a{bottom:236.079920pt;}
.y2d4{bottom:236.341387pt;}
.y219{bottom:236.439947pt;}
.y105{bottom:236.799973pt;}
.y431{bottom:237.133280pt;}
.y392{bottom:237.466640pt;}
.y308{bottom:238.127933pt;}
.y251{bottom:238.746587pt;}
.y119{bottom:239.466640pt;}
.y3d6{bottom:239.947027pt;}
.y36f{bottom:240.133307pt;}
.y238{bottom:241.053307pt;}
.y53{bottom:241.071040pt;}
.y21{bottom:241.573360pt;}
.yc5{bottom:242.128013pt;}
.y12a{bottom:242.133307pt;}
.y3c6{bottom:242.799973pt;}
.y205{bottom:243.360027pt;}
.y81{bottom:244.129480pt;}
.yac{bottom:244.799973pt;}
.y3df{bottom:245.231280pt;}
.y1e0{bottom:245.420000pt;}
.y40b{bottom:246.839987pt;}
.y45c{bottom:246.946600pt;}
.y164{bottom:247.466640pt;}
.y430{bottom:247.799947pt;}
.y2d3{bottom:249.008053pt;}
.y33c{bottom:249.466640pt;}
.y175{bottom:250.127933pt;}
.ydf{bottom:250.133307pt;}
.y391{bottom:252.133307pt;}
.y72{bottom:252.784013pt;}
.y307{bottom:252.794600pt;}
.y20{bottom:253.573360pt;}
.y1a2{bottom:254.381347pt;}
.y1c3{bottom:254.386640pt;}
.y279{bottom:254.746587pt;}
.y36e{bottom:254.799973pt;}
.y218{bottom:255.106613pt;}
.y104{bottom:255.466640pt;}
.y250{bottom:257.413253pt;}
.y3c5{bottom:257.466640pt;}
.y118{bottom:258.133307pt;}
.y42f{bottom:258.466613pt;}
.y3d5{bottom:258.613693pt;}
.y237{bottom:259.719973pt;}
.y129{bottom:260.799973pt;}
.y3de{bottom:261.231280pt;}
.y2d2{bottom:261.674720pt;}
.y204{bottom:262.026693pt;}
.y80{bottom:262.796147pt;}
.y52{bottom:263.293293pt;}
.yab{bottom:263.466640pt;}
.y1df{bottom:264.086667pt;}
.y33b{bottom:264.133307pt;}
.y40a{bottom:265.506653pt;}
.y1f{bottom:265.573360pt;}
.y45b{bottom:265.613267pt;}
.y163{bottom:266.133307pt;}
.y3a0{bottom:266.799973pt;}
.y306{bottom:267.461267pt;}
.y174{bottom:268.794600pt;}
.yde{bottom:268.799973pt;}
.y390{bottom:269.466640pt;}
.y36d{bottom:272.133307pt;}
.y1a1{bottom:273.048013pt;}
.y1c2{bottom:273.053307pt;}
.y278{bottom:273.413253pt;}
.y217{bottom:273.773280pt;}
.y103{bottom:274.133307pt;}
.y2d1{bottom:274.341387pt;}
.y3dd{bottom:274.564613pt;}
.y3d4{bottom:274.613693pt;}
.y3c4{bottom:274.799973pt;}
.y24f{bottom:276.079920pt;}
.y117{bottom:276.799973pt;}
.y42e{bottom:277.133280pt;}
.y1e{bottom:277.573360pt;}
.y236{bottom:278.386640pt;}
.y128{bottom:279.466640pt;}
.y203{bottom:280.693360pt;}
.y7f{bottom:281.462813pt;}
.y33a{bottom:281.466640pt;}
.yaa{bottom:282.133307pt;}
.y1de{bottom:282.753333pt;}
.y38f{bottom:284.133307pt;}
.y409{bottom:284.173320pt;}
.y45a{bottom:284.279933pt;}
.y305{bottom:284.794680pt;}
.y162{bottom:284.799973pt;}
.y51{bottom:286.404373pt;}
.y36c{bottom:286.799973pt;}
.y2d0{bottom:287.008053pt;}
.y173{bottom:287.461347pt;}
.ydd{bottom:287.466640pt;}
.y3c3{bottom:289.466640pt;}
.y1d{bottom:289.573360pt;}
.y71{bottom:290.122640pt;}
.y1a0{bottom:291.714680pt;}
.y1c1{bottom:291.719973pt;}
.y277{bottom:292.080000pt;}
.y287{bottom:292.439947pt;}
.y216{bottom:292.440027pt;}
.y102{bottom:292.799973pt;}
.y24e{bottom:294.746667pt;}
.y116{bottom:295.466680pt;}
.y42d{bottom:295.799947pt;}
.y339{bottom:296.133347pt;}
.y235{bottom:297.053347pt;}
.y127{bottom:298.133347pt;}
.y38e{bottom:298.800013pt;}
.y2b0{bottom:299.191120pt;}
.y298{bottom:299.359987pt;}
.y202{bottom:299.360027pt;}
.y304{bottom:299.461347pt;}
.y2cf{bottom:299.674680pt;}
.y7e{bottom:300.129520pt;}
.ya9{bottom:300.800013pt;}
.y1dd{bottom:301.420040pt;}
.y36b{bottom:301.466680pt;}
.y1c{bottom:301.573360pt;}
.y408{bottom:302.839987pt;}
.y459{bottom:302.946600pt;}
.y161{bottom:303.466680pt;}
.y3c2{bottom:304.133347pt;}
.y172{bottom:306.128013pt;}
.ydc{bottom:306.133347pt;}
.y50{bottom:308.626667pt;}
.y70{bottom:308.789347pt;}
.y19f{bottom:310.381347pt;}
.y1c0{bottom:310.386680pt;}
.y276{bottom:310.746667pt;}
.y338{bottom:310.800013pt;}
.y286{bottom:311.106653pt;}
.y215{bottom:311.106693pt;}
.y101{bottom:311.466680pt;}
.y2ce{bottom:312.341347pt;}
.y2ae{bottom:313.413293pt;}
.y24d{bottom:313.413333pt;}
.y39f{bottom:313.466680pt;}
.y1b{bottom:313.573360pt;}
.y303{bottom:314.128013pt;}
.y115{bottom:314.133347pt;}
.y42c{bottom:314.466613pt;}
.y234{bottom:315.719973pt;}
.y29d{bottom:315.720013pt;}
.y36a{bottom:316.133347pt;}
.y153{bottom:316.800013pt;}
.y201{bottom:318.026693pt;}
.y7d{bottom:318.796187pt;}
.y3a5{bottom:318.800013pt;}
.ya8{bottom:319.466680pt;}
.y1dc{bottom:320.086707pt;}
.y407{bottom:321.506653pt;}
.y458{bottom:321.613267pt;}
.y160{bottom:322.133347pt;}
.y171{bottom:324.794680pt;}
.ydb{bottom:324.800013pt;}
.y2cd{bottom:325.008013pt;}
.y6f{bottom:327.456013pt;}
.y337{bottom:328.133347pt;}
.y19e{bottom:329.048013pt;}
.y1bf{bottom:329.053347pt;}
.y1a{bottom:329.111133pt;}
.y275{bottom:329.413333pt;}
.y285{bottom:329.773320pt;}
.y214{bottom:329.773360pt;}
.y100{bottom:330.133347pt;}
.y38d{bottom:330.800013pt;}
.y302{bottom:331.461347pt;}
.y4f{bottom:331.737787pt;}
.y24c{bottom:332.080000pt;}
.y114{bottom:332.800013pt;}
.y369{bottom:333.466680pt;}
.y297{bottom:334.386680pt;}
.y152{bottom:335.466680pt;}
.y3c1{bottom:336.133347pt;}
.y200{bottom:336.693360pt;}
.y7c{bottom:337.462853pt;}
.y2cc{bottom:337.674680pt;}
.ya7{bottom:338.133347pt;}
.y1db{bottom:338.753373pt;}
.y406{bottom:340.173320pt;}
.y457{bottom:340.279933pt;}
.y19{bottom:340.666707pt;}
.y15f{bottom:340.800013pt;}
.y42b{bottom:342.466613pt;}
.y336{bottom:342.800013pt;}
.yda{bottom:343.466680pt;}
.y38c{bottom:345.466680pt;}
.y6e{bottom:346.122680pt;}
.y301{bottom:346.128013pt;}
.y19d{bottom:347.714680pt;}
.y1be{bottom:347.720013pt;}
.y274{bottom:348.080000pt;}
.y368{bottom:348.133347pt;}
.y213{bottom:348.439987pt;}
.yff{bottom:348.800013pt;}
.y2cb{bottom:350.341347pt;}
.y2ad{bottom:350.746627pt;}
.y233{bottom:350.746667pt;}
.y3c0{bottom:350.800013pt;}
.y113{bottom:351.466680pt;}
.y296{bottom:353.053347pt;}
.y151{bottom:354.133347pt;}
.y1ff{bottom:355.360027pt;}
.y7b{bottom:356.129520pt;}
.y170{bottom:356.794680pt;}
.ya6{bottom:356.800013pt;}
.y1da{bottom:357.420000pt;}
.y335{bottom:357.466680pt;}
.y4e{bottom:358.404453pt;}
.y456{bottom:358.946600pt;}
.y15e{bottom:359.466680pt;}
.y386{bottom:360.133347pt;}
.y300{bottom:360.794680pt;}
.yd9{bottom:362.133347pt;}
.y367{bottom:362.800013pt;}
.y2ca{bottom:363.008013pt;}
.y3bf{bottom:365.466680pt;}
.y19c{bottom:366.381347pt;}
.y1bd{bottom:366.386680pt;}
.y273{bottom:366.746667pt;}
.y284{bottom:367.106653pt;}
.yfe{bottom:367.466680pt;}
.y405{bottom:368.173320pt;}
.y2ac{bottom:369.413293pt;}
.y232{bottom:369.413333pt;}
.y6d{bottom:370.122680pt;}
.y112{bottom:370.133347pt;}
.y42a{bottom:371.559960pt;}
.y295{bottom:371.720013pt;}
.y334{bottom:372.133347pt;}
.y150{bottom:372.800013pt;}
.y1fe{bottom:374.026693pt;}
.y7a{bottom:374.796187pt;}
.y385{bottom:374.800013pt;}
.y16f{bottom:375.461347pt;}
.ya5{bottom:375.466680pt;}
.y2c9{bottom:375.674680pt;}
.y366{bottom:377.466680pt;}
.y455{bottom:377.613267pt;}
.y15d{bottom:378.133347pt;}
.y3a4{bottom:380.133347pt;}
.y4d{bottom:380.626667pt;}
.yd8{bottom:380.800013pt;}
.y3be{bottom:382.800013pt;}
.y212{bottom:383.466680pt;}
.y18{bottom:383.720013pt;}
.y19b{bottom:385.048013pt;}
.y1bc{bottom:385.053347pt;}
.y272{bottom:385.413333pt;}
.y283{bottom:385.773320pt;}
.yfd{bottom:386.133347pt;}
.y24b{bottom:388.079960pt;}
.y231{bottom:388.080000pt;}
.y2c8{bottom:388.341347pt;}
.y111{bottom:388.800013pt;}
.y333{bottom:389.466680pt;}
.y429{bottom:390.226640pt;}
.y294{bottom:390.386680pt;}
.y14f{bottom:391.466680pt;}
.y38b{bottom:392.133347pt;}
.y1d9{bottom:392.446693pt;}
.y1fd{bottom:392.693360pt;}
.y2ff{bottom:392.794680pt;}
.y79{bottom:393.462853pt;}
.y16e{bottom:394.128013pt;}
.yc4{bottom:394.133347pt;}
.y365{bottom:394.800013pt;}
.y404{bottom:396.173333pt;}
.y454{bottom:396.279933pt;}
.y15c{bottom:396.800013pt;}
.y3bd{bottom:397.466680pt;}
.yd7{bottom:399.466680pt;}
.y2c7{bottom:401.008013pt;}
.y211{bottom:402.133347pt;}
.y19a{bottom:403.714680pt;}
.y1bb{bottom:403.720013pt;}
.y4c{bottom:403.737787pt;}
.y271{bottom:404.080000pt;}
.y332{bottom:404.133347pt;}
.y2ab{bottom:404.439973pt;}
.y282{bottom:404.439987pt;}
.yfc{bottom:404.800013pt;}
.y230{bottom:406.746667pt;}
.y384{bottom:406.800013pt;}
.y17{bottom:406.831133pt;}
.y6c{bottom:407.461347pt;}
.ya4{bottom:407.466680pt;}
.y293{bottom:409.053347pt;}
.y364{bottom:409.466680pt;}
.y180{bottom:409.773320pt;}
.y428{bottom:409.986653pt;}
.y14e{bottom:410.133347pt;}
.y1d8{bottom:411.113360pt;}
.y1fc{bottom:411.360027pt;}
.y78{bottom:412.129520pt;}
.y3bc{bottom:412.133347pt;}
.y16d{bottom:412.794680pt;}
.yc3{bottom:412.800013pt;}
.y2c6{bottom:413.674680pt;}
.y453{bottom:414.946600pt;}
.y403{bottom:415.933333pt;}
.y17c{bottom:418.133347pt;}
.y331{bottom:418.800013pt;}
.y210{bottom:420.800013pt;}
.y383{bottom:421.466680pt;}
.y2fe{bottom:422.128013pt;}
.y199{bottom:422.381347pt;}
.y1ba{bottom:422.386680pt;}
.y270{bottom:422.746667pt;}
.y2aa{bottom:423.106640pt;}
.y24a{bottom:423.106653pt;}
.yfb{bottom:423.466680pt;}
.y363{bottom:424.133347pt;}
.y2af{bottom:425.413293pt;}
.y22f{bottom:425.413333pt;}
.y4b{bottom:425.960000pt;}
.y6b{bottom:426.128013pt;}
.ya3{bottom:426.133347pt;}
.y2c5{bottom:426.341347pt;}
.y29c{bottom:427.719973pt;}
.y292{bottom:427.720013pt;}
.y14d{bottom:428.800013pt;}
.y16{bottom:429.053347pt;}
.y3bb{bottom:429.466680pt;}
.y427{bottom:429.746653pt;}
.y1d7{bottom:429.780027pt;}
.y1fb{bottom:430.026653pt;}
.y77{bottom:430.796187pt;}
.y16c{bottom:431.461347pt;}
.yc2{bottom:431.466680pt;}
.y330{bottom:433.466680pt;}
.y402{bottom:434.600000pt;}
.y452{bottom:434.706613pt;}
.y382{bottom:436.133347pt;}
.y362{bottom:438.800013pt;}
.y2c4{bottom:439.008013pt;}
.y2fd{bottom:439.461347pt;}
.y20f{bottom:439.466680pt;}
.y198{bottom:441.048013pt;}
.y1b9{bottom:441.053307pt;}
.y26f{bottom:441.413333pt;}
.y3a3{bottom:441.466680pt;}
.y2a9{bottom:441.773307pt;}
.y249{bottom:441.773320pt;}
.yfa{bottom:442.133347pt;}
.y22e{bottom:444.080000pt;}
.y3ba{bottom:444.133347pt;}
.y6a{bottom:444.794680pt;}
.ya2{bottom:444.800013pt;}
.y401{bottom:445.266667pt;}
.y291{bottom:446.386680pt;}
.y138{bottom:447.106653pt;}
.y14c{bottom:447.466680pt;}
.y15{bottom:447.720013pt;}
.y1d6{bottom:448.446693pt;}
.y4a{bottom:449.071120pt;}
.y76{bottom:449.462853pt;}
.y426{bottom:449.506667pt;}
.y16b{bottom:450.128013pt;}
.yc1{bottom:450.133347pt;}
.y32f{bottom:450.800013pt;}
.y2c3{bottom:451.674680pt;}
.y381{bottom:453.466680pt;}
.y2fc{bottom:454.128013pt;}
.y451{bottom:454.466613pt;}
.yd6{bottom:454.577800pt;}
.y400{bottom:455.933333pt;}
.y361{bottom:456.133347pt;}
.y126{bottom:458.133347pt;}
.y3b9{bottom:458.800013pt;}
.y197{bottom:459.714680pt;}
.y26e{bottom:460.080000pt;}
.y2a8{bottom:460.439973pt;}
.y248{bottom:460.439987pt;}
.y125{bottom:460.800013pt;}
.y22d{bottom:462.746667pt;}
.y69{bottom:463.461347pt;}
.ya1{bottom:463.466680pt;}
.y2c2{bottom:464.341347pt;}
.y1fa{bottom:465.053347pt;}
.y32e{bottom:465.466680pt;}
.y137{bottom:465.773320pt;}
.y14b{bottom:466.133347pt;}
.y1d5{bottom:467.113360pt;}
.y75{bottom:468.129520pt;}
.y380{bottom:468.133347pt;}
.y2fb{bottom:468.794680pt;}
.yc0{bottom:468.800013pt;}
.y425{bottom:469.266667pt;}
.y360{bottom:470.800013pt;}
.y14{bottom:470.831133pt;}
.y49{bottom:471.293333pt;}
.y3b8{bottom:473.466680pt;}
.yf9{bottom:474.133347pt;}
.y450{bottom:474.226627pt;}
.y1b8{bottom:476.080000pt;}
.y16a{bottom:476.794680pt;}
.y20e{bottom:476.800013pt;}
.y2c1{bottom:477.008013pt;}
.y196{bottom:478.381347pt;}
.y26d{bottom:478.746667pt;}
.y2a7{bottom:479.106640pt;}
.y247{bottom:479.106653pt;}
.y124{bottom:479.466680pt;}
.y32d{bottom:480.133347pt;}
.y22c{bottom:481.413333pt;}
.y68{bottom:482.128013pt;}
.ya0{bottom:482.133347pt;}
.y37f{bottom:482.800013pt;}
.y1f9{bottom:483.720013pt;}
.y3ff{bottom:483.933333pt;}
.y14a{bottom:484.800013pt;}
.y35f{bottom:485.466680pt;}
.y1d4{bottom:485.780027pt;}
.y2fa{bottom:486.128013pt;}
.y74{bottom:486.796187pt;}
.ybf{bottom:487.466680pt;}
.y424{bottom:487.933333pt;}
.y2c0{bottom:489.674680pt;}
.y3b7{bottom:490.800013pt;}
.yf8{bottom:492.800013pt;}
.y13{bottom:493.053347pt;}
.y44f{bottom:493.986640pt;}
.y48{bottom:494.404453pt;}
.y1b7{bottom:494.746667pt;}
.y32c{bottom:494.800013pt;}
.y20d{bottom:495.466680pt;}
.y195{bottom:497.048013pt;}
.y26c{bottom:497.413333pt;}
.y37e{bottom:497.466680pt;}
.y2a6{bottom:497.773307pt;}
.y246{bottom:497.773320pt;}
.y123{bottom:498.133347pt;}
.y22b{bottom:500.080000pt;}
.y38a{bottom:500.133347pt;}
.y67{bottom:500.794680pt;}
.y9f{bottom:500.800013pt;}
.y2bf{bottom:502.341347pt;}
.y1f8{bottom:502.386680pt;}
.y35e{bottom:502.800013pt;}
.y149{bottom:503.466680pt;}
.y1d3{bottom:504.446693pt;}
.y3b6{bottom:505.466680pt;}
.yd5{bottom:506.133347pt;}
.y423{bottom:506.600000pt;}
.yf7{bottom:511.466680pt;}
.y12{bottom:511.720013pt;}
.y3fe{bottom:511.933333pt;}
.y32b{bottom:512.133347pt;}
.y1b6{bottom:513.413333pt;}
.y73{bottom:513.462853pt;}
.y44e{bottom:513.746653pt;}
.y20c{bottom:514.133347pt;}
.y39e{bottom:514.800013pt;}
.y2be{bottom:515.008013pt;}
.y2f9{bottom:515.461347pt;}
.y194{bottom:515.714680pt;}
.y26b{bottom:516.079960pt;}
.y2a5{bottom:516.439973pt;}
.y245{bottom:516.439987pt;}
.y122{bottom:516.800013pt;}
.y35d{bottom:517.466680pt;}
.y22a{bottom:518.746667pt;}
.y66{bottom:519.461347pt;}
.y9e{bottom:519.466680pt;}
.y3b5{bottom:520.133347pt;}
.y1f7{bottom:521.053347pt;}
.y47{bottom:521.071120pt;}
.y148{bottom:522.133347pt;}
.y1d2{bottom:523.113320pt;}
.yd4{bottom:524.800013pt;}
.y32a{bottom:526.800013pt;}
.y2bd{bottom:527.674680pt;}
.y37d{bottom:529.466680pt;}
.yf6{bottom:530.133347pt;}
.y3fd{bottom:530.600000pt;}
.y1b5{bottom:532.080000pt;}
.y35c{bottom:532.133347pt;}
.y2f8{bottom:532.794680pt;}
.y20b{bottom:532.800013pt;}
.y477{bottom:533.026680pt;}
.y44d{bottom:533.506653pt;}
.y193{bottom:534.381347pt;}
.y422{bottom:534.600000pt;}
.y3b2{bottom:534.800013pt;}
.y11{bottom:534.831133pt;}
.y2a4{bottom:535.106640pt;}
.y244{bottom:535.106653pt;}
.y121{bottom:535.466680pt;}
.y229{bottom:537.413333pt;}
.y65{bottom:538.128013pt;}
.y9d{bottom:538.133347pt;}
.y290{bottom:539.719973pt;}
.y1f6{bottom:539.720013pt;}
.y2bc{bottom:540.341347pt;}
.y147{bottom:540.800013pt;}
.y329{bottom:541.466680pt;}
.yd3{bottom:543.466680pt;}
.y37c{bottom:544.133347pt;}
.y35b{bottom:546.800013pt;}
.y2f7{bottom:547.461347pt;}
.y46{bottom:547.737787pt;}
.yf5{bottom:548.800013pt;}
.y3fc{bottom:549.266667pt;}
.y3b1{bottom:549.466680pt;}
.y1b4{bottom:550.746667pt;}
.y26a{bottom:551.106640pt;}
.y110{bottom:551.466680pt;}
.y476{bottom:551.693347pt;}
.y2bb{bottom:553.008013pt;}
.y191{bottom:553.047973pt;}
.y44c{bottom:553.266667pt;}
.y2a3{bottom:553.773307pt;}
.y243{bottom:553.773320pt;}
.y120{bottom:554.133347pt;}
.y228{bottom:556.080000pt;}
.y64{bottom:556.794680pt;}
.y9c{bottom:556.800013pt;}
.y10{bottom:557.053347pt;}
.y192{bottom:557.492427pt;}
.y1d1{bottom:558.140013pt;}
.y1f5{bottom:558.386680pt;}
.y328{bottom:558.800013pt;}
.y146{bottom:559.466680pt;}
.y389{bottom:561.466680pt;}
.y2f6{bottom:562.128013pt;}
.yd2{bottom:562.133347pt;}
.y421{bottom:562.600000pt;}
.y35a{bottom:564.133347pt;}
.y2ba{bottom:565.674680pt;}
.y3b4{bottom:566.800013pt;}
.yf4{bottom:567.466680pt;}
.y3fb{bottom:567.933333pt;}
.y1b3{bottom:569.413333pt;}
.y269{bottom:569.773307pt;}
.y45{bottom:569.960000pt;}
.y10f{bottom:570.133347pt;}
.y475{bottom:570.360013pt;}
.y241{bottom:572.439973pt;}
.y242{bottom:572.439987pt;}
.y44b{bottom:573.026680pt;}
.y327{bottom:573.466680pt;}
.y29f{bottom:574.746627pt;}
.y227{bottom:574.746667pt;}
.y63{bottom:575.461347pt;}
.y9b{bottom:575.466680pt;}
.y39d{bottom:576.133347pt;}
.y1d0{bottom:576.806680pt;}
.y190{bottom:577.047973pt;}
.y1f4{bottom:577.053347pt;}
.y15b{bottom:578.133347pt;}
.y2b9{bottom:578.341347pt;}
.y3fa{bottom:578.600000pt;}
.y359{bottom:578.800013pt;}
.y2f5{bottom:579.461347pt;}
.yf{bottom:580.164467pt;}
.yd1{bottom:580.800013pt;}
.y3b0{bottom:581.466680pt;}
.yf3{bottom:586.133347pt;}
.y1b2{bottom:588.080000pt;}
.y326{bottom:588.133347pt;}
.y268{bottom:588.439973pt;}
.y44{bottom:588.626667pt;}
.y10e{bottom:588.800013pt;}
.y474{bottom:589.026680pt;}
.y420{bottom:590.600000pt;}
.y37b{bottom:590.800013pt;}
.y2b8{bottom:591.008013pt;}
.y240{bottom:591.106640pt;}
.y281{bottom:591.106653pt;}
.y145{bottom:591.466680pt;}
.y44a{bottom:592.786680pt;}
.y226{bottom:593.413293pt;}
.y28f{bottom:593.413333pt;}
.y358{bottom:593.466680pt;}
.y62{bottom:594.128013pt;}
.y9a{bottom:594.133347pt;}
.y1cf{bottom:595.473307pt;}
.y1f3{bottom:595.720013pt;}
.y3af{bottom:596.133347pt;}
.ye{bottom:597.053347pt;}
.y3f9{bottom:597.266667pt;}
.yd0{bottom:599.466680pt;}
.y473{bottom:599.693347pt;}
.y2b7{bottom:603.674680pt;}
.yf2{bottom:604.800013pt;}
.y325{bottom:605.466680pt;}
.y1b1{bottom:606.746667pt;}
.y267{bottom:607.106640pt;}
.y10d{bottom:607.466680pt;}
.y357{bottom:608.133347pt;}
.y2f4{bottom:608.794680pt;}
.y23f{bottom:609.773307pt;}
.y280{bottom:609.773320pt;}
.y144{bottom:610.133347pt;}
.y3a2{bottom:610.800013pt;}
.y43{bottom:611.737787pt;}
.y18f{bottom:612.074667pt;}
.y28e{bottom:612.080000pt;}
.y449{bottom:612.546693pt;}
.y99{bottom:612.800013pt;}
.y1f2{bottom:614.386680pt;}
.yd{bottom:615.906680pt;}
.y3f8{bottom:615.933333pt;}
.y2b6{bottom:616.341347pt;}
.y61{bottom:618.128013pt;}
.ycf{bottom:618.133347pt;}
.y472{bottom:618.360013pt;}
.y41f{bottom:618.600000pt;}
.y324{bottom:620.133347pt;}
.y39c{bottom:622.800013pt;}
.yf1{bottom:623.466680pt;}
.y1b0{bottom:625.413333pt;}
.y356{bottom:625.466680pt;}
.y266{bottom:625.773307pt;}
.y2f3{bottom:626.128013pt;}
.y10c{bottom:626.133347pt;}
.y3b3{bottom:628.133347pt;}
.y225{bottom:628.439973pt;}
.y29e{bottom:628.439987pt;}
.y143{bottom:628.800013pt;}
.y18e{bottom:630.494667pt;}
.y1ce{bottom:630.500000pt;}
.y28d{bottom:630.746667pt;}
.y98{bottom:631.466680pt;}
.y448{bottom:632.306707pt;}
.y1f1{bottom:633.053293pt;}
.y42{bottom:633.960000pt;}
.y3f7{bottom:634.600000pt;}
.yc{bottom:634.760013pt;}
.y323{bottom:634.800013pt;}
.yce{bottom:636.800013pt;}
.y471{bottom:637.026680pt;}
.y41e{bottom:637.266667pt;}
.y37a{bottom:637.466680pt;}
.y355{bottom:640.133347pt;}
.y2b5{bottom:640.429320pt;}
.y2f2{bottom:640.794680pt;}
.yf0{bottom:642.133347pt;}
.y3ae{bottom:642.800013pt;}
.y1af{bottom:644.080000pt;}
.y265{bottom:644.440000pt;}
.y10b{bottom:644.800013pt;}
.y224{bottom:647.106667pt;}
.y142{bottom:647.466680pt;}
.y470{bottom:647.693347pt;}
.y1cd{bottom:649.166667pt;}
.y28c{bottom:649.413333pt;}
.y97{bottom:650.133347pt;}
.y1f0{bottom:651.719987pt;}
.y322{bottom:652.133347pt;}
.y447{bottom:652.546693pt;}
.y41{bottom:652.626667pt;}
.y3f6{bottom:653.266667pt;}
.yb{bottom:653.613347pt;}
.y354{bottom:654.800013pt;}
.ycd{bottom:655.466680pt;}
.y41d{bottom:655.933333pt;}
.y18d{bottom:657.161320pt;}
.y3a1{bottom:657.466680pt;}
.y2f1{bottom:658.128013pt;}
.y60{bottom:659.737773pt;}
.yef{bottom:660.800013pt;}
.y1ae{bottom:662.746667pt;}
.y264{bottom:663.106667pt;}
.y10a{bottom:663.466680pt;}
.y223{bottom:665.773333pt;}
.y141{bottom:666.133347pt;}
.y46f{bottom:666.360013pt;}
.y321{bottom:666.800013pt;}
.y28b{bottom:668.080000pt;}
.ybe{bottom:668.800013pt;}
.y39b{bottom:669.466680pt;}
.y3f5{bottom:671.933333pt;}
.y353{bottom:672.133347pt;}
.ya{bottom:672.466680pt;}
.y446{bottom:672.786680pt;}
.y2f0{bottom:672.794680pt;}
.y41c{bottom:674.600000pt;}
.y40{bottom:675.737773pt;}
.yee{bottom:679.466680pt;}
.y320{bottom:681.466680pt;}
.y2b4{bottom:681.768000pt;}
.y263{bottom:681.773333pt;}
.y96{bottom:682.133347pt;}
.y18c{bottom:684.074667pt;}
.y39a{bottom:684.133347pt;}
.y1cc{bottom:684.193347pt;}
.y222{bottom:684.440000pt;}
.y15a{bottom:684.800013pt;}
.y46e{bottom:685.026680pt;}
.y5f{bottom:686.404440pt;}
.y1ad{bottom:686.746667pt;}
.y352{bottom:686.800013pt;}
.ybd{bottom:687.466680pt;}
.y140{bottom:689.773333pt;}
.y2ef{bottom:690.128013pt;}
.y3f4{bottom:690.600000pt;}
.y9{bottom:691.320000pt;}
.y445{bottom:693.026680pt;}
.y41b{bottom:693.266667pt;}
.y3f{bottom:697.960000pt;}
.yed{bottom:698.133347pt;}
.y31f{bottom:698.800013pt;}
.y262{bottom:700.440000pt;}
.y95{bottom:700.800013pt;}
.y351{bottom:701.466680pt;}
.y18b{bottom:702.741333pt;}
.y1cb{bottom:702.860013pt;}
.y221{bottom:703.106667pt;}
.y159{bottom:703.466680pt;}
.y46d{bottom:703.693347pt;}
.y3ad{bottom:704.133347pt;}
.y2ee{bottom:704.794680pt;}
.y1ef{bottom:705.413333pt;}
.ybc{bottom:706.133347pt;}
.y2b3{bottom:708.434653pt;}
.y13f{bottom:708.440000pt;}
.y5e{bottom:708.626667pt;}
.y3f3{bottom:709.266667pt;}
.y8{bottom:710.173333pt;}
.y41a{bottom:711.933333pt;}
.y444{bottom:713.266667pt;}
.y31e{bottom:713.466680pt;}
.y46c{bottom:714.360013pt;}
.y399{bottom:716.133347pt;}
.yec{bottom:716.800013pt;}
.y350{bottom:718.800013pt;}
.y261{bottom:719.106667pt;}
.y94{bottom:719.466680pt;}
.y3f2{bottom:719.933333pt;}
.y3e{bottom:721.071107pt;}
.y18a{bottom:721.161320pt;}
.y1ca{bottom:721.526680pt;}
.y1ac{bottom:721.773333pt;}
.y2ed{bottom:722.128013pt;}
.y158{bottom:722.133347pt;}
.y1ee{bottom:724.080000pt;}
.ybb{bottom:724.800013pt;}
.y379{bottom:728.133347pt;}
.y7{bottom:729.026667pt;}
.y419{bottom:730.600000pt;}
.y31d{bottom:730.800013pt;}
.y5d{bottom:731.737773pt;}
.y46b{bottom:733.026680pt;}
.y34f{bottom:733.466680pt;}
.yeb{bottom:735.466680pt;}
.y2ec{bottom:736.794680pt;}
.y260{bottom:737.773333pt;}
.y93{bottom:738.133347pt;}
.y3f1{bottom:738.600000pt;}
.y1c9{bottom:740.193320pt;}
.y1ab{bottom:740.440000pt;}
.y443{bottom:741.266667pt;}
.y1ed{bottom:742.746667pt;}
.y378{bottom:742.800013pt;}
.y3d{bottom:743.293333pt;}
.yba{bottom:743.466680pt;}
.y46a{bottom:743.693347pt;}
.y189{bottom:745.048000pt;}
.y31c{bottom:745.466680pt;}
.y6{bottom:747.880000pt;}
.y34e{bottom:748.133347pt;}
.y2b2{bottom:748.440000pt;}
.y418{bottom:749.266667pt;}
.y3ac{bottom:750.800013pt;}
.y2eb{bottom:751.461347pt;}
.yea{bottom:754.133347pt;}
.y25f{bottom:756.440000pt;}
.y92{bottom:756.800013pt;}
.y3f0{bottom:757.266667pt;}
.y5c{bottom:758.404440pt;}
.y1aa{bottom:759.106667pt;}
.y377{bottom:760.133347pt;}
.y1ec{bottom:761.413333pt;}
.yb9{bottom:762.133347pt;}
.y469{bottom:762.360000pt;}
.y31b{bottom:762.800013pt;}
.y34d{bottom:765.466680pt;}
.y3c{bottom:766.404440pt;}
.y5{bottom:766.733333pt;}
.y3ef{bottom:767.933333pt;}
.y442{bottom:769.266667pt;}
.y2b1{bottom:772.440000pt;}
.ye9{bottom:772.800013pt;}
.y468{bottom:773.026667pt;}
.y376{bottom:774.800013pt;}
.y25e{bottom:775.106667pt;}
.y91{bottom:775.466680pt;}
.y2ea{bottom:776.128013pt;}
.y31a{bottom:777.466680pt;}
.y1a9{bottom:777.773333pt;}
.y441{bottom:779.933333pt;}
.y188{bottom:780.074667pt;}
.y1eb{bottom:780.080000pt;}
.y34c{bottom:780.133347pt;}
.y5b{bottom:780.626667pt;}
.yb8{bottom:780.800013pt;}
.y4{bottom:785.586667pt;}
.y3ee{bottom:786.600000pt;}
.y3b{bottom:788.626667pt;}
.ye8{bottom:791.466680pt;}
.y467{bottom:791.693333pt;}
.y319{bottom:792.133347pt;}
.y25d{bottom:793.773333pt;}
.y90{bottom:794.133347pt;}
.y34b{bottom:794.800013pt;}
.y1a8{bottom:796.440000pt;}
.y3ed{bottom:797.266667pt;}
.y17b{bottom:798.577773pt;}
.y440{bottom:798.600000pt;}
.y187{bottom:798.741333pt;}
.y1ea{bottom:798.746667pt;}
.yb7{bottom:799.466680pt;}
.y466{bottom:802.360000pt;}
.y5a{bottom:803.737773pt;}
.y3{bottom:804.440000pt;}
.y417{bottom:805.266667pt;}
.y318{bottom:806.800000pt;}
.y3a{bottom:807.293333pt;}
.y136{bottom:807.466667pt;}
.y3d3{bottom:809.220000pt;}
.y43f{bottom:809.266667pt;}
.y34a{bottom:809.466667pt;}
.ye7{bottom:810.133333pt;}
.y3ab{bottom:812.133333pt;}
.y25c{bottom:812.439987pt;}
.y8f{bottom:812.800000pt;}
.y2e9{bottom:814.040000pt;}
.y220{bottom:815.106653pt;}
.y3ec{bottom:815.933333pt;}
.y1e9{bottom:817.413333pt;}
.yb6{bottom:818.133333pt;}
.y465{bottom:821.026667pt;}
.y416{bottom:823.933333pt;}
.y317{bottom:824.133333pt;}
.y135{bottom:826.133333pt;}
.y3eb{bottom:826.600000pt;}
.y2e8{bottom:826.706667pt;}
.y349{bottom:826.800000pt;}
.y43e{bottom:827.933333pt;}
.ye6{bottom:828.800000pt;}
.y39{bottom:830.404453pt;}
.y25b{bottom:831.106653pt;}
.y8e{bottom:831.466667pt;}
.y464{bottom:831.693333pt;}
.y186{bottom:833.767987pt;}
.y21f{bottom:833.773320pt;}
.y23e{bottom:833.773333pt;}
.y3d2{bottom:836.133333pt;}
.yb5{bottom:836.800000pt;}
.y43d{bottom:838.600000pt;}
.y316{bottom:838.800000pt;}
.y2e7{bottom:839.373333pt;}
.y2{bottom:841.149333pt;}
.y348{bottom:841.466667pt;}
.y415{bottom:842.600000pt;}
.y134{bottom:844.800000pt;}
.y3ea{bottom:845.266667pt;}
.ye5{bottom:847.466667pt;}
.y25a{bottom:849.773320pt;}
.y8d{bottom:850.133333pt;}
.y463{bottom:850.360000pt;}
.y2e6{bottom:852.040000pt;}
.y185{bottom:852.434653pt;}
.y1e8{bottom:852.439987pt;}
.y38{bottom:852.626667pt;}
.y315{bottom:853.466667pt;}
.y3d1{bottom:854.553333pt;}
.yb4{bottom:855.466667pt;}
.y347{bottom:856.133333pt;}
.y43c{bottom:857.266667pt;}
.y414{bottom:861.266667pt;}
.y133{bottom:863.466667pt;}
.y2e5{bottom:864.706667pt;}
.ye4{bottom:866.133333pt;}
.y1{bottom:867.816000pt;}
.y43b{bottom:867.933333pt;}
.y259{bottom:868.439987pt;}
.y8c{bottom:868.800000pt;}
.y314{bottom:870.800000pt;}
.y184{bottom:871.101333pt;}
.y1e7{bottom:871.106653pt;}
.y11f{bottom:871.106667pt;}
.y3e9{bottom:873.266667pt;}
.y3aa{bottom:873.466667pt;}
.yb3{bottom:874.133333pt;}
.y37{bottom:875.737787pt;}
.y2e4{bottom:877.373333pt;}
.y462{bottom:878.360000pt;}
.y413{bottom:879.933333pt;}
.y3d0{bottom:881.220000pt;}
.y132{bottom:882.133333pt;}
.y313{bottom:885.466667pt;}
.y43a{bottom:886.600000pt;}
.y258{bottom:887.106667pt;}
.y8b{bottom:887.466667pt;}
.y346{bottom:888.133333pt;}
.ye3{bottom:889.773333pt;}
.y2e3{bottom:890.040000pt;}
.ycc{bottom:892.800000pt;}
.y183{bottom:895.101333pt;}
.y439{bottom:897.266667pt;}
.y36{bottom:897.960000pt;}
.y412{bottom:898.600000pt;}
.y312{bottom:900.133333pt;}
.y131{bottom:900.800000pt;}
.y3e8{bottom:901.081667pt;}
.y2e2{bottom:902.706667pt;}
.y345{bottom:902.800000pt;}
.y257{bottom:905.773333pt;}
.y8a{bottom:906.133333pt;}
.y438{bottom:907.933333pt;}
.y3cf{bottom:908.133333pt;}
.y157{bottom:908.440000pt;}
.ycb{bottom:911.466667pt;}
.y3e6{bottom:912.000000pt;}
.y2e1{bottom:915.373333pt;}
.y311{bottom:917.466667pt;}
.y130{bottom:919.466667pt;}
.y3cb{bottom:920.133333pt;}
.y35{bottom:921.071107pt;}
.y31{bottom:924.000000pt;}
.y256{bottom:924.440000pt;}
.y89{bottom:924.800000pt;}
.y3ce{bottom:926.553333pt;}
.y2e0{bottom:928.040000pt;}
.y182{bottom:930.128000pt;}
.y310{bottom:932.133333pt;}
.y344{bottom:934.800000pt;}
.y411{bottom:935.748333pt;}
.y12f{bottom:938.133333pt;}
.y3e7{bottom:938.262667pt;}
.y30{bottom:940.000000pt;}
.y2df{bottom:940.706667pt;}
.y255{bottom:943.106667pt;}
.y34{bottom:943.293333pt;}
.y88{bottom:943.466667pt;}
.y3dc{bottom:947.911107pt;}
.y30f{bottom:949.466667pt;}
.y3cd{bottom:953.106667pt;}
.y2de{bottom:953.373333pt;}
.y59{bottom:954.848000pt;}
.y181{bottom:956.794667pt;}
.y12e{bottom:961.773333pt;}
.y87{bottom:962.133333pt;}
.y30e{bottom:964.133333pt;}
.y2f{bottom:964.346667pt;}
.y2dd{bottom:966.040000pt;}
.y33{bottom:966.404440pt;}
.y32{bottom:966.848013pt;}
.y2e{bottom:982.319987pt;}
.y3cc{bottom:996.373333pt;}
.y57{bottom:996.373373pt;}
.y2d{bottom:1004.567987pt;}
.h8{height:31.150000pt;}
.h5{height:38.937500pt;}
.h20{height:39.257812pt;}
.h1f{height:40.312500pt;}
.h24{height:41.278111pt;}
.h7{height:41.875000pt;}
.h23{height:43.631146pt;}
.h10{height:44.029985pt;}
.h22{height:44.290112pt;}
.h1b{height:47.109375pt;}
.h1d{height:48.375000pt;}
.h1c{height:49.533733pt;}
.h1e{height:50.062500pt;}
.hd{height:52.343750pt;}
.h18{height:52.343803pt;}
.h16{height:53.750000pt;}
.he{height:55.037481pt;}
.h6{height:55.625000pt;}
.hc{height:57.578125pt;}
.h12{height:59.652653pt;}
.h14{height:59.652707pt;}
.h13{height:59.652760pt;}
.h11{height:59.652813pt;}
.h19{height:59.652867pt;}
.hb{height:60.541229pt;}
.h4{height:62.277707pt;}
.h3{height:62.277760pt;}
.h2{height:62.277813pt;}
.h17{height:62.722517pt;}
.h1a{height:62.722685pt;}
.h15{height:63.010417pt;}
.hf{height:66.750000pt;}
.ha{height:73.281250pt;}
.h1{height:77.875000pt;}
.h21{height:81.924479pt;}
.h9{height:122.375000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:29.018667pt;}
.x8c{left:30.352000pt;}
.x6{left:104.000000pt;}
.x8e{left:110.666667pt;}
.x1{left:120.002667pt;}
.x4{left:128.000013pt;}
.x9{left:144.003907pt;}
.x90{left:170.627333pt;}
.x2{left:175.313107pt;}
.xa{left:200.002640pt;}
.x6e{left:206.666733pt;}
.x6f{left:208.146667pt;}
.x67{left:210.853333pt;}
.x88{left:213.329480pt;}
.x70{left:214.813333pt;}
.x68{left:217.520000pt;}
.x89{left:220.002053pt;}
.x1a{left:223.333227pt;}
.x3{left:227.059733pt;}
.x1e{left:230.373133pt;}
.x1f{left:234.079787pt;}
.x7{left:237.866693pt;}
.x34{left:238.893333pt;}
.x24{left:240.000107pt;}
.x44{left:242.599893pt;}
.x43{left:244.440107pt;}
.x25{left:246.666773pt;}
.x13{left:248.562667pt;}
.x91{left:250.116667pt;}
.x18{left:252.586667pt;}
.x6a{left:255.293333pt;}
.x82{left:257.405280pt;}
.x4e{left:261.330627pt;}
.x73{left:263.213320pt;}
.x20{left:266.199787pt;}
.x45{left:268.519893pt;}
.x1b{left:271.893227pt;}
.x48{left:273.202453pt;}
.x8{left:275.498680pt;}
.x92{left:276.786667pt;}
.x2f{left:278.240013pt;}
.x26{left:282.586773pt;}
.x74{left:287.026653pt;}
.x83{left:288.007933pt;}
.x29{left:291.666600pt;}
.x75{left:296.653320pt;}
.x19{left:301.146667pt;}
.x8a{left:305.208027pt;}
.x46{left:307.413227pt;}
.x84{left:313.821267pt;}
.x30{left:317.133347pt;}
.x2a{left:318.319947pt;}
.x76{left:322.573320pt;}
.x39{left:325.906960pt;}
.x8d{left:326.864013pt;}
.x23{left:336.493507pt;}
.x2d{left:341.501307pt;}
.x77{left:347.879987pt;}
.x69{left:350.026667pt;}
.x49{left:355.920107pt;}
.x5c{left:358.133160pt;}
.x58{left:361.453333pt;}
.x21{left:370.160000pt;}
.x3a{left:374.466960pt;}
.x2e{left:380.394653pt;}
.x59{left:386.639973pt;}
.x27{left:387.786747pt;}
.x16{left:389.040000pt;}
.x31{left:391.239987pt;}
.x4a{left:392.733400pt;}
.x85{left:393.978600pt;}
.x86{left:398.418573pt;}
.x78{left:402.746627pt;}
.x7c{left:405.266840pt;}
.x5d{left:406.693120pt;}
.x5e{left:408.346360pt;}
.x4f{left:410.943933pt;}
.x7d{left:411.933507pt;}
.x22{left:418.719973pt;}
.x28{left:421.120080pt;}
.x4b{left:427.120280pt;}
.x2b{left:430.373133pt;}
.x32{left:433.840000pt;}
.x17{left:437.599973pt;}
.x50{left:441.317267pt;}
.xb{left:444.226680pt;}
.x87{left:446.053267pt;}
.x81{left:448.506920pt;}
.x3d{left:457.018560pt;}
.x4c{left:460.453613pt;}
.x51{left:477.143880pt;}
.x60{left:480.706467pt;}
.x52{left:483.159867pt;}
.x3b{left:486.293667pt;}
.x3e{left:487.391880pt;}
.x6b{left:488.746667pt;}
.x3f{left:491.098547pt;}
.x4d{left:493.040280pt;}
.xc{left:496.240027pt;}
.x61{left:498.479773pt;}
.x14{left:500.576053pt;}
.xd{left:504.013347pt;}
.x6d{left:509.986733pt;}
.x7a{left:511.077267pt;}
.x7b{left:517.743933pt;}
.x35{left:520.839920pt;}
.x40{left:523.218507pt;}
.x62{left:527.055707pt;}
.x41{left:529.234493pt;}
.x42{left:532.199827pt;}
.x3c{left:534.853640pt;}
.x1c{left:538.693200pt;}
.xe{left:547.253333pt;}
.x15{left:549.136027pt;}
.x8f{left:554.105227pt;}
.xf{left:558.359987pt;}
.x36{left:559.733280pt;}
.x63{left:562.082400pt;}
.x64{left:568.749067pt;}
.x5b{left:570.266280pt;}
.x71{left:571.413373pt;}
.x79{left:574.917200pt;}
.x7e{left:580.240147pt;}
.x5f{left:582.079587pt;}
.x1d{left:587.253173pt;}
.x37{left:590.026533pt;}
.x8b{left:592.474693pt;}
.x7f{left:594.053547pt;}
.x72{left:598.066693pt;}
.x2c{left:599.541307pt;}
.x80{left:600.720213pt;}
.x10{left:602.066653pt;}
.x54{left:603.791947pt;}
.x53{left:609.045333pt;}
.x65{left:614.669067pt;}
.x6c{left:621.186853pt;}
.x47{left:624.162480pt;}
.x38{left:626.839880pt;}
.x11{left:631.319987pt;}
.x55{left:637.605307pt;}
.x66{left:640.589067pt;}
.x56{left:645.378627pt;}
.x5a{left:647.239827pt;}
.x33{left:654.973267pt;}
.x12{left:660.119920pt;}
.x57{left:683.151933pt;}
}




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