
    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_c4f0d90d9a2a813cafabb40e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.998000;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_618c75375fc7a72a6a66c47a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_fe45f32e7033ab3dfb9529ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706000;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_20142cdf9bc825dd2ca6eba3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_7a7ae9c731acfe0de4f6fab5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_49d13fc858572e3317f671f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7b5a59b93efc4fec454bbe50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8c72e7e30194af7e051782e9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5178d91e1fb75d0338d806bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7601d533fc657b604b4e5b48.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c699996cb12165c37a1b502f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6f5ffab25f81fa207133d0b3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_df63656782a5bb4456ff98fa.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1ad088578949efe481bc7d72.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_40deb03d35adb61d7a20be3f.woff2')format("woff");}.fff{font-family:fff;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a825ebda6332d76c67f8bec3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.981934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e47c7fad0046852022981dcc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_975436a05b086d24453d08cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.918945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bc8f4a9d2060537256eb0b25.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.936523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_dc68d97bf0eccf41d193a601.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.364000px;}
.v6{vertical-align:-4.500135px;}
.v4{vertical-align:-3.161246px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.043058px;}
.v5{vertical-align:13.394934px;}
.v1{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000466px;}
.ls9{letter-spacing:0.001657px;}
.ls8{letter-spacing:0.001838px;}
.lsa{letter-spacing:1.078118px;}
.ls3{letter-spacing:2.987447px;}
.ls4{letter-spacing:2.992118px;}
.ls2{letter-spacing:19.904383px;}
.ls6{letter-spacing:21.173447px;}
.ls5{letter-spacing:22.889447px;}
.ls0{letter-spacing:29.887800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1a{word-spacing:-31.515269px;}
.ws18{word-spacing:-31.163782px;}
.ws2{word-spacing:-28.921872px;}
.ws11{word-spacing:-24.101616px;}
.ws4{word-spacing:-20.084736px;}
.ws56{word-spacing:-17.127156px;}
.ws30{word-spacing:-16.737168px;}
.wse5{word-spacing:-13.389768px;}
.ws1c{word-spacing:-12.402414px;}
.ws1b{word-spacing:-12.401831px;}
.ws17{word-spacing:-12.401248px;}
.ws2d{word-spacing:-3.526760px;}
.ws2c{word-spacing:-3.466985px;}
.ws88{word-spacing:-3.347434px;}
.wsf6{word-spacing:-3.287658px;}
.ws101{word-spacing:-2.749678px;}
.ws74{word-spacing:-2.689902px;}
.wsd6{word-spacing:-2.450800px;}
.wsf7{word-spacing:-2.331248px;}
.ws4f{word-spacing:-2.092146px;}
.ws50{word-spacing:-2.048432px;}
.wsdd{word-spacing:-1.853044px;}
.wse2{word-spacing:-1.613941px;}
.wsf9{word-spacing:-1.554166px;}
.wsd8{word-spacing:-1.315063px;}
.ws33{word-spacing:-1.075961px;}
.wsd4{word-spacing:-0.777083px;}
.wsf8{word-spacing:-0.418429px;}
.ws7d{word-spacing:-0.298878px;}
.wsff{word-spacing:-0.239102px;}
.wsb6{word-spacing:-0.119551px;}
.wsd3{word-spacing:-0.059776px;}
.wsca{word-spacing:-0.049501px;}
.wscc{word-spacing:-0.030001px;}
.ws83{word-spacing:-0.004984px;}
.ws19{word-spacing:0.000000px;}
.wsc7{word-spacing:0.358654px;}
.wsc2{word-spacing:0.418429px;}
.wsfe{word-spacing:0.436360px;}
.ws63{word-spacing:0.597756px;}
.ws54{word-spacing:0.956410px;}
.wsdc{word-spacing:1.434614px;}
.ws25{word-spacing:1.554166px;}
.wsc5{word-spacing:1.793268px;}
.ws4b{word-spacing:1.853044px;}
.ws49{word-spacing:1.865003px;}
.wsc1{word-spacing:2.092146px;}
.ws105{word-spacing:2.151922px;}
.ws1{word-spacing:2.169140px;}
.ws0{word-spacing:2.272433px;}
.wse8{word-spacing:2.343209px;}
.wsd0{word-spacing:2.450800px;}
.wse9{word-spacing:2.570351px;}
.ws4c{word-spacing:2.689902px;}
.ws4d{word-spacing:2.749678px;}
.ws7c{word-spacing:2.809453px;}
.ws31{word-spacing:3.108331px;}
.ws27{word-spacing:3.168107px;}
.ws45{word-spacing:3.172565px;}
.ws26{word-spacing:3.227882px;}
.ws44{word-spacing:3.287658px;}
.ws3{word-spacing:3.299635px;}
.ws10{word-spacing:3.389299px;}
.ws29{word-spacing:3.407209px;}
.ws4a{word-spacing:3.538724px;}
.wsd7{word-spacing:3.646312px;}
.wsb5{word-spacing:4.004965px;}
.ws106{word-spacing:4.006720px;}
.ws2b{word-spacing:4.064741px;}
.ws82{word-spacing:4.184292px;}
.ws7e{word-spacing:4.244068px;}
.ws80{word-spacing:4.363619px;}
.ws2f{word-spacing:4.423394px;}
.ws32{word-spacing:4.483170px;}
.ws52{word-spacing:4.542946px;}
.ws2a{word-spacing:4.662497px;}
.ws51{word-spacing:4.722272px;}
.ws5a{word-spacing:4.782048px;}
.wsf1{word-spacing:4.841824px;}
.ws7f{word-spacing:4.901599px;}
.wsc9{word-spacing:4.961375px;}
.wsb{word-spacing:5.057050px;}
.wse7{word-spacing:5.068984px;}
.wscf{word-spacing:5.080926px;}
.wsea{word-spacing:5.140702px;}
.wsfd{word-spacing:5.200477px;}
.wsd9{word-spacing:5.260253px;}
.ws34{word-spacing:5.439580px;}
.ws24{word-spacing:5.618906px;}
.wsda{word-spacing:5.678682px;}
.wscd{word-spacing:5.977560px;}
.ws1f{word-spacing:6.097111px;}
.wse6{word-spacing:6.503602px;}
.ws4e{word-spacing:6.742733px;}
.ws21{word-spacing:6.814464px;}
.wse{word-spacing:6.993792px;}
.wsc3{word-spacing:7.113296px;}
.wse3{word-spacing:7.232848px;}
.ws2e{word-spacing:7.292623px;}
.wsf2{word-spacing:7.352399px;}
.wse4{word-spacing:7.364372px;}
.ws22{word-spacing:7.770828px;}
.wsd{word-spacing:8.015962px;}
.wsf0{word-spacing:8.091257px;}
.wsdb{word-spacing:8.154114px;}
.ws59{word-spacing:8.189257px;}
.wsf{word-spacing:8.231155px;}
.ws79{word-spacing:8.428360px;}
.ws8b{word-spacing:8.547911px;}
.wsec{word-spacing:8.607686px;}
.ws23{word-spacing:8.787013px;}
.wsc4{word-spacing:8.966340px;}
.wseb{word-spacing:9.026116px;}
.wsf4{word-spacing:9.384769px;}
.ws8{word-spacing:9.576115px;}
.ws46{word-spacing:9.743423px;}
.ws104{word-spacing:9.803198px;}
.ws7b{word-spacing:9.862974px;}
.wsd1{word-spacing:9.982525px;}
.ws53{word-spacing:10.341179px;}
.wsce{word-spacing:10.460730px;}
.wsef{word-spacing:10.580281px;}
.wsd5{word-spacing:10.699832px;}
.ws41{word-spacing:10.807456px;}
.wse1{word-spacing:11.297588px;}
.wse0{word-spacing:11.365237px;}
.wsf3{word-spacing:11.476915px;}
.wsfc{word-spacing:11.835569px;}
.ws28{word-spacing:11.955120px;}
.ws7a{word-spacing:12.672427px;}
.ws81{word-spacing:12.911530px;}
.wsf5{word-spacing:12.971305px;}
.ws9{word-spacing:13.126810px;}
.ws13{word-spacing:13.150632px;}
.wsdf{word-spacing:13.412110px;}
.wsde{word-spacing:13.412114px;}
.ws100{word-spacing:13.449510px;}
.ws58{word-spacing:13.987490px;}
.wsc{word-spacing:14.202778px;}
.ws103{word-spacing:14.346144px;}
.wsb4{word-spacing:14.465695px;}
.ws3f{word-spacing:14.585246px;}
.ws3e{word-spacing:14.645022px;}
.ws42{word-spacing:15.732977px;}
.ws16{word-spacing:17.506835px;}
.wsed{word-spacing:18.530436px;}
.ws55{word-spacing:19.247743px;}
.ws7{word-spacing:19.313626px;}
.wsfa{word-spacing:19.367294px;}
.ws43{word-spacing:19.749908px;}
.ws40{word-spacing:20.228114px;}
.wsee{word-spacing:22.356074px;}
.ws102{word-spacing:22.415850px;}
.wsb3{word-spacing:22.654952px;}
.ws5{word-spacing:22.702925px;}
.ws6{word-spacing:23.617498px;}
.wsfb{word-spacing:24.926425px;}
.wsb2{word-spacing:25.285079px;}
.ws57{word-spacing:26.899020px;}
.ws86{word-spacing:27.685405px;}
.ws47{word-spacing:29.529146px;}
.wscb{word-spacing:31.848769px;}
.wsa{word-spacing:35.399347px;}
.ws5b{word-spacing:39.690998px;}
.wsd2{word-spacing:48.891717px;}
.ws89{word-spacing:54.933776px;}
.ws5e{word-spacing:54.993552px;}
.wsb0{word-spacing:58.101883px;}
.ws87{word-spacing:100.943221px;}
.wsb7{word-spacing:108.911143px;}
.ws85{word-spacing:126.067161px;}
.wsc6{word-spacing:138.141412px;}
.wsaf{word-spacing:148.123937px;}
.ws8a{word-spacing:165.643207px;}
.ws75{word-spacing:167.847514px;}
.ws84{word-spacing:171.029665px;}
.wsa5{word-spacing:173.056537px;}
.ws64{word-spacing:195.593768px;}
.wsb1{word-spacing:201.210845px;}
.ws9d{word-spacing:214.301701px;}
.ws5c{word-spacing:224.282821px;}
.wsa6{word-spacing:225.718841px;}
.wsaa{word-spacing:232.652810px;}
.ws9c{word-spacing:235.342712px;}
.ws9e{word-spacing:240.543190px;}
.ws72{word-spacing:242.093185px;}
.ws9b{word-spacing:250.465939px;}
.ws5d{word-spacing:251.899148px;}
.wsa7{word-spacing:256.921704px;}
.wsae{word-spacing:260.747342px;}
.ws61{word-spacing:262.117476px;}
.ws98{word-spacing:265.947820px;}
.ws69{word-spacing:267.384264px;}
.ws76{word-spacing:268.868278px;}
.wsad{word-spacing:277.125857px;}
.ws99{word-spacing:283.880500px;}
.ws9a{word-spacing:290.515591px;}
.ws91{word-spacing:292.308859px;}
.ws92{word-spacing:294.520556px;}
.wsac{word-spacing:300.976321px;}
.ws97{word-spacing:306.894106px;}
.wsab{word-spacing:317.295060px;}
.ws60{word-spacing:317.409906px;}
.wsa4{word-spacing:317.414611px;}
.ws71{word-spacing:317.529992px;}
.ws94{word-spacing:322.674864px;}
.wsa1{word-spacing:332.175035px;}
.ws95{word-spacing:339.113154px;}
.ws6f{word-spacing:340.071394px;}
.ws96{word-spacing:340.487993px;}
.wsa0{word-spacing:340.846646px;}
.ws62{word-spacing:350.166935px;}
.wsa9{word-spacing:352.502888px;}
.ws6b{word-spacing:355.493498px;}
.ws8f{word-spacing:355.969873px;}
.ws90{word-spacing:373.902553px;}
.ws67{word-spacing:376.355183px;}
.ws93{word-spacing:382.211362px;}
.ws6e{word-spacing:383.761357px;}
.wsa8{word-spacing:385.917449px;}
.ws9f{word-spacing:393.987155px;}
.wsa3{word-spacing:397.334588px;}
.ws8e{word-spacing:398.589876px;}
.wsb8{word-spacing:402.890573px;}
.ws6a{word-spacing:404.324164px;}
.ws78{word-spacing:404.678441px;}
.ws5f{word-spacing:413.170417px;}
.ws70{word-spacing:423.512131px;}
.ws77{word-spacing:424.882594px;}
.ws6c{word-spacing:428.897935px;}
.ws8c{word-spacing:429.075432px;}
.ws68{word-spacing:443.477182px;}
.wsc0{word-spacing:450.112294px;}
.ws73{word-spacing:452.503297px;}
.ws66{word-spacing:466.789666px;}
.ws65{word-spacing:470.202875px;}
.wsbd{word-spacing:483.706181px;}
.wsbb{word-spacing:502.057290px;}
.wsbc{word-spacing:508.692382px;}
.ws6d{word-spacing:516.403414px;}
.wsa2{word-spacing:520.288848px;}
.wsbf{word-spacing:526.983715px;}
.wsba{word-spacing:538.281304px;}
.wsbe{word-spacing:538.580182px;}
.ws8d{word-spacing:545.275049px;}
.wsc8{word-spacing:628.364647px;}
.wsb9{word-spacing:670.266832px;}
.ws38{word-spacing:797.649146px;}
.ws48{word-spacing:834.411140px;}
.ws35{word-spacing:857.125868px;}
.ws3d{word-spacing:860.831956px;}
.ws3c{word-spacing:862.565448px;}
.ws37{word-spacing:887.372322px;}
.ws36{word-spacing:920.727107px;}
.ws39{word-spacing:960.418105px;}
.ws3b{word-spacing:987.137798px;}
.ws3a{word-spacing:1000.407982px;}
.ws1e{word-spacing:1407.902447px;}
.ws12{word-spacing:1632.183528px;}
.ws20{word-spacing:1653.998592px;}
.ws1d{word-spacing:1663.204034px;}
.ws14{word-spacing:1747.849314px;}
.ws15{word-spacing:1789.811785px;}
._95{margin-left:-441.120308px;}
._9a{margin-left:-322.747855px;}
._94{margin-left:-289.033876px;}
._92{margin-left:-287.430726px;}
._99{margin-left:-271.985015px;}
._98{margin-left:-270.883102px;}
._9b{margin-left:-265.761187px;}
._9d{margin-left:-264.659746px;}
._96{margin-left:-242.760157px;}
._9c{margin-left:-227.540801px;}
._93{margin-left:-225.387719px;}
._97{margin-left:-223.352524px;}
._15{margin-left:-34.789399px;}
._11{margin-left:-31.501741px;}
._f{margin-left:-29.887800px;}
._12{margin-left:-10.102076px;}
._0{margin-left:-7.953515px;}
._69{margin-left:-5.711131px;}
._6{margin-left:-4.572864px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.116151px;}
._5{width:1.169950px;}
._2{width:2.685602px;}
._2e{width:3.898313px;}
._10{width:5.575547px;}
._20{width:15.207706px;}
._1d{width:17.334924px;}
._90{width:18.376672px;}
._c{width:19.905275px;}
._a{width:21.277598px;}
._19{width:23.627668px;}
._1c{width:25.105752px;}
._17{width:26.153477px;}
._22{width:27.596742px;}
._1b{width:28.777682px;}
._91{width:30.342120px;}
._1a{width:31.527304px;}
._b8{width:33.217326px;}
._13{width:34.402464px;}
._b{width:36.313920px;}
._21{width:38.094934px;}
._66{width:40.049652px;}
._18{width:42.570560px;}
._d{width:43.779269px;}
._ba{width:45.070802px;}
._65{width:48.059582px;}
._68{width:50.003941px;}
._b9{width:51.043470px;}
._bc{width:52.511161px;}
._8{width:53.515793px;}
._8f{width:54.920168px;}
._9{width:58.425062px;}
._a9{width:60.379333px;}
._1f{width:62.764380px;}
._14{width:64.046653px;}
._7c{width:71.232930px;}
._7{width:72.305050px;}
._bb{width:75.323233px;}
._4f{width:78.382250px;}
._54{width:82.745869px;}
._4{width:86.005709px;}
._49{width:89.859166px;}
._e{width:94.048380px;}
._47{width:95.059643px;}
._4d{width:96.494257px;}
._6a{width:98.227616px;}
._4b{width:101.694734px;}
._41{width:108.090724px;}
._3f{width:113.291201px;}
._53{width:114.785591px;}
._4e{width:119.627414px;}
._50{width:122.915072px;}
._45{width:126.083179px;}
._43{width:131.283656px;}
._3d{width:133.076924px;}
._46{width:136.304807px;}
._3b{width:138.277402px;}
._48{width:139.592465px;}
._4a{width:142.939898px;}
._4c{width:146.227556px;}
._3e{width:154.536365px;}
._40{width:157.824023px;}
._51{width:161.231232px;}
._52{width:164.518890px;}
._42{width:172.528820px;}
._44{width:175.816478px;}
._6b{width:178.462615px;}
._3a{width:179.522566px;}
._3c{width:182.810224px;}
._77{width:185.085397px;}
._a0{width:187.619924px;}
._34{width:195.657678px;}
._76{width:196.819728px;}
._73{width:203.629213px;}
._82{width:205.035695px;}
._6f{width:208.315595px;}
._71{width:210.499056px;}
._86{width:213.880931px;}
._8b{width:215.293213px;}
._87{width:219.860044px;}
._7e{width:221.414209px;}
._81{width:224.800280px;}
._33{width:236.902842px;}
._35{width:240.190500px;}
._9e{width:245.380000px;}
._6e{width:251.031264px;}
._84{width:252.477936px;}
._8d{width:258.634823px;}
._72{width:279.807212px;}
._8e{width:286.242120px;}
._6d{width:293.794703px;}
._75{width:299.930468px;}
._74{width:313.759753px;}
._32{width:319.627973px;}
._30{width:324.828450px;}
._70{width:330.736024px;}
._78{width:334.147074px;}
._79{width:337.199546px;}
._56{width:338.700689px;}
._89{width:342.340248px;}
._aa{width:349.426298px;}
._a2{width:356.727371px;}
._6c{width:364.688564px;}
._2f{width:366.073614px;}
._31{width:369.361272px;}
._83{width:370.911432px;}
._80{width:376.292789px;}
._55{width:379.945853px;}
._57{width:383.233511px;}
._8c{width:385.735781px;}
._2c{width:408.036085px;}
._b6{width:418.064682px;}
._7b{width:429.907585px;}
._b7{width:438.079327px;}
._a1{width:446.326696px;}
._2b{width:449.281249px;}
._2d{width:452.568907px;}
._7f{width:459.020666px;}
._39{width:462.670984px;}
._a8{width:466.351672px;}
._37{width:467.871461px;}
._88{width:479.882351px;}
._a6{width:500.947116px;}
._36{width:509.116625px;}
._38{width:512.404283px;}
._a5{width:518.794458px;}
._85{width:524.768426px;}
._59{width:529.021900px;}
._a3{width:537.026016px;}
._a7{width:543.720883px;}
._7d{width:547.010350px;}
._a4{width:555.018472px;}
._61{width:557.415310px;}
._9f{width:562.012217px;}
._ab{width:567.393024px;}
._8a{width:569.754940px;}
._7a{width:573.232253px;}
._60{width:598.660474px;}
._62{width:601.948132px;}
._24{width:636.976633px;}
._5a{width:658.192672px;}
._58{width:682.879994px;}
._5e{width:686.586082px;}
._ac{width:721.734134px;}
._5d{width:727.831246px;}
._5f{width:731.118904px;}
._64{width:766.087630px;}
._5b{width:778.640506px;}
._af{width:781.366298px;}
._28{width:786.291782px;}
._27{width:787.965499px;}
._63{width:797.529595px;}
._67{width:803.351006px;}
._1e{width:805.266376px;}
._23{width:821.081182px;}
._2a{width:824.428615px;}
._29{width:826.162108px;}
._25{width:857.723624px;}
._5c{width:867.467047px;}
._26{width:890.958858px;}
._b5{width:898.291672px;}
._b4{width:932.887116px;}
._b3{width:950.734458px;}
._ae{width:957.369550px;}
._b0{width:968.966016px;}
._b2{width:975.660883px;}
._b1{width:986.958472px;}
._ad{width:993.952217px;}
._16{width:1357.607282px;}
.fc1{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(1,1,1);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:4.984212px;}
.fsa{font-size:27.780287px;}
.fsd{font-size:30.000900px;}
.fs7{font-size:35.865600px;}
.fs6{font-size:38.382328px;}
.fs5{font-size:41.842800px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:49.501485px;}
.fs2{font-size:53.798400px;}
.fs9{font-size:54.028885px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y31d{bottom:4.089966px;}
.y31f{bottom:5.215002px;}
.y31b{bottom:5.622239px;}
.y31c{bottom:6.747273px;}
.y265{bottom:7.767358px;}
.y29f{bottom:8.207888px;}
.y31e{bottom:11.221040px;}
.y5a{bottom:12.555778px;}
.ybe{bottom:17.701440px;}
.y23a{bottom:20.642168px;}
.y16e{bottom:20.957180px;}
.y130{bottom:28.213247px;}
.y238{bottom:30.727071px;}
.y15f{bottom:41.588029px;}
.y5c{bottom:42.370909px;}
.y141{bottom:43.874473px;}
.y24f{bottom:46.434902px;}
.y24e{bottom:47.964066px;}
.y283{bottom:51.212583px;}
.y13f{bottom:56.567786px;}
.y20c{bottom:57.378612px;}
.yc0{bottom:59.669431px;}
.y267{bottom:63.755691px;}
.y1a7{bottom:66.128364px;}
.y16d{bottom:66.563679px;}
.y23f{bottom:71.908103px;}
.y5b{bottom:72.186040px;}
.y160{bottom:73.686565px;}
.y259{bottom:77.053299px;}
.y278{bottom:77.307812px;}
.y236{bottom:79.174240px;}
.y28a{bottom:80.793109px;}
.y215{bottom:80.802845px;}
.y23c{bottom:81.365416px;}
.y29c{bottom:83.201595px;}
.y14f{bottom:85.055506px;}
.y21a{bottom:87.241467px;}
.y220{bottom:87.294664px;}
.y271{bottom:87.755708px;}
.y14a{bottom:89.025839px;}
.y1ab{bottom:90.165237px;}
.y28b{bottom:92.036880px;}
.y219{bottom:92.435687px;}
.y266{bottom:93.295190px;}
.y20d{bottom:93.301448px;}
.y269{bottom:94.171034px;}
.y232{bottom:94.867120px;}
.y13d{bottom:95.058353px;}
.y218{bottom:95.373365px;}
.y12d{bottom:96.954531px;}
.y1bf{bottom:98.003332px;}
.y23e{bottom:98.451164px;}
.y183{bottom:99.054763px;}
.y1d8{bottom:99.473735px;}
.y140{bottom:99.818997px;}
.y14c{bottom:99.865588px;}
.y274{bottom:100.178862px;}
.y24d{bottom:100.920843px;}
.ybf{bottom:101.637422px;}
.y2a4{bottom:104.189179px;}
.y134{bottom:104.684993px;}
.y157{bottom:109.290565px;}
.y27e{bottom:109.538124px;}
.y1e6{bottom:110.132683px;}
.y273{bottom:110.569736px;}
.y275{bottom:110.835723px;}
.yc1{bottom:111.767368px;}
.y1ec{bottom:113.643015px;}
.y177{bottom:113.932297px;}
.y2a5{bottom:114.557106px;}
.y27b{bottom:114.951392px;}
.y136{bottom:115.519874px;}
.y237{bottom:115.705891px;}
.y27c{bottom:117.841088px;}
.y258{bottom:119.342436px;}
.y2a3{bottom:119.613986px;}
.y191{bottom:120.682106px;}
.y26d{bottom:121.857664px;}
.y1e3{bottom:122.292283px;}
.y1e5{bottom:124.609673px;}
.y135{bottom:125.079757px;}
.y20f{bottom:125.479259px;}
.y231{bottom:127.352641px;}
.y263{bottom:128.110269px;}
.y14d{bottom:129.232630px;}
.y1d3{bottom:129.454112px;}
.y29e{bottom:129.536863px;}
.y1e7{bottom:129.555639px;}
.y1de{bottom:129.582411px;}
.y277{bottom:129.804588px;}
.y1e9{bottom:130.709987px;}
.y149{bottom:131.001008px;}
.y29a{bottom:131.104273px;}
.y1df{bottom:131.538545px;}
.y1bd{bottom:132.167873px;}
.y1cd{bottom:132.843445px;}
.y226{bottom:132.964443px;}
.y1d2{bottom:134.020046px;}
.y1f{bottom:134.047500px;}
.y203{bottom:135.065566px;}
.y14b{bottom:140.056037px;}
.y184{bottom:140.498305px;}
.y166{bottom:141.867182px;}
.y24b{bottom:141.902647px;}
.y251{bottom:143.321591px;}
.y16c{bottom:144.444647px;}
.y1e0{bottom:145.804484px;}
.y200{bottom:145.847250px;}
.y137{bottom:146.499874px;}
.y27d{bottom:147.619453px;}
.y210{bottom:148.540498px;}
.y1e8{bottom:149.000847px;}
.y156{bottom:149.047785px;}
.y167{bottom:149.095767px;}
.y1c9{bottom:149.968135px;}
.y192{bottom:150.810253px;}
.y1d0{bottom:151.432975px;}
.y176{bottom:151.510511px;}
.y261{bottom:153.027854px;}
.y2a2{bottom:153.731241px;}
.y211{bottom:154.246526px;}
.y28f{bottom:155.261796px;}
.y22a{bottom:155.414087px;}
.y15b{bottom:155.838623px;}
.y284{bottom:155.851140px;}
.y225{bottom:156.411972px;}
.y155{bottom:157.675845px;}
.y148{bottom:159.210224px;}
.y19b{bottom:159.542968px;}
.y239{bottom:159.557919px;}
.y27f{bottom:160.134050px;}
.y21b{bottom:160.657332px;}
.y15d{bottom:160.905586px;}
.y1f1{bottom:161.777606px;}
.y25a{bottom:162.660752px;}
.y1eb{bottom:164.056401px;}
.y20b{bottom:164.310914px;}
.y268{bottom:164.373847px;}
.y27a{bottom:164.599154px;}
.y1bc{bottom:164.672170px;}
.y216{bottom:165.506986px;}
.y18c{bottom:165.606775px;}
.y15c{bottom:167.485372px;}
.y1ca{bottom:167.513883px;}
.y264{bottom:168.409199px;}
.y262{bottom:168.582003px;}
.y26a{bottom:168.988807px;}
.y1ef{bottom:169.303819px;}
.y293{bottom:170.474161px;}
.y247{bottom:171.611473px;}
.y197{bottom:171.617036px;}
.y290{bottom:171.655282px;}
.y1fc{bottom:172.906638px;}
.y15a{bottom:173.497372px;}
.y245{bottom:174.024478px;}
.y292{bottom:174.387472px;}
.y227{bottom:174.441713px;}
.y1f8{bottom:174.925009px;}
.y25f{bottom:175.258101px;}
.y217{bottom:175.974354px;}
.y1f0{bottom:176.100915px;}
.y260{bottom:177.271952px;}
.y178{bottom:177.417289px;}
.y16b{bottom:177.544546px;}
.y13a{bottom:177.815053px;}
.y15e{bottom:177.937789px;}
.y86{bottom:178.882500px;}
.y145{bottom:179.247905px;}
.y16a{bottom:179.482947px;}
.y2ce{bottom:179.988000px;}
.y143{bottom:181.222814px;}
.y24a{bottom:182.228697px;}
.y19c{bottom:182.480428px;}
.y1c8{bottom:182.504419px;}
.y169{bottom:182.656710px;}
.y1ee{bottom:183.165040px;}
.y1d9{bottom:183.513083px;}
.y171{bottom:184.070091px;}
.y1e4{bottom:184.686903px;}
.ybc{bottom:184.725000px;}
.y1c1{bottom:186.197291px;}
.y2d1{bottom:186.310500px;}
.y279{bottom:186.645818px;}
.y19d{bottom:187.213605px;}
.y20e{bottom:188.494514px;}
.y2de{bottom:189.223500px;}
.y129{bottom:189.357000px;}
.y1fe{bottom:189.760125px;}
.y186{bottom:190.045583px;}
.y201{bottom:190.206913px;}
.y234{bottom:190.213867px;}
.y172{bottom:190.479159px;}
.y282{bottom:190.637360px;}
.y161{bottom:190.693687px;}
.y144{bottom:190.908215px;}
.y1a3{bottom:191.207928px;}
.y188{bottom:191.723213px;}
.yf2{bottom:192.136500px;}
.y363{bottom:192.337500px;}
.y202{bottom:192.495792px;}
.y1e{bottom:192.526500px;}
.y224{bottom:193.077834px;}
.y1db{bottom:193.359119px;}
.y233{bottom:193.370593px;}
.y1e2{bottom:193.420661px;}
.y1b8{bottom:194.293724px;}
.y62{bottom:194.413500px;}
.y1f6{bottom:194.991549px;}
.y19e{bottom:195.144535px;}
.y205{bottom:195.372275px;}
.y243{bottom:195.920591px;}
.y164{bottom:197.017917px;}
.y85{bottom:197.419500px;}
.y12e{bottom:197.893578px;}
.y2cd{bottom:197.920500px;}
.y13c{bottom:197.975818px;}
.y14e{bottom:198.132280px;}
.y146{bottom:198.141320px;}
.y320{bottom:198.424500px;}
.y1dd{bottom:198.478585px;}
.y272{bottom:198.633309px;}
.y299{bottom:198.966401px;}
.y28d{bottom:199.107913px;}
.y214{bottom:199.109652px;}
.y12c{bottom:199.283368px;}
.y342{bottom:199.390500px;}
.y1a4{bottom:199.749411px;}
.y163{bottom:199.856501px;}
.y13b{bottom:200.115187px;}
.y248{bottom:200.284514px;}
.y190{bottom:200.351967px;}
.y1d7{bottom:201.666603px;}
.y139{bottom:202.022643px;}
.y244{bottom:202.706908px;}
.y1f4{bottom:202.872758px;}
.y250{bottom:203.992337px;}
.yb2{bottom:204.243000px;}
.y2d0{bottom:204.244500px;}
.y17b{bottom:204.416873px;}
.y1d6{bottom:204.818114px;}
.y1a9{bottom:204.867139px;}
.y26b{bottom:205.287155px;}
.y1ff{bottom:205.845206px;}
.y289{bottom:205.884495px;}
.y21d{bottom:206.056257px;}
.y246{bottom:206.735306px;}
.y206{bottom:206.902547px;}
.y17a{bottom:207.097604px;}
.y2dd{bottom:207.156000px;}
.y138{bottom:207.163318px;}
.y128{bottom:207.289500px;}
.y1ed{bottom:208.111136px;}
.y61{bottom:208.611000px;}
.y1c2{bottom:208.854508px;}
.y1f9{bottom:209.288780px;}
.y21c{bottom:209.365273px;}
.y22d{bottom:209.771033px;}
.y1d4{bottom:209.869779px;}
.yf1{bottom:210.069000px;}
.y362{bottom:210.270000px;}
.y1fb{bottom:210.327346px;}
.y1d{bottom:210.459000px;}
.y1cb{bottom:210.896871px;}
.y207{bottom:210.987967px;}
.y204{bottom:211.566184px;}
.ybb{bottom:211.624500px;}
.y29b{bottom:211.707696px;}
.y287{bottom:212.846051px;}
.y2fa{bottom:212.911500px;}
.y341{bottom:213.588000px;}
.y1e1{bottom:213.764662px;}
.y28c{bottom:214.093234px;}
.y1cc{bottom:214.273688px;}
.y182{bottom:214.911013px;}
.y142{bottom:215.106766px;}
.y25c{bottom:215.461762px;}
.y1cf{bottom:215.651604px;}
.y22e{bottom:215.656820px;}
.y26c{bottom:215.710365px;}
.y2cc{bottom:215.854500px;}
.y297{bottom:216.047629px;}
.y1a5{bottom:216.102913px;}
.y1f3{bottom:216.136639px;}
.y21e{bottom:216.403669px;}
.y173{bottom:216.448870px;}
.y28e{bottom:216.901221px;}
.y2a0{bottom:216.995447px;}
.y1b2{bottom:218.589282px;}
.y147{bottom:218.965140px;}
.y1aa{bottom:219.433138px;}
.y276{bottom:220.394516px;}
.y252{bottom:221.939326px;}
.yb1{bottom:222.177000px;}
.y240{bottom:222.479645px;}
.y150{bottom:222.504679px;}
.y162{bottom:222.569698px;}
.y1c5{bottom:222.613160px;}
.y60{bottom:222.807000px;}
.y25b{bottom:222.870454px;}
.y1d5{bottom:222.994234px;}
.y1dc{bottom:223.525512px;}
.y17f{bottom:224.118333px;}
.y2dc{bottom:225.088500px;}
.y1da{bottom:225.519892px;}
.y212{bottom:226.409297px;}
.y285{bottom:226.760817px;}
.y165{bottom:227.474636px;}
.yf0{bottom:228.001500px;}
.y361{bottom:228.204000px;}
.y1fd{bottom:228.229134px;}
.y185{bottom:228.356391px;}
.y1c{bottom:228.391500px;}
.y17c{bottom:228.934956px;}
.y1f2{bottom:229.128970px;}
.y154{bottom:229.294473px;}
.y1b9{bottom:229.474231px;}
.yba{bottom:229.557000px;}
.y187{bottom:230.066356px;}
.y2f9{bottom:230.844000px;}
.y31a{bottom:231.301539px;}
.y19a{bottom:231.453661px;}
.y1b7{bottom:231.532240px;}
.y1a0{bottom:231.586480px;}
.y1ce{bottom:232.106980px;}
.y340{bottom:232.125000px;}
.y1f5{bottom:232.243277px;}
.y229{bottom:233.717853px;}
.y2cb{bottom:233.787000px;}
.y298{bottom:234.068677px;}
.y127{bottom:234.883500px;}
.y17d{bottom:235.490751px;}
.y193{bottom:235.838099px;}
.y208{bottom:236.081833px;}
.y5f{bottom:237.004500px;}
.y17e{bottom:237.632206px;}
.y1f7{bottom:237.681231px;}
.y3f{bottom:237.966000px;}
.y20a{bottom:239.293147px;}
.yb0{bottom:240.109500px;}
.y152{bottom:240.854299px;}
.y242{bottom:241.729100px;}
.y25d{bottom:241.800378px;}
.y1c3{bottom:241.891822px;}
.y33f{bottom:242.346000px;}
.y1c7{bottom:242.698127px;}
.y170{bottom:242.982194px;}
.y2db{bottom:243.022500px;}
.y18d{bottom:243.441500px;}
.y198{bottom:243.702271px;}
.y180{bottom:244.045794px;}
.y230{bottom:244.105250px;}
.y291{bottom:244.276316px;}
.y26e{bottom:245.701172px;}
.yef{bottom:245.934000px;}
.y360{bottom:246.136500px;}
.y1b{bottom:246.324000px;}
.yde{bottom:247.441500px;}
.yb9{bottom:247.489500px;}
.y22c{bottom:247.984834px;}
.y288{bottom:248.634677px;}
.y2f8{bottom:248.776500px;}
.y23b{bottom:249.736523px;}
.y84{bottom:249.777000px;}
.y24c{bottom:249.960787px;}
.y181{bottom:250.318565px;}
.y2ca{bottom:251.719500px;}
.y26f{bottom:252.323724px;}
.y151{bottom:253.168276px;}
.y16f{bottom:253.269803px;}
.y175{bottom:253.302834px;}
.y1ba{bottom:254.230138px;}
.y1c0{bottom:254.314627px;}
.y22f{bottom:254.671711px;}
.y5e{bottom:255.541500px;}
.y253{bottom:255.835795px;}
.y25e{bottom:255.897337px;}
.y3e{bottom:255.898500px;}
.yaf{bottom:258.042000px;}
.y286{bottom:258.575286px;}
.y270{bottom:259.464343px;}
.y179{bottom:259.644101px;}
.y223{bottom:259.983452px;}
.y168{bottom:260.135395px;}
.y33e{bottom:260.883000px;}
.y18a{bottom:260.891980px;}
.y2da{bottom:260.955000px;}
.y1ad{bottom:261.308519px;}
.y228{bottom:261.847099px;}
.y13e{bottom:262.976413px;}
.y209{bottom:263.477442px;}
.y295{bottom:263.641207px;}
.yee{bottom:263.868000px;}
.y35f{bottom:264.069000px;}
.y153{bottom:264.960363px;}
.ydd{bottom:265.374000px;}
.yb8{bottom:265.422000px;}
.y2f7{bottom:266.709000px;}
.y255{bottom:267.651872px;}
.y196{bottom:267.706112px;}
.y83{bottom:267.709500px;}
.y2c9{bottom:269.652000px;}
.y19f{bottom:269.706056px;}
.y213{bottom:269.894507px;}
.y189{bottom:270.824592px;}
.y1c4{bottom:273.390583px;}
.y3d{bottom:273.831000px;}
.y174{bottom:274.811962px;}
.y319{bottom:274.813500px;}
.y33d{bottom:275.445000px;}
.y199{bottom:275.472235px;}
.y21f{bottom:275.577239px;}
.yae{bottom:275.974500px;}
.y126{bottom:276.738000px;}
.y1ac{bottom:277.692965px;}
.y5d{bottom:278.032500px;}
.y2d9{bottom:278.887500px;}
.y1a{bottom:279.201000px;}
.y22b{bottom:279.270111px;}
.y249{bottom:279.796174px;}
.y1d1{bottom:280.840998px;}
.y1b5{bottom:281.027711px;}
.y1fa{bottom:281.194257px;}
.yed{bottom:281.800500px;}
.y35e{bottom:282.001500px;}
.ydc{bottom:283.306500px;}
.yb7{bottom:283.354500px;}
.y1c6{bottom:283.597179px;}
.y2f6{bottom:284.643000px;}
.y18b{bottom:284.765783px;}
.y82{bottom:285.643500px;}
.y33c{bottom:285.756000px;}
.y159{bottom:285.926390px;}
.y2c8{bottom:287.584500px;}
.y235{bottom:288.236825px;}
.y294{bottom:288.522631px;}
.y256{bottom:291.082364px;}
.y3c{bottom:291.765000px;}
.y318{bottom:292.746000px;}
.y1a6{bottom:292.975565px;}
.y1bb{bottom:293.337515px;}
.y254{bottom:293.553087px;}
.yad{bottom:293.907000px;}
.y125{bottom:294.670500px;}
.y23d{bottom:295.323203px;}
.y2d8{bottom:296.820000px;}
.y12b{bottom:297.512617px;}
.y1a8{bottom:299.153763px;}
.yec{bottom:299.733000px;}
.y35d{bottom:299.934000px;}
.ydb{bottom:301.239000px;}
.y194{bottom:301.363019px;}
.y81{bottom:303.576000px;}
.y33b{bottom:304.293000px;}
.y1a2{bottom:304.634832px;}
.y2c7{bottom:305.517000px;}
.y18f{bottom:308.055806px;}
.y280{bottom:309.792196px;}
.y1a1{bottom:310.262976px;}
.y59{bottom:310.908810px;}
.yb6{bottom:310.948500px;}
.yac{bottom:311.839500px;}
.y2cf{bottom:311.841000px;}
.y257{bottom:311.877673px;}
.y19{bottom:312.078000px;}
.y2f5{bottom:312.237000px;}
.y241{bottom:313.416572px;}
.y104{bottom:314.752500px;}
.yeb{bottom:317.665500px;}
.y35c{bottom:317.866500px;}
.yda{bottom:319.173000px;}
.y317{bottom:320.340000px;}
.y1b3{bottom:320.735211px;}
.y80{bottom:321.508500px;}
.y124{bottom:321.570000px;}
.y2c6{bottom:323.451000px;}
.y3b{bottom:324.511500px;}
.y195{bottom:325.713860px;}
.y1b4{bottom:326.662720px;}
.y2a6{bottom:327.092472px;}
.y33a{bottom:327.441000px;}
.y222{bottom:328.821908px;}
.y1ae{bottom:328.910918px;}
.y1af{bottom:329.573973px;}
.yab{bottom:329.773500px;}
.y18{bottom:330.010500px;}
.y2a1{bottom:331.056546px;}
.y1b6{bottom:331.173372px;}
.y103{bottom:332.685000px;}
.y158{bottom:335.019925px;}
.y35b{bottom:335.800500px;}
.y1b0{bottom:336.896089px;}
.yd9{bottom:337.105500px;}
.y1b1{bottom:337.624858px;}
.y7f{bottom:339.441000px;}
.y123{bottom:339.502500px;}
.y2c5{bottom:341.383500px;}
.yea{bottom:343.108500px;}
.y29d{bottom:345.337783px;}
.y339{bottom:345.373500px;}
.yaa{bottom:347.706000px;}
.y102{bottom:350.619000px;}
.yb5{bottom:352.803000px;}
.y1be{bottom:353.407792px;}
.y35a{bottom:353.733000px;}
.y1ea{bottom:354.162290px;}
.y281{bottom:354.357347px;}
.yd8{bottom:355.038000px;}
.y18e{bottom:356.963324px;}
.y7e{bottom:357.373500px;}
.y296{bottom:358.779684px;}
.y2c4{bottom:359.316000px;}
.y221{bottom:361.117935px;}
.y316{bottom:362.194500px;}
.y17{bottom:362.887500px;}
.ya9{bottom:365.638500px;}
.y132{bottom:365.998500px;}
.y122{bottom:366.402000px;}
.y101{bottom:368.551500px;}
.y12f{bottom:369.116829px;}
.y2f4{bottom:369.208500px;}
.yb4{bottom:370.735500px;}
.y359{bottom:371.665500px;}
.y338{bottom:372.273000px;}
.yd7{bottom:372.970500px;}
.y3a{bottom:373.953000px;}
.y7d{bottom:375.306000px;}
.y2c3{bottom:377.248500px;}
.y315{bottom:380.127000px;}
.y2a8{bottom:381.228000px;}
.ye9{bottom:382.711500px;}
.ya8{bottom:383.571000px;}
.y131{bottom:383.931000px;}
.y121{bottom:384.334500px;}
.y100{bottom:386.484000px;}
.y2f3{bottom:387.141000px;}
.y358{bottom:389.598000px;}
.y337{bottom:390.205500px;}
.yd6{bottom:390.903000px;}
.y39{bottom:391.885500px;}
.y7c{bottom:393.240000px;}
.y2c2{bottom:395.181000px;}
.yb3{bottom:398.329500px;}
.y2a7{bottom:399.160500px;}
.ye8{bottom:400.645500px;}
.ya7{bottom:401.503500px;}
.yff{bottom:404.416500px;}
.y2f2{bottom:405.075000px;}
.y357{bottom:407.530500px;}
.y336{bottom:408.139500px;}
.yd5{bottom:408.835500px;}
.y38{bottom:409.818000px;}
.y7b{bottom:411.172500px;}
.y120{bottom:411.234000px;}
.y16{bottom:412.329000px;}
.y2c1{bottom:413.113500px;}
.y12a{bottom:416.807454px;}
.ya6{bottom:419.436000px;}
.ye0{bottom:419.437500px;}
.y58{bottom:421.732500px;}
.yfe{bottom:422.349000px;}
.y2f1{bottom:423.007500px;}
.y356{bottom:425.463000px;}
.y335{bottom:426.072000px;}
.yd4{bottom:426.769500px;}
.y15{bottom:428.767500px;}
.y7a{bottom:429.105000px;}
.y11f{bottom:429.166500px;}
.y2c0{bottom:431.047500px;}
.y133{bottom:432.038405px;}
.y314{bottom:434.110500px;}
.y37{bottom:436.717500px;}
.ya5{bottom:437.370000px;}
.yfd{bottom:440.281500px;}
.y2f0{bottom:440.940000px;}
.y355{bottom:443.397000px;}
.y334{bottom:444.004500px;}
.yd3{bottom:444.702000px;}
.y14{bottom:445.206000px;}
.y79{bottom:447.037500px;}
.y11e{bottom:447.099000px;}
.y57{bottom:448.632000px;}
.y2bf{bottom:448.980000px;}
.y312{bottom:452.043000px;}
.y36{bottom:454.650000px;}
.ya4{bottom:455.302500px;}
.ye7{bottom:458.215500px;}
.y2ef{bottom:458.872500px;}
.y354{bottom:461.329500px;}
.y13{bottom:461.644500px;}
.y333{bottom:461.937000px;}
.yd2{bottom:462.634500px;}
.y78{bottom:464.970000px;}
.y11d{bottom:465.033000px;}
.y56{bottom:466.564500px;}
.y2be{bottom:466.912500px;}
.y311{bottom:469.975500px;}
.y35{bottom:472.584000px;}
.ya3{bottom:473.235000px;}
.ye6{bottom:476.148000px;}
.y2ee{bottom:476.805000px;}
.y12{bottom:478.083000px;}
.y353{bottom:479.262000px;}
.y332{bottom:479.869500px;}
.yd1{bottom:480.567000px;}
.y77{bottom:482.902500px;}
.y11c{bottom:482.965500px;}
.y55{bottom:484.497000px;}
.y2bd{bottom:484.845000px;}
.y310{bottom:487.908000px;}
.y313{bottom:487.909500px;}
.y34{bottom:490.516500px;}
.ya2{bottom:491.167500px;}
.ye5{bottom:494.080500px;}
.y11{bottom:494.521500px;}
.y2ed{bottom:494.737500px;}
.y352{bottom:497.194500px;}
.y331{bottom:497.802000px;}
.yd0{bottom:498.499500px;}
.y76{bottom:500.836500px;}
.y11b{bottom:500.898000px;}
.y54{bottom:502.429500px;}
.y2bc{bottom:502.777500px;}
.y30f{bottom:505.842000px;}
.y33{bottom:508.449000px;}
.ya1{bottom:509.100000px;}
.y10{bottom:510.960000px;}
.ye4{bottom:512.013000px;}
.y2ec{bottom:512.671500px;}
.y351{bottom:515.127000px;}
.ycf{bottom:516.432000px;}
.y75{bottom:518.769000px;}
.y2bb{bottom:520.710000px;}
.y30e{bottom:523.774500px;}
.y330{bottom:524.701500px;}
.ya0{bottom:527.032500px;}
.ydf{bottom:527.034000px;}
.yf{bottom:527.398500px;}
.y11a{bottom:528.492000px;}
.yfc{bottom:529.945500px;}
.y2eb{bottom:530.604000px;}
.y350{bottom:533.059500px;}
.yce{bottom:534.366000px;}
.y32{bottom:535.348500px;}
.y74{bottom:536.701500px;}
.ye3{bottom:537.456000px;}
.y53{bottom:538.294500px;}
.y2ba{bottom:538.644000px;}
.y30d{bottom:541.707000px;}
.y32f{bottom:542.634000px;}
.ye{bottom:543.837000px;}
.y9f{bottom:544.966500px;}
.yfb{bottom:547.878000px;}
.y2ea{bottom:548.536500px;}
.y34f{bottom:550.993500px;}
.ycd{bottom:552.298500px;}
.y31{bottom:553.281000px;}
.y73{bottom:554.634000px;}
.y2d7{bottom:555.388500px;}
.y52{bottom:556.228500px;}
.y2b9{bottom:556.576500px;}
.y30c{bottom:559.639500px;}
.yd{bottom:560.275500px;}
.y32e{bottom:560.566500px;}
.y9e{bottom:562.899000px;}
.yfa{bottom:565.812000px;}
.y2e9{bottom:566.469000px;}
.y72{bottom:572.566500px;}
.y51{bottom:574.161000px;}
.y2b8{bottom:574.509000px;}
.y34e{bottom:574.773000px;}
.yc{bottom:576.714000px;}
.ye2{bottom:577.059000px;}
.y30b{bottom:577.572000px;}
.ycc{bottom:577.741500px;}
.y32d{bottom:578.500500px;}
.y30{bottom:580.180500px;}
.y9d{bottom:580.831500px;}
.y119{bottom:582.475500px;}
.yf9{bottom:583.744500px;}
.y2e8{bottom:584.401500px;}
.y71{bottom:590.499000px;}
.y2b7{bottom:592.441500px;}
.yb{bottom:593.151000px;}
.ye1{bottom:594.993000px;}
.y32c{bottom:596.433000px;}
.y2f{bottom:598.113000px;}
.y9c{bottom:598.764000px;}
.y118{bottom:600.408000px;}
.yf8{bottom:601.677000px;}
.y2e7{bottom:602.334000px;}
.y30a{bottom:603.015000px;}
.y70{bottom:608.433000px;}
.y50{bottom:610.026000px;}
.y2b6{bottom:610.374000px;}
.y2d6{bottom:612.925500px;}
.y32b{bottom:614.365500px;}
.y2e{bottom:616.045500px;}
.ycb{bottom:616.507500px;}
.y9b{bottom:616.696500px;}
.ya{bottom:617.809500px;}
.y117{bottom:618.340500px;}
.yf7{bottom:619.609500px;}
.y2e6{bottom:620.268000px;}
.y34d{bottom:624.214500px;}
.y6f{bottom:626.365500px;}
.y4f{bottom:627.958500px;}
.y2b5{bottom:628.306500px;}
.y2d5{bottom:630.858000px;}
.y2d{bottom:633.978000px;}
.y9a{bottom:634.630500px;}
.y116{bottom:636.273000px;}
.yf6{bottom:637.542000px;}
.y2e5{bottom:638.200500px;}
.y309{bottom:641.961000px;}
.y34c{bottom:642.148500px;}
.y6e{bottom:644.298000px;}
.y4e{bottom:645.891000px;}
.y2b4{bottom:646.240500px;}
.y32a{bottom:647.112000px;}
.y2d4{bottom:648.790500px;}
.yca{bottom:650.071500px;}
.y2c{bottom:651.910500px;}
.y99{bottom:652.563000px;}
.y115{bottom:654.207000px;}
.y2e4{bottom:656.133000px;}
.y9{bottom:656.664000px;}
.y34b{bottom:660.081000px;}
.y6d{bottom:662.230500px;}
.yf5{bottom:662.985000px;}
.y2d3{bottom:666.723000px;}
.y2b{bottom:669.843000px;}
.y98{bottom:670.495500px;}
.y2b3{bottom:671.683500px;}
.y114{bottom:672.139500px;}
.y2e3{bottom:674.065500px;}
.y308{bottom:675.525000px;}
.yc9{bottom:676.971000px;}
.y6c{bottom:680.163000px;}
.y4d{bottom:681.757500px;}
.y2d2{bottom:684.655500px;}
.y97{bottom:688.428000px;}
.y113{bottom:690.072000px;}
.y2e2{bottom:691.998000px;}
.y34a{bottom:692.827500px;}
.yc8{bottom:694.903500px;}
.y329{bottom:696.553500px;}
.y2a{bottom:697.437000px;}
.y6b{bottom:698.095500px;}
.y4c{bottom:699.690000px;}
.y8{bottom:700.270500px;}
.yf4{bottom:702.589500px;}
.y96{bottom:706.360500px;}
.y2b2{bottom:707.715000px;}
.y112{bottom:708.004500px;}
.y2e1{bottom:709.930500px;}
.yc7{bottom:712.836000px;}
.y328{bottom:714.487500px;}
.y6a{bottom:716.029500px;}
.yf3{bottom:720.522000px;}
.y7{bottom:721.191000px;}
.y95{bottom:724.293000px;}
.y2b1{bottom:725.647500px;}
.y111{bottom:725.937000px;}
.y4b{bottom:726.589500px;}
.y307{bottom:729.508500px;}
.y29{bottom:733.173000px;}
.y69{bottom:733.962000px;}
.y2e0{bottom:735.373500px;}
.yc6{bottom:739.735500px;}
.y6{bottom:742.113000px;}
.y94{bottom:742.227000px;}
.y349{bottom:742.269000px;}
.y2b0{bottom:743.580000px;}
.y110{bottom:743.869500px;}
.y306{bottom:747.442500px;}
.y327{bottom:750.352500px;}
.y36b{bottom:752.727000px;}
.yc5{bottom:757.668000px;}
.y68{bottom:759.405000px;}
.y93{bottom:760.159500px;}
.y348{bottom:760.203000px;}
.y2af{bottom:761.512500px;}
.y10f{bottom:761.803500px;}
.y5{bottom:763.035000px;}
.y305{bottom:765.375000px;}
.y36a{bottom:770.659500px;}
.y2df{bottom:774.319500px;}
.yc4{bottom:775.600500px;}
.y92{bottom:778.092000px;}
.y347{bottom:778.135500px;}
.y10e{bottom:779.736000px;}
.y4a{bottom:780.573000px;}
.y28{bottom:782.614500px;}
.y326{bottom:783.229597px;}
.y304{bottom:783.307500px;}
.y369{bottom:788.593500px;}
.yc3{bottom:793.534500px;}
.y91{bottom:796.024500px;}
.y346{bottom:796.068000px;}
.y10d{bottom:797.668500px;}
.y67{bottom:798.351000px;}
.y49{bottom:798.505500px;}
.y303{bottom:801.240000px;}
.y368{bottom:806.526000px;}
.y90{bottom:813.957000px;}
.y345{bottom:814.000500px;}
.y27{bottom:815.491500px;}
.y10c{bottom:815.601000px;}
.y48{bottom:816.438000px;}
.y2ae{bottom:819.082500px;}
.y302{bottom:819.172500px;}
.y4{bottom:824.458500px;}
.y66{bottom:825.945000px;}
.y325{bottom:826.741500px;}
.y8f{bottom:831.889500px;}
.y344{bottom:831.933000px;}
.y10b{bottom:833.533500px;}
.y47{bottom:834.370500px;}
.y2ad{bottom:837.016500px;}
.y301{bottom:837.105000px;}
.yc2{bottom:841.444500px;}
.y367{bottom:842.391000px;}
.y324{bottom:844.674000px;}
.y26{bottom:848.368500px;}
.y8e{bottom:849.823500px;}
.y10a{bottom:851.466000px;}
.y46{bottom:852.303000px;}
.y2ac{bottom:854.949000px;}
.y300{bottom:855.039000px;}
.y3{bottom:857.335500px;}
.y366{bottom:860.323500px;}
.y323{bottom:862.606500px;}
.y343{bottom:864.679500px;}
.y8d{bottom:867.756000px;}
.y65{bottom:867.799500px;}
.y109{bottom:869.400000px;}
.y45{bottom:870.237000px;}
.y2ab{bottom:872.881500px;}
.y2ff{bottom:872.971500px;}
.ybd{bottom:874.320533px;}
.y365{bottom:878.256000px;}
.y322{bottom:880.539000px;}
.y25{bottom:881.245500px;}
.y8c{bottom:885.688500px;}
.y64{bottom:885.732000px;}
.y108{bottom:887.332500px;}
.y44{bottom:888.169500px;}
.y2{bottom:890.211000px;}
.y2fe{bottom:890.904000px;}
.y364{bottom:896.190000px;}
.y2aa{bottom:898.324500px;}
.y8b{bottom:903.621000px;}
.y107{bottom:905.265000px;}
.y43{bottom:906.102000px;}
.y321{bottom:908.133000px;}
.y2fd{bottom:908.836500px;}
.y24{bottom:914.122500px;}
.y63{bottom:918.478500px;}
.y8a{bottom:921.553500px;}
.y1{bottom:923.088000px;}
.y42{bottom:924.034500px;}
.y2fc{bottom:926.769000px;}
.y106{bottom:930.708000px;}
.y23{bottom:932.055000px;}
.y2a9{bottom:937.270500px;}
.y89{bottom:939.486000px;}
.y41{bottom:949.477500px;}
.y22{bottom:949.987500px;}
.y2fb{bottom:952.212000px;}
.y88{bottom:957.420000px;}
.y21{bottom:967.920000px;}
.y105{bottom:970.311000px;}
.y87{bottom:982.861500px;}
.y20{bottom:985.852500px;}
.y40{bottom:988.243500px;}
.h15{height:3.786833px;}
.h16{height:5.829891px;}
.h13{height:21.106507px;}
.h19{height:22.266293px;}
.h17{height:22.500675px;}
.hd{height:24.209280px;}
.hc{height:29.161574px;}
.h1b{height:34.902414px;}
.he{height:35.865450px;}
.h18{height:37.609527px;}
.h3{height:37.658880px;}
.h4{height:40.348800px;}
.h10{height:41.049289px;}
.ha{height:41.484266px;}
.h6{height:41.842920px;}
.h7{height:44.831700px;}
.h11{height:44.837700px;}
.h9{height:49.898047px;}
.h1a{height:49.904047px;}
.h8{height:50.211840px;}
.h2{height:53.798400px;}
.h5{height:60.254040px;}
.h1{height:77.366008px;}
.hb{height:89.812290px;}
.hf{height:126.477225px;}
.h14{height:369.480510px;}
.h12{height:399.949290px;}
.h0{height:1188.000000px;}
.w5{width:69.752093px;}
.w4{width:515.545920px;}
.w2{width:515.563650px;}
.w1{width:515.563680px;}
.w3{width:515.567385px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7f{left:3.041986px;}
.xc4{left:7.822501px;}
.x9f{left:11.781308px;}
.x30{left:13.694371px;}
.x13{left:20.532885px;}
.x22{left:34.240420px;}
.x14{left:39.507124px;}
.xb5{left:44.091243px;}
.x21{left:47.504387px;}
.xc2{left:52.589469px;}
.x9a{left:54.620500px;}
.x7d{left:56.424343px;}
.x9e{left:59.173222px;}
.x59{left:60.225348px;}
.x6a{left:61.589357px;}
.x8a{left:65.058661px;}
.x80{left:67.359013px;}
.x54{left:68.740406px;}
.x92{left:69.829388px;}
.x86{left:73.216636px;}
.xb7{left:75.694660px;}
.x4d{left:77.063537px;}
.x15{left:79.362398px;}
.x6b{left:82.804334px;}
.x6c{left:84.476401px;}
.x8c{left:85.541739px;}
.x78{left:88.290966px;}
.x77{left:89.622639px;}
.xa1{left:94.033154px;}
.x41{left:95.499038px;}
.x23{left:97.426233px;}
.xb4{left:98.860904px;}
.xb3{left:99.922765px;}
.x31{left:101.412002px;}
.x2f{left:104.817665px;}
.x79{left:106.713602px;}
.xa3{left:108.658610px;}
.x75{left:109.801832px;}
.xad{left:111.955804px;}
.xa7{left:114.226255px;}
.x88{left:115.822176px;}
.x64{left:116.966442px;}
.x81{left:119.036967px;}
.x73{left:120.148201px;}
.x76{left:121.214931px;}
.x43{left:123.362992px;}
.x74{left:124.526728px;}
.x3d{left:125.734970px;}
.xa9{left:127.354882px;}
.x94{left:130.050912px;}
.x97{left:131.161450px;}
.x17{left:132.225137px;}
.x37{left:134.327912px;}
.x6d{left:135.446100px;}
.x38{left:137.433178px;}
.xb9{left:138.749205px;}
.x16{left:141.006581px;}
.x6e{left:142.136105px;}
.x3b{left:144.316503px;}
.x95{left:145.569249px;}
.x71{left:146.743068px;}
.x60{left:147.965565px;}
.x5a{left:149.590345px;}
.x51{left:150.726613px;}
.x96{left:152.303412px;}
.x3a{left:154.031110px;}
.x5b{left:155.101663px;}
.x6f{left:156.178128px;}
.x98{left:157.551872px;}
.x42{left:158.748292px;}
.x46{left:160.020161px;}
.x72{left:161.345228px;}
.xb6{left:163.227303px;}
.x8d{left:165.771390px;}
.x39{left:167.417727px;}
.x68{left:169.191668px;}
.xa0{left:171.398838px;}
.xb2{left:174.198828px;}
.x44{left:175.582656px;}
.x70{left:176.860784px;}
.x36{left:177.954633px;}
.x8b{left:179.240063px;}
.x62{left:180.950376px;}
.x91{left:182.544211px;}
.xac{left:183.742022px;}
.x58{left:184.794843px;}
.x82{left:186.179018px;}
.x49{left:187.401515px;}
.x9b{left:188.628532px;}
.x4c{left:191.656958px;}
.x5f{left:193.456629px;}
.x5c{left:195.306368px;}
.x55{left:196.428033px;}
.x50{left:197.711376px;}
.x10{left:198.904500px;}
.xf{left:200.115000px;}
.x4{left:201.262500px;}
.x57{left:205.169788px;}
.x45{left:207.193028px;}
.x12{left:208.498500px;}
.x5d{left:210.144265px;}
.x9c{left:211.478025px;}
.x35{left:212.885495px;}
.x7b{left:214.314871px;}
.x8{left:216.639000px;}
.x7e{left:218.115528px;}
.x7a{left:219.363754px;}
.xc5{left:221.574000px;}
.xd{left:223.068000px;}
.x4a{left:225.209208px;}
.x2{left:226.428000px;}
.xbd{left:227.505040px;}
.x61{left:229.966723px;}
.xb1{left:231.457293px;}
.x89{left:232.545579px;}
.xb8{left:233.862649px;}
.x47{left:235.070890px;}
.x4e{left:236.079902px;}
.xc{left:238.012500px;}
.x9d{left:239.488359px;}
.x2a{left:241.897500px;}
.x3f{left:244.560538px;}
.x56{left:246.572303px;}
.x4b{left:247.746123px;}
.x1a{left:249.027177px;}
.x5{left:250.075500px;}
.x1{left:252.909000px;}
.x34{left:254.024109px;}
.x4f{left:255.702782px;}
.x7c{left:257.128681px;}
.xb{left:258.187500px;}
.x87{left:261.006179px;}
.x2e{left:262.251000px;}
.xaa{left:264.345792px;}
.x48{left:265.713278px;}
.x53{left:267.082154px;}
.x3e{left:269.257684px;}
.x19{left:271.464181px;}
.x3{left:273.541500px;}
.x5e{left:277.566906px;}
.xab{left:278.709781px;}
.x7{left:280.005000px;}
.x32{left:281.276371px;}
.xa2{left:283.150198px;}
.xbf{left:285.862500px;}
.x8f{left:291.385361px;}
.xa8{left:292.871411px;}
.x8e{left:294.747923px;}
.x18{left:296.356990px;}
.x90{left:299.049261px;}
.xb0{left:300.579121px;}
.x27{left:305.200500px;}
.xaf{left:307.162731px;}
.xc3{left:310.443000px;}
.xae{left:312.771752px;}
.x67{left:314.383320px;}
.x52{left:315.923610px;}
.xa5{left:319.029920px;}
.x11{left:321.421500px;}
.x6{left:323.241000px;}
.x26{left:326.697000px;}
.x24{left:334.469202px;}
.xbe{left:335.739000px;}
.x1d{left:342.180000px;}
.x65{left:352.381550px;}
.x2c{left:354.201000px;}
.x2d{left:358.543500px;}
.x2b{left:359.992500px;}
.xba{left:368.651604px;}
.x99{left:370.907452px;}
.x66{left:378.451049px;}
.x69{left:389.488289px;}
.x3c{left:399.324589px;}
.x25{left:407.124968px;}
.xbc{left:410.070808px;}
.xa4{left:416.083156px;}
.x9{left:417.441000px;}
.xc1{left:423.559967px;}
.x1c{left:425.588027px;}
.xa{left:427.999500px;}
.x1b{left:430.231828px;}
.x63{left:434.960230px;}
.x93{left:442.912022px;}
.x20{left:450.964500px;}
.xe{left:454.699500px;}
.x40{left:460.414656px;}
.x1f{left:465.654000px;}
.x1e{left:467.403000px;}
.x33{left:468.950312px;}
.x83{left:473.887849px;}
.xa6{left:484.126433px;}
.xbb{left:492.115428px;}
.x84{left:501.178107px;}
.x85{left:502.361661px;}
.xc0{left:556.311000px;}
.x29{left:599.028000px;}
.x28{left:600.777000px;}
@media print{
.v2{vertical-align:-15.434667pt;}
.v6{vertical-align:-4.000120pt;}
.v4{vertical-align:-2.809996pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.816051pt;}
.v5{vertical-align:11.906608pt;}
.v1{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000414pt;}
.ls9{letter-spacing:0.001473pt;}
.ls8{letter-spacing:0.001634pt;}
.lsa{letter-spacing:0.958327pt;}
.ls3{letter-spacing:2.655508pt;}
.ls4{letter-spacing:2.659661pt;}
.ls2{letter-spacing:17.692785pt;}
.ls6{letter-spacing:18.820842pt;}
.ls5{letter-spacing:20.346175pt;}
.ls0{letter-spacing:26.566933pt;}
.ws1a{word-spacing:-28.013572pt;}
.ws18{word-spacing:-27.701139pt;}
.ws2{word-spacing:-25.708331pt;}
.ws11{word-spacing:-21.423659pt;}
.ws4{word-spacing:-17.853099pt;}
.ws56{word-spacing:-15.224139pt;}
.ws30{word-spacing:-14.877483pt;}
.wse5{word-spacing:-11.902016pt;}
.ws1c{word-spacing:-11.024368pt;}
.ws1b{word-spacing:-11.023850pt;}
.ws17{word-spacing:-11.023331pt;}
.ws2d{word-spacing:-3.134898pt;}
.ws2c{word-spacing:-3.081764pt;}
.ws88{word-spacing:-2.975497pt;}
.wsf6{word-spacing:-2.922363pt;}
.ws101{word-spacing:-2.444158pt;}
.ws74{word-spacing:-2.391024pt;}
.wsd6{word-spacing:-2.178489pt;}
.wsf7{word-spacing:-2.072221pt;}
.ws4f{word-spacing:-1.859685pt;}
.ws50{word-spacing:-1.820829pt;}
.wsdd{word-spacing:-1.647150pt;}
.wse2{word-spacing:-1.434614pt;}
.wsf9{word-spacing:-1.381481pt;}
.wsd8{word-spacing:-1.168945pt;}
.ws33{word-spacing:-0.956410pt;}
.wsd4{word-spacing:-0.690740pt;}
.wsf8{word-spacing:-0.371937pt;}
.ws7d{word-spacing:-0.265669pt;}
.wsff{word-spacing:-0.212535pt;}
.wsb6{word-spacing:-0.106268pt;}
.wsd3{word-spacing:-0.053134pt;}
.wsca{word-spacing:-0.044001pt;}
.wscc{word-spacing:-0.026667pt;}
.ws83{word-spacing:-0.004430pt;}
.ws19{word-spacing:0.000000pt;}
.wsc7{word-spacing:0.318803pt;}
.wsc2{word-spacing:0.371937pt;}
.wsfe{word-spacing:0.387875pt;}
.ws63{word-spacing:0.531339pt;}
.ws54{word-spacing:0.850142pt;}
.wsdc{word-spacing:1.275213pt;}
.ws25{word-spacing:1.381481pt;}
.wsc5{word-spacing:1.594016pt;}
.ws4b{word-spacing:1.647150pt;}
.ws49{word-spacing:1.657781pt;}
.wsc1{word-spacing:1.859685pt;}
.ws105{word-spacing:1.912819pt;}
.ws1{word-spacing:1.928125pt;}
.ws0{word-spacing:2.019940pt;}
.wse8{word-spacing:2.082853pt;}
.wsd0{word-spacing:2.178489pt;}
.wse9{word-spacing:2.284756pt;}
.ws4c{word-spacing:2.391024pt;}
.ws4d{word-spacing:2.444158pt;}
.ws7c{word-spacing:2.497292pt;}
.ws31{word-spacing:2.762961pt;}
.ws27{word-spacing:2.816095pt;}
.ws45{word-spacing:2.820058pt;}
.ws26{word-spacing:2.869229pt;}
.ws44{word-spacing:2.922363pt;}
.ws3{word-spacing:2.933009pt;}
.ws10{word-spacing:3.012710pt;}
.ws29{word-spacing:3.028630pt;}
.ws4a{word-spacing:3.145533pt;}
.wsd7{word-spacing:3.241166pt;}
.wsb5{word-spacing:3.559969pt;}
.ws106{word-spacing:3.561529pt;}
.ws2b{word-spacing:3.613103pt;}
.ws82{word-spacing:3.719371pt;}
.ws7e{word-spacing:3.772505pt;}
.ws80{word-spacing:3.878772pt;}
.ws2f{word-spacing:3.931906pt;}
.ws32{word-spacing:3.985040pt;}
.ws52{word-spacing:4.038174pt;}
.ws2a{word-spacing:4.144442pt;}
.ws51{word-spacing:4.197575pt;}
.ws5a{word-spacing:4.250709pt;}
.wsf1{word-spacing:4.303843pt;}
.ws7f{word-spacing:4.356977pt;}
.wsc9{word-spacing:4.410111pt;}
.wsb{word-spacing:4.495155pt;}
.wse7{word-spacing:4.505763pt;}
.wscf{word-spacing:4.516379pt;}
.wsea{word-spacing:4.569513pt;}
.wsfd{word-spacing:4.622646pt;}
.wsd9{word-spacing:4.675780pt;}
.ws34{word-spacing:4.835182pt;}
.ws24{word-spacing:4.994583pt;}
.wsda{word-spacing:5.047717pt;}
.wscd{word-spacing:5.313387pt;}
.ws1f{word-spacing:5.419654pt;}
.wse6{word-spacing:5.780979pt;}
.ws4e{word-spacing:5.993540pt;}
.ws21{word-spacing:6.057301pt;}
.wse{word-spacing:6.216704pt;}
.wsc3{word-spacing:6.322930pt;}
.wse3{word-spacing:6.429198pt;}
.ws2e{word-spacing:6.482332pt;}
.wsf2{word-spacing:6.535466pt;}
.wse4{word-spacing:6.546109pt;}
.ws22{word-spacing:6.907403pt;}
.wsd{word-spacing:7.125299pt;}
.wsf0{word-spacing:7.192228pt;}
.wsdb{word-spacing:7.248101pt;}
.ws59{word-spacing:7.279340pt;}
.wsf{word-spacing:7.316582pt;}
.ws79{word-spacing:7.491875pt;}
.ws8b{word-spacing:7.598143pt;}
.wsec{word-spacing:7.651277pt;}
.ws23{word-spacing:7.810678pt;}
.wsc4{word-spacing:7.970080pt;}
.wseb{word-spacing:8.023214pt;}
.wsf4{word-spacing:8.342017pt;}
.ws8{word-spacing:8.512102pt;}
.ws46{word-spacing:8.660820pt;}
.ws104{word-spacing:8.713954pt;}
.ws7b{word-spacing:8.767088pt;}
.wsd1{word-spacing:8.873356pt;}
.ws53{word-spacing:9.192159pt;}
.wsce{word-spacing:9.298427pt;}
.wsef{word-spacing:9.404694pt;}
.wsd5{word-spacing:9.510962pt;}
.ws41{word-spacing:9.606627pt;}
.wse1{word-spacing:10.042301pt;}
.wse0{word-spacing:10.102433pt;}
.wsf3{word-spacing:10.201702pt;}
.wsfc{word-spacing:10.520506pt;}
.ws28{word-spacing:10.626773pt;}
.ws7a{word-spacing:11.264380pt;}
.ws81{word-spacing:11.476915pt;}
.wsf5{word-spacing:11.530049pt;}
.ws9{word-spacing:11.668275pt;}
.ws13{word-spacing:11.689451pt;}
.wsdf{word-spacing:11.921875pt;}
.wsde{word-spacing:11.921879pt;}
.ws100{word-spacing:11.955120pt;}
.ws58{word-spacing:12.433325pt;}
.wsc{word-spacing:12.624691pt;}
.ws103{word-spacing:12.752128pt;}
.wsb4{word-spacing:12.858396pt;}
.ws3f{word-spacing:12.964663pt;}
.ws3e{word-spacing:13.017797pt;}
.ws42{word-spacing:13.984869pt;}
.ws16{word-spacing:15.561631pt;}
.wsed{word-spacing:16.471499pt;}
.ws55{word-spacing:17.109105pt;}
.ws7{word-spacing:17.167667pt;}
.wsfa{word-spacing:17.215373pt;}
.ws43{word-spacing:17.555474pt;}
.ws40{word-spacing:17.980546pt;}
.wsee{word-spacing:19.872066pt;}
.ws102{word-spacing:19.925200pt;}
.wsb3{word-spacing:20.137735pt;}
.ws5{word-spacing:20.180378pt;}
.ws6{word-spacing:20.993331pt;}
.wsfb{word-spacing:22.156822pt;}
.wsb2{word-spacing:22.475626pt;}
.ws57{word-spacing:23.910240pt;}
.ws86{word-spacing:24.609249pt;}
.ws47{word-spacing:26.248130pt;}
.wscb{word-spacing:28.310017pt;}
.wsa{word-spacing:31.466086pt;}
.ws5b{word-spacing:35.280887pt;}
.wsd2{word-spacing:43.459304pt;}
.ws89{word-spacing:48.830023pt;}
.ws5e{word-spacing:48.883157pt;}
.wsb0{word-spacing:51.646118pt;}
.ws87{word-spacing:89.727307pt;}
.wsb7{word-spacing:96.809905pt;}
.ws85{word-spacing:112.059699pt;}
.wsc6{word-spacing:122.792366pt;}
.wsaf{word-spacing:131.665722pt;}
.ws8a{word-spacing:147.238406pt;}
.ws75{word-spacing:149.197790pt;}
.ws84{word-spacing:152.026369pt;}
.wsa5{word-spacing:153.828033pt;}
.ws64{word-spacing:173.861127pt;}
.wsb1{word-spacing:178.854084pt;}
.ws9d{word-spacing:190.490401pt;}
.ws5c{word-spacing:199.362508pt;}
.wsa6{word-spacing:200.638970pt;}
.wsaa{word-spacing:206.802498pt;}
.ws9c{word-spacing:209.193522pt;}
.ws9e{word-spacing:213.816169pt;}
.ws72{word-spacing:215.193942pt;}
.ws9b{word-spacing:222.636390pt;}
.ws5d{word-spacing:223.910354pt;}
.wsa7{word-spacing:228.374848pt;}
.wsae{word-spacing:231.775415pt;}
.ws61{word-spacing:232.993312pt;}
.ws98{word-spacing:236.398062pt;}
.ws69{word-spacing:237.674901pt;}
.ws76{word-spacing:238.994025pt;}
.wsad{word-spacing:246.334095pt;}
.ws99{word-spacing:252.338222pt;}
.ws9a{word-spacing:258.236081pt;}
.ws91{word-spacing:259.830097pt;}
.ws92{word-spacing:261.796050pt;}
.wsac{word-spacing:267.534508pt;}
.ws97{word-spacing:272.794761pt;}
.wsab{word-spacing:282.040053pt;}
.ws60{word-spacing:282.142139pt;}
.wsa4{word-spacing:282.146321pt;}
.ws71{word-spacing:282.248882pt;}
.ws94{word-spacing:286.822101pt;}
.wsa1{word-spacing:295.266698pt;}
.ws95{word-spacing:301.433915pt;}
.ws6f{word-spacing:302.285683pt;}
.ws96{word-spacing:302.655994pt;}
.wsa0{word-spacing:302.974797pt;}
.ws62{word-spacing:311.259498pt;}
.wsa9{word-spacing:313.335901pt;}
.ws6b{word-spacing:315.994221pt;}
.ws8f{word-spacing:316.417665pt;}
.ws90{word-spacing:332.357825pt;}
.ws67{word-spacing:334.537940pt;}
.ws93{word-spacing:339.743433pt;}
.ws6e{word-spacing:341.121206pt;}
.wsa8{word-spacing:343.037732pt;}
.ws9f{word-spacing:350.210804pt;}
.wsa3{word-spacing:353.186301pt;}
.ws8e{word-spacing:354.302112pt;}
.wsb8{word-spacing:358.124954pt;}
.ws6a{word-spacing:359.399257pt;}
.ws78{word-spacing:359.714170pt;}
.ws5f{word-spacing:367.262593pt;}
.ws70{word-spacing:376.455228pt;}
.ws77{word-spacing:377.673417pt;}
.ws6c{word-spacing:381.242609pt;}
.ws8c{word-spacing:381.400384pt;}
.ws68{word-spacing:394.201939pt;}
.wsc0{word-spacing:400.099817pt;}
.ws73{word-spacing:402.225153pt;}
.ws66{word-spacing:414.924147pt;}
.ws65{word-spacing:417.958111pt;}
.wsbd{word-spacing:429.961050pt;}
.wsbb{word-spacing:446.273147pt;}
.wsbc{word-spacing:452.171006pt;}
.ws6d{word-spacing:459.025257pt;}
.wsa2{word-spacing:462.478976pt;}
.wsbf{word-spacing:468.429969pt;}
.wsba{word-spacing:478.472270pt;}
.wsbe{word-spacing:478.737939pt;}
.ws8d{word-spacing:484.688932pt;}
.wsc8{word-spacing:558.546353pt;}
.wsb9{word-spacing:595.792739pt;}
.ws38{word-spacing:709.021463pt;}
.ws48{word-spacing:741.698791pt;}
.ws35{word-spacing:761.889661pt;}
.ws3d{word-spacing:765.183961pt;}
.ws3c{word-spacing:766.724843pt;}
.ws37{word-spacing:788.775397pt;}
.ws36{word-spacing:818.424095pt;}
.ws39{word-spacing:853.704982pt;}
.ws3b{word-spacing:877.455821pt;}
.ws3a{word-spacing:889.251539pt;}
.ws1e{word-spacing:1251.468842pt;}
.ws12{word-spacing:1450.829803pt;}
.ws20{word-spacing:1470.220971pt;}
.ws1d{word-spacing:1478.403586pt;}
.ws14{word-spacing:1553.643835pt;}
.ws15{word-spacing:1590.943809pt;}
._95{margin-left:-392.106941pt;}
._9a{margin-left:-286.886983pt;}
._94{margin-left:-256.919001pt;}
._92{margin-left:-255.493978pt;}
._99{margin-left:-241.764458pt;}
._98{margin-left:-240.784980pt;}
._9b{margin-left:-236.232166pt;}
._9d{margin-left:-235.253108pt;}
._96{margin-left:-215.786806pt;}
._9c{margin-left:-202.258490pt;}
._93{margin-left:-200.344639pt;}
._97{margin-left:-198.535577pt;}
._15{margin-left:-30.923910pt;}
._11{margin-left:-28.001548pt;}
._f{margin-left:-26.566933pt;}
._12{margin-left:-8.979623pt;}
._0{margin-left:-7.069791pt;}
._69{margin-left:-5.076561pt;}
._6{margin-left:-4.064768pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-0.992134pt;}
._5{width:1.039955pt;}
._2{width:2.387202pt;}
._2e{width:3.465167pt;}
._10{width:4.956042pt;}
._20{width:13.517961pt;}
._1d{width:15.408821pt;}
._90{width:16.334819pt;}
._c{width:17.693578pt;}
._a{width:18.913421pt;}
._19{width:21.002371pt;}
._1c{width:22.316224pt;}
._17{width:23.247535pt;}
._22{width:24.530437pt;}
._1b{width:25.580162pt;}
._91{width:26.970773pt;}
._1a{width:28.024270pt;}
._b8{width:29.526512pt;}
._13{width:30.579968pt;}
._b{width:32.279040pt;}
._21{width:33.862163pt;}
._66{width:35.599691pt;}
._18{width:37.840498pt;}
._d{width:38.914906pt;}
._ba{width:40.062935pt;}
._65{width:42.719629pt;}
._68{width:44.447948pt;}
._b9{width:45.371973pt;}
._bc{width:46.676588pt;}
._8{width:47.569594pt;}
._8f{width:48.817927pt;}
._9{width:51.933389pt;}
._a9{width:53.670518pt;}
._1f{width:55.790560pt;}
._14{width:56.930358pt;}
._7c{width:63.318160pt;}
._7{width:64.271155pt;}
._bb{width:66.953985pt;}
._4f{width:69.673111pt;}
._54{width:73.551884pt;}
._4{width:76.449519pt;}
._49{width:79.874814pt;}
._e{width:83.598560pt;}
._47{width:84.497460pt;}
._4d{width:85.772673pt;}
._6a{width:87.313437pt;}
._4b{width:90.395319pt;}
._41{width:96.080643pt;}
._3f{width:100.703290pt;}
._53{width:102.031636pt;}
._4e{width:106.335479pt;}
._50{width:109.257842pt;}
._45{width:112.073937pt;}
._43{width:116.696583pt;}
._3d{width:118.290599pt;}
._46{width:121.159828pt;}
._3b{width:122.913246pt;}
._48{width:124.082191pt;}
._4a{width:127.057687pt;}
._4c{width:129.980050pt;}
._3e{width:137.365658pt;}
._40{width:140.288020pt;}
._51{width:143.316651pt;}
._52{width:146.239013pt;}
._42{width:153.358951pt;}
._44{width:156.281314pt;}
._6b{width:158.633436pt;}
._3a{width:159.575614pt;}
._3c{width:162.497977pt;}
._77{width:164.520353pt;}
._a0{width:166.773266pt;}
._34{width:173.917936pt;}
._76{width:174.950869pt;}
._73{width:181.003745pt;}
._82{width:182.253951pt;}
._6f{width:185.169418pt;}
._71{width:187.110272pt;}
._86{width:190.116383pt;}
._8b{width:191.371745pt;}
._87{width:195.431150pt;}
._7e{width:196.812630pt;}
._81{width:199.822471pt;}
._33{width:210.580304pt;}
._35{width:213.502667pt;}
._9e{width:218.115555pt;}
._6e{width:223.138901pt;}
._84{width:224.424832pt;}
._8d{width:229.897620pt;}
._72{width:248.717522pt;}
._8e{width:254.437440pt;}
._6d{width:261.150847pt;}
._75{width:266.604861pt;}
._74{width:278.897558pt;}
._32{width:284.113754pt;}
._30{width:288.736400pt;}
._70{width:293.987577pt;}
._78{width:297.019621pt;}
._79{width:299.732930pt;}
._56{width:301.067279pt;}
._89{width:304.302443pt;}
._aa{width:310.601154pt;}
._a2{width:317.090996pt;}
._6c{width:324.167613pt;}
._2f{width:325.398768pt;}
._31{width:328.321131pt;}
._83{width:329.699051pt;}
._80{width:334.482479pt;}
._55{width:337.729647pt;}
._57{width:340.652010pt;}
._8c{width:342.876250pt;}
._2c{width:362.698742pt;}
._b6{width:371.613051pt;}
._7b{width:382.140076pt;}
._b7{width:389.403846pt;}
._a1{width:396.734841pt;}
._2b{width:399.361110pt;}
._2d{width:402.283473pt;}
._7f{width:408.018370pt;}
._39{width:411.263097pt;}
._a8{width:414.534819pt;}
._37{width:415.885743pt;}
._88{width:426.562090pt;}
._a6{width:445.286325pt;}
._36{width:452.548111pt;}
._38{width:455.470474pt;}
._a5{width:461.150629pt;}
._85{width:466.460823pt;}
._59{width:470.241689pt;}
._a3{width:477.356459pt;}
._a7{width:483.307452pt;}
._7d{width:486.231422pt;}
._a4{width:493.349753pt;}
._61{width:495.480275pt;}
._9f{width:499.566415pt;}
._ab{width:504.349355pt;}
._8a{width:506.448835pt;}
._7a{width:509.539780pt;}
._60{width:532.142643pt;}
._62{width:535.065006pt;}
._24{width:566.201452pt;}
._5a{width:585.060153pt;}
._58{width:607.004439pt;}
._5e{width:610.298739pt;}
._ac{width:641.541453pt;}
._5d{width:646.961107pt;}
._5f{width:649.883470pt;}
._64{width:680.966782pt;}
._5b{width:692.124894pt;}
._af{width:694.547821pt;}
._28{width:698.926029pt;}
._27{width:700.413777pt;}
._63{width:708.915196pt;}
._67{width:714.089783pt;}
._1e{width:715.792334pt;}
._23{width:729.849939pt;}
._2a{width:732.825436pt;}
._29{width:734.366318pt;}
._25{width:762.420999pt;}
._5c{width:771.081820pt;}
._26{width:791.963429pt;}
._b5{width:798.481486pt;}
._b4{width:829.232992pt;}
._b3{width:845.097296pt;}
._ae{width:850.995155pt;}
._b0{width:861.303125pt;}
._b2{width:867.254118pt;}
._b1{width:877.296419pt;}
._ad{width:883.513082pt;}
._16{width:1206.762029pt;}
.fsb{font-size:4.430411pt;}
.fsa{font-size:24.693589pt;}
.fsd{font-size:26.667467pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:34.117625pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:44.001320pt;}
.fs2{font-size:47.820800pt;}
.fs9{font-size:48.025675pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y31d{bottom:3.635525pt;}
.y31f{bottom:4.635558pt;}
.y31b{bottom:4.997546pt;}
.y31c{bottom:5.997576pt;}
.y265{bottom:6.904319pt;}
.y29f{bottom:7.295901pt;}
.y31e{bottom:9.974258pt;}
.y5a{bottom:11.160692pt;}
.ybe{bottom:15.734613pt;}
.y23a{bottom:18.348594pt;}
.y16e{bottom:18.628604pt;}
.y130{bottom:25.078442pt;}
.y238{bottom:27.312952pt;}
.y15f{bottom:36.967137pt;}
.y5c{bottom:37.663030pt;}
.y141{bottom:38.999532pt;}
.y24f{bottom:41.275468pt;}
.y24e{bottom:42.634725pt;}
.y283{bottom:45.522296pt;}
.y13f{bottom:50.282477pt;}
.y20c{bottom:51.003210pt;}
.yc0{bottom:53.039494pt;}
.y267{bottom:56.671726pt;}
.y1a7{bottom:58.780768pt;}
.y16d{bottom:59.167714pt;}
.y23f{bottom:63.918314pt;}
.y5b{bottom:64.165369pt;}
.y160{bottom:65.499169pt;}
.y259{bottom:68.491821pt;}
.y278{bottom:68.718055pt;}
.y236{bottom:70.377102pt;}
.y28a{bottom:71.816097pt;}
.y215{bottom:71.824751pt;}
.y23c{bottom:72.324814pt;}
.y29c{bottom:73.956973pt;}
.y14f{bottom:75.604894pt;}
.y21a{bottom:77.547970pt;}
.y220{bottom:77.595257pt;}
.y271{bottom:78.005074pt;}
.y14a{bottom:79.134079pt;}
.y1ab{bottom:80.146877pt;}
.y28b{bottom:81.810560pt;}
.y219{bottom:82.165055pt;}
.y266{bottom:82.929058pt;}
.y20d{bottom:82.934621pt;}
.y269{bottom:83.707586pt;}
.y232{bottom:84.326329pt;}
.y13d{bottom:84.496314pt;}
.y218{bottom:84.776324pt;}
.y12d{bottom:86.181806pt;}
.y1bf{bottom:87.114073pt;}
.y23e{bottom:87.512145pt;}
.y183{bottom:88.048678pt;}
.y1d8{bottom:88.421098pt;}
.y140{bottom:88.727997pt;}
.y14c{bottom:88.769412pt;}
.y274{bottom:89.047877pt;}
.y24d{bottom:89.707416pt;}
.ybf{bottom:90.344375pt;}
.y2a4{bottom:92.612604pt;}
.y134{bottom:93.053327pt;}
.y157{bottom:97.147169pt;}
.y27e{bottom:97.367221pt;}
.y1e6{bottom:97.895718pt;}
.y273{bottom:98.284210pt;}
.y275{bottom:98.520643pt;}
.yc1{bottom:99.348771pt;}
.y1ec{bottom:101.016013pt;}
.y177{bottom:101.273153pt;}
.y2a5{bottom:101.828539pt;}
.y27b{bottom:102.179015pt;}
.y136{bottom:102.684333pt;}
.y237{bottom:102.849681pt;}
.y27c{bottom:104.747634pt;}
.y258{bottom:106.082166pt;}
.y2a3{bottom:106.323544pt;}
.y191{bottom:107.272984pt;}
.y26d{bottom:108.317924pt;}
.y1e3{bottom:108.704252pt;}
.y1e5{bottom:110.764154pt;}
.y135{bottom:111.182006pt;}
.y20f{bottom:111.537119pt;}
.y231{bottom:113.202348pt;}
.y263{bottom:113.875795pt;}
.y14d{bottom:114.873449pt;}
.y1d3{bottom:115.070321pt;}
.y29e{bottom:115.143878pt;}
.y1e7{bottom:115.160568pt;}
.y1de{bottom:115.184365pt;}
.y277{bottom:115.381856pt;}
.y1e9{bottom:116.186655pt;}
.y149{bottom:116.445340pt;}
.y29a{bottom:116.537132pt;}
.y1df{bottom:116.923151pt;}
.y1bd{bottom:117.482554pt;}
.y1cd{bottom:118.083063pt;}
.y226{bottom:118.190616pt;}
.y1d2{bottom:119.128930pt;}
.y1f{bottom:119.153333pt;}
.y203{bottom:120.058281pt;}
.y14b{bottom:124.494255pt;}
.y184{bottom:124.887383pt;}
.y166{bottom:126.104162pt;}
.y24b{bottom:126.135686pt;}
.y251{bottom:127.396970pt;}
.y16c{bottom:128.395242pt;}
.y1e0{bottom:129.603985pt;}
.y200{bottom:129.642000pt;}
.y137{bottom:130.222110pt;}
.y27d{bottom:131.217292pt;}
.y210{bottom:132.035998pt;}
.y1e8{bottom:132.445197pt;}
.y156{bottom:132.486920pt;}
.y167{bottom:132.529571pt;}
.y1c9{bottom:133.305009pt;}
.y192{bottom:134.053558pt;}
.y1d0{bottom:134.607089pt;}
.y176{bottom:134.676010pt;}
.y261{bottom:136.024759pt;}
.y2a2{bottom:136.649992pt;}
.y211{bottom:137.108023pt;}
.y28f{bottom:138.010485pt;}
.y22a{bottom:138.145855pt;}
.y15b{bottom:138.523220pt;}
.y284{bottom:138.534346pt;}
.y225{bottom:139.032864pt;}
.y155{bottom:140.156306pt;}
.y148{bottom:141.520199pt;}
.y19b{bottom:141.815972pt;}
.y239{bottom:141.829262pt;}
.y27f{bottom:142.341378pt;}
.y21b{bottom:142.806517pt;}
.y15d{bottom:143.027188pt;}
.y1f1{bottom:143.802317pt;}
.y25a{bottom:144.587335pt;}
.y1eb{bottom:145.827912pt;}
.y20b{bottom:146.054146pt;}
.y268{bottom:146.110086pt;}
.y27a{bottom:146.310359pt;}
.y1bc{bottom:146.375262pt;}
.y216{bottom:147.117321pt;}
.y18c{bottom:147.206022pt;}
.y15c{bottom:148.875887pt;}
.y1ca{bottom:148.901230pt;}
.y264{bottom:149.697066pt;}
.y262{bottom:149.850670pt;}
.y26a{bottom:150.212273pt;}
.y1ef{bottom:150.492284pt;}
.y293{bottom:151.532588pt;}
.y247{bottom:152.543531pt;}
.y197{bottom:152.548476pt;}
.y290{bottom:152.582473pt;}
.y1fc{bottom:153.694789pt;}
.y15a{bottom:154.219886pt;}
.y245{bottom:154.688425pt;}
.y292{bottom:155.011086pt;}
.y227{bottom:155.059300pt;}
.y1f8{bottom:155.488897pt;}
.y25f{bottom:155.784979pt;}
.y217{bottom:156.421648pt;}
.y1f0{bottom:156.534146pt;}
.y260{bottom:157.575069pt;}
.y178{bottom:157.704257pt;}
.y16b{bottom:157.817374pt;}
.y13a{bottom:158.057824pt;}
.y15e{bottom:158.166924pt;}
.y86{bottom:159.006667pt;}
.y145{bottom:159.331471pt;}
.y16a{bottom:159.540397pt;}
.y2ce{bottom:159.989333pt;}
.y143{bottom:161.086946pt;}
.y24a{bottom:161.981064pt;}
.y19c{bottom:162.204825pt;}
.y1c8{bottom:162.226150pt;}
.y169{bottom:162.361520pt;}
.y1ee{bottom:162.813369pt;}
.y1d9{bottom:163.122741pt;}
.y171{bottom:163.617859pt;}
.y1e4{bottom:164.166136pt;}
.ybc{bottom:164.200000pt;}
.y1c1{bottom:165.508703pt;}
.y2d1{bottom:165.609333pt;}
.y279{bottom:165.907394pt;}
.y19d{bottom:166.412093pt;}
.y20e{bottom:167.550679pt;}
.y2de{bottom:168.198667pt;}
.y129{bottom:168.317333pt;}
.y1fe{bottom:168.675667pt;}
.y186{bottom:168.929407pt;}
.y201{bottom:169.072812pt;}
.y234{bottom:169.078993pt;}
.y172{bottom:169.314808pt;}
.y282{bottom:169.455431pt;}
.y161{bottom:169.505499pt;}
.y144{bottom:169.696191pt;}
.y1a3{bottom:169.962603pt;}
.y188{bottom:170.420634pt;}
.yf2{bottom:170.788000pt;}
.y363{bottom:170.966667pt;}
.y202{bottom:171.107370pt;}
.y1e{bottom:171.134667pt;}
.y224{bottom:171.624741pt;}
.y1db{bottom:171.874773pt;}
.y233{bottom:171.884972pt;}
.y1e2{bottom:171.929477pt;}
.y1b8{bottom:172.705533pt;}
.y62{bottom:172.812000pt;}
.y1f6{bottom:173.325821pt;}
.y19e{bottom:173.461809pt;}
.y205{bottom:173.664244pt;}
.y243{bottom:174.151636pt;}
.y164{bottom:175.127037pt;}
.y85{bottom:175.484000pt;}
.y12e{bottom:175.905403pt;}
.y2cd{bottom:175.929333pt;}
.y13c{bottom:175.978504pt;}
.y14e{bottom:176.117583pt;}
.y146{bottom:176.125618pt;}
.y320{bottom:176.377333pt;}
.y1dd{bottom:176.425409pt;}
.y272{bottom:176.562942pt;}
.y299{bottom:176.859024pt;}
.y28d{bottom:176.984812pt;}
.y214{bottom:176.986357pt;}
.y12c{bottom:177.140772pt;}
.y342{bottom:177.236000pt;}
.y1a4{bottom:177.555032pt;}
.y163{bottom:177.650224pt;}
.y13b{bottom:177.880166pt;}
.y248{bottom:178.030679pt;}
.y190{bottom:178.090638pt;}
.y1d7{bottom:179.259203pt;}
.y139{bottom:179.575683pt;}
.y244{bottom:180.183918pt;}
.y1f4{bottom:180.331341pt;}
.y250{bottom:181.326522pt;}
.yb2{bottom:181.549333pt;}
.y2d0{bottom:181.550667pt;}
.y17b{bottom:181.703887pt;}
.y1d6{bottom:182.060545pt;}
.y1a9{bottom:182.104123pt;}
.y26b{bottom:182.477471pt;}
.y1ff{bottom:182.973516pt;}
.y289{bottom:183.008440pt;}
.y21d{bottom:183.161117pt;}
.y246{bottom:183.764716pt;}
.y206{bottom:183.913375pt;}
.y17a{bottom:184.086759pt;}
.y2dd{bottom:184.138667pt;}
.y138{bottom:184.145172pt;}
.y128{bottom:184.257333pt;}
.y1ed{bottom:184.987676pt;}
.y61{bottom:185.432000pt;}
.y1c2{bottom:185.648452pt;}
.y1f9{bottom:186.034471pt;}
.y21c{bottom:186.102465pt;}
.y22d{bottom:186.463141pt;}
.y1d4{bottom:186.550914pt;}
.yf1{bottom:186.728000pt;}
.y362{bottom:186.906667pt;}
.y1fb{bottom:186.957641pt;}
.y1d{bottom:187.074667pt;}
.y1cb{bottom:187.463885pt;}
.y207{bottom:187.544859pt;}
.y204{bottom:188.058830pt;}
.ybb{bottom:188.110667pt;}
.y29b{bottom:188.184619pt;}
.y287{bottom:189.196489pt;}
.y2fa{bottom:189.254667pt;}
.y341{bottom:189.856000pt;}
.y1e1{bottom:190.013033pt;}
.y28c{bottom:190.305097pt;}
.y1cc{bottom:190.465500pt;}
.y182{bottom:191.032012pt;}
.y142{bottom:191.206014pt;}
.y25c{bottom:191.521567pt;}
.y1cf{bottom:191.690315pt;}
.y22e{bottom:191.694951pt;}
.y26c{bottom:191.742546pt;}
.y2cc{bottom:191.870667pt;}
.y297{bottom:192.042337pt;}
.y1a5{bottom:192.091478pt;}
.y1f3{bottom:192.121457pt;}
.y21e{bottom:192.358817pt;}
.y173{bottom:192.398995pt;}
.y28e{bottom:192.801085pt;}
.y2a0{bottom:192.884841pt;}
.y1b2{bottom:194.301584pt;}
.y147{bottom:194.635680pt;}
.y1aa{bottom:195.051679pt;}
.y276{bottom:195.906236pt;}
.y252{bottom:197.279401pt;}
.yb1{bottom:197.490667pt;}
.y240{bottom:197.759684pt;}
.y150{bottom:197.781937pt;}
.y162{bottom:197.839731pt;}
.y1c5{bottom:197.878364pt;}
.y60{bottom:198.050667pt;}
.y25b{bottom:198.107070pt;}
.y1d5{bottom:198.217097pt;}
.y1dc{bottom:198.689344pt;}
.y17f{bottom:199.216296pt;}
.y2dc{bottom:200.078667pt;}
.y1da{bottom:200.462127pt;}
.y212{bottom:201.252709pt;}
.y285{bottom:201.565171pt;}
.y165{bottom:202.199676pt;}
.yf0{bottom:202.668000pt;}
.y361{bottom:202.848000pt;}
.y1fd{bottom:202.870342pt;}
.y185{bottom:202.983459pt;}
.y1c{bottom:203.014667pt;}
.y17c{bottom:203.497739pt;}
.y1f2{bottom:203.670195pt;}
.y154{bottom:203.817309pt;}
.y1b9{bottom:203.977094pt;}
.yba{bottom:204.050667pt;}
.y187{bottom:204.503428pt;}
.y2f9{bottom:205.194667pt;}
.y31a{bottom:205.601368pt;}
.y19a{bottom:205.736587pt;}
.y1b7{bottom:205.806435pt;}
.y1a0{bottom:205.854649pt;}
.y1ce{bottom:206.317316pt;}
.y340{bottom:206.333333pt;}
.y1f5{bottom:206.438468pt;}
.y229{bottom:207.749202pt;}
.y2cb{bottom:207.810667pt;}
.y298{bottom:208.061046pt;}
.y127{bottom:208.785333pt;}
.y17d{bottom:209.325112pt;}
.y193{bottom:209.633865pt;}
.y208{bottom:209.850518pt;}
.y5f{bottom:210.670667pt;}
.y17e{bottom:211.228628pt;}
.y1f7{bottom:211.272206pt;}
.y3f{bottom:211.525333pt;}
.y20a{bottom:212.705019pt;}
.yb0{bottom:213.430667pt;}
.y152{bottom:214.092710pt;}
.y242{bottom:214.870311pt;}
.y25d{bottom:214.933669pt;}
.y1c3{bottom:215.014953pt;}
.y33f{bottom:215.418667pt;}
.y1c7{bottom:215.731669pt;}
.y170{bottom:215.984173pt;}
.y2db{bottom:216.020000pt;}
.y18d{bottom:216.392444pt;}
.y198{bottom:216.624241pt;}
.y180{bottom:216.929595pt;}
.y230{bottom:216.982444pt;}
.y291{bottom:217.134503pt;}
.y26e{bottom:218.401041pt;}
.yef{bottom:218.608000pt;}
.y360{bottom:218.788000pt;}
.y1b{bottom:218.954667pt;}
.yde{bottom:219.948000pt;}
.yb9{bottom:219.990667pt;}
.y22c{bottom:220.430964pt;}
.y288{bottom:221.008602pt;}
.y2f8{bottom:221.134667pt;}
.y23b{bottom:221.988021pt;}
.y84{bottom:222.024000pt;}
.y24c{bottom:222.187366pt;}
.y181{bottom:222.505391pt;}
.y2ca{bottom:223.750667pt;}
.y26f{bottom:224.287755pt;}
.y151{bottom:225.038468pt;}
.y16f{bottom:225.128714pt;}
.y175{bottom:225.158075pt;}
.y1ba{bottom:225.982344pt;}
.y1c0{bottom:226.057447pt;}
.y22f{bottom:226.374854pt;}
.y5e{bottom:227.148000pt;}
.y253{bottom:227.409595pt;}
.y25e{bottom:227.464299pt;}
.y3e{bottom:227.465333pt;}
.yaf{bottom:229.370667pt;}
.y286{bottom:229.844699pt;}
.y270{bottom:230.634971pt;}
.y179{bottom:230.794757pt;}
.y223{bottom:231.096402pt;}
.y168{bottom:231.231462pt;}
.y33e{bottom:231.896000pt;}
.y18a{bottom:231.903982pt;}
.y2da{bottom:231.960000pt;}
.y1ad{bottom:232.274239pt;}
.y228{bottom:232.752977pt;}
.y13e{bottom:233.756812pt;}
.y209{bottom:234.202171pt;}
.y295{bottom:234.347739pt;}
.yee{bottom:234.549333pt;}
.y35f{bottom:234.728000pt;}
.y153{bottom:235.520322pt;}
.ydd{bottom:235.888000pt;}
.yb8{bottom:235.930667pt;}
.y2f7{bottom:237.074667pt;}
.y255{bottom:237.912775pt;}
.y196{bottom:237.960989pt;}
.y83{bottom:237.964000pt;}
.y2c9{bottom:239.690667pt;}
.y19f{bottom:239.738716pt;}
.y213{bottom:239.906228pt;}
.y189{bottom:240.732970pt;}
.y1c4{bottom:243.013852pt;}
.y3d{bottom:243.405333pt;}
.y174{bottom:244.277299pt;}
.y319{bottom:244.278667pt;}
.y33d{bottom:244.840000pt;}
.y199{bottom:244.864209pt;}
.y21f{bottom:244.957546pt;}
.yae{bottom:245.310667pt;}
.y126{bottom:245.989333pt;}
.y1ac{bottom:246.838191pt;}
.y5d{bottom:247.140000pt;}
.y2d9{bottom:247.900000pt;}
.y1a{bottom:248.178667pt;}
.y22b{bottom:248.240099pt;}
.y249{bottom:248.707710pt;}
.y1d1{bottom:249.636443pt;}
.y1b5{bottom:249.802409pt;}
.y1fa{bottom:249.950450pt;}
.yed{bottom:250.489333pt;}
.y35e{bottom:250.668000pt;}
.ydc{bottom:251.828000pt;}
.yb7{bottom:251.870667pt;}
.y1c6{bottom:252.086381pt;}
.y2f6{bottom:253.016000pt;}
.y18b{bottom:253.125140pt;}
.y82{bottom:253.905333pt;}
.y33c{bottom:254.005333pt;}
.y159{bottom:254.156791pt;}
.y2c8{bottom:255.630667pt;}
.y235{bottom:256.210511pt;}
.y294{bottom:256.464561pt;}
.y256{bottom:258.739879pt;}
.y3c{bottom:259.346667pt;}
.y318{bottom:260.218667pt;}
.y1a6{bottom:260.422724pt;}
.y1bb{bottom:260.744458pt;}
.y254{bottom:260.936077pt;}
.yad{bottom:261.250667pt;}
.y125{bottom:261.929333pt;}
.y23d{bottom:262.509514pt;}
.y2d8{bottom:263.840000pt;}
.y12b{bottom:264.455659pt;}
.y1a8{bottom:265.914456pt;}
.yec{bottom:266.429333pt;}
.y35d{bottom:266.608000pt;}
.ydb{bottom:267.768000pt;}
.y194{bottom:267.878239pt;}
.y81{bottom:269.845333pt;}
.y33b{bottom:270.482667pt;}
.y1a2{bottom:270.786517pt;}
.y2c7{bottom:271.570667pt;}
.y18f{bottom:273.827383pt;}
.y280{bottom:275.370841pt;}
.y1a1{bottom:275.789312pt;}
.y59{bottom:276.363387pt;}
.yb6{bottom:276.398667pt;}
.yac{bottom:277.190667pt;}
.y2cf{bottom:277.192000pt;}
.y257{bottom:277.224598pt;}
.y19{bottom:277.402667pt;}
.y2f5{bottom:277.544000pt;}
.y241{bottom:278.592509pt;}
.y104{bottom:279.780000pt;}
.yeb{bottom:282.369333pt;}
.y35c{bottom:282.548000pt;}
.yda{bottom:283.709333pt;}
.y317{bottom:284.746667pt;}
.y1b3{bottom:285.097965pt;}
.y80{bottom:285.785333pt;}
.y124{bottom:285.840000pt;}
.y2c6{bottom:287.512000pt;}
.y3b{bottom:288.454667pt;}
.y195{bottom:289.523431pt;}
.y1b4{bottom:290.366863pt;}
.y2a6{bottom:290.748864pt;}
.y33a{bottom:291.058667pt;}
.y222{bottom:292.286141pt;}
.y1ae{bottom:292.365261pt;}
.y1af{bottom:292.954643pt;}
.yab{bottom:293.132000pt;}
.y18{bottom:293.342667pt;}
.y2a1{bottom:294.272485pt;}
.y1b6{bottom:294.376330pt;}
.y103{bottom:295.720000pt;}
.y158{bottom:297.795489pt;}
.y35b{bottom:298.489333pt;}
.y1b0{bottom:299.463190pt;}
.yd9{bottom:299.649333pt;}
.y1b1{bottom:300.110985pt;}
.y7f{bottom:301.725333pt;}
.y123{bottom:301.780000pt;}
.y2c5{bottom:303.452000pt;}
.yea{bottom:304.985333pt;}
.y29d{bottom:306.966919pt;}
.y339{bottom:306.998667pt;}
.yaa{bottom:309.072000pt;}
.y102{bottom:311.661333pt;}
.yb5{bottom:313.602667pt;}
.y1be{bottom:314.140259pt;}
.y35a{bottom:314.429333pt;}
.y1ea{bottom:314.810925pt;}
.y281{bottom:314.984309pt;}
.yd8{bottom:315.589333pt;}
.y18e{bottom:317.300732pt;}
.y7e{bottom:317.665333pt;}
.y296{bottom:318.915275pt;}
.y2c4{bottom:319.392000pt;}
.y221{bottom:320.993720pt;}
.y316{bottom:321.950667pt;}
.y17{bottom:322.566667pt;}
.ya9{bottom:325.012000pt;}
.y132{bottom:325.332000pt;}
.y122{bottom:325.690667pt;}
.y101{bottom:327.601333pt;}
.y12f{bottom:328.103848pt;}
.y2f4{bottom:328.185333pt;}
.yb4{bottom:329.542667pt;}
.y359{bottom:330.369333pt;}
.y338{bottom:330.909333pt;}
.yd7{bottom:331.529333pt;}
.y3a{bottom:332.402667pt;}
.y7d{bottom:333.605333pt;}
.y2c3{bottom:335.332000pt;}
.y315{bottom:337.890667pt;}
.y2a8{bottom:338.869333pt;}
.ye9{bottom:340.188000pt;}
.ya8{bottom:340.952000pt;}
.y131{bottom:341.272000pt;}
.y121{bottom:341.630667pt;}
.y100{bottom:343.541333pt;}
.y2f3{bottom:344.125333pt;}
.y358{bottom:346.309333pt;}
.y337{bottom:346.849333pt;}
.yd6{bottom:347.469333pt;}
.y39{bottom:348.342667pt;}
.y7c{bottom:349.546667pt;}
.y2c2{bottom:351.272000pt;}
.yb3{bottom:354.070667pt;}
.y2a7{bottom:354.809333pt;}
.ye8{bottom:356.129333pt;}
.ya7{bottom:356.892000pt;}
.yff{bottom:359.481333pt;}
.y2f2{bottom:360.066667pt;}
.y357{bottom:362.249333pt;}
.y336{bottom:362.790667pt;}
.yd5{bottom:363.409333pt;}
.y38{bottom:364.282667pt;}
.y7b{bottom:365.486667pt;}
.y120{bottom:365.541333pt;}
.y16{bottom:366.514667pt;}
.y2c1{bottom:367.212000pt;}
.y12a{bottom:370.495515pt;}
.ya6{bottom:372.832000pt;}
.ye0{bottom:372.833333pt;}
.y58{bottom:374.873333pt;}
.yfe{bottom:375.421333pt;}
.y2f1{bottom:376.006667pt;}
.y356{bottom:378.189333pt;}
.y335{bottom:378.730667pt;}
.yd4{bottom:379.350667pt;}
.y15{bottom:381.126667pt;}
.y7a{bottom:381.426667pt;}
.y11f{bottom:381.481333pt;}
.y2c0{bottom:383.153333pt;}
.y133{bottom:384.034138pt;}
.y314{bottom:385.876000pt;}
.y37{bottom:388.193333pt;}
.ya5{bottom:388.773333pt;}
.yfd{bottom:391.361333pt;}
.y2f0{bottom:391.946667pt;}
.y355{bottom:394.130667pt;}
.y334{bottom:394.670667pt;}
.yd3{bottom:395.290667pt;}
.y14{bottom:395.738667pt;}
.y79{bottom:397.366667pt;}
.y11e{bottom:397.421333pt;}
.y57{bottom:398.784000pt;}
.y2bf{bottom:399.093333pt;}
.y312{bottom:401.816000pt;}
.y36{bottom:404.133333pt;}
.ya4{bottom:404.713333pt;}
.ye7{bottom:407.302667pt;}
.y2ef{bottom:407.886667pt;}
.y354{bottom:410.070667pt;}
.y13{bottom:410.350667pt;}
.y333{bottom:410.610667pt;}
.yd2{bottom:411.230667pt;}
.y78{bottom:413.306667pt;}
.y11d{bottom:413.362667pt;}
.y56{bottom:414.724000pt;}
.y2be{bottom:415.033333pt;}
.y311{bottom:417.756000pt;}
.y35{bottom:420.074667pt;}
.ya3{bottom:420.653333pt;}
.ye6{bottom:423.242667pt;}
.y2ee{bottom:423.826667pt;}
.y12{bottom:424.962667pt;}
.y353{bottom:426.010667pt;}
.y332{bottom:426.550667pt;}
.yd1{bottom:427.170667pt;}
.y77{bottom:429.246667pt;}
.y11c{bottom:429.302667pt;}
.y55{bottom:430.664000pt;}
.y2bd{bottom:430.973333pt;}
.y310{bottom:433.696000pt;}
.y313{bottom:433.697333pt;}
.y34{bottom:436.014667pt;}
.ya2{bottom:436.593333pt;}
.ye5{bottom:439.182667pt;}
.y11{bottom:439.574667pt;}
.y2ed{bottom:439.766667pt;}
.y352{bottom:441.950667pt;}
.y331{bottom:442.490667pt;}
.yd0{bottom:443.110667pt;}
.y76{bottom:445.188000pt;}
.y11b{bottom:445.242667pt;}
.y54{bottom:446.604000pt;}
.y2bc{bottom:446.913333pt;}
.y30f{bottom:449.637333pt;}
.y33{bottom:451.954667pt;}
.ya1{bottom:452.533333pt;}
.y10{bottom:454.186667pt;}
.ye4{bottom:455.122667pt;}
.y2ec{bottom:455.708000pt;}
.y351{bottom:457.890667pt;}
.ycf{bottom:459.050667pt;}
.y75{bottom:461.128000pt;}
.y2bb{bottom:462.853333pt;}
.y30e{bottom:465.577333pt;}
.y330{bottom:466.401333pt;}
.ya0{bottom:468.473333pt;}
.ydf{bottom:468.474667pt;}
.yf{bottom:468.798667pt;}
.y11a{bottom:469.770667pt;}
.yfc{bottom:471.062667pt;}
.y2eb{bottom:471.648000pt;}
.y350{bottom:473.830667pt;}
.yce{bottom:474.992000pt;}
.y32{bottom:475.865333pt;}
.y74{bottom:477.068000pt;}
.ye3{bottom:477.738667pt;}
.y53{bottom:478.484000pt;}
.y2ba{bottom:478.794667pt;}
.y30d{bottom:481.517333pt;}
.y32f{bottom:482.341333pt;}
.ye{bottom:483.410667pt;}
.y9f{bottom:484.414667pt;}
.yfb{bottom:487.002667pt;}
.y2ea{bottom:487.588000pt;}
.y34f{bottom:489.772000pt;}
.ycd{bottom:490.932000pt;}
.y31{bottom:491.805333pt;}
.y73{bottom:493.008000pt;}
.y2d7{bottom:493.678667pt;}
.y52{bottom:494.425333pt;}
.y2b9{bottom:494.734667pt;}
.y30c{bottom:497.457333pt;}
.yd{bottom:498.022667pt;}
.y32e{bottom:498.281333pt;}
.y9e{bottom:500.354667pt;}
.yfa{bottom:502.944000pt;}
.y2e9{bottom:503.528000pt;}
.y72{bottom:508.948000pt;}
.y51{bottom:510.365333pt;}
.y2b8{bottom:510.674667pt;}
.y34e{bottom:510.909333pt;}
.yc{bottom:512.634667pt;}
.ye2{bottom:512.941333pt;}
.y30b{bottom:513.397333pt;}
.ycc{bottom:513.548000pt;}
.y32d{bottom:514.222667pt;}
.y30{bottom:515.716000pt;}
.y9d{bottom:516.294667pt;}
.y119{bottom:517.756000pt;}
.yf9{bottom:518.884000pt;}
.y2e8{bottom:519.468000pt;}
.y71{bottom:524.888000pt;}
.y2b7{bottom:526.614667pt;}
.yb{bottom:527.245333pt;}
.ye1{bottom:528.882667pt;}
.y32c{bottom:530.162667pt;}
.y2f{bottom:531.656000pt;}
.y9c{bottom:532.234667pt;}
.y118{bottom:533.696000pt;}
.yf8{bottom:534.824000pt;}
.y2e7{bottom:535.408000pt;}
.y30a{bottom:536.013333pt;}
.y70{bottom:540.829333pt;}
.y50{bottom:542.245333pt;}
.y2b6{bottom:542.554667pt;}
.y2d6{bottom:544.822667pt;}
.y32b{bottom:546.102667pt;}
.y2e{bottom:547.596000pt;}
.ycb{bottom:548.006667pt;}
.y9b{bottom:548.174667pt;}
.ya{bottom:549.164000pt;}
.y117{bottom:549.636000pt;}
.yf7{bottom:550.764000pt;}
.y2e6{bottom:551.349333pt;}
.y34d{bottom:554.857333pt;}
.y6f{bottom:556.769333pt;}
.y4f{bottom:558.185333pt;}
.y2b5{bottom:558.494667pt;}
.y2d5{bottom:560.762667pt;}
.y2d{bottom:563.536000pt;}
.y9a{bottom:564.116000pt;}
.y116{bottom:565.576000pt;}
.yf6{bottom:566.704000pt;}
.y2e5{bottom:567.289333pt;}
.y309{bottom:570.632000pt;}
.y34c{bottom:570.798667pt;}
.y6e{bottom:572.709333pt;}
.y4e{bottom:574.125333pt;}
.y2b4{bottom:574.436000pt;}
.y32a{bottom:575.210667pt;}
.y2d4{bottom:576.702667pt;}
.yca{bottom:577.841333pt;}
.y2c{bottom:579.476000pt;}
.y99{bottom:580.056000pt;}
.y115{bottom:581.517333pt;}
.y2e4{bottom:583.229333pt;}
.y9{bottom:583.701333pt;}
.y34b{bottom:586.738667pt;}
.y6d{bottom:588.649333pt;}
.yf5{bottom:589.320000pt;}
.y2d3{bottom:592.642667pt;}
.y2b{bottom:595.416000pt;}
.y98{bottom:595.996000pt;}
.y2b3{bottom:597.052000pt;}
.y114{bottom:597.457333pt;}
.y2e3{bottom:599.169333pt;}
.y308{bottom:600.466667pt;}
.yc9{bottom:601.752000pt;}
.y6c{bottom:604.589333pt;}
.y4d{bottom:606.006667pt;}
.y2d2{bottom:608.582667pt;}
.y97{bottom:611.936000pt;}
.y113{bottom:613.397333pt;}
.y2e2{bottom:615.109333pt;}
.y34a{bottom:615.846667pt;}
.yc8{bottom:617.692000pt;}
.y329{bottom:619.158667pt;}
.y2a{bottom:619.944000pt;}
.y6b{bottom:620.529333pt;}
.y4c{bottom:621.946667pt;}
.y8{bottom:622.462667pt;}
.yf4{bottom:624.524000pt;}
.y96{bottom:627.876000pt;}
.y2b2{bottom:629.080000pt;}
.y112{bottom:629.337333pt;}
.y2e1{bottom:631.049333pt;}
.yc7{bottom:633.632000pt;}
.y328{bottom:635.100000pt;}
.y6a{bottom:636.470667pt;}
.yf3{bottom:640.464000pt;}
.y7{bottom:641.058667pt;}
.y95{bottom:643.816000pt;}
.y2b1{bottom:645.020000pt;}
.y111{bottom:645.277333pt;}
.y4b{bottom:645.857333pt;}
.y307{bottom:648.452000pt;}
.y29{bottom:651.709333pt;}
.y69{bottom:652.410667pt;}
.y2e0{bottom:653.665333pt;}
.yc6{bottom:657.542667pt;}
.y6{bottom:659.656000pt;}
.y94{bottom:659.757333pt;}
.y349{bottom:659.794667pt;}
.y2b0{bottom:660.960000pt;}
.y110{bottom:661.217333pt;}
.y306{bottom:664.393333pt;}
.y327{bottom:666.980000pt;}
.y36b{bottom:669.090667pt;}
.yc5{bottom:673.482667pt;}
.y68{bottom:675.026667pt;}
.y93{bottom:675.697333pt;}
.y348{bottom:675.736000pt;}
.y2af{bottom:676.900000pt;}
.y10f{bottom:677.158667pt;}
.y5{bottom:678.253333pt;}
.y305{bottom:680.333333pt;}
.y36a{bottom:685.030667pt;}
.y2df{bottom:688.284000pt;}
.yc4{bottom:689.422667pt;}
.y92{bottom:691.637333pt;}
.y347{bottom:691.676000pt;}
.y10e{bottom:693.098667pt;}
.y4a{bottom:693.842667pt;}
.y28{bottom:695.657333pt;}
.y326{bottom:696.204086pt;}
.y304{bottom:696.273333pt;}
.y369{bottom:700.972000pt;}
.yc3{bottom:705.364000pt;}
.y91{bottom:707.577333pt;}
.y346{bottom:707.616000pt;}
.y10d{bottom:709.038667pt;}
.y67{bottom:709.645333pt;}
.y49{bottom:709.782667pt;}
.y303{bottom:712.213333pt;}
.y368{bottom:716.912000pt;}
.y90{bottom:723.517333pt;}
.y345{bottom:723.556000pt;}
.y27{bottom:724.881333pt;}
.y10c{bottom:724.978667pt;}
.y48{bottom:725.722667pt;}
.y2ae{bottom:728.073333pt;}
.y302{bottom:728.153333pt;}
.y4{bottom:732.852000pt;}
.y66{bottom:734.173333pt;}
.y325{bottom:734.881333pt;}
.y8f{bottom:739.457333pt;}
.y344{bottom:739.496000pt;}
.y10b{bottom:740.918667pt;}
.y47{bottom:741.662667pt;}
.y2ad{bottom:744.014667pt;}
.y301{bottom:744.093333pt;}
.yc2{bottom:747.950667pt;}
.y367{bottom:748.792000pt;}
.y324{bottom:750.821333pt;}
.y26{bottom:754.105333pt;}
.y8e{bottom:755.398667pt;}
.y10a{bottom:756.858667pt;}
.y46{bottom:757.602667pt;}
.y2ac{bottom:759.954667pt;}
.y300{bottom:760.034667pt;}
.y3{bottom:762.076000pt;}
.y366{bottom:764.732000pt;}
.y323{bottom:766.761333pt;}
.y343{bottom:768.604000pt;}
.y8d{bottom:771.338667pt;}
.y65{bottom:771.377333pt;}
.y109{bottom:772.800000pt;}
.y45{bottom:773.544000pt;}
.y2ab{bottom:775.894667pt;}
.y2ff{bottom:775.974667pt;}
.ybd{bottom:777.173808pt;}
.y365{bottom:780.672000pt;}
.y322{bottom:782.701333pt;}
.y25{bottom:783.329333pt;}
.y8c{bottom:787.278667pt;}
.y64{bottom:787.317333pt;}
.y108{bottom:788.740000pt;}
.y44{bottom:789.484000pt;}
.y2{bottom:791.298667pt;}
.y2fe{bottom:791.914667pt;}
.y364{bottom:796.613333pt;}
.y2aa{bottom:798.510667pt;}
.y8b{bottom:803.218667pt;}
.y107{bottom:804.680000pt;}
.y43{bottom:805.424000pt;}
.y321{bottom:807.229333pt;}
.y2fd{bottom:807.854667pt;}
.y24{bottom:812.553333pt;}
.y63{bottom:816.425333pt;}
.y8a{bottom:819.158667pt;}
.y1{bottom:820.522667pt;}
.y42{bottom:821.364000pt;}
.y2fc{bottom:823.794667pt;}
.y106{bottom:827.296000pt;}
.y23{bottom:828.493333pt;}
.y2a9{bottom:833.129333pt;}
.y89{bottom:835.098667pt;}
.y41{bottom:843.980000pt;}
.y22{bottom:844.433333pt;}
.y2fb{bottom:846.410667pt;}
.y88{bottom:851.040000pt;}
.y21{bottom:860.373333pt;}
.y105{bottom:862.498667pt;}
.y87{bottom:873.654667pt;}
.y20{bottom:876.313333pt;}
.y40{bottom:878.438667pt;}
.h15{height:3.366074pt;}
.h16{height:5.182125pt;}
.h13{height:18.761340pt;}
.h19{height:19.792260pt;}
.h17{height:20.000600pt;}
.hd{height:21.519360pt;}
.hc{height:25.921399pt;}
.h1b{height:31.024368pt;}
.he{height:31.880400pt;}
.h18{height:33.430690pt;}
.h3{height:33.474560pt;}
.h4{height:35.865600pt;}
.h10{height:36.488257pt;}
.ha{height:36.874903pt;}
.h6{height:37.193707pt;}
.h7{height:39.850400pt;}
.h11{height:39.855733pt;}
.h9{height:44.353820pt;}
.h1a{height:44.359153pt;}
.h8{height:44.632747pt;}
.h2{height:47.820800pt;}
.h5{height:53.559147pt;}
.h1{height:68.769785pt;}
.hb{height:79.833147pt;}
.hf{height:112.424200pt;}
.h14{height:328.427120pt;}
.h12{height:355.510480pt;}
.h0{height:1056.000000pt;}
.w5{width:62.001860pt;}
.w4{width:458.263040pt;}
.w2{width:458.278800pt;}
.w1{width:458.278827pt;}
.w3{width:458.282120pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7f{left:2.703988pt;}
.xc4{left:6.953334pt;}
.x9f{left:10.472274pt;}
.x30{left:12.172774pt;}
.x13{left:18.251453pt;}
.x22{left:30.435929pt;}
.x14{left:35.117443pt;}
.xb5{left:39.192216pt;}
.x21{left:42.226122pt;}
.xc2{left:46.746194pt;}
.x9a{left:48.551555pt;}
.x7d{left:50.154972pt;}
.x9e{left:52.598420pt;}
.x59{left:53.533643pt;}
.x6a{left:54.746095pt;}
.x8a{left:57.829921pt;}
.x80{left:59.874678pt;}
.x54{left:61.102583pt;}
.x92{left:62.070567pt;}
.x86{left:65.081454pt;}
.xb7{left:67.284143pt;}
.x4d{left:68.500922pt;}
.x15{left:70.544354pt;}
.x6b{left:73.603853pt;}
.x6c{left:75.090134pt;}
.x8c{left:76.037102pt;}
.x78{left:78.480859pt;}
.x77{left:79.664568pt;}
.xa1{left:83.585026pt;}
.x41{left:84.888033pt;}
.x23{left:86.601096pt;}
.xb4{left:87.876359pt;}
.xb3{left:88.820236pt;}
.x31{left:90.144002pt;}
.x2f{left:93.171258pt;}
.x79{left:94.856535pt;}
.xa3{left:96.585431pt;}
.x75{left:97.601628pt;}
.xad{left:99.516271pt;}
.xa7{left:101.534449pt;}
.x88{left:102.953046pt;}
.x64{left:103.970170pt;}
.x81{left:105.810638pt;}
.x73{left:106.798401pt;}
.x76{left:107.746605pt;}
.x43{left:109.655993pt;}
.x74{left:110.690425pt;}
.x3d{left:111.764418pt;}
.xa9{left:113.204340pt;}
.x94{left:115.600810pt;}
.x97{left:116.587956pt;}
.x17{left:117.533455pt;}
.x37{left:119.402588pt;}
.x6d{left:120.396533pt;}
.x38{left:122.162825pt;}
.xb9{left:123.332627pt;}
.x16{left:125.339183pt;}
.x6e{left:126.343205pt;}
.x3b{left:128.281336pt;}
.x95{left:129.394888pt;}
.x71{left:130.438283pt;}
.x60{left:131.524947pt;}
.x5a{left:132.969196pt;}
.x51{left:133.979212pt;}
.x96{left:135.380810pt;}
.x3a{left:136.916542pt;}
.x5b{left:137.868145pt;}
.x6f{left:138.825003pt;}
.x98{left:140.046109pt;}
.x42{left:141.109593pt;}
.x46{left:142.240143pt;}
.x72{left:143.417981pt;}
.xb6{left:145.090936pt;}
.x8d{left:147.352346pt;}
.x39{left:148.815757pt;}
.x68{left:150.392594pt;}
.xa0{left:152.354523pt;}
.xb2{left:154.843403pt;}
.x44{left:156.073472pt;}
.x70{left:157.209586pt;}
.x36{left:158.181896pt;}
.x8b{left:159.324500pt;}
.x62{left:160.844779pt;}
.x91{left:162.261521pt;}
.xac{left:163.326242pt;}
.x58{left:164.262083pt;}
.x82{left:165.492461pt;}
.x49{left:166.579124pt;}
.x9b{left:167.669806pt;}
.x4c{left:170.361740pt;}
.x5f{left:171.961448pt;}
.x5c{left:173.605660pt;}
.x55{left:174.602696pt;}
.x50{left:175.743446pt;}
.x10{left:176.804000pt;}
.xf{left:177.880000pt;}
.x4{left:178.900000pt;}
.x57{left:182.373145pt;}
.x45{left:184.171580pt;}
.x12{left:185.332000pt;}
.x5d{left:186.794903pt;}
.x9c{left:187.980466pt;}
.x35{left:189.231551pt;}
.x7b{left:190.502107pt;}
.x8{left:192.568000pt;}
.x7e{left:193.880469pt;}
.x7a{left:194.990004pt;}
.xc5{left:196.954667pt;}
.xd{left:198.282667pt;}
.x4a{left:200.185963pt;}
.x2{left:201.269333pt;}
.xbd{left:202.226702pt;}
.x61{left:204.414865pt;}
.xb1{left:205.739816pt;}
.x89{left:206.707181pt;}
.xb8{left:207.877910pt;}
.x47{left:208.951902pt;}
.x4e{left:209.848802pt;}
.xc{left:211.566667pt;}
.x9d{left:212.878541pt;}
.x2a{left:215.020000pt;}
.x3f{left:217.387145pt;}
.x56{left:219.175381pt;}
.x4b{left:220.218776pt;}
.x1a{left:221.357491pt;}
.x5{left:222.289333pt;}
.x1{left:224.808000pt;}
.x34{left:225.799208pt;}
.x4f{left:227.291362pt;}
.x7c{left:228.558827pt;}
.xb{left:229.500000pt;}
.x87{left:232.005492pt;}
.x2e{left:233.112000pt;}
.xaa{left:234.974038pt;}
.x48{left:236.189580pt;}
.x53{left:237.406359pt;}
.x3e{left:239.340163pt;}
.x19{left:241.301494pt;}
.x3{left:243.148000pt;}
.x5e{left:246.726139pt;}
.xab{left:247.742027pt;}
.x7{left:248.893333pt;}
.x32{left:250.023441pt;}
.xa2{left:251.689065pt;}
.xbf{left:254.100000pt;}
.x8f{left:259.009210pt;}
.xa8{left:260.330143pt;}
.x8e{left:261.998153pt;}
.x18{left:263.428435pt;}
.x90{left:265.821566pt;}
.xb0{left:267.181441pt;}
.x27{left:271.289333pt;}
.xaf{left:273.033539pt;}
.xc3{left:275.949333pt;}
.xae{left:278.019335pt;}
.x67{left:279.451840pt;}
.x52{left:280.820987pt;}
.xa5{left:283.582151pt;}
.x11{left:285.708000pt;}
.x6{left:287.325333pt;}
.x26{left:290.397333pt;}
.x24{left:297.305957pt;}
.xbe{left:298.434667pt;}
.x1d{left:304.160000pt;}
.x65{left:313.228044pt;}
.x2c{left:314.845333pt;}
.x2d{left:318.705333pt;}
.x2b{left:319.993333pt;}
.xba{left:327.690315pt;}
.x99{left:329.695513pt;}
.x66{left:336.400933pt;}
.x69{left:346.211813pt;}
.x3c{left:354.955191pt;}
.x25{left:361.888860pt;}
.xbc{left:364.507385pt;}
.xa4{left:369.851694pt;}
.x9{left:371.058667pt;}
.xc1{left:376.497748pt;}
.x1c{left:378.300468pt;}
.xa{left:380.444000pt;}
.x1b{left:382.428291pt;}
.x63{left:386.631315pt;}
.x93{left:393.699575pt;}
.x20{left:400.857333pt;}
.xe{left:404.177333pt;}
.x40{left:409.257472pt;}
.x1f{left:413.914667pt;}
.x1e{left:415.469333pt;}
.x33{left:416.844721pt;}
.x83{left:421.233644pt;}
.xa6{left:430.334607pt;}
.xbb{left:437.435936pt;}
.x84{left:445.491650pt;}
.x85{left:446.543699pt;}
.xc0{left:494.498667pt;}
.x29{left:532.469333pt;}
.x28{left:534.024000pt;}
}




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