
    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_a1806ed8cb8223cc28fd8afc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.194000;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_77ce4482c2894a8e02d726de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.205000;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_9fdc832213d62e691307b198.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.301000;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_03d976fbc98a1c5658524257.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892578;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_39dff8922bc2b8fd71844480.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910000;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_036028fb917f76d25a97ed81.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.688965;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_7396c4feaae371e175f199d6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906250;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_d6c9cf891437f723f7a6492d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.025879;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_3607f40fc32f1925cbe84d02.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.671000;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;}
.m7{transform:matrix(0.146895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146895,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154685,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.158742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158742,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.174969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174969,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.181419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181419,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236374,0.000000,-0.080857,0.236563,0,0);-ms-transform:matrix(0.236374,0.000000,-0.080857,0.236563,0,0);-webkit-transform:matrix(0.236374,0.000000,-0.080857,0.236563,0,0);}
.m6{transform:matrix(0.236403,0.000000,-0.080864,0.236561,0,0);-ms-transform:matrix(0.236403,0.000000,-0.080864,0.236561,0,0);-webkit-transform:matrix(0.236403,0.000000,-0.080864,0.236561,0,0);}
.m0{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-72.000000px;}
.v5{vertical-align:-69.000000px;}
.v2{vertical-align:-48.000000px;}
.va{vertical-align:-45.000000px;}
.v6{vertical-align:-36.000000px;}
.v4{vertical-align:-33.000000px;}
.v9{vertical-align:-24.000000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.000000px;}
.v8{vertical-align:24.000000px;}
.ls17{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012000px;}
.ls15{letter-spacing:0.024000px;}
.ls1d{letter-spacing:0.024019px;}
.ls6{letter-spacing:0.030000px;}
.ls1f{letter-spacing:0.086400px;}
.ls2{letter-spacing:0.094020px;}
.ls3a{letter-spacing:0.271225px;}
.ls24{letter-spacing:0.381600px;}
.ls7{letter-spacing:0.441617px;}
.ls10{letter-spacing:0.679200px;}
.ls4{letter-spacing:0.958020px;}
.ls31{letter-spacing:1.036800px;}
.ls3{letter-spacing:1.140000px;}
.lsb{letter-spacing:1.334400px;}
.ls2f{letter-spacing:1.334412px;}
.lsa{letter-spacing:1.394412px;}
.ls8{letter-spacing:1.401617px;}
.ls1{letter-spacing:1.510020px;}
.ls23{letter-spacing:1.716029px;}
.ls2a{letter-spacing:1.958460px;}
.ls30{letter-spacing:2.028000px;}
.ls1e{letter-spacing:2.661617px;}
.ls16{letter-spacing:3.014400px;}
.ls5{letter-spacing:3.096000px;}
.ls9{letter-spacing:3.444019px;}
.ls1c{letter-spacing:4.039215px;}
.ls25{letter-spacing:18.026400px;}
.ls33{letter-spacing:45.417600px;}
.ls32{letter-spacing:70.389600px;}
.ls2d{letter-spacing:108.172800px;}
.ls34{letter-spacing:114.177600px;}
.ls18{letter-spacing:142.447200px;}
.ls1a{letter-spacing:149.488800px;}
.ls29{letter-spacing:150.206400px;}
.ls20{letter-spacing:193.192692px;}
.ls21{letter-spacing:193.192694px;}
.ls1b{letter-spacing:198.170400px;}
.ls3b{letter-spacing:198.173675px;}
.ls11{letter-spacing:201.184800px;}
.ls13{letter-spacing:219.199200px;}
.ls12{letter-spacing:231.208800px;}
.ls2e{letter-spacing:237.276000px;}
.ls26{letter-spacing:243.280800px;}
.ls28{letter-spacing:246.283200px;}
.ls27{letter-spacing:249.285600px;}
.ls14{letter-spacing:255.228000px;}
.lsf{letter-spacing:258.292800px;}
.ls19{letter-spacing:319.294067px;}
.ls38{letter-spacing:327.348000px;}
.ls39{letter-spacing:330.350400px;}
.ls36{letter-spacing:333.352800px;}
.ls35{letter-spacing:336.355200px;}
.ls37{letter-spacing:342.360000px;}
.ls2b{letter-spacing:381.391800px;}
.ls2c{letter-spacing:387.396600px;}
.lsd{letter-spacing:510.420600px;}
.lsc{letter-spacing:858.699304px;}
.ls22{letter-spacing:993.882000px;}
.ls0{letter-spacing:1270.026000px;}
.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;}
}
.wsd{word-spacing:-46.620000px;}
.wsc{word-spacing:-41.958000px;}
.ws4{word-spacing:-15.852007px;}
.ws2c{word-spacing:-15.225750px;}
.wse{word-spacing:-15.024000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws2{word-spacing:-9.750000px;}
.ws2b{word-spacing:-9.135000px;}
.ws6{word-spacing:-9.012000px;}
.ws3{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
.ws1f{word-spacing:57.069600px;}
.ws20{word-spacing:60.072000px;}
.ws7{word-spacing:64.178175px;}
.ws8{word-spacing:66.151200px;}
.ws9{word-spacing:80.118663px;}
.ws23{word-spacing:87.093600px;}
.wsa{word-spacing:111.187200px;}
.ws1c{word-spacing:126.554775px;}
.ws21{word-spacing:132.129600px;}
.ws5{word-spacing:240.228000px;}
.ws1b{word-spacing:283.284071px;}
.wsf{word-spacing:287.417775px;}
.ws10{word-spacing:291.551775px;}
.ws2a{word-spacing:299.620800px;}
.ws29{word-spacing:302.623200px;}
.ws27{word-spacing:308.628000px;}
.ws26{word-spacing:311.630400px;}
.ws28{word-spacing:320.637600px;}
.ws22{word-spacing:333.660000px;}
.ws18{word-spacing:370.999231px;}
.ws2d{word-spacing:397.828917px;}
.ws2f{word-spacing:403.832517px;}
.ws31{word-spacing:406.834317px;}
.ws30{word-spacing:409.835517px;}
.ws2e{word-spacing:427.846317px;}
.ws24{word-spacing:450.459000px;}
.ws19{word-spacing:508.014000px;}
.ws1a{word-spacing:512.739000px;}
.ws25{word-spacing:558.546000px;}
.ws1e{word-spacing:595.548000px;}
.ws13{word-spacing:601.171941px;}
.ws14{word-spacing:609.588000px;}
.ws16{word-spacing:610.252500px;}
.ws15{word-spacing:615.358500px;}
.ws11{word-spacing:628.193483px;}
.ws12{word-spacing:630.600000px;}
.ws17{word-spacing:743.322000px;}
.ws1d{word-spacing:832.740000px;}
._7c{margin-left:-826.607220px;}
._1d{margin-left:-734.053620px;}
._97{margin-left:-712.985234px;}
._ad{margin-left:-545.366400px;}
._41{margin-left:-540.336000px;}
._5e{margin-left:-509.729400px;}
._5d{margin-left:-506.340000px;}
._58{margin-left:-500.722200px;}
._56{margin-left:-498.320400px;}
._8d{margin-left:-483.375000px;}
._8f{margin-left:-458.056200px;}
._90{margin-left:-450.274200px;}
._93{margin-left:-427.632600px;}
._9c{margin-left:-419.258400px;}
._84{margin-left:-414.244800px;}
._af{margin-left:-412.296000px;}
._a2{margin-left:-402.235200px;}
._50{margin-left:-398.866934px;}
._23{margin-left:-396.230400px;}
._28{margin-left:-385.775220px;}
._96{margin-left:-376.968000px;}
._61{margin-left:-372.211200px;}
._a3{margin-left:-368.234400px;}
._7e{margin-left:-363.266400px;}
._91{margin-left:-357.124800px;}
._b3{margin-left:-348.192000px;}
._94{margin-left:-343.576200px;}
._ae{margin-left:-332.205600px;}
._9f{margin-left:-314.191200px;}
._98{margin-left:-306.158400px;}
._2f{margin-left:-300.153600px;}
._7d{margin-left:-296.590200px;}
._7a{margin-left:-294.211200px;}
._75{margin-left:-291.208800px;}
._88{margin-left:-284.167200px;}
._51{margin-left:-275.122363px;}
._bf{margin-left:-265.879200px;}
._79{margin-left:-264.187200px;}
._74{margin-left:-261.184800px;}
._95{margin-left:-260.148000px;}
._40{margin-left:-258.148200px;}
._83{margin-left:-253.920000px;}
._69{margin-left:-252.189600px;}
._72{margin-left:-251.140800px;}
._80{margin-left:-249.187200px;}
._73{margin-left:-248.138400px;}
._6f{margin-left:-245.136000px;}
._5c{margin-left:-243.108000px;}
._7b{margin-left:-240.220047px;}
._57{margin-left:-238.175400px;}
._65{margin-left:-237.133800px;}
._66{margin-left:-234.132000px;}
._b5{margin-left:-232.852800px;}
._64{margin-left:-231.130200px;}
._53{margin-left:-224.355359px;}
._86{margin-left:-223.150200px;}
._52{margin-left:-221.182421px;}
._62{margin-left:-219.088800px;}
._63{margin-left:-216.086400px;}
._8e{margin-left:-214.894200px;}
._67{margin-left:-213.158400px;}
._9a{margin-left:-211.891800px;}
._2c{margin-left:-210.081600px;}
._31{margin-left:-207.079200px;}
._ca{margin-left:-204.032220px;}
._c9{margin-left:-202.140000px;}
._81{margin-left:-201.118980px;}
._ac{margin-left:-195.106200px;}
._c2{margin-left:-191.772000px;}
._7f{margin-left:-189.139200px;}
._78{margin-left:-186.136800px;}
._4d{margin-left:-183.777600px;}
._ba{margin-left:-182.764800px;}
._44{margin-left:-180.144000px;}
._9d{margin-left:-178.120200px;}
._2b{margin-left:-177.117600px;}
._30{margin-left:-174.079200px;}
._c5{margin-left:-170.332800px;}
._a0{margin-left:-168.765600px;}
._c4{margin-left:-164.750400px;}
._8c{margin-left:-162.102000px;}
._9b{margin-left:-159.100200px;}
._76{margin-left:-156.112800px;}
._4e{margin-left:-155.064000px;}
._99{margin-left:-150.325066px;}
._6c{margin-left:-148.785600px;}
._68{margin-left:-147.105600px;}
._6e{margin-left:-145.771140px;}
._9e{margin-left:-143.474400px;}
._a1{margin-left:-142.419000px;}
._c1{margin-left:-141.082200px;}
._b9{margin-left:-138.079800px;}
._bb{margin-left:-135.078000px;}
._45{margin-left:-133.773600px;}
._b8{margin-left:-132.076200px;}
._46{margin-left:-130.783200px;}
._5f{margin-left:-129.016800px;}
._cf{margin-left:-127.272281px;}
._5a{margin-left:-126.014400px;}
._71{margin-left:-123.432000px;}
._4c{margin-left:-121.764000px;}
._d0{margin-left:-120.466647px;}
._25{margin-left:-119.391549px;}
._4b{margin-left:-117.427200px;}
._70{margin-left:-115.693579px;}
._c0{margin-left:-113.709600px;}
._5b{margin-left:-111.002400px;}
._60{margin-left:-108.000000px;}
._1f{margin-left:-105.012000px;}
._4f{margin-left:-104.011200px;}
._1e{margin-left:-102.069600px;}
._ce{margin-left:-99.484500px;}
._59{margin-left:-98.400000px;}
._22{margin-left:-96.064800px;}
._cd{margin-left:-93.079932px;}
._24{margin-left:-87.919099px;}
._6a{margin-left:-84.043260px;}
._92{margin-left:-80.978460px;}
._47{margin-left:-79.742400px;}
._2a{margin-left:-75.012060px;}
._2d{margin-left:-72.045660px;}
._49{margin-left:-70.048200px;}
._32{margin-left:-69.031260px;}
._48{margin-left:-67.046040px;}
._2e{margin-left:-66.040860px;}
._4a{margin-left:-64.044000px;}
._8b{margin-left:-63.030000px;}
._82{margin-left:-60.028020px;}
._77{margin-left:-59.009280px;}
._21{margin-left:-57.033660px;}
._6b{margin-left:-54.019200px;}
._c7{margin-left:-51.028800px;}
._be{margin-left:-48.026400px;}
._20{margin-left:-45.024000px;}
._6d{margin-left:-43.753999px;}
._29{margin-left:-42.021600px;}
._b4{margin-left:-40.000020px;}
._85{margin-left:-34.024020px;}
._87{margin-left:-31.021980px;}
._43{margin-left:-30.013980px;}
._42{margin-left:-27.012000px;}
._6{margin-left:-8.192340px;}
._d1{margin-left:-6.830400px;}
._a8{margin-left:-5.485920px;}
._7{margin-left:-4.474020px;}
._2{margin-left:-2.944800px;}
._4{margin-left:-1.104720px;}
._1{width:1.264800px;}
._3{width:2.287200px;}
._5{width:3.598140px;}
._8{width:5.498700px;}
._15{width:6.704760px;}
._9{width:8.329800px;}
._14{width:9.553560px;}
._3e{width:11.599920px;}
._37{width:12.691200px;}
._a{width:16.609320px;}
._1c{width:18.252180px;}
._11{width:20.855454px;}
._13{width:21.931920px;}
._12{width:23.798580px;}
._33{width:24.924672px;}
._39{width:26.304900px;}
._1b{width:27.723300px;}
._3f{width:29.372100px;}
._e{width:30.453660px;}
._34{width:32.724540px;}
._38{width:33.937920px;}
._3d{width:35.160910px;}
._3a{width:36.194460px;}
._b7{width:38.419620px;}
._3b{width:39.508860px;}
._35{width:42.228780px;}
._10{width:45.034080px;}
._1a{width:46.042080px;}
._cc{width:47.663040px;}
._f{width:48.815700px;}
._26{width:50.895180px;}
._27{width:52.051645px;}
._d2{width:53.245698px;}
._a7{width:54.641160px;}
._0{width:57.057600px;}
._bd{width:59.496720px;}
._bc{width:60.787405px;}
._cb{width:63.262380px;}
._d5{width:66.073671px;}
._18{width:69.481980px;}
._19{width:71.938527px;}
._55{width:75.084000px;}
._36{width:78.139965px;}
._c{width:81.026400px;}
._d{width:84.986400px;}
._3c{width:90.465600px;}
._d4{width:95.990400px;}
._b1{width:101.828989px;}
._b0{width:105.038400px;}
._b2{width:106.069320px;}
._c6{width:113.824980px;}
._16{width:119.930880px;}
._17{width:123.466320px;}
._d3{width:129.854400px;}
._a6{width:132.117600px;}
._a4{width:138.122400px;}
._a9{width:156.206400px;}
._b6{width:162.141600px;}
._c8{width:175.123200px;}
._54{width:195.168000px;}
._b{width:198.170400px;}
._aa{width:361.504725px;}
._ab{width:365.638725px;}
._a5{width:432.358200px;}
._c3{width:460.045565px;}
._8a{width:535.989000px;}
._89{width:540.713400px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fsd{font-size:36.540000px;}
.fs8{font-size:38.045201px;}
.fs4{font-size:39.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fse{font-size:60.903000px;}
.fs3{font-size:63.408028px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:81.375000px;}
.fsc{font-size:84.375000px;}
.fsa{font-size:93.000000px;}
.fs7{font-size:95.439000px;}
.fsb{font-size:96.000000px;}
.fs9{font-size:100.500000px;}
.y0{bottom:0.000000px;}
.yee{bottom:3.000000px;}
.y5{bottom:3.750000px;}
.y4c{bottom:5.250000px;}
.yf3{bottom:114.750300px;}
.y1a1{bottom:120.750000px;}
.y1a2{bottom:120.750300px;}
.y172{bottom:125.250300px;}
.yf2{bottom:132.000300px;}
.y45{bottom:134.250000px;}
.y1a0{bottom:136.500000px;}
.y170{bottom:140.250300px;}
.y8f{bottom:141.000000px;}
.y16f{bottom:142.500000px;}
.y171{bottom:142.500300px;}
.yf1{bottom:149.250000px;}
.y44{bottom:151.500000px;}
.y16e{bottom:157.500000px;}
.y8e{bottom:158.250000px;}
.y16d{bottom:159.750000px;}
.yf0{bottom:166.500000px;}
.y19f{bottom:167.250000px;}
.y43{bottom:168.750000px;}
.y208{bottom:171.000000px;}
.y8d{bottom:175.500000px;}
.y216{bottom:177.000000px;}
.y16c{bottom:178.500000px;}
.yed{bottom:179.250000px;}
.y12b{bottom:183.750000px;}
.y42{bottom:186.000000px;}
.y207{bottom:188.250000px;}
.yec{bottom:190.500000px;}
.y8c{bottom:192.750000px;}
.yeb{bottom:194.250000px;}
.y16b{bottom:195.750000px;}
.y12a{bottom:201.000000px;}
.yef{bottom:204.000000px;}
.y206{bottom:205.500000px;}
.y41{bottom:210.000000px;}
.y215{bottom:211.500000px;}
.y16a{bottom:213.000000px;}
.y129{bottom:218.250000px;}
.y205{bottom:222.750000px;}
.y40{bottom:227.250000px;}
.y214{bottom:228.750000px;}
.y169{bottom:230.250000px;}
.y128{bottom:235.500000px;}
.y204{bottom:240.000000px;}
.y3f{bottom:244.500000px;}
.y213{bottom:246.000000px;}
.y168{bottom:246.750000px;}
.y1b9{bottom:248.250000px;}
.y127{bottom:250.500000px;}
.y126{bottom:252.750000px;}
.y3e{bottom:255.000000px;}
.y167{bottom:257.250000px;}
.ye8{bottom:261.000000px;}
.y8b{bottom:261.750000px;}
.ye9{bottom:262.500000px;}
.y212{bottom:263.250000px;}
.y1b8{bottom:264.750000px;}
.ye7{bottom:266.250000px;}
.y1da{bottom:270.000000px;}
.y125{bottom:271.500000px;}
.y3d{bottom:272.250000px;}
.yea{bottom:273.000000px;}
.y166{bottom:274.500000px;}
.y76{bottom:278.250000px;}
.y8a{bottom:279.000000px;}
.y1b7{bottom:280.500000px;}
.y1d9{bottom:287.250000px;}
.ye6{bottom:288.750000px;}
.y3c{bottom:289.500000px;}
.y165{bottom:291.750000px;}
.y75{bottom:293.250000px;}
.y74{bottom:295.500000px;}
.y89{bottom:296.250000px;}
.y211{bottom:297.750000px;}
.y1d8{bottom:304.500000px;}
.y3b{bottom:306.000000px;}
.y161{bottom:308.250000px;}
.y203{bottom:309.000000px;}
.y3a{bottom:309.750000px;}
.y1b6{bottom:311.250000px;}
.y73{bottom:312.750000px;}
.y88{bottom:313.500000px;}
.y22f{bottom:315.000000px;}
.y162{bottom:320.250000px;}
.y1d7{bottom:321.750000px;}
.ye5{bottom:323.250000px;}
.y163{bottom:324.000000px;}
.y202{bottom:326.250000px;}
.y1b5{bottom:327.000000px;}
.y39{bottom:329.250000px;}
.y72{bottom:330.000000px;}
.y87{bottom:330.750000px;}
.y22e{bottom:332.250000px;}
.y164{bottom:334.500000px;}
.y1d6{bottom:339.000000px;}
.yd3{bottom:340.500000px;}
.yd9{bottom:341.250000px;}
.y1b4{bottom:342.000000px;}
.ycf{bottom:342.750000px;}
.yde{bottom:343.500000px;}
.ycd{bottom:345.000000px;}
.ydb{bottom:345.750000px;}
.y38{bottom:346.500000px;}
.y71{bottom:347.250000px;}
.y86{bottom:348.000000px;}
.ye3{bottom:349.500000px;}
.ycb{bottom:351.000000px;}
.ydf{bottom:354.000000px;}
.yd6{bottom:354.750000px;}
.yd0{bottom:355.500000px;}
.y1d5{bottom:356.250000px;}
.y124{bottom:357.750000px;}
.y201{bottom:358.500000px;}
.y210{bottom:360.000000px;}
.y200{bottom:360.750000px;}
.y37{bottom:363.750000px;}
.y70{bottom:364.500000px;}
.y85{bottom:365.250000px;}
.y22d{bottom:366.750000px;}
.ydc{bottom:368.250000px;}
.yd7{bottom:369.000000px;}
.yd1{bottom:369.750000px;}
.y160{bottom:370.500000px;}
.yca{bottom:372.000000px;}
.y1d4{bottom:373.500000px;}
.y123{bottom:375.000000px;}
.y20f{bottom:375.750000px;}
.y1ff{bottom:378.000000px;}
.ye0{bottom:378.750000px;}
.ycc{bottom:379.500000px;}
.y36{bottom:381.000000px;}
.y6f{bottom:381.750000px;}
.y84{bottom:382.500000px;}
.yd8{bottom:383.250000px;}
.yd2{bottom:384.000000px;}
.y15f{bottom:389.250000px;}
.ydd{bottom:390.750000px;}
.yc9{bottom:391.500000px;}
.y122{bottom:392.250000px;}
.ye1{bottom:393.000000px;}
.yce{bottom:393.750000px;}
.ye4{bottom:394.500000px;}
.yd5{bottom:396.750000px;}
.yda{bottom:397.500000px;}
.yd4{bottom:398.250000px;}
.y32{bottom:399.000000px;}
.y83{bottom:399.750000px;}
.y22c{bottom:401.250000px;}
.y1d2{bottom:402.000000px;}
.y33{bottom:402.750000px;}
.ye2{bottom:403.500000px;}
.y1d3{bottom:405.750000px;}
.y15e{bottom:406.500000px;}
.y121{bottom:407.250000px;}
.y120{bottom:409.500000px;}
.y1fc{bottom:410.250000px;}
.y35{bottom:411.000000px;}
.y1d1{bottom:412.500000px;}
.y31{bottom:414.750000px;}
.y6e{bottom:416.250000px;}
.y82{bottom:417.000000px;}
.y1fd{bottom:418.500000px;}
.yc8{bottom:420.000000px;}
.y1fe{bottom:422.250000px;}
.y15d{bottom:423.750000px;}
.y34{bottom:424.500000px;}
.y11f{bottom:426.750000px;}
.y6d{bottom:433.500000px;}
.y19e{bottom:434.250000px;}
.y1d0{bottom:435.750000px;}
.yc6{bottom:437.250000px;}
.y15c{bottom:441.000000px;}
.yc4{bottom:443.250000px;}
.y11e{bottom:444.000000px;}
.yc7{bottom:447.000000px;}
.y30{bottom:447.750000px;}
.y1fa{bottom:448.500000px;}
.y6c{bottom:450.750000px;}
.yc3{bottom:451.500000px;}
.y1cf{bottom:453.000000px;}
.yc2{bottom:455.250000px;}
.y15b{bottom:456.000000px;}
.yc5{bottom:458.250000px;}
.y1f9{bottom:459.750000px;}
.y11d{bottom:461.250000px;}
.y2f{bottom:465.000000px;}
.y6b{bottom:468.000000px;}
.y19d{bottom:468.750000px;}
.y1ce{bottom:470.250000px;}
.y1fb{bottom:471.750000px;}
.y15a{bottom:473.250000px;}
.y159{bottom:475.500000px;}
.y11b{bottom:476.250000px;}
.y11c{bottom:478.500000px;}
.y2e{bottom:482.250000px;}
.y6a{bottom:485.250000px;}
.y19c{bottom:486.000000px;}
.y1cd{bottom:487.500000px;}
.yc0{bottom:489.750000px;}
.y158{bottom:492.750000px;}
.y1f5{bottom:494.250000px;}
.ybd{bottom:495.750000px;}
.y2d{bottom:497.250000px;}
.y1f8{bottom:498.750000px;}
.y2c{bottom:499.500000px;}
.y69{bottom:502.500000px;}
.y19b{bottom:503.250000px;}
.ybb{bottom:504.000000px;}
.y1cc{bottom:504.750000px;}
.y1f7{bottom:506.250000px;}
.yba{bottom:507.750000px;}
.y157{bottom:510.000000px;}
.ybf{bottom:510.750000px;}
.y11a{bottom:513.000000px;}
.y2a{bottom:513.750000px;}
.ybc{bottom:514.500000px;}
.y29{bottom:516.000000px;}
.ybe{bottom:517.500000px;}
.y1f6{bottom:518.250000px;}
.y81{bottom:519.750000px;}
.yc1{bottom:520.500000px;}
.y1cb{bottom:522.000000px;}
.y2b{bottom:522.750000px;}
.y65{bottom:525.750000px;}
.y68{bottom:526.500000px;}
.y67{bottom:528.000000px;}
.y150{bottom:529.500000px;}
.y119{bottom:530.250000px;}
.y63{bottom:531.750000px;}
.y156{bottom:533.250000px;}
.y28{bottom:534.750000px;}
.y80{bottom:537.000000px;}
.y153{bottom:537.750000px;}
.y66{bottom:538.500000px;}
.y1ca{bottom:539.250000px;}
.y151{bottom:541.500000px;}
.y64{bottom:542.250000px;}
.y1f2{bottom:543.750000px;}
.y118{bottom:545.250000px;}
.y117{bottom:547.500000px;}
.y154{bottom:548.250000px;}
.y27{bottom:552.000000px;}
.y7f{bottom:554.250000px;}
.y152{bottom:555.000000px;}
.y1f4{bottom:555.750000px;}
.y1c9{bottom:556.500000px;}
.y155{bottom:557.250000px;}
.y62{bottom:559.500000px;}
.y61{bottom:561.750000px;}
.y116{bottom:564.750000px;}
.y1f3{bottom:567.750000px;}
.y26{bottom:569.250000px;}
.y7e{bottom:571.500000px;}
.y19a{bottom:572.250000px;}
.y22b{bottom:573.750000px;}
.yb9{bottom:576.750000px;}
.y14f{bottom:579.750000px;}
.y115{bottom:580.500000px;}
.y1b3{bottom:582.000000px;}
.y25{bottom:586.500000px;}
.y60{bottom:587.250000px;}
.y5c{bottom:588.000000px;}
.y5f{bottom:588.750000px;}
.y199{bottom:589.500000px;}
.y1c8{bottom:591.000000px;}
.yb8{bottom:591.750000px;}
.y5b{bottom:592.500000px;}
.yb7{bottom:594.000000px;}
.y114{bottom:596.250000px;}
.y14e{bottom:597.000000px;}
.y1f1{bottom:598.500000px;}
.y5e{bottom:599.250000px;}
.y5d{bottom:603.000000px;}
.y24{bottom:603.750000px;}
.y7d{bottom:606.000000px;}
.y198{bottom:606.750000px;}
.y1c7{bottom:608.250000px;}
.y1ef{bottom:609.750000px;}
.yb6{bottom:611.250000px;}
.y14d{bottom:612.000000px;}
.y113{bottom:612.750000px;}
.y14c{bottom:614.250000px;}
.y112{bottom:616.500000px;}
.y1f0{bottom:617.250000px;}
.y5a{bottom:620.250000px;}
.y23{bottom:621.000000px;}
.y59{bottom:622.500000px;}
.y197{bottom:624.000000px;}
.y1c6{bottom:625.500000px;}
.yae{bottom:629.250000px;}
.yb5{bottom:631.500000px;}
.ya9{bottom:633.000000px;}
.yb2{bottom:633.750000px;}
.yb0{bottom:635.250000px;}
.yab{bottom:636.750000px;}
.ya5{bottom:637.500000px;}
.y22{bottom:638.250000px;}
.ya6{bottom:639.000000px;}
.y58{bottom:639.750000px;}
.y195{bottom:640.500000px;}
.yac{bottom:642.750000px;}
.y1ee{bottom:645.000000px;}
.y14b{bottom:648.750000px;}
.y1b2{bottom:651.000000px;}
.y196{bottom:652.500000px;}
.ya7{bottom:653.250000px;}
.y7c{bottom:654.000000px;}
.y21{bottom:655.500000px;}
.yb3{bottom:656.250000px;}
.y57{bottom:657.000000px;}
.ya4{bottom:660.000000px;}
.y14a{bottom:666.000000px;}
.ya8{bottom:667.500000px;}
.y1b1{bottom:668.250000px;}
.yad{bottom:671.250000px;}
.y20{bottom:672.750000px;}
.y1c5{bottom:677.250000px;}
.y7b{bottom:678.000000px;}
.yb4{bottom:678.750000px;}
.y53{bottom:680.250000px;}
.y56{bottom:681.000000px;}
.yaa{bottom:681.750000px;}
.y55{bottom:682.500000px;}
.ya3{bottom:683.250000px;}
.yb1{bottom:684.750000px;}
.yaf{bottom:685.500000px;}
.y51{bottom:686.250000px;}
.y1f{bottom:690.000000px;}
.y54{bottom:693.000000px;}
.y7a{bottom:693.750000px;}
.y1c4{bottom:694.500000px;}
.y52{bottom:696.750000px;}
.y193{bottom:697.500000px;}
.y149{bottom:700.500000px;}
.y192{bottom:701.250000px;}
.y22a{bottom:703.500000px;}
.y1e{bottom:707.250000px;}
.ya2{bottom:708.000000px;}
.y79{bottom:710.250000px;}
.y194{bottom:711.000000px;}
.y1c3{bottom:711.750000px;}
.y50{bottom:713.250000px;}
.y4f{bottom:715.500000px;}
.y148{bottom:717.750000px;}
.y229{bottom:720.750000px;}
.y78{bottom:723.000000px;}
.y1d{bottom:724.500000px;}
.ya1{bottom:725.250000px;}
.y1c2{bottom:729.000000px;}
.y1b0{bottom:730.500000px;}
.y4e{bottom:734.250000px;}
.y147{bottom:735.000000px;}
.y228{bottom:738.000000px;}
.ya0{bottom:740.250000px;}
.y111{bottom:741.000000px;}
.y1c{bottom:741.750000px;}
.y9f{bottom:742.500000px;}
.y1e8{bottom:745.500000px;}
.y1c1{bottom:746.250000px;}
.y1af{bottom:747.750000px;}
.y1eb{bottom:749.250000px;}
.y4d{bottom:751.500000px;}
.y146{bottom:752.250000px;}
.y227{bottom:755.250000px;}
.y1ea{bottom:757.500000px;}
.y110{bottom:758.250000px;}
.y1b{bottom:759.000000px;}
.y9e{bottom:759.750000px;}
.y1ed{bottom:761.250000px;}
.y1c0{bottom:763.500000px;}
.y1ae{bottom:765.000000px;}
.y1e9{bottom:767.250000px;}
.y191{bottom:768.750000px;}
.y145{bottom:769.500000px;}
.y1ec{bottom:771.000000px;}
.y226{bottom:772.500000px;}
.y4b{bottom:775.500000px;}
.y1a{bottom:776.250000px;}
.y4a{bottom:777.000000px;}
.y1ad{bottom:780.000000px;}
.y47{bottom:780.750000px;}
.y1ac{bottom:782.250000px;}
.y190{bottom:786.000000px;}
.y144{bottom:786.750000px;}
.y49{bottom:787.500000px;}
.y225{bottom:789.750000px;}
.y10f{bottom:790.500000px;}
.y48{bottom:791.250000px;}
.y10e{bottom:792.750000px;}
.y19{bottom:793.500000px;}
.y1e6{bottom:795.000000px;}
.y1bf{bottom:798.000000px;}
.y1ab{bottom:799.500000px;}
.y18f{bottom:801.000000px;}
.y18e{bottom:803.250000px;}
.y143{bottom:804.000000px;}
.y1e7{bottom:807.000000px;}
.y46{bottom:808.500000px;}
.y9d{bottom:809.250000px;}
.y10d{bottom:810.000000px;}
.y18{bottom:810.750000px;}
.y1e5{bottom:813.000000px;}
.y1be{bottom:815.250000px;}
.y1aa{bottom:816.750000px;}
.y18d{bottom:820.500000px;}
.y142{bottom:821.250000px;}
.y224{bottom:824.250000px;}
.y9c{bottom:825.750000px;}
.y17{bottom:827.250000px;}
.y1a9{bottom:831.750000px;}
.y1bd{bottom:832.500000px;}
.y1a8{bottom:834.000000px;}
.y1e1{bottom:836.250000px;}
.y18c{bottom:837.750000px;}
.y9b{bottom:838.500000px;}
.y1e3{bottom:840.000000px;}
.y223{bottom:841.500000px;}
.y20e{bottom:842.250000px;}
.y16{bottom:843.000000px;}
.y10c{bottom:844.500000px;}
.y1e2{bottom:848.250000px;}
.y1bc{bottom:849.750000px;}
.y18a{bottom:850.500000px;}
.y1a7{bottom:851.250000px;}
.y1e4{bottom:852.000000px;}
.y141{bottom:855.750000px;}
.y15{bottom:858.000000px;}
.y222{bottom:858.750000px;}
.y20d{bottom:859.500000px;}
.y10b{bottom:861.750000px;}
.y188{bottom:865.500000px;}
.y1bb{bottom:867.000000px;}
.y1a6{bottom:867.750000px;}
.y18b{bottom:872.250000px;}
.y140{bottom:873.000000px;}
.y14{bottom:873.750000px;}
.y189{bottom:876.000000px;}
.y20c{bottom:876.750000px;}
.y109{bottom:879.000000px;}
.y1e0{bottom:882.000000px;}
.y1a5{bottom:883.500000px;}
.y13{bottom:889.500000px;}
.y10a{bottom:890.250000px;}
.y221{bottom:893.250000px;}
.y107{bottom:894.000000px;}
.y187{bottom:895.500000px;}
.y1a4{bottom:898.500000px;}
.y1df{bottom:899.250000px;}
.y12{bottom:905.250000px;}
.y13f{bottom:907.500000px;}
.y108{bottom:909.750000px;}
.y220{bottom:910.500000px;}
.y20b{bottom:911.250000px;}
.y186{bottom:912.750000px;}
.y1a3{bottom:914.250000px;}
.y1de{bottom:916.500000px;}
.y11{bottom:921.750000px;}
.y13e{bottom:924.750000px;}
.y106{bottom:925.500000px;}
.y20a{bottom:927.750000px;}
.y185{bottom:930.000000px;}
.y1dd{bottom:933.750000px;}
.y10{bottom:937.500000px;}
.y13d{bottom:942.000000px;}
.y105{bottom:942.750000px;}
.y21f{bottom:945.000000px;}
.y1ba{bottom:946.500000px;}
.y184{bottom:947.250000px;}
.y77{bottom:950.250000px;}
.yf{bottom:953.250000px;}
.y9a{bottom:954.000000px;}
.y13c{bottom:959.250000px;}
.y104{bottom:960.000000px;}
.y21e{bottom:962.250000px;}
.y183{bottom:964.500000px;}
.y1dc{bottom:966.000000px;}
.ye{bottom:969.000000px;}
.y99{bottom:971.250000px;}
.y209{bottom:972.000000px;}
.y102{bottom:972.750000px;}
.y13b{bottom:974.250000px;}
.y13a{bottom:976.500000px;}
.y1db{bottom:978.000000px;}
.y21d{bottom:979.500000px;}
.y182{bottom:981.000000px;}
.yd{bottom:984.000000px;}
.y180{bottom:984.750000px;}
.y101{bottom:987.750000px;}
.y98{bottom:988.500000px;}
.y181{bottom:991.500000px;}
.y139{bottom:993.750000px;}
.y21c{bottom:996.750000px;}
.y103{bottom:997.500000px;}
.yc{bottom:999.750000px;}
.y97{bottom:1005.750000px;}
.y17c{bottom:1006.500000px;}
.y138{bottom:1011.000000px;}
.y21b{bottom:1014.000000px;}
.yb{bottom:1016.250000px;}
.y17e{bottom:1018.500000px;}
.y100{bottom:1020.750000px;}
.y17b{bottom:1022.250000px;}
.y96{bottom:1023.000000px;}
.y137{bottom:1028.250000px;}
.y17d{bottom:1030.500000px;}
.y21a{bottom:1031.250000px;}
.ya{bottom:1032.750000px;}
.y17f{bottom:1034.250000px;}
.yff{bottom:1038.000000px;}
.y95{bottom:1040.250000px;}
.y132{bottom:1044.750000px;}
.y135{bottom:1046.250000px;}
.y133{bottom:1048.500000px;}
.y9{bottom:1049.250000px;}
.yfe{bottom:1055.250000px;}
.y130{bottom:1056.000000px;}
.y131{bottom:1056.750000px;}
.y94{bottom:1057.500000px;}
.y178{bottom:1058.250000px;}
.y12f{bottom:1060.500000px;}
.y219{bottom:1065.750000px;}
.y136{bottom:1069.500000px;}
.y134{bottom:1070.250000px;}
.yf7{bottom:1072.500000px;}
.y177{bottom:1074.000000px;}
.y93{bottom:1074.750000px;}
.yf6{bottom:1080.750000px;}
.y179{bottom:1082.250000px;}
.yf9{bottom:1083.000000px;}
.y17a{bottom:1086.000000px;}
.yf5{bottom:1086.750000px;}
.y8{bottom:1092.000000px;}
.yf8{bottom:1095.000000px;}
.yfb{bottom:1095.750000px;}
.y218{bottom:1100.250000px;}
.y12e{bottom:1107.000000px;}
.y92{bottom:1109.250000px;}
.yfc{bottom:1116.750000px;}
.y217{bottom:1117.500300px;}
.y7{bottom:1119.750000px;}
.y174{bottom:1121.250000px;}
.yfa{bottom:1124.250000px;}
.y176{bottom:1125.000000px;}
.y91{bottom:1126.500000px;}
.yf4{bottom:1128.000000px;}
.y173{bottom:1133.250000px;}
.y175{bottom:1137.000000px;}
.yfd{bottom:1137.750000px;}
.y6{bottom:1140.000000px;}
.y12c{bottom:1141.500000px;}
.y12d{bottom:1143.750000px;}
.y90{bottom:1143.750300px;}
.y2{bottom:1174.500000px;}
.y4{bottom:1192.500000px;}
.y3{bottom:1196.250000px;}
.y1{bottom:1197.000000px;}
.h18{height:15.750000px;}
.h3{height:16.500000px;}
.hd{height:20.250000px;}
.h14{height:23.250000px;}
.h12{height:24.000000px;}
.h16{height:24.768000px;}
.hf{height:26.175098px;}
.h1b{height:31.440000px;}
.ha{height:33.264000px;}
.h1d{height:33.762960px;}
.h15{height:34.560000px;}
.h9{height:36.036000px;}
.hb{height:41.280000px;}
.h1f{height:41.901264px;}
.h8{height:43.624724px;}
.h5{height:49.896000px;}
.h6{height:51.840000px;}
.h1{height:55.440000px;}
.h10{height:55.441200px;}
.h11{height:55.576172px;}
.hc{height:55.986000px;}
.h1e{height:56.274372px;}
.h1c{height:57.264000px;}
.h7{height:57.600000px;}
.h1a{height:58.050000px;}
.h17{height:63.984000px;}
.he{height:65.662032px;}
.h2{height:66.528000px;}
.h4{height:69.120000px;}
.h13{height:69.144000px;}
.h19{height:88.921875px;}
.h0{height:1263.000000px;}
.w1{width:0.750000px;}
.w2{width:5.250000px;}
.w3{width:7.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:84.750000px;}
.x113{left:86.249625px;}
.x54{left:87.750260px;}
.x10{left:90.750000px;}
.x55{left:93.000386px;}
.x52{left:94.500000px;}
.x11{left:96.000000px;}
.x100{left:98.250628px;}
.x3{left:99.750000px;}
.xc6{left:101.250000px;}
.x101{left:111.749609px;}
.x53{left:115.500114px;}
.xef{left:120.750060px;}
.xc7{left:124.500000px;}
.xb8{left:126.000075px;}
.x4{left:129.749816px;}
.xb7{left:132.000000px;}
.xc8{left:134.250000px;}
.x7{left:135.750000px;}
.xfb{left:137.999721px;}
.xa9{left:141.000000px;}
.xf2{left:142.500000px;}
.x8{left:144.000000px;}
.x9{left:147.000000px;}
.x17{left:149.249988px;}
.xb3{left:151.499996px;}
.xec{left:153.750000px;}
.xc1{left:156.750000px;}
.xa1{left:160.500013px;}
.x9b{left:164.249938px;}
.xc9{left:167.250000px;}
.x1a{left:168.750000px;}
.xb4{left:171.750035px;}
.xf0{left:175.500000px;}
.xeb{left:181.500041px;}
.xc5{left:183.000000px;}
.xac{left:184.500000px;}
.xc2{left:186.750000px;}
.xad{left:189.000000px;}
.xa{left:190.500000px;}
.xf1{left:192.000000px;}
.xa0{left:194.249992px;}
.xb{left:196.500000px;}
.x16{left:198.000000px;}
.xea{left:201.000029px;}
.xb1{left:202.500000px;}
.x9f{left:204.750000px;}
.x99{left:207.750000px;}
.xfa{left:211.500000px;}
.xab{left:213.000000px;}
.x15{left:214.500054px;}
.xaa{left:216.000000px;}
.x12{left:218.250000px;}
.xbd{left:220.500000px;}
.xf5{left:222.750000px;}
.xf6{left:227.250000px;}
.xbe{left:229.500000px;}
.xf8{left:231.750033px;}
.xfc{left:233.249998px;}
.x14{left:234.750041px;}
.x18{left:237.000000px;}
.x6{left:239.250000px;}
.xe7{left:243.750000px;}
.xe9{left:246.000000px;}
.xee{left:248.250000px;}
.xc{left:249.750000px;}
.xc3{left:252.750000px;}
.xd{left:254.250000px;}
.xe8{left:256.499995px;}
.xaf{left:258.000000px;}
.xed{left:259.499989px;}
.xa6{left:261.000000px;}
.xc4{left:262.500000px;}
.xbf{left:267.750000px;}
.xb0{left:269.250000px;}
.xfd{left:273.000000px;}
.x56{left:274.500000px;}
.xa3{left:275.999909px;}
.xf9{left:278.250000px;}
.xa4{left:280.499907px;}
.xe{left:282.000000px;}
.x9c{left:284.250000px;}
.xf3{left:286.500023px;}
.xf{left:290.250000px;}
.xae{left:292.500000px;}
.xa8{left:294.749946px;}
.xc0{left:297.000000px;}
.x13{left:299.250000px;}
.x9a{left:301.500000px;}
.xa2{left:305.249906px;}
.x98{left:308.250000px;}
.xb2{left:312.000000px;}
.xf7{left:315.750000px;}
.x19{left:327.000000px;}
.xf4{left:332.250000px;}
.xb9{left:348.000000px;}
.xba{left:357.750000px;}
.xa7{left:360.749936px;}
.x112{left:375.000000px;}
.xa5{left:380.999423px;}
.x9d{left:384.749972px;}
.x9e{left:389.999963px;}
.xb5{left:397.500000px;}
.x111{left:399.000000px;}
.x51{left:403.500000px;}
.xb6{left:405.000000px;}
.x110{left:408.750000px;}
.x1{left:410.250000px;}
.xbb{left:414.750000px;}
.xbc{left:425.250000px;}
.x50{left:429.750000px;}
.x5{left:446.249484px;}
.x1b{left:468.000654px;}
.x1e{left:470.250000px;}
.x23{left:474.750051px;}
.x61{left:477.000000px;}
.xd2{left:478.499910px;}
.x35{left:482.250000px;}
.x25{left:483.750046px;}
.x6a{left:486.001343px;}
.xe0{left:487.500000px;}
.xd1{left:488.999919px;}
.xcf{left:492.000000px;}
.xe5{left:494.250000px;}
.x20{left:495.750000px;}
.x104{left:497.250000px;}
.x107{left:498.750000px;}
.x102{left:500.250000px;}
.xff{left:505.500583px;}
.x1c{left:507.750000px;}
.x64{left:509.250645px;}
.xfe{left:511.499999px;}
.x67{left:513.750189px;}
.x57{left:515.250000px;}
.x1d{left:516.750000px;}
.x60{left:519.750000px;}
.x3d{left:521.250000px;}
.x90{left:523.500000px;}
.x108{left:525.000024px;}
.xd9{left:526.500000px;}
.x31{left:530.250004px;}
.x45{left:534.750019px;}
.x22{left:537.000011px;}
.x3f{left:540.750011px;}
.x24{left:542.250000px;}
.x6c{left:544.500000px;}
.x34{left:546.750000px;}
.x5a{left:548.250000px;}
.xd8{left:549.750000px;}
.x48{left:551.250000px;}
.x10c{left:552.750000px;}
.x21{left:554.250000px;}
.x10f{left:555.750000px;}
.x30{left:557.250001px;}
.xe6{left:558.750000px;}
.x32{left:560.250026px;}
.x44{left:561.750017px;}
.x106{left:564.000002px;}
.x33{left:565.500000px;}
.x92{left:567.000068px;}
.x47{left:570.000000px;}
.xca{left:571.500000px;}
.x103{left:573.000000px;}
.x76{left:575.250076px;}
.x1f{left:576.750000px;}
.xd0{left:579.000102px;}
.x3e{left:580.500000px;}
.x46{left:582.000000px;}
.x10b{left:583.499729px;}
.xd4{left:585.750042px;}
.x10e{left:587.250000px;}
.xda{left:588.750000px;}
.x6d{left:591.750000px;}
.x26{left:594.000000px;}
.x40{left:598.500000px;}
.x2e{left:602.250000px;}
.x93{left:603.750000px;}
.x2f{left:606.000000px;}
.xde{left:607.500000px;}
.xcb{left:609.750000px;}
.x43{left:611.250000px;}
.x78{left:612.750049px;}
.x91{left:617.250000px;}
.x58{left:619.500000px;}
.x49{left:621.000000px;}
.xd6{left:622.500007px;}
.x36{left:624.000000px;}
.x7e{left:626.250040px;}
.x4d{left:628.500000px;}
.x6e{left:630.000000px;}
.x75{left:632.250040px;}
.xd5{left:634.500000px;}
.x81{left:637.500000px;}
.x6f{left:639.750000px;}
.x62{left:642.000092px;}
.x79{left:643.500000px;}
.x10d{left:645.000000px;}
.x10a{left:648.000000px;}
.xdf{left:649.500000px;}
.x80{left:651.750000px;}
.x89{left:653.250117px;}
.x7d{left:655.500021px;}
.x5b{left:658.499879px;}
.xd3{left:660.000000px;}
.x74{left:661.500021px;}
.x95{left:663.000011px;}
.xd7{left:664.500000px;}
.x109{left:666.750036px;}
.x70{left:668.250000px;}
.x82{left:669.750215px;}
.x7c{left:672.000011px;}
.x73{left:674.250013px;}
.x5f{left:675.750000px;}
.x71{left:678.000000px;}
.x94{left:680.250000px;}
.x27{left:682.500000px;}
.x105{left:684.750025px;}
.x2d{left:687.000000px;}
.x7b{left:688.500000px;}
.x77{left:690.000000px;}
.x87{left:691.500318px;}
.x65{left:693.750099px;}
.x2c{left:696.000000px;}
.x68{left:697.500159px;}
.x7f{left:699.750000px;}
.x28{left:702.750000px;}
.x7a{left:704.250000px;}
.x4a{left:706.500000px;}
.x2a{left:708.000000px;}
.xdd{left:709.500000px;}
.x37{left:711.000000px;}
.x63{left:712.499988px;}
.x3c{left:715.500000px;}
.x4c{left:718.500000px;}
.x86{left:720.000000px;}
.xdc{left:721.499997px;}
.x2b{left:723.000000px;}
.x5e{left:724.500000px;}
.x42{left:727.500000px;}
.xdb{left:728.999977px;}
.x8d{left:730.500906px;}
.x38{left:732.000000px;}
.xe1{left:733.500000px;}
.x29{left:735.000000px;}
.x3a{left:736.500000px;}
.x41{left:738.750000px;}
.x8b{left:741.000000px;}
.x5d{left:742.500017px;}
.xcc{left:744.750000px;}
.x69{left:748.501175px;}
.x3b{left:751.500000px;}
.x72{left:754.500000px;}
.x66{left:756.750000px;}
.x8f{left:758.251773px;}
.x8e{left:760.501471px;}
.x39{left:762.000000px;}
.x4b{left:763.500000px;}
.xe2{left:765.750000px;}
.x5c{left:769.500000px;}
.x85{left:771.750000px;}
.xcd{left:774.000000px;}
.xe3{left:775.500000px;}
.x6b{left:778.500000px;}
.x97{left:780.750000px;}
.xce{left:783.000000px;}
.x96{left:784.500000px;}
.x84{left:789.750017px;}
.x4e{left:792.750000px;}
.x8c{left:795.750864px;}
.xe4{left:798.000000px;}
.x59{left:799.500000px;}
.x8a{left:804.000000px;}
.x4f{left:807.750000px;}
.x88{left:809.250000px;}
.x83{left:816.750000px;}
@media print{
.v1{vertical-align:-64.000000pt;}
.v5{vertical-align:-61.333333pt;}
.v2{vertical-align:-42.666667pt;}
.va{vertical-align:-40.000000pt;}
.v6{vertical-align:-32.000000pt;}
.v4{vertical-align:-29.333333pt;}
.v9{vertical-align:-21.333333pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.000000pt;}
.v8{vertical-align:21.333333pt;}
.ls17{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.010667pt;}
.ls15{letter-spacing:0.021333pt;}
.ls1d{letter-spacing:0.021350pt;}
.ls6{letter-spacing:0.026667pt;}
.ls1f{letter-spacing:0.076800pt;}
.ls2{letter-spacing:0.083573pt;}
.ls3a{letter-spacing:0.241089pt;}
.ls24{letter-spacing:0.339200pt;}
.ls7{letter-spacing:0.392549pt;}
.ls10{letter-spacing:0.603733pt;}
.ls4{letter-spacing:0.851573pt;}
.ls31{letter-spacing:0.921600pt;}
.ls3{letter-spacing:1.013333pt;}
.lsb{letter-spacing:1.186133pt;}
.ls2f{letter-spacing:1.186144pt;}
.lsa{letter-spacing:1.239477pt;}
.ls8{letter-spacing:1.245882pt;}
.ls1{letter-spacing:1.342240pt;}
.ls23{letter-spacing:1.525359pt;}
.ls2a{letter-spacing:1.740853pt;}
.ls30{letter-spacing:1.802667pt;}
.ls1e{letter-spacing:2.365882pt;}
.ls16{letter-spacing:2.679467pt;}
.ls5{letter-spacing:2.752000pt;}
.ls9{letter-spacing:3.061350pt;}
.ls1c{letter-spacing:3.590414pt;}
.ls25{letter-spacing:16.023467pt;}
.ls33{letter-spacing:40.371200pt;}
.ls32{letter-spacing:62.568533pt;}
.ls2d{letter-spacing:96.153600pt;}
.ls34{letter-spacing:101.491200pt;}
.ls18{letter-spacing:126.619733pt;}
.ls1a{letter-spacing:132.878933pt;}
.ls29{letter-spacing:133.516800pt;}
.ls20{letter-spacing:171.726838pt;}
.ls21{letter-spacing:171.726839pt;}
.ls1b{letter-spacing:176.151467pt;}
.ls3b{letter-spacing:176.154378pt;}
.ls11{letter-spacing:178.830933pt;}
.ls13{letter-spacing:194.843733pt;}
.ls12{letter-spacing:205.518933pt;}
.ls2e{letter-spacing:210.912000pt;}
.ls26{letter-spacing:216.249600pt;}
.ls28{letter-spacing:218.918400pt;}
.ls27{letter-spacing:221.587200pt;}
.ls14{letter-spacing:226.869333pt;}
.lsf{letter-spacing:229.593600pt;}
.ls19{letter-spacing:283.816949pt;}
.ls38{letter-spacing:290.976000pt;}
.ls39{letter-spacing:293.644800pt;}
.ls36{letter-spacing:296.313600pt;}
.ls35{letter-spacing:298.982400pt;}
.ls37{letter-spacing:304.320000pt;}
.ls2b{letter-spacing:339.014933pt;}
.ls2c{letter-spacing:344.352533pt;}
.lsd{letter-spacing:453.707200pt;}
.lsc{letter-spacing:763.288270pt;}
.ls22{letter-spacing:883.450667pt;}
.ls0{letter-spacing:1128.912000pt;}
.wsd{word-spacing:-41.440000pt;}
.wsc{word-spacing:-37.296000pt;}
.ws4{word-spacing:-14.090673pt;}
.ws2c{word-spacing:-13.534000pt;}
.wse{word-spacing:-13.354667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws2{word-spacing:-8.666667pt;}
.ws2b{word-spacing:-8.120000pt;}
.ws6{word-spacing:-8.010667pt;}
.ws3{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
.ws1f{word-spacing:50.728533pt;}
.ws20{word-spacing:53.397333pt;}
.ws7{word-spacing:57.047267pt;}
.ws8{word-spacing:58.801067pt;}
.ws9{word-spacing:71.216589pt;}
.ws23{word-spacing:77.416533pt;}
.wsa{word-spacing:98.833067pt;}
.ws1c{word-spacing:112.493133pt;}
.ws21{word-spacing:117.448533pt;}
.ws5{word-spacing:213.536000pt;}
.ws1b{word-spacing:251.808063pt;}
.wsf{word-spacing:255.482467pt;}
.ws10{word-spacing:259.157133pt;}
.ws2a{word-spacing:266.329600pt;}
.ws29{word-spacing:268.998400pt;}
.ws27{word-spacing:274.336000pt;}
.ws26{word-spacing:277.004800pt;}
.ws28{word-spacing:285.011200pt;}
.ws22{word-spacing:296.586667pt;}
.ws18{word-spacing:329.777094pt;}
.ws2d{word-spacing:353.625704pt;}
.ws2f{word-spacing:358.962237pt;}
.ws31{word-spacing:361.630504pt;}
.ws30{word-spacing:364.298237pt;}
.ws2e{word-spacing:380.307837pt;}
.ws24{word-spacing:400.408000pt;}
.ws19{word-spacing:451.568000pt;}
.ws1a{word-spacing:455.768000pt;}
.ws25{word-spacing:496.485333pt;}
.ws1e{word-spacing:529.376000pt;}
.ws13{word-spacing:534.375058pt;}
.ws14{word-spacing:541.856000pt;}
.ws16{word-spacing:542.446667pt;}
.ws15{word-spacing:546.985333pt;}
.ws11{word-spacing:558.394207pt;}
.ws12{word-spacing:560.533333pt;}
.ws17{word-spacing:660.730667pt;}
.ws1d{word-spacing:740.213333pt;}
._7c{margin-left:-734.761973pt;}
._1d{margin-left:-652.492107pt;}
._97{margin-left:-633.764653pt;}
._ad{margin-left:-484.770133pt;}
._41{margin-left:-480.298667pt;}
._5e{margin-left:-453.092800pt;}
._5d{margin-left:-450.080000pt;}
._58{margin-left:-445.086400pt;}
._56{margin-left:-442.951467pt;}
._8d{margin-left:-429.666667pt;}
._8f{margin-left:-407.161067pt;}
._90{margin-left:-400.243733pt;}
._93{margin-left:-380.117867pt;}
._9c{margin-left:-372.674133pt;}
._84{margin-left:-368.217600pt;}
._af{margin-left:-366.485333pt;}
._a2{margin-left:-357.542400pt;}
._50{margin-left:-354.548386pt;}
._23{margin-left:-352.204800pt;}
._28{margin-left:-342.911307pt;}
._96{margin-left:-335.082667pt;}
._61{margin-left:-330.854400pt;}
._a3{margin-left:-327.319467pt;}
._7e{margin-left:-322.903467pt;}
._91{margin-left:-317.444267pt;}
._b3{margin-left:-309.504000pt;}
._94{margin-left:-305.401067pt;}
._ae{margin-left:-295.293867pt;}
._9f{margin-left:-279.281067pt;}
._98{margin-left:-272.140800pt;}
._2f{margin-left:-266.803200pt;}
._7d{margin-left:-263.635733pt;}
._7a{margin-left:-261.521067pt;}
._75{margin-left:-258.852267pt;}
._88{margin-left:-252.593067pt;}
._51{margin-left:-244.553211pt;}
._bf{margin-left:-236.337067pt;}
._79{margin-left:-234.833067pt;}
._74{margin-left:-232.164267pt;}
._95{margin-left:-231.242667pt;}
._40{margin-left:-229.465067pt;}
._83{margin-left:-225.706667pt;}
._69{margin-left:-224.168533pt;}
._72{margin-left:-223.236267pt;}
._80{margin-left:-221.499733pt;}
._73{margin-left:-220.567467pt;}
._6f{margin-left:-217.898667pt;}
._5c{margin-left:-216.096000pt;}
._7b{margin-left:-213.528931pt;}
._57{margin-left:-211.711467pt;}
._65{margin-left:-210.785600pt;}
._66{margin-left:-208.117333pt;}
._b5{margin-left:-206.980267pt;}
._64{margin-left:-205.449067pt;}
._53{margin-left:-199.426985pt;}
._86{margin-left:-198.355733pt;}
._52{margin-left:-196.606596pt;}
._62{margin-left:-194.745600pt;}
._63{margin-left:-192.076800pt;}
._8e{margin-left:-191.017067pt;}
._67{margin-left:-189.474133pt;}
._9a{margin-left:-188.348267pt;}
._2c{margin-left:-186.739200pt;}
._31{margin-left:-184.070400pt;}
._ca{margin-left:-181.361973pt;}
._c9{margin-left:-179.680000pt;}
._81{margin-left:-178.772427pt;}
._ac{margin-left:-173.427733pt;}
._c2{margin-left:-170.464000pt;}
._7f{margin-left:-168.123733pt;}
._78{margin-left:-165.454933pt;}
._4d{margin-left:-163.357867pt;}
._ba{margin-left:-162.457600pt;}
._44{margin-left:-160.128000pt;}
._9d{margin-left:-158.329067pt;}
._2b{margin-left:-157.437867pt;}
._30{margin-left:-154.737067pt;}
._c5{margin-left:-151.406933pt;}
._a0{margin-left:-150.013867pt;}
._c4{margin-left:-146.444800pt;}
._8c{margin-left:-144.090667pt;}
._9b{margin-left:-141.422400pt;}
._76{margin-left:-138.766933pt;}
._4e{margin-left:-137.834667pt;}
._99{margin-left:-133.622281pt;}
._6c{margin-left:-132.253867pt;}
._68{margin-left:-130.760533pt;}
._6e{margin-left:-129.574347pt;}
._9e{margin-left:-127.532800pt;}
._a1{margin-left:-126.594667pt;}
._c1{margin-left:-125.406400pt;}
._b9{margin-left:-122.737600pt;}
._bb{margin-left:-120.069333pt;}
._45{margin-left:-118.909867pt;}
._b8{margin-left:-117.401067pt;}
._46{margin-left:-116.251733pt;}
._5f{margin-left:-114.681600pt;}
._cf{margin-left:-113.130916pt;}
._5a{margin-left:-112.012800pt;}
._71{margin-left:-109.717333pt;}
._4c{margin-left:-108.234667pt;}
._d0{margin-left:-107.081464pt;}
._25{margin-left:-106.125821pt;}
._4b{margin-left:-104.379733pt;}
._70{margin-left:-102.838737pt;}
._c0{margin-left:-101.075200pt;}
._5b{margin-left:-98.668800pt;}
._60{margin-left:-96.000000pt;}
._1f{margin-left:-93.344000pt;}
._4f{margin-left:-92.454400pt;}
._1e{margin-left:-90.728533pt;}
._ce{margin-left:-88.430667pt;}
._59{margin-left:-87.466667pt;}
._22{margin-left:-85.390933pt;}
._cd{margin-left:-82.737717pt;}
._24{margin-left:-78.150310pt;}
._6a{margin-left:-74.705120pt;}
._92{margin-left:-71.980853pt;}
._47{margin-left:-70.882133pt;}
._2a{margin-left:-66.677387pt;}
._2d{margin-left:-64.040587pt;}
._49{margin-left:-62.265067pt;}
._32{margin-left:-61.361120pt;}
._48{margin-left:-59.596480pt;}
._2e{margin-left:-58.702987pt;}
._4a{margin-left:-56.928000pt;}
._8b{margin-left:-56.026667pt;}
._82{margin-left:-53.358240pt;}
._77{margin-left:-52.452693pt;}
._21{margin-left:-50.696587pt;}
._6b{margin-left:-48.017067pt;}
._c7{margin-left:-45.358933pt;}
._be{margin-left:-42.690133pt;}
._20{margin-left:-40.021333pt;}
._6d{margin-left:-38.892444pt;}
._29{margin-left:-37.352533pt;}
._b4{margin-left:-35.555573pt;}
._85{margin-left:-30.243573pt;}
._87{margin-left:-27.575093pt;}
._43{margin-left:-26.679093pt;}
._42{margin-left:-24.010667pt;}
._6{margin-left:-7.282080pt;}
._d1{margin-left:-6.071467pt;}
._a8{margin-left:-4.876373pt;}
._7{margin-left:-3.976907pt;}
._2{margin-left:-2.617600pt;}
._4{margin-left:-0.981973pt;}
._1{width:1.124267pt;}
._3{width:2.033067pt;}
._5{width:3.198347pt;}
._8{width:4.887733pt;}
._15{width:5.959787pt;}
._9{width:7.404267pt;}
._14{width:8.492053pt;}
._3e{width:10.311040pt;}
._37{width:11.281067pt;}
._a{width:14.763840pt;}
._1c{width:16.224160pt;}
._11{width:18.538182pt;}
._13{width:19.495040pt;}
._12{width:21.154293pt;}
._33{width:22.155264pt;}
._39{width:23.382133pt;}
._1b{width:24.642933pt;}
._3f{width:26.108533pt;}
._e{width:27.069920pt;}
._34{width:29.088480pt;}
._38{width:30.167040pt;}
._3d{width:31.254142pt;}
._3a{width:32.172853pt;}
._b7{width:34.150773pt;}
._3b{width:35.118987pt;}
._35{width:37.536693pt;}
._10{width:40.030293pt;}
._1a{width:40.926293pt;}
._cc{width:42.367147pt;}
._f{width:43.391733pt;}
._26{width:45.240160pt;}
._27{width:46.268129pt;}
._d2{width:47.329509pt;}
._a7{width:48.569920pt;}
._0{width:50.717867pt;}
._bd{width:52.885973pt;}
._bc{width:54.033249pt;}
._cb{width:56.233227pt;}
._d5{width:58.732152pt;}
._18{width:61.761760pt;}
._19{width:63.945357pt;}
._55{width:66.741333pt;}
._36{width:69.457747pt;}
._c{width:72.023467pt;}
._d{width:75.543467pt;}
._3c{width:80.413867pt;}
._d4{width:85.324800pt;}
._b1{width:90.514657pt;}
._b0{width:93.367467pt;}
._b2{width:94.283840pt;}
._c6{width:101.177760pt;}
._16{width:106.605227pt;}
._17{width:109.747840pt;}
._d3{width:115.426133pt;}
._a6{width:117.437867pt;}
._a4{width:122.775467pt;}
._a9{width:138.850133pt;}
._b6{width:144.125867pt;}
._c8{width:155.665067pt;}
._54{width:173.482667pt;}
._b{width:176.151467pt;}
._aa{width:321.337533pt;}
._ab{width:325.012200pt;}
._a5{width:384.318400pt;}
._c3{width:408.929391pt;}
._8a{width:476.434667pt;}
._89{width:480.634133pt;}
.fs5{font-size:32.000000pt;}
.fsd{font-size:32.480000pt;}
.fs8{font-size:33.817957pt;}
.fs4{font-size:34.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fse{font-size:54.136000pt;}
.fs3{font-size:56.362692pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:72.333333pt;}
.fsc{font-size:75.000000pt;}
.fsa{font-size:82.666667pt;}
.fs7{font-size:84.834667pt;}
.fsb{font-size:85.333333pt;}
.fs9{font-size:89.333333pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:2.666667pt;}
.y5{bottom:3.333333pt;}
.y4c{bottom:4.666667pt;}
.yf3{bottom:102.000267pt;}
.y1a1{bottom:107.333333pt;}
.y1a2{bottom:107.333600pt;}
.y172{bottom:111.333600pt;}
.yf2{bottom:117.333600pt;}
.y45{bottom:119.333333pt;}
.y1a0{bottom:121.333333pt;}
.y170{bottom:124.666933pt;}
.y8f{bottom:125.333333pt;}
.y16f{bottom:126.666667pt;}
.y171{bottom:126.666933pt;}
.yf1{bottom:132.666667pt;}
.y44{bottom:134.666667pt;}
.y16e{bottom:140.000000pt;}
.y8e{bottom:140.666667pt;}
.y16d{bottom:142.000000pt;}
.yf0{bottom:148.000000pt;}
.y19f{bottom:148.666667pt;}
.y43{bottom:150.000000pt;}
.y208{bottom:152.000000pt;}
.y8d{bottom:156.000000pt;}
.y216{bottom:157.333333pt;}
.y16c{bottom:158.666667pt;}
.yed{bottom:159.333333pt;}
.y12b{bottom:163.333333pt;}
.y42{bottom:165.333333pt;}
.y207{bottom:167.333333pt;}
.yec{bottom:169.333333pt;}
.y8c{bottom:171.333333pt;}
.yeb{bottom:172.666667pt;}
.y16b{bottom:174.000000pt;}
.y12a{bottom:178.666667pt;}
.yef{bottom:181.333333pt;}
.y206{bottom:182.666667pt;}
.y41{bottom:186.666667pt;}
.y215{bottom:188.000000pt;}
.y16a{bottom:189.333333pt;}
.y129{bottom:194.000000pt;}
.y205{bottom:198.000000pt;}
.y40{bottom:202.000000pt;}
.y214{bottom:203.333333pt;}
.y169{bottom:204.666667pt;}
.y128{bottom:209.333333pt;}
.y204{bottom:213.333333pt;}
.y3f{bottom:217.333333pt;}
.y213{bottom:218.666667pt;}
.y168{bottom:219.333333pt;}
.y1b9{bottom:220.666667pt;}
.y127{bottom:222.666667pt;}
.y126{bottom:224.666667pt;}
.y3e{bottom:226.666667pt;}
.y167{bottom:228.666667pt;}
.ye8{bottom:232.000000pt;}
.y8b{bottom:232.666667pt;}
.ye9{bottom:233.333333pt;}
.y212{bottom:234.000000pt;}
.y1b8{bottom:235.333333pt;}
.ye7{bottom:236.666667pt;}
.y1da{bottom:240.000000pt;}
.y125{bottom:241.333333pt;}
.y3d{bottom:242.000000pt;}
.yea{bottom:242.666667pt;}
.y166{bottom:244.000000pt;}
.y76{bottom:247.333333pt;}
.y8a{bottom:248.000000pt;}
.y1b7{bottom:249.333333pt;}
.y1d9{bottom:255.333333pt;}
.ye6{bottom:256.666667pt;}
.y3c{bottom:257.333333pt;}
.y165{bottom:259.333333pt;}
.y75{bottom:260.666667pt;}
.y74{bottom:262.666667pt;}
.y89{bottom:263.333333pt;}
.y211{bottom:264.666667pt;}
.y1d8{bottom:270.666667pt;}
.y3b{bottom:272.000000pt;}
.y161{bottom:274.000000pt;}
.y203{bottom:274.666667pt;}
.y3a{bottom:275.333333pt;}
.y1b6{bottom:276.666667pt;}
.y73{bottom:278.000000pt;}
.y88{bottom:278.666667pt;}
.y22f{bottom:280.000000pt;}
.y162{bottom:284.666667pt;}
.y1d7{bottom:286.000000pt;}
.ye5{bottom:287.333333pt;}
.y163{bottom:288.000000pt;}
.y202{bottom:290.000000pt;}
.y1b5{bottom:290.666667pt;}
.y39{bottom:292.666667pt;}
.y72{bottom:293.333333pt;}
.y87{bottom:294.000000pt;}
.y22e{bottom:295.333333pt;}
.y164{bottom:297.333333pt;}
.y1d6{bottom:301.333333pt;}
.yd3{bottom:302.666667pt;}
.yd9{bottom:303.333333pt;}
.y1b4{bottom:304.000000pt;}
.ycf{bottom:304.666667pt;}
.yde{bottom:305.333333pt;}
.ycd{bottom:306.666667pt;}
.ydb{bottom:307.333333pt;}
.y38{bottom:308.000000pt;}
.y71{bottom:308.666667pt;}
.y86{bottom:309.333333pt;}
.ye3{bottom:310.666667pt;}
.ycb{bottom:312.000000pt;}
.ydf{bottom:314.666667pt;}
.yd6{bottom:315.333333pt;}
.yd0{bottom:316.000000pt;}
.y1d5{bottom:316.666667pt;}
.y124{bottom:318.000000pt;}
.y201{bottom:318.666667pt;}
.y210{bottom:320.000000pt;}
.y200{bottom:320.666667pt;}
.y37{bottom:323.333333pt;}
.y70{bottom:324.000000pt;}
.y85{bottom:324.666667pt;}
.y22d{bottom:326.000000pt;}
.ydc{bottom:327.333333pt;}
.yd7{bottom:328.000000pt;}
.yd1{bottom:328.666667pt;}
.y160{bottom:329.333333pt;}
.yca{bottom:330.666667pt;}
.y1d4{bottom:332.000000pt;}
.y123{bottom:333.333333pt;}
.y20f{bottom:334.000000pt;}
.y1ff{bottom:336.000000pt;}
.ye0{bottom:336.666667pt;}
.ycc{bottom:337.333333pt;}
.y36{bottom:338.666667pt;}
.y6f{bottom:339.333333pt;}
.y84{bottom:340.000000pt;}
.yd8{bottom:340.666667pt;}
.yd2{bottom:341.333333pt;}
.y15f{bottom:346.000000pt;}
.ydd{bottom:347.333333pt;}
.yc9{bottom:348.000000pt;}
.y122{bottom:348.666667pt;}
.ye1{bottom:349.333333pt;}
.yce{bottom:350.000000pt;}
.ye4{bottom:350.666667pt;}
.yd5{bottom:352.666667pt;}
.yda{bottom:353.333333pt;}
.yd4{bottom:354.000000pt;}
.y32{bottom:354.666667pt;}
.y83{bottom:355.333333pt;}
.y22c{bottom:356.666667pt;}
.y1d2{bottom:357.333333pt;}
.y33{bottom:358.000000pt;}
.ye2{bottom:358.666667pt;}
.y1d3{bottom:360.666667pt;}
.y15e{bottom:361.333333pt;}
.y121{bottom:362.000000pt;}
.y120{bottom:364.000000pt;}
.y1fc{bottom:364.666667pt;}
.y35{bottom:365.333333pt;}
.y1d1{bottom:366.666667pt;}
.y31{bottom:368.666667pt;}
.y6e{bottom:370.000000pt;}
.y82{bottom:370.666667pt;}
.y1fd{bottom:372.000000pt;}
.yc8{bottom:373.333333pt;}
.y1fe{bottom:375.333333pt;}
.y15d{bottom:376.666667pt;}
.y34{bottom:377.333333pt;}
.y11f{bottom:379.333333pt;}
.y6d{bottom:385.333333pt;}
.y19e{bottom:386.000000pt;}
.y1d0{bottom:387.333333pt;}
.yc6{bottom:388.666667pt;}
.y15c{bottom:392.000000pt;}
.yc4{bottom:394.000000pt;}
.y11e{bottom:394.666667pt;}
.yc7{bottom:397.333333pt;}
.y30{bottom:398.000000pt;}
.y1fa{bottom:398.666667pt;}
.y6c{bottom:400.666667pt;}
.yc3{bottom:401.333333pt;}
.y1cf{bottom:402.666667pt;}
.yc2{bottom:404.666667pt;}
.y15b{bottom:405.333333pt;}
.yc5{bottom:407.333333pt;}
.y1f9{bottom:408.666667pt;}
.y11d{bottom:410.000000pt;}
.y2f{bottom:413.333333pt;}
.y6b{bottom:416.000000pt;}
.y19d{bottom:416.666667pt;}
.y1ce{bottom:418.000000pt;}
.y1fb{bottom:419.333333pt;}
.y15a{bottom:420.666667pt;}
.y159{bottom:422.666667pt;}
.y11b{bottom:423.333333pt;}
.y11c{bottom:425.333333pt;}
.y2e{bottom:428.666667pt;}
.y6a{bottom:431.333333pt;}
.y19c{bottom:432.000000pt;}
.y1cd{bottom:433.333333pt;}
.yc0{bottom:435.333333pt;}
.y158{bottom:438.000000pt;}
.y1f5{bottom:439.333333pt;}
.ybd{bottom:440.666667pt;}
.y2d{bottom:442.000000pt;}
.y1f8{bottom:443.333333pt;}
.y2c{bottom:444.000000pt;}
.y69{bottom:446.666667pt;}
.y19b{bottom:447.333333pt;}
.ybb{bottom:448.000000pt;}
.y1cc{bottom:448.666667pt;}
.y1f7{bottom:450.000000pt;}
.yba{bottom:451.333333pt;}
.y157{bottom:453.333333pt;}
.ybf{bottom:454.000000pt;}
.y11a{bottom:456.000000pt;}
.y2a{bottom:456.666667pt;}
.ybc{bottom:457.333333pt;}
.y29{bottom:458.666667pt;}
.ybe{bottom:460.000000pt;}
.y1f6{bottom:460.666667pt;}
.y81{bottom:462.000000pt;}
.yc1{bottom:462.666667pt;}
.y1cb{bottom:464.000000pt;}
.y2b{bottom:464.666667pt;}
.y65{bottom:467.333333pt;}
.y68{bottom:468.000000pt;}
.y67{bottom:469.333333pt;}
.y150{bottom:470.666667pt;}
.y119{bottom:471.333333pt;}
.y63{bottom:472.666667pt;}
.y156{bottom:474.000000pt;}
.y28{bottom:475.333333pt;}
.y80{bottom:477.333333pt;}
.y153{bottom:478.000000pt;}
.y66{bottom:478.666667pt;}
.y1ca{bottom:479.333333pt;}
.y151{bottom:481.333333pt;}
.y64{bottom:482.000000pt;}
.y1f2{bottom:483.333333pt;}
.y118{bottom:484.666667pt;}
.y117{bottom:486.666667pt;}
.y154{bottom:487.333333pt;}
.y27{bottom:490.666667pt;}
.y7f{bottom:492.666667pt;}
.y152{bottom:493.333333pt;}
.y1f4{bottom:494.000000pt;}
.y1c9{bottom:494.666667pt;}
.y155{bottom:495.333333pt;}
.y62{bottom:497.333333pt;}
.y61{bottom:499.333333pt;}
.y116{bottom:502.000000pt;}
.y1f3{bottom:504.666667pt;}
.y26{bottom:506.000000pt;}
.y7e{bottom:508.000000pt;}
.y19a{bottom:508.666667pt;}
.y22b{bottom:510.000000pt;}
.yb9{bottom:512.666667pt;}
.y14f{bottom:515.333333pt;}
.y115{bottom:516.000000pt;}
.y1b3{bottom:517.333333pt;}
.y25{bottom:521.333333pt;}
.y60{bottom:522.000000pt;}
.y5c{bottom:522.666667pt;}
.y5f{bottom:523.333333pt;}
.y199{bottom:524.000000pt;}
.y1c8{bottom:525.333333pt;}
.yb8{bottom:526.000000pt;}
.y5b{bottom:526.666667pt;}
.yb7{bottom:528.000000pt;}
.y114{bottom:530.000000pt;}
.y14e{bottom:530.666667pt;}
.y1f1{bottom:532.000000pt;}
.y5e{bottom:532.666667pt;}
.y5d{bottom:536.000000pt;}
.y24{bottom:536.666667pt;}
.y7d{bottom:538.666667pt;}
.y198{bottom:539.333333pt;}
.y1c7{bottom:540.666667pt;}
.y1ef{bottom:542.000000pt;}
.yb6{bottom:543.333333pt;}
.y14d{bottom:544.000000pt;}
.y113{bottom:544.666667pt;}
.y14c{bottom:546.000000pt;}
.y112{bottom:548.000000pt;}
.y1f0{bottom:548.666667pt;}
.y5a{bottom:551.333333pt;}
.y23{bottom:552.000000pt;}
.y59{bottom:553.333333pt;}
.y197{bottom:554.666667pt;}
.y1c6{bottom:556.000000pt;}
.yae{bottom:559.333333pt;}
.yb5{bottom:561.333333pt;}
.ya9{bottom:562.666667pt;}
.yb2{bottom:563.333333pt;}
.yb0{bottom:564.666667pt;}
.yab{bottom:566.000000pt;}
.ya5{bottom:566.666667pt;}
.y22{bottom:567.333333pt;}
.ya6{bottom:568.000000pt;}
.y58{bottom:568.666667pt;}
.y195{bottom:569.333333pt;}
.yac{bottom:571.333333pt;}
.y1ee{bottom:573.333333pt;}
.y14b{bottom:576.666667pt;}
.y1b2{bottom:578.666667pt;}
.y196{bottom:580.000000pt;}
.ya7{bottom:580.666667pt;}
.y7c{bottom:581.333333pt;}
.y21{bottom:582.666667pt;}
.yb3{bottom:583.333333pt;}
.y57{bottom:584.000000pt;}
.ya4{bottom:586.666667pt;}
.y14a{bottom:592.000000pt;}
.ya8{bottom:593.333333pt;}
.y1b1{bottom:594.000000pt;}
.yad{bottom:596.666667pt;}
.y20{bottom:598.000000pt;}
.y1c5{bottom:602.000000pt;}
.y7b{bottom:602.666667pt;}
.yb4{bottom:603.333333pt;}
.y53{bottom:604.666667pt;}
.y56{bottom:605.333333pt;}
.yaa{bottom:606.000000pt;}
.y55{bottom:606.666667pt;}
.ya3{bottom:607.333333pt;}
.yb1{bottom:608.666667pt;}
.yaf{bottom:609.333333pt;}
.y51{bottom:610.000000pt;}
.y1f{bottom:613.333333pt;}
.y54{bottom:616.000000pt;}
.y7a{bottom:616.666667pt;}
.y1c4{bottom:617.333333pt;}
.y52{bottom:619.333333pt;}
.y193{bottom:620.000000pt;}
.y149{bottom:622.666667pt;}
.y192{bottom:623.333333pt;}
.y22a{bottom:625.333333pt;}
.y1e{bottom:628.666667pt;}
.ya2{bottom:629.333333pt;}
.y79{bottom:631.333333pt;}
.y194{bottom:632.000000pt;}
.y1c3{bottom:632.666667pt;}
.y50{bottom:634.000000pt;}
.y4f{bottom:636.000000pt;}
.y148{bottom:638.000000pt;}
.y229{bottom:640.666667pt;}
.y78{bottom:642.666667pt;}
.y1d{bottom:644.000000pt;}
.ya1{bottom:644.666667pt;}
.y1c2{bottom:648.000000pt;}
.y1b0{bottom:649.333333pt;}
.y4e{bottom:652.666667pt;}
.y147{bottom:653.333333pt;}
.y228{bottom:656.000000pt;}
.ya0{bottom:658.000000pt;}
.y111{bottom:658.666667pt;}
.y1c{bottom:659.333333pt;}
.y9f{bottom:660.000000pt;}
.y1e8{bottom:662.666667pt;}
.y1c1{bottom:663.333333pt;}
.y1af{bottom:664.666667pt;}
.y1eb{bottom:666.000000pt;}
.y4d{bottom:668.000000pt;}
.y146{bottom:668.666667pt;}
.y227{bottom:671.333333pt;}
.y1ea{bottom:673.333333pt;}
.y110{bottom:674.000000pt;}
.y1b{bottom:674.666667pt;}
.y9e{bottom:675.333333pt;}
.y1ed{bottom:676.666667pt;}
.y1c0{bottom:678.666667pt;}
.y1ae{bottom:680.000000pt;}
.y1e9{bottom:682.000000pt;}
.y191{bottom:683.333333pt;}
.y145{bottom:684.000000pt;}
.y1ec{bottom:685.333333pt;}
.y226{bottom:686.666667pt;}
.y4b{bottom:689.333333pt;}
.y1a{bottom:690.000000pt;}
.y4a{bottom:690.666667pt;}
.y1ad{bottom:693.333333pt;}
.y47{bottom:694.000000pt;}
.y1ac{bottom:695.333333pt;}
.y190{bottom:698.666667pt;}
.y144{bottom:699.333333pt;}
.y49{bottom:700.000000pt;}
.y225{bottom:702.000000pt;}
.y10f{bottom:702.666667pt;}
.y48{bottom:703.333333pt;}
.y10e{bottom:704.666667pt;}
.y19{bottom:705.333333pt;}
.y1e6{bottom:706.666667pt;}
.y1bf{bottom:709.333333pt;}
.y1ab{bottom:710.666667pt;}
.y18f{bottom:712.000000pt;}
.y18e{bottom:714.000000pt;}
.y143{bottom:714.666667pt;}
.y1e7{bottom:717.333333pt;}
.y46{bottom:718.666667pt;}
.y9d{bottom:719.333333pt;}
.y10d{bottom:720.000000pt;}
.y18{bottom:720.666667pt;}
.y1e5{bottom:722.666667pt;}
.y1be{bottom:724.666667pt;}
.y1aa{bottom:726.000000pt;}
.y18d{bottom:729.333333pt;}
.y142{bottom:730.000000pt;}
.y224{bottom:732.666667pt;}
.y9c{bottom:734.000000pt;}
.y17{bottom:735.333333pt;}
.y1a9{bottom:739.333333pt;}
.y1bd{bottom:740.000000pt;}
.y1a8{bottom:741.333333pt;}
.y1e1{bottom:743.333333pt;}
.y18c{bottom:744.666667pt;}
.y9b{bottom:745.333333pt;}
.y1e3{bottom:746.666667pt;}
.y223{bottom:748.000000pt;}
.y20e{bottom:748.666667pt;}
.y16{bottom:749.333333pt;}
.y10c{bottom:750.666667pt;}
.y1e2{bottom:754.000000pt;}
.y1bc{bottom:755.333333pt;}
.y18a{bottom:756.000000pt;}
.y1a7{bottom:756.666667pt;}
.y1e4{bottom:757.333333pt;}
.y141{bottom:760.666667pt;}
.y15{bottom:762.666667pt;}
.y222{bottom:763.333333pt;}
.y20d{bottom:764.000000pt;}
.y10b{bottom:766.000000pt;}
.y188{bottom:769.333333pt;}
.y1bb{bottom:770.666667pt;}
.y1a6{bottom:771.333333pt;}
.y18b{bottom:775.333333pt;}
.y140{bottom:776.000000pt;}
.y14{bottom:776.666667pt;}
.y189{bottom:778.666667pt;}
.y20c{bottom:779.333333pt;}
.y109{bottom:781.333333pt;}
.y1e0{bottom:784.000000pt;}
.y1a5{bottom:785.333333pt;}
.y13{bottom:790.666667pt;}
.y10a{bottom:791.333333pt;}
.y221{bottom:794.000000pt;}
.y107{bottom:794.666667pt;}
.y187{bottom:796.000000pt;}
.y1a4{bottom:798.666667pt;}
.y1df{bottom:799.333333pt;}
.y12{bottom:804.666667pt;}
.y13f{bottom:806.666667pt;}
.y108{bottom:808.666667pt;}
.y220{bottom:809.333333pt;}
.y20b{bottom:810.000000pt;}
.y186{bottom:811.333333pt;}
.y1a3{bottom:812.666667pt;}
.y1de{bottom:814.666667pt;}
.y11{bottom:819.333333pt;}
.y13e{bottom:822.000000pt;}
.y106{bottom:822.666667pt;}
.y20a{bottom:824.666667pt;}
.y185{bottom:826.666667pt;}
.y1dd{bottom:830.000000pt;}
.y10{bottom:833.333333pt;}
.y13d{bottom:837.333333pt;}
.y105{bottom:838.000000pt;}
.y21f{bottom:840.000000pt;}
.y1ba{bottom:841.333333pt;}
.y184{bottom:842.000000pt;}
.y77{bottom:844.666667pt;}
.yf{bottom:847.333333pt;}
.y9a{bottom:848.000000pt;}
.y13c{bottom:852.666667pt;}
.y104{bottom:853.333333pt;}
.y21e{bottom:855.333333pt;}
.y183{bottom:857.333333pt;}
.y1dc{bottom:858.666667pt;}
.ye{bottom:861.333333pt;}
.y99{bottom:863.333333pt;}
.y209{bottom:864.000000pt;}
.y102{bottom:864.666667pt;}
.y13b{bottom:866.000000pt;}
.y13a{bottom:868.000000pt;}
.y1db{bottom:869.333333pt;}
.y21d{bottom:870.666667pt;}
.y182{bottom:872.000000pt;}
.yd{bottom:874.666667pt;}
.y180{bottom:875.333333pt;}
.y101{bottom:878.000000pt;}
.y98{bottom:878.666667pt;}
.y181{bottom:881.333333pt;}
.y139{bottom:883.333333pt;}
.y21c{bottom:886.000000pt;}
.y103{bottom:886.666667pt;}
.yc{bottom:888.666667pt;}
.y97{bottom:894.000000pt;}
.y17c{bottom:894.666667pt;}
.y138{bottom:898.666667pt;}
.y21b{bottom:901.333333pt;}
.yb{bottom:903.333333pt;}
.y17e{bottom:905.333333pt;}
.y100{bottom:907.333333pt;}
.y17b{bottom:908.666667pt;}
.y96{bottom:909.333333pt;}
.y137{bottom:914.000000pt;}
.y17d{bottom:916.000000pt;}
.y21a{bottom:916.666667pt;}
.ya{bottom:918.000000pt;}
.y17f{bottom:919.333333pt;}
.yff{bottom:922.666667pt;}
.y95{bottom:924.666667pt;}
.y132{bottom:928.666667pt;}
.y135{bottom:930.000000pt;}
.y133{bottom:932.000000pt;}
.y9{bottom:932.666667pt;}
.yfe{bottom:938.000000pt;}
.y130{bottom:938.666667pt;}
.y131{bottom:939.333333pt;}
.y94{bottom:940.000000pt;}
.y178{bottom:940.666667pt;}
.y12f{bottom:942.666667pt;}
.y219{bottom:947.333333pt;}
.y136{bottom:950.666667pt;}
.y134{bottom:951.333333pt;}
.yf7{bottom:953.333333pt;}
.y177{bottom:954.666667pt;}
.y93{bottom:955.333333pt;}
.yf6{bottom:960.666667pt;}
.y179{bottom:962.000000pt;}
.yf9{bottom:962.666667pt;}
.y17a{bottom:965.333333pt;}
.yf5{bottom:966.000000pt;}
.y8{bottom:970.666667pt;}
.yf8{bottom:973.333333pt;}
.yfb{bottom:974.000000pt;}
.y218{bottom:978.000000pt;}
.y12e{bottom:984.000000pt;}
.y92{bottom:986.000000pt;}
.yfc{bottom:992.666667pt;}
.y217{bottom:993.333600pt;}
.y7{bottom:995.333333pt;}
.y174{bottom:996.666667pt;}
.yfa{bottom:999.333333pt;}
.y176{bottom:1000.000000pt;}
.y91{bottom:1001.333333pt;}
.yf4{bottom:1002.666667pt;}
.y173{bottom:1007.333333pt;}
.y175{bottom:1010.666667pt;}
.yfd{bottom:1011.333333pt;}
.y6{bottom:1013.333333pt;}
.y12c{bottom:1014.666667pt;}
.y12d{bottom:1016.666667pt;}
.y90{bottom:1016.666933pt;}
.y2{bottom:1044.000000pt;}
.y4{bottom:1060.000000pt;}
.y3{bottom:1063.333333pt;}
.y1{bottom:1064.000000pt;}
.h18{height:14.000000pt;}
.h3{height:14.666667pt;}
.hd{height:18.000000pt;}
.h14{height:20.666667pt;}
.h12{height:21.333333pt;}
.h16{height:22.016000pt;}
.hf{height:23.266754pt;}
.h1b{height:27.946667pt;}
.ha{height:29.568000pt;}
.h1d{height:30.011520pt;}
.h15{height:30.720000pt;}
.h9{height:32.032000pt;}
.hb{height:36.693333pt;}
.h1f{height:37.245568pt;}
.h8{height:38.777532pt;}
.h5{height:44.352000pt;}
.h6{height:46.080000pt;}
.h1{height:49.280000pt;}
.h10{height:49.281067pt;}
.h11{height:49.401042pt;}
.hc{height:49.765333pt;}
.h1e{height:50.021664pt;}
.h1c{height:50.901333pt;}
.h7{height:51.200000pt;}
.h1a{height:51.600000pt;}
.h17{height:56.874667pt;}
.he{height:58.366251pt;}
.h2{height:59.136000pt;}
.h4{height:61.440000pt;}
.h13{height:61.461333pt;}
.h19{height:79.041667pt;}
.h0{height:1122.666667pt;}
.w1{width:0.666667pt;}
.w2{width:4.666667pt;}
.w3{width:6.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:75.333333pt;}
.x113{left:76.666333pt;}
.x54{left:78.000231pt;}
.x10{left:80.666667pt;}
.x55{left:82.667010pt;}
.x52{left:84.000000pt;}
.x11{left:85.333333pt;}
.x100{left:87.333891pt;}
.x3{left:88.666667pt;}
.xc6{left:90.000000pt;}
.x101{left:99.332985pt;}
.x53{left:102.666768pt;}
.xef{left:107.333386pt;}
.xc7{left:110.666667pt;}
.xb8{left:112.000066pt;}
.x4{left:115.333170pt;}
.xb7{left:117.333333pt;}
.xc8{left:119.333333pt;}
.x7{left:120.666667pt;}
.xfb{left:122.666419pt;}
.xa9{left:125.333333pt;}
.xf2{left:126.666667pt;}
.x8{left:128.000000pt;}
.x9{left:130.666667pt;}
.x17{left:132.666656pt;}
.xb3{left:134.666664pt;}
.xec{left:136.666667pt;}
.xc1{left:139.333333pt;}
.xa1{left:142.666679pt;}
.x9b{left:145.999945pt;}
.xc9{left:148.666667pt;}
.x1a{left:150.000000pt;}
.xb4{left:152.666698pt;}
.xf0{left:156.000000pt;}
.xeb{left:161.333370pt;}
.xc5{left:162.666667pt;}
.xac{left:164.000000pt;}
.xc2{left:166.000000pt;}
.xad{left:168.000000pt;}
.xa{left:169.333333pt;}
.xf1{left:170.666667pt;}
.xa0{left:172.666659pt;}
.xb{left:174.666667pt;}
.x16{left:176.000000pt;}
.xea{left:178.666692pt;}
.xb1{left:180.000000pt;}
.x9f{left:182.000000pt;}
.x99{left:184.666667pt;}
.xfa{left:188.000000pt;}
.xab{left:189.333333pt;}
.x15{left:190.666715pt;}
.xaa{left:192.000000pt;}
.x12{left:194.000000pt;}
.xbd{left:196.000000pt;}
.xf5{left:198.000000pt;}
.xf6{left:202.000000pt;}
.xbe{left:204.000000pt;}
.xf8{left:206.000030pt;}
.xfc{left:207.333332pt;}
.x14{left:208.666703pt;}
.x18{left:210.666667pt;}
.x6{left:212.666667pt;}
.xe7{left:216.666667pt;}
.xe9{left:218.666667pt;}
.xee{left:220.666667pt;}
.xc{left:222.000000pt;}
.xc3{left:224.666667pt;}
.xd{left:226.000000pt;}
.xe8{left:227.999996pt;}
.xaf{left:229.333333pt;}
.xed{left:230.666657pt;}
.xa6{left:232.000000pt;}
.xc4{left:233.333333pt;}
.xbf{left:238.000000pt;}
.xb0{left:239.333333pt;}
.xfd{left:242.666667pt;}
.x56{left:244.000000pt;}
.xa3{left:245.333253pt;}
.xf9{left:247.333333pt;}
.xa4{left:249.333250pt;}
.xe{left:250.666667pt;}
.x9c{left:252.666667pt;}
.xf3{left:254.666687pt;}
.xf{left:258.000000pt;}
.xae{left:260.000000pt;}
.xa8{left:261.999952pt;}
.xc0{left:264.000000pt;}
.x13{left:266.000000pt;}
.x9a{left:268.000000pt;}
.xa2{left:271.333250pt;}
.x98{left:274.000000pt;}
.xb2{left:277.333333pt;}
.xf7{left:280.666667pt;}
.x19{left:290.666667pt;}
.xf4{left:295.333333pt;}
.xb9{left:309.333333pt;}
.xba{left:318.000000pt;}
.xa7{left:320.666610pt;}
.x112{left:333.333333pt;}
.xa5{left:338.666154pt;}
.x9d{left:341.999975pt;}
.x9e{left:346.666634pt;}
.xb5{left:353.333333pt;}
.x111{left:354.666667pt;}
.x51{left:358.666667pt;}
.xb6{left:360.000000pt;}
.x110{left:363.333333pt;}
.x1{left:364.666667pt;}
.xbb{left:368.666667pt;}
.xbc{left:378.000000pt;}
.x50{left:382.000000pt;}
.x5{left:396.666208pt;}
.x1b{left:416.000581pt;}
.x1e{left:418.000000pt;}
.x23{left:422.000045pt;}
.x61{left:424.000000pt;}
.xd2{left:425.333254pt;}
.x35{left:428.666667pt;}
.x25{left:430.000040pt;}
.x6a{left:432.001194pt;}
.xe0{left:433.333333pt;}
.xd1{left:434.666594pt;}
.xcf{left:437.333333pt;}
.xe5{left:439.333333pt;}
.x20{left:440.666667pt;}
.x104{left:442.000000pt;}
.x107{left:443.333333pt;}
.x102{left:444.666667pt;}
.xff{left:449.333852pt;}
.x1c{left:451.333333pt;}
.x64{left:452.667240pt;}
.xfe{left:454.666665pt;}
.x67{left:456.666835pt;}
.x57{left:458.000000pt;}
.x1d{left:459.333333pt;}
.x60{left:462.000000pt;}
.x3d{left:463.333333pt;}
.x90{left:465.333333pt;}
.x108{left:466.666688pt;}
.xd9{left:468.000000pt;}
.x31{left:471.333336pt;}
.x45{left:475.333350pt;}
.x22{left:477.333343pt;}
.x3f{left:480.666676pt;}
.x24{left:482.000000pt;}
.x6c{left:484.000000pt;}
.x34{left:486.000000pt;}
.x5a{left:487.333333pt;}
.xd8{left:488.666667pt;}
.x48{left:490.000000pt;}
.x10c{left:491.333333pt;}
.x21{left:492.666667pt;}
.x10f{left:494.000000pt;}
.x30{left:495.333334pt;}
.xe6{left:496.666667pt;}
.x32{left:498.000023pt;}
.x44{left:499.333348pt;}
.x106{left:501.333335pt;}
.x33{left:502.666667pt;}
.x92{left:504.000061pt;}
.x47{left:506.666667pt;}
.xca{left:508.000000pt;}
.x103{left:509.333333pt;}
.x76{left:511.333401pt;}
.x1f{left:512.666667pt;}
.xd0{left:514.666757pt;}
.x3e{left:516.000000pt;}
.x46{left:517.333333pt;}
.x10b{left:518.666426pt;}
.xd4{left:520.666704pt;}
.x10e{left:522.000000pt;}
.xda{left:523.333333pt;}
.x6d{left:526.000000pt;}
.x26{left:528.000000pt;}
.x40{left:532.000000pt;}
.x2e{left:535.333333pt;}
.x93{left:536.666667pt;}
.x2f{left:538.666667pt;}
.xde{left:540.000000pt;}
.xcb{left:542.000000pt;}
.x43{left:543.333333pt;}
.x78{left:544.666711pt;}
.x91{left:548.666667pt;}
.x58{left:550.666667pt;}
.x49{left:552.000000pt;}
.xd6{left:553.333339pt;}
.x36{left:554.666667pt;}
.x7e{left:556.666702pt;}
.x4d{left:558.666667pt;}
.x6e{left:560.000000pt;}
.x75{left:562.000035pt;}
.xd5{left:564.000000pt;}
.x81{left:566.666667pt;}
.x6f{left:568.666667pt;}
.x62{left:570.666749pt;}
.x79{left:572.000000pt;}
.x10d{left:573.333333pt;}
.x10a{left:576.000000pt;}
.xdf{left:577.333333pt;}
.x80{left:579.333333pt;}
.x89{left:580.666771pt;}
.x7d{left:582.666685pt;}
.x5b{left:585.333226pt;}
.xd3{left:586.666667pt;}
.x74{left:588.000019pt;}
.x95{left:589.333343pt;}
.xd7{left:590.666667pt;}
.x109{left:592.666698pt;}
.x70{left:594.000000pt;}
.x82{left:595.333524pt;}
.x7c{left:597.333343pt;}
.x73{left:599.333345pt;}
.x5f{left:600.666667pt;}
.x71{left:602.666667pt;}
.x94{left:604.666667pt;}
.x27{left:606.666667pt;}
.x105{left:608.666689pt;}
.x2d{left:610.666667pt;}
.x7b{left:612.000000pt;}
.x77{left:613.333333pt;}
.x87{left:614.666949pt;}
.x65{left:616.666754pt;}
.x2c{left:618.666667pt;}
.x68{left:620.000141pt;}
.x7f{left:622.000000pt;}
.x28{left:624.666667pt;}
.x7a{left:626.000000pt;}
.x4a{left:628.000000pt;}
.x2a{left:629.333333pt;}
.xdd{left:630.666667pt;}
.x37{left:632.000000pt;}
.x63{left:633.333322pt;}
.x3c{left:636.000000pt;}
.x4c{left:638.666667pt;}
.x86{left:640.000000pt;}
.xdc{left:641.333330pt;}
.x2b{left:642.666667pt;}
.x5e{left:644.000000pt;}
.x42{left:646.666667pt;}
.xdb{left:647.999980pt;}
.x8d{left:649.334139pt;}
.x38{left:650.666667pt;}
.xe1{left:652.000000pt;}
.x29{left:653.333333pt;}
.x3a{left:654.666667pt;}
.x41{left:656.666667pt;}
.x8b{left:658.666667pt;}
.x5d{left:660.000015pt;}
.xcc{left:662.000000pt;}
.x69{left:665.334378pt;}
.x3b{left:668.000000pt;}
.x72{left:670.666667pt;}
.x66{left:672.666667pt;}
.x8f{left:674.001576pt;}
.x8e{left:676.001308pt;}
.x39{left:677.333333pt;}
.x4b{left:678.666667pt;}
.xe2{left:680.666667pt;}
.x5c{left:684.000000pt;}
.x85{left:686.000000pt;}
.xcd{left:688.000000pt;}
.xe3{left:689.333333pt;}
.x6b{left:692.000000pt;}
.x97{left:694.000000pt;}
.xce{left:696.000000pt;}
.x96{left:697.333333pt;}
.x84{left:702.000015pt;}
.x4e{left:704.666667pt;}
.x8c{left:707.334102pt;}
.xe4{left:709.333333pt;}
.x59{left:710.666667pt;}
.x8a{left:714.666667pt;}
.x4f{left:718.000000pt;}
.x88{left:719.333333pt;}
.x83{left:726.000000pt;}
}




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