
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_17797ca7f46904f6287566db.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:0.952000;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_c00000;src:url('chunks/assets/font_8b11c7e74608e0fa179a39cd.woff2')format("woff");}.ff2_c00000{font-family:ff2_c00000;line-height:0.956000;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_c00000;src:url('chunks/assets/font_3b31b9ce10a013c06a4169ee.woff2')format("woff");}.ff3_c00000{font-family:ff3_c00000;line-height:0.890000;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_c00000;src:url('chunks/assets/font_c8dd32be16c58ffb0ce78734.woff2')format("woff");}.ff4_c00000{font-family:ff4_c00000;line-height:0.906000;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_c00000{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_c00000{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);}
.v0_c00000{vertical-align:0.000000px;}
.v2_c00000{vertical-align:1.032000px;}
.v1_c00000{vertical-align:9.294000px;}
.ls7_c00000{letter-spacing:0.000000px;}
.lsa_c00000{letter-spacing:3.314383px;}
.lsf_c00000{letter-spacing:3.316200px;}
.ls0_c00000{letter-spacing:14.944200px;}
.ls9_c00000{letter-spacing:14.945108px;}
.lsc_c00000{letter-spacing:14.946017px;}
.ls3_c00000{letter-spacing:14.948383px;}
.lsb_c00000{letter-spacing:17.751634px;}
.lse_c00000{letter-spacing:17.930400px;}
.ls8_c00000{letter-spacing:17.936400px;}
.lsd_c00000{letter-spacing:18.002726px;}
.ls4_c00000{letter-spacing:19.593634px;}
.ls2_c00000{letter-spacing:29.887800px;}
.ls1_c00000{letter-spacing:40.101634px;}
.ls6_c00000{letter-spacing:50.866200px;}
.ls5_c00000{letter-spacing:54.214200px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00000{word-spacing:-36.224014px;}
.ws10_c00000{word-spacing:-36.164238px;}
.ws7_c00000{word-spacing:-27.915205px;}
.ws3e_c00000{word-spacing:-17.932800px;}
.wsa_c00000{word-spacing:-14.943900px;}
.ws59_c00000{word-spacing:-13.449600px;}
.wsc_c00000{word-spacing:-6.336214px;}
.ws6_c00000{word-spacing:-6.276438px;}
.ws3d_c00000{word-spacing:-0.071731px;}
.ws9_c00000{word-spacing:-0.059776px;}
.ws11_c00000{word-spacing:-0.007141px;}
.ws51_c00000{word-spacing:-0.003866px;}
.ws50_c00000{word-spacing:-0.001792px;}
.ws52_c00000{word-spacing:-0.001738px;}
.ws0_c00000{word-spacing:0.000000px;}
.ws79_c00000{word-spacing:0.002700px;}
.ws12_c00000{word-spacing:0.004500px;}
.ws46_c00000{word-spacing:3.315670px;}
.ws74_c00000{word-spacing:3.316087px;}
.ws2a_c00000{word-spacing:3.317287px;}
.ws70_c00000{word-spacing:3.317887px;}
.ws75_c00000{word-spacing:3.318137px;}
.ws4e_c00000{word-spacing:3.318670px;}
.ws47_c00000{word-spacing:3.319087px;}
.ws6c_c00000{word-spacing:3.319270px;}
.ws29_c00000{word-spacing:3.319870px;}
.ws4f_c00000{word-spacing:3.320351px;}
.ws6f_c00000{word-spacing:3.320470px;}
.ws19_c00000{word-spacing:14.881247px;}
.ws4_c00000{word-spacing:14.882058px;}
.ws43_c00000{word-spacing:14.884441px;}
.ws8_c00000{word-spacing:14.943900px;}
.ws14_c00000{word-spacing:15.960241px;}
.ws2b_c00000{word-spacing:16.259350px;}
.wsd_c00000{word-spacing:16.261716px;}
.ws7a_c00000{word-spacing:17.278475px;}
.ws2c_c00000{word-spacing:17.858016px;}
.ws44_c00000{word-spacing:17.861232px;}
.ws7c_c00000{word-spacing:17.862816px;}
.ws66_c00000{word-spacing:18.074342px;}
.ws69_c00000{word-spacing:19.486099px;}
.ws17_c00000{word-spacing:23.057692px;}
.ws2_c00000{word-spacing:23.611362px;}
.ws15_c00000{word-spacing:24.266058px;}
.ws5_c00000{word-spacing:25.338241px;}
.wsf_c00000{word-spacing:41.953150px;}
.ws16_c00000{word-spacing:42.962058px;}
.ws1_c00000{word-spacing:44.831700px;}
.ws18_c00000{word-spacing:47.820600px;}
.ws78_c00000{word-spacing:49.818900px;}
.ws71_c00000{word-spacing:49.823100px;}
.ws7b_c00000{word-spacing:53.797200px;}
.ws57_c00000{word-spacing:53.798400px;}
.ws1c_c00000{word-spacing:56.786820px;}
.wsb_c00000{word-spacing:57.793150px;}
.ws22_c00000{word-spacing:58.263667px;}
.ws23_c00000{word-spacing:58.317466px;}
.ws61_c00000{word-spacing:59.775750px;}
.wse_c00000{word-spacing:60.247150px;}
.ws34_c00000{word-spacing:62.525278px;}
.ws1a_c00000{word-spacing:64.557900px;}
.ws38_c00000{word-spacing:65.580250px;}
.ws36_c00000{word-spacing:65.634048px;}
.ws7d_c00000{word-spacing:65.872711px;}
.ws35_c00000{word-spacing:70.654759px;}
.ws21_c00000{word-spacing:71.713267px;}
.ws60_c00000{word-spacing:79.191245px;}
.ws5f_c00000{word-spacing:79.245043px;}
.ws58_c00000{word-spacing:80.039528px;}
.ws63_c00000{word-spacing:83.686050px;}
.ws42_c00000{word-spacing:84.941128px;}
.ws24_c00000{word-spacing:85.162867px;}
.ws25_c00000{word-spacing:85.216666px;}
.ws1d_c00000{word-spacing:86.674620px;}
.ws77_c00000{word-spacing:88.175578px;}
.ws4c_c00000{word-spacing:88.713562px;}
.ws4b_c00000{word-spacing:88.767360px;}
.ws4a_c00000{word-spacing:90.619810px;}
.ws67_c00000{word-spacing:92.413078px;}
.ws39_c00000{word-spacing:92.479450px;}
.ws37_c00000{word-spacing:92.533248px;}
.ws76_c00000{word-spacing:95.760511px;}
.ws2f_c00000{word-spacing:98.612467px;}
.ws40_c00000{word-spacing:98.666266px;}
.ws3b_c00000{word-spacing:105.982848px;}
.ws65_c00000{word-spacing:106.209553px;}
.ws62_c00000{word-spacing:107.596350px;}
.ws27_c00000{word-spacing:112.062067px;}
.ws28_c00000{word-spacing:112.115866px;}
.ws41_c00000{word-spacing:113.214986px;}
.ws31_c00000{word-spacing:114.828928px;}
.ws1b_c00000{word-spacing:116.562420px;}
.ws3a_c00000{word-spacing:119.378650px;}
.ws3c_c00000{word-spacing:119.432448px;}
.ws49_c00000{word-spacing:121.046400px;}
.ws2d_c00000{word-spacing:122.300878px;}
.ws64_c00000{word-spacing:131.506650px;}
.ws45_c00000{word-spacing:132.283403px;}
.ws5c_c00000{word-spacing:133.581427px;}
.ws2e_c00000{word-spacing:135.571061px;}
.ws6b_c00000{word-spacing:135.948557px;}
.ws30_c00000{word-spacing:138.961267px;}
.ws4d_c00000{word-spacing:142.511962px;}
.ws26_c00000{word-spacing:146.450220px;}
.ws54_c00000{word-spacing:147.891802px;}
.ws55_c00000{word-spacing:148.841244px;}
.ws33_c00000{word-spacing:150.904512px;}
.ws20_c00000{word-spacing:151.471370px;}
.ws1e_c00000{word-spacing:152.188678px;}
.ws32_c00000{word-spacing:152.410867px;}
.ws53_c00000{word-spacing:162.111427px;}
.ws48_c00000{word-spacing:162.171203px;}
.ws5d_c00000{word-spacing:172.423872px;}
.ws56_c00000{word-spacing:176.338020px;}
.ws1f_c00000{word-spacing:182.076478px;}
.ws6e_c00000{word-spacing:195.346661px;}
.ws5e_c00000{word-spacing:195.718579px;}
.ws7e_c00000{word-spacing:206.225820px;}
.ws72_c00000{word-spacing:208.616844px;}
.ws6d_c00000{word-spacing:211.964278px;}
.ws68_c00000{word-spacing:241.852078px;}
.ws73_c00000{word-spacing:251.774827px;}
.ws6a_c00000{word-spacing:271.739878px;}
.ws5b_c00000{word-spacing:301.432435px;}
.ws5a_c00000{word-spacing:309.340800px;}
.ws3f_c00000{word-spacing:341.737105px;}
.ws13_c00000{word-spacing:2768.198683px;}
._c_c00000{margin-left:-30.950060px;}
._8_c00000{margin-left:-29.949533px;}
._11_c00000{margin-left:-28.929433px;}
._a_c00000{margin-left:-14.882167px;}
._3_c00000{margin-left:-8.263392px;}
._4_c00000{margin-left:-5.738496px;}
._8a_c00000{margin-left:-3.885414px;}
._0_c00000{margin-left:-2.582310px;}
._1_c00000{margin-left:-1.549386px;}
._d2_c00000{width:1.409837px;}
._7_c00000{width:3.371047px;}
._2_c00000{width:5.724301px;}
._cd_c00000{width:7.180877px;}
._31_c00000{width:11.598392px;}
._e_c00000{width:14.943900px;}
._12_c00000{width:17.317182px;}
._92_c00000{width:18.383460px;}
._14_c00000{width:19.933250px;}
._f_c00000{width:25.280299px;}
._9_c00000{width:33.000046px;}
._b_c00000{width:37.680157px;}
._d_c00000{width:38.927616px;}
._b3_c00000{width:59.775600px;}
._6_c00000{width:62.764380px;}
._10_c00000{width:68.383286px;}
._13_c00000{width:71.731200px;}
._38_c00000{width:73.464212px;}
._d3_c00000{width:74.725978px;}
._d1_c00000{width:76.751870px;}
._82_c00000{width:79.234276px;}
._b7_c00000{width:83.915184px;}
._88_c00000{width:85.162867px;}
._d5_c00000{width:86.614844px;}
._cf_c00000{width:87.690805px;}
._b0_c00000{width:90.022054px;}
._87_c00000{width:92.737674px;}
._cb_c00000{width:94.147324px;}
._ca_c00000{width:95.521409px;}
._5d_c00000{width:98.330862px;}
._41_c00000{width:99.605762px;}
._26_c00000{width:101.618520px;}
._3f_c00000{width:103.352012px;}
._d0_c00000{width:104.906178px;}
._83_c00000{width:106.187274px;}
._b6_c00000{width:108.253612px;}
._c9_c00000{width:109.927328px;}
._5e_c00000{width:111.601045px;}
._95_c00000{width:112.816076px;}
._ce_c00000{width:114.231172px;}
._79_c00000{width:117.638381px;}
._89_c00000{width:119.636874px;}
._62_c00000{width:121.583570px;}
._d4_c00000{width:123.257287px;}
._7a_c00000{width:124.273472px;}
._3c_c00000{width:125.565466px;}
._25_c00000{width:128.158886px;}
._51_c00000{width:129.772828px;}
._1a_c00000{width:131.506320px;}
._16_c00000{width:133.239812px;}
._8b_c00000{width:134.793978px;}
._bf_c00000{width:136.467695px;}
._2c_c00000{width:138.081636px;}
._5f_c00000{width:139.750573px;}
._99_c00000{width:141.488845px;}
._1e_c00000{width:143.222338px;}
._97_c00000{width:144.776503px;}
._34_c00000{width:146.493043px;}
._28_c00000{width:148.004386px;}
._93_c00000{width:149.737878px;}
._20_c00000{width:151.471370px;}
._35_c00000{width:153.039751px;}
._27_c00000{width:154.818804px;}
._96_c00000{width:156.313194px;}
._63_c00000{width:158.106462px;}
._52_c00000{width:159.660628px;}
._1c_c00000{width:161.394120px;}
._24_c00000{width:162.943506px;}
._61_c00000{width:163.976430px;}
._55_c00000{width:165.957488px;}
._30_c00000{width:167.840326px;}
._7f_c00000{width:169.643153px;}
._2a_c00000{width:171.316870px;}
._59_c00000{width:173.110138px;}
._60_c00000{width:174.664303px;}
._43_c00000{width:176.278244px;}
._7c_c00000{width:177.857510px;}
._3d_c00000{width:179.363866px;}
._29_c00000{width:181.239619px;}
._67_c00000{width:182.913336px;}
._18_c00000{width:184.706604px;}
._8c_c00000{width:186.196214px;}
._1f_c00000{width:187.288914px;}
._98_c00000{width:188.348198px;}
._47_c00000{width:189.548428px;}
._4e_c00000{width:191.281920px;}
._73_c00000{width:192.895861px;}
._64_c00000{width:194.629354px;}
._56_c00000{width:196.183519px;}
._af_c00000{width:197.917012px;}
._4d_c00000{width:199.471177px;}
._7b_c00000{width:200.666689px;}
._50_c00000{width:202.878386px;}
._2d_c00000{width:204.552103px;}
._3a_c00000{width:206.166044px;}
._81_c00000{width:207.899537px;}
._36_c00000{width:209.168179px;}
._74_c00000{width:211.062864px;}
._54_c00000{width:212.801136px;}
._22_c00000{width:214.474853px;}
._40_c00000{width:216.088794px;}
._9a_c00000{width:217.697956px;}
._58_c00000{width:219.436228px;}
._75_c00000{width:221.045389px;}
._65_c00000{width:222.783661px;}
._5a_c00000{width:224.333047px;}
._23_c00000{width:225.817878px;}
._42_c00000{width:227.864587px;}
._66_c00000{width:229.418753px;}
._6c_c00000{width:230.968139px;}
._3b_c00000{width:232.766186px;}
._21_c00000{width:234.439903px;}
._2b_c00000{width:236.257090px;}
._46_c00000{width:237.603230px;}
._72_c00000{width:239.401278px;}
._ad_c00000{width:241.074995px;}
._49_c00000{width:242.688936px;}
._2f_c00000{width:244.362653px;}
._4c_c00000{width:245.976594px;}
._b2_c00000{width:247.710086px;}
._6b_c00000{width:249.324028px;}
._76_c00000{width:250.873414px;}
._5c_c00000{width:251.906338px;}
._1d_c00000{width:254.345178px;}
._6e_c00000{width:255.959119px;}
._19_c00000{width:257.752387px;}
._68_c00000{width:259.306553px;}
._a6_c00000{width:260.980270px;}
._4f_c00000{width:262.594211px;}
._9b_c00000{width:264.327703px;}
._5b_c00000{width:265.941644px;}
._4b_c00000{width:267.491030px;}
._4a_c00000{width:269.040416px;}
._ae_c00000{width:270.962795px;}
._48_c00000{width:272.576736px;}
._9f_c00000{width:274.310228px;}
._6d_c00000{width:275.864394px;}
._b1_c00000{width:277.597886px;}
._6a_c00000{width:279.211828px;}
._9c_c00000{width:280.945320px;}
._2e_c00000{width:282.762506px;}
._45_c00000{width:284.232978px;}
._6f_c00000{width:285.787144px;}
._44_c00000{width:287.640187px;}
._70_c00000{width:289.134577px;}
._ab_c00000{width:290.927845px;}
._80_c00000{width:292.482011px;}
._b5_c00000{width:294.215503px;}
._77_c00000{width:295.829444px;}
._ba_c00000{width:297.562937px;}
._78_c00000{width:299.057327px;}
._ac_c00000{width:300.850595px;}
._71_c00000{width:302.404760px;}
._a1_c00000{width:304.198028px;}
._69_c00000{width:305.752194px;}
._37_c00000{width:307.545462px;}
._86_c00000{width:309.099628px;}
._8d_c00000{width:312.504586px;}
._7e_c00000{width:314.120778px;}
._33_c00000{width:315.355453px;}
._bc_c00000{width:317.284105px;}
._84_c00000{width:319.022377px;}
._32_c00000{width:322.790400px;}
._bb_c00000{width:323.919197px;}
._b8_c00000{width:325.657469px;}
._be_c00000{width:326.852981px;}
._8e_c00000{width:328.170240px;}
._b4_c00000{width:332.352336px;}
._a7_c00000{width:334.145604px;}
._b9_c00000{width:335.639994px;}
._3e_c00000{width:337.433262px;}
._db_c00000{width:338.987428px;}
._c5_c00000{width:340.182940px;}
._17_c00000{width:342.270306px;}
._a5_c00000{width:344.008578px;}
._c8_c00000{width:345.096498px;}
._cc_c00000{width:349.520765px;}
._d8_c00000{width:350.703445px;}
._c0_c00000{width:352.257611px;}
._94_c00000{width:355.069440px;}
._9d_c00000{width:357.338537px;}
._a0_c00000{width:360.626195px;}
._dc_c00000{width:362.180360px;}
._9e_c00000{width:363.913853px;}
._c6_c00000{width:365.766896px;}
._15_c00000{width:367.321062px;}
._c1_c00000{width:368.875228px;}
._d7_c00000{width:370.548944px;}
._57_c00000{width:372.158106px;}
._a3_c00000{width:373.836602px;}
._c4_c00000{width:379.037080px;}
._1b_c00000{width:380.591245px;}
._90_c00000{width:382.022438px;}
._bd_c00000{width:383.281147px;}
._c2_c00000{width:385.672171px;}
._d6_c00000{width:390.513995px;}
._a8_c00000{width:393.861428px;}
._85_c00000{width:395.415594px;}
._a4_c00000{width:397.149086px;}
._c7_c00000{width:399.061906px;}
._a2_c00000{width:400.436744px;}
._7d_c00000{width:402.045906px;}
._a9_c00000{width:403.784178px;}
._d9_c00000{width:407.071836px;}
._39_c00000{width:410.479045px;}
._c3_c00000{width:418.907405px;}
._91_c00000{width:422.371238px;}
._aa_c00000{width:423.749228px;}
._8f_c00000{width:431.933706px;}
._53_c00000{width:440.366845px;}
._da_c00000{width:486.812486px;}
._5_c00000{width:2823.013475px;}
.fc0_c00000{color:rgb(0,0,0);}
.fs5_c00000{font-size:47.820600px;}
.fs4_c00000{font-size:53.798400px;}
.fs3_c00000{font-size:59.775600px;}
.fs1_c00000{font-size:71.731200px;}
.fs2_c00000{font-size:86.077200px;}
.fs0_c00000{font-size:103.292400px;}
.y0_c00000{bottom:0.000000px;}
.y26b_c00000{bottom:11.187000px;}
.y1e_c00000{bottom:18.948000px;}
.y26a_c00000{bottom:29.121000px;}
.y269_c00000{bottom:47.053500px;}
.y268_c00000{bottom:64.986000px;}
.y5b_c00000{bottom:71.691000px;}
.y19e_c00000{bottom:73.423500px;}
.y267_c00000{bottom:82.918500px;}
.y19d_c00000{bottom:87.621000px;}
.y5a_c00000{bottom:88.129500px;}
.ybf_c00000{bottom:91.060500px;}
.y266_c00000{bottom:100.851000px;}
.y19c_c00000{bottom:101.817000px;}
.ybe_c00000{bottom:108.994500px;}
.y59_c00000{bottom:112.071000px;}
.y19b_c00000{bottom:116.014500px;}
.y265_c00000{bottom:118.783500px;}
.ybd_c00000{bottom:126.927000px;}
.y58_c00000{bottom:128.509500px;}
.y19a_c00000{bottom:130.210500px;}
.y264_c00000{bottom:136.717500px;}
.y199_c00000{bottom:144.408000px;}
.ybc_c00000{bottom:144.859500px;}
.y57_c00000{bottom:152.451000px;}
.y263_c00000{bottom:154.650000px;}
.y198_c00000{bottom:158.604000px;}
.ybb_c00000{bottom:162.792000px;}
.y56_c00000{bottom:168.888000px;}
.y262_c00000{bottom:172.582500px;}
.y197_c00000{bottom:172.801500px;}
.yba_c00000{bottom:180.724500px;}
.y196_c00000{bottom:186.997500px;}
.y261_c00000{bottom:190.515000px;}
.y55_c00000{bottom:192.829500px;}
.yb9_c00000{bottom:198.657000px;}
.y195_c00000{bottom:201.195000px;}
.y260_c00000{bottom:208.447500px;}
.y54_c00000{bottom:209.268000px;}
.y194_c00000{bottom:215.391000px;}
.yb8_c00000{bottom:216.591000px;}
.y25f_c00000{bottom:226.380000px;}
.y193_c00000{bottom:229.588500px;}
.y53_c00000{bottom:233.209500px;}
.yb7_c00000{bottom:234.523500px;}
.y192_c00000{bottom:243.784500px;}
.y25e_c00000{bottom:244.314000px;}
.y52_c00000{bottom:249.648000px;}
.yb6_c00000{bottom:252.456000px;}
.y191_c00000{bottom:257.982000px;}
.y25d_c00000{bottom:262.246500px;}
.y136_c00000{bottom:266.376000px;}
.yb5_c00000{bottom:270.388500px;}
.y190_c00000{bottom:272.178000px;}
.y51_c00000{bottom:273.589500px;}
.y25c_c00000{bottom:280.179000px;}
.y145_c00000{bottom:282.699000px;}
.y135_c00000{bottom:282.813000px;}
.y18f_c00000{bottom:286.375500px;}
.y27c_c00000{bottom:286.564500px;}
.yb4_c00000{bottom:288.321000px;}
.y50_c00000{bottom:290.028000px;}
.y25b_c00000{bottom:298.111500px;}
.y144_c00000{bottom:299.136000px;}
.y18e_c00000{bottom:300.571500px;}
.y10c_c00000{bottom:300.631500px;}
.y27b_c00000{bottom:303.003000px;}
.y4b_c00000{bottom:305.731500px;}
.yb3_c00000{bottom:306.253500px;}
.y134_c00000{bottom:306.754500px;}
.y22a_c00000{bottom:313.333500px;}
.y4f_c00000{bottom:313.969500px;}
.y18d_c00000{bottom:314.769000px;}
.y25a_c00000{bottom:316.044000px;}
.y10b_c00000{bottom:317.070000px;}
.y154_c00000{bottom:318.564000px;}
.y2a3_c00000{bottom:320.821500px;}
.y143_c00000{bottom:323.077500px;}
.y133_c00000{bottom:323.193000px;}
.y4a_c00000{bottom:323.664000px;}
.yb2_c00000{bottom:324.187500px;}
.y27a_c00000{bottom:326.944500px;}
.y18c_c00000{bottom:328.965000px;}
.y229_c00000{bottom:329.772000px;}
.y4e_c00000{bottom:330.408000px;}
.y259_c00000{bottom:333.976500px;}
.y2a4_c00000{bottom:333.978000px;}
.y153_c00000{bottom:335.002500px;}
.yf5_c00000{bottom:336.496500px;}
.y2a2_c00000{bottom:337.258500px;}
.y142_c00000{bottom:339.516000px;}
.y156_c00000{bottom:341.010000px;}
.y10a_c00000{bottom:341.011500px;}
.y49_c00000{bottom:341.596500px;}
.yb1_c00000{bottom:342.120000px;}
.y18b_c00000{bottom:343.161000px;}
.y279_c00000{bottom:343.383000px;}
.y228_c00000{bottom:346.210500px;}
.y132_c00000{bottom:347.134500px;}
.y258_c00000{bottom:351.910500px;}
.yf4_c00000{bottom:352.935000px;}
.y4d_c00000{bottom:354.349500px;}
.yfd_c00000{bottom:354.429000px;}
.y289_c00000{bottom:356.686500px;}
.y18a_c00000{bottom:357.358500px;}
.y109_c00000{bottom:357.448500px;}
.y152_c00000{bottom:358.944000px;}
.y48_c00000{bottom:359.529000px;}
.yb0_c00000{bottom:360.052500px;}
.y2a1_c00000{bottom:361.200000px;}
.y141_c00000{bottom:363.457500px;}
.y131_c00000{bottom:363.573000px;}
.y206_c00000{bottom:364.921500px;}
.y278_c00000{bottom:367.324500px;}
.y257_c00000{bottom:369.843000px;}
.y227_c00000{bottom:370.152000px;}
.y7b_c00000{bottom:370.867500px;}
.y189_c00000{bottom:371.554500px;}
.y288_c00000{bottom:373.125000px;}
.y151_c00000{bottom:375.382500px;}
.yf3_c00000{bottom:376.876500px;}
.y47_c00000{bottom:377.463000px;}
.y2a0_c00000{bottom:377.638500px;}
.yaf_c00000{bottom:377.985000px;}
.y140_c00000{bottom:379.896000px;}
.y205_c00000{bottom:381.360000px;}
.y108_c00000{bottom:381.390000px;}
.y277_c00000{bottom:383.763000px;}
.y188_c00000{bottom:385.752000px;}
.y226_c00000{bottom:386.590500px;}
.y7a_c00000{bottom:387.306000px;}
.y130_c00000{bottom:387.514500px;}
.y256_c00000{bottom:387.775500px;}
.yf2_c00000{bottom:393.315000px;}
.yfc_c00000{bottom:394.809000px;}
.y46_c00000{bottom:395.395500px;}
.yae_c00000{bottom:395.917500px;}
.y287_c00000{bottom:397.066500px;}
.y204_c00000{bottom:397.798500px;}
.y107_c00000{bottom:397.828500px;}
.y150_c00000{bottom:399.324000px;}
.y187_c00000{bottom:399.948000px;}
.y29f_c00000{bottom:401.580000px;}
.y225_c00000{bottom:403.027500px;}
.y13f_c00000{bottom:403.837500px;}
.y12f_c00000{bottom:403.953000px;}
.y255_c00000{bottom:405.708000px;}
.y1f5_c00000{bottom:406.017000px;}
.y276_c00000{bottom:407.704500px;}
.ya8_c00000{bottom:408.990000px;}
.y79_c00000{bottom:411.247500px;}
.y45_c00000{bottom:413.328000px;}
.y286_c00000{bottom:413.505000px;}
.yad_c00000{bottom:413.851500px;}
.y186_c00000{bottom:414.145500px;}
.y203_c00000{bottom:414.235500px;}
.y14f_c00000{bottom:415.761000px;}
.yf1_c00000{bottom:417.256500px;}
.y29e_c00000{bottom:418.018500px;}
.y13e_c00000{bottom:420.276000px;}
.y106_c00000{bottom:421.770000px;}
.y1f4_c00000{bottom:422.455500px;}
.y254_c00000{bottom:423.640500px;}
.y275_c00000{bottom:424.143000px;}
.ya7_c00000{bottom:425.428500px;}
.y1d_c00000{bottom:426.187500px;}
.y224_c00000{bottom:426.969000px;}
.y78_c00000{bottom:427.686000px;}
.y12e_c00000{bottom:427.894500px;}
.y185_c00000{bottom:428.341500px;}
.y9b_c00000{bottom:428.401500px;}
.y44_c00000{bottom:431.260500px;}
.yac_c00000{bottom:431.784000px;}
.yf0_c00000{bottom:433.695000px;}
.yfb_c00000{bottom:435.189000px;}
.y285_c00000{bottom:437.446500px;}
.y202_c00000{bottom:438.177000px;}
.y105_c00000{bottom:438.208500px;}
.y1f3_c00000{bottom:438.894000px;}
.y14e_c00000{bottom:439.702500px;}
.y253_c00000{bottom:441.574500px;}
.y29d_c00000{bottom:441.960000px;}
.y184_c00000{bottom:442.539000px;}
.y223_c00000{bottom:443.407500px;}
.y1c_c00000{bottom:444.121500px;}
.y13d_c00000{bottom:444.217500px;}
.y12d_c00000{bottom:444.333000px;}
.y1dc_c00000{bottom:447.112500px;}
.y274_c00000{bottom:448.084500px;}
.y43_c00000{bottom:449.193000px;}
.ya6_c00000{bottom:449.370000px;}
.yab_c00000{bottom:449.716500px;}
.y77_c00000{bottom:451.627500px;}
.y9a_c00000{bottom:452.343000px;}
.y284_c00000{bottom:453.885000px;}
.y201_c00000{bottom:454.615500px;}
.y14d_c00000{bottom:456.141000px;}
.y183_c00000{bottom:456.735000px;}
.y157_c00000{bottom:457.635000px;}
.yef_c00000{bottom:457.636500px;}
.y29c_c00000{bottom:458.398500px;}
.y252_c00000{bottom:459.507000px;}
.y222_c00000{bottom:459.846000px;}
.y13c_c00000{bottom:460.656000px;}
.y1b_c00000{bottom:462.054000px;}
.y104_c00000{bottom:462.150000px;}
.yd7_c00000{bottom:462.339000px;}
.y1f2_c00000{bottom:462.835500px;}
.y1db_c00000{bottom:463.551000px;}
.y273_c00000{bottom:464.523000px;}
.ya5_c00000{bottom:465.808500px;}
.y42_c00000{bottom:467.125500px;}
.yaa_c00000{bottom:467.649000px;}
.y76_c00000{bottom:468.066000px;}
.y12c_c00000{bottom:468.274500px;}
.y182_c00000{bottom:470.932500px;}
.y200_c00000{bottom:471.054000px;}
.yee_c00000{bottom:474.073500px;}
.yfa_c00000{bottom:475.569000px;}
.y99_c00000{bottom:476.284500px;}
.y251_c00000{bottom:477.439500px;}
.y283_c00000{bottom:477.825000px;}
.y103_c00000{bottom:478.588500px;}
.y1f1_c00000{bottom:479.274000px;}
.y1a_c00000{bottom:479.986500px;}
.y14c_c00000{bottom:480.082500px;}
.yd6_c00000{bottom:480.271500px;}
.y29b_c00000{bottom:482.340000px;}
.y221_c00000{bottom:483.787500px;}
.y13b_c00000{bottom:484.597500px;}
.y12b_c00000{bottom:484.713000px;}
.y41_c00000{bottom:485.059500px;}
.y181_c00000{bottom:485.128500px;}
.y1e5_c00000{bottom:485.235000px;}
.ya9_c00000{bottom:485.581500px;}
.y1da_c00000{bottom:487.492500px;}
.y272_c00000{bottom:488.464500px;}
.ya4_c00000{bottom:489.750000px;}
.y75_c00000{bottom:492.007500px;}
.y282_c00000{bottom:494.263500px;}
.y250_c00000{bottom:495.372000px;}
.y1f0_c00000{bottom:495.712500px;}
.y14b_c00000{bottom:496.521000px;}
.y19_c00000{bottom:497.919000px;}
.yed_c00000{bottom:498.015000px;}
.yd5_c00000{bottom:498.204000px;}
.y29a_c00000{bottom:498.778500px;}
.y180_c00000{bottom:499.326000px;}
.y98_c00000{bottom:500.226000px;}
.y13a_c00000{bottom:501.036000px;}
.y1e4_c00000{bottom:501.673500px;}
.y102_c00000{bottom:502.530000px;}
.y40_c00000{bottom:502.992000px;}
.y8f_c00000{bottom:503.514000px;}
.y1d9_c00000{bottom:503.931000px;}
.y271_c00000{bottom:504.903000px;}
.ya3_c00000{bottom:506.188500px;}
.y74_c00000{bottom:508.444500px;}
.y12a_c00000{bottom:508.654500px;}
.y1ff_c00000{bottom:511.434000px;}
.y24f_c00000{bottom:513.304500px;}
.y17f_c00000{bottom:513.522000px;}
.yec_c00000{bottom:514.453500px;}
.y18_c00000{bottom:515.851500px;}
.yf9_c00000{bottom:515.949000px;}
.yd4_c00000{bottom:516.136500px;}
.y220_c00000{bottom:516.664500px;}
.y281_c00000{bottom:518.205000px;}
.y101_c00000{bottom:518.968500px;}
.y1ef_c00000{bottom:519.652500px;}
.y14a_c00000{bottom:520.462500px;}
.y3f_c00000{bottom:520.924500px;}
.y8e_c00000{bottom:521.448000px;}
.y299_c00000{bottom:522.720000px;}
.y97_c00000{bottom:524.167500px;}
.y139_c00000{bottom:524.977500px;}
.y129_c00000{bottom:525.091500px;}
.y1e3_c00000{bottom:525.615000px;}
.y17e_c00000{bottom:527.719500px;}
.y1d8_c00000{bottom:527.872500px;}
.y270_c00000{bottom:528.843000px;}
.ya2_c00000{bottom:530.130000px;}
.y24e_c00000{bottom:531.237000px;}
.y73_c00000{bottom:532.386000px;}
.y17_c00000{bottom:533.784000px;}
.yd3_c00000{bottom:534.069000px;}
.y280_c00000{bottom:534.643500px;}
.y1ee_c00000{bottom:536.091000px;}
.y149_c00000{bottom:536.901000px;}
.yeb_c00000{bottom:538.395000px;}
.y3e_c00000{bottom:538.857000px;}
.y298_c00000{bottom:539.158500px;}
.y8d_c00000{bottom:539.380500px;}
.y21f_c00000{bottom:540.606000px;}
.y138_c00000{bottom:541.414500px;}
.y17d_c00000{bottom:541.915500px;}
.y1e2_c00000{bottom:542.053500px;}
.y100_c00000{bottom:542.910000px;}
.y1d7_c00000{bottom:544.311000px;}
.ya1_c00000{bottom:546.568500px;}
.y96_c00000{bottom:548.109000px;}
.y72_c00000{bottom:548.824500px;}
.y128_c00000{bottom:549.033000px;}
.y24d_c00000{bottom:549.171000px;}
.y16_c00000{bottom:551.718000px;}
.yd2_c00000{bottom:552.001500px;}
.y1ed_c00000{bottom:552.529500px;}
.yea_c00000{bottom:554.833500px;}
.y17c_c00000{bottom:556.113000px;}
.yf8_c00000{bottom:556.327500px;}
.y3d_c00000{bottom:556.789500px;}
.y21e_c00000{bottom:557.044500px;}
.y8c_c00000{bottom:557.313000px;}
.y27f_c00000{bottom:558.585000px;}
.yff_c00000{bottom:559.348500px;}
.y1fe_c00000{bottom:560.749500px;}
.y148_c00000{bottom:560.842500px;}
.y297_c00000{bottom:563.100000px;}
.y137_c00000{bottom:565.356000px;}
.y1e1_c00000{bottom:565.995000px;}
.y24c_c00000{bottom:567.103500px;}
.y1d6_c00000{bottom:568.252500px;}
.y15_c00000{bottom:569.650500px;}
.yd1_c00000{bottom:569.935500px;}
.y17b_c00000{bottom:570.309000px;}
.ya0_c00000{bottom:570.508500px;}
.y95_c00000{bottom:572.050500px;}
.y71_c00000{bottom:572.766000px;}
.y21d_c00000{bottom:573.483000px;}
.y3c_c00000{bottom:574.722000px;}
.y27e_c00000{bottom:575.023500px;}
.y8b_c00000{bottom:575.245500px;}
.y1ec_c00000{bottom:576.471000px;}
.y147_c00000{bottom:577.281000px;}
.ye9_c00000{bottom:578.775000px;}
.y1e0_c00000{bottom:582.433500px;}
.yfe_c00000{bottom:583.290000px;}
.y17a_c00000{bottom:584.506500px;}
.y1d5_c00000{bottom:584.691000px;}
.y24b_c00000{bottom:585.036000px;}
.y9f_c00000{bottom:586.947000px;}
.y14_c00000{bottom:587.583000px;}
.yd0_c00000{bottom:587.868000px;}
.y70_c00000{bottom:589.204500px;}
.y3b_c00000{bottom:592.656000px;}
.y1eb_c00000{bottom:592.909500px;}
.y8a_c00000{bottom:593.178000px;}
.y233_c00000{bottom:594.540000px;}
.ye8_c00000{bottom:595.213500px;}
.y94_c00000{bottom:595.992000px;}
.yf7_c00000{bottom:596.707500px;}
.y21c_c00000{bottom:597.424500px;}
.y179_c00000{bottom:598.702500px;}
.y27d_c00000{bottom:598.965000px;}
.y1fd_c00000{bottom:601.129500px;}
.y146_c00000{bottom:601.222500px;}
.y24a_c00000{bottom:602.968500px;}
.y13_c00000{bottom:605.515500px;}
.ycf_c00000{bottom:605.800500px;}
.y1df_c00000{bottom:606.375000px;}
.y1d4_c00000{bottom:608.632500px;}
.y1ea_c00000{bottom:609.348000px;}
.y1bc_c00000{bottom:609.382500px;}
.y3a_c00000{bottom:610.588500px;}
.y9e_c00000{bottom:610.888500px;}
.y232_c00000{bottom:610.978500px;}
.y89_c00000{bottom:611.110500px;}
.y178_c00000{bottom:612.900000px;}
.y6f_c00000{bottom:613.146000px;}
.y21b_c00000{bottom:613.863000px;}
.y1fc_c00000{bottom:617.566500px;}
.ye7_c00000{bottom:619.155000px;}
.y249_c00000{bottom:620.901000px;}
.y1de_c00000{bottom:622.813500px;}
.yce_c00000{bottom:623.733000px;}
.y1d3_c00000{bottom:625.069500px;}
.ye6_c00000{bottom:626.299500px;}
.y177_c00000{bottom:627.096000px;}
.y1bb_c00000{bottom:627.315000px;}
.y9d_c00000{bottom:627.327000px;}
.y231_c00000{bottom:627.417000px;}
.y39_c00000{bottom:628.521000px;}
.y88_c00000{bottom:629.044500px;}
.y6e_c00000{bottom:629.584500px;}
.y21a_c00000{bottom:630.300000px;}
.y1e9_c00000{bottom:633.289500px;}
.y1fb_c00000{bottom:634.005000px;}
.yf6_c00000{bottom:637.087500px;}
.y12_c00000{bottom:638.392500px;}
.y248_c00000{bottom:638.833500px;}
.y176_c00000{bottom:641.293500px;}
.ycd_c00000{bottom:641.665500px;}
.ye5_c00000{bottom:642.738000px;}
.y230_c00000{bottom:643.855500px;}
.y1ba_c00000{bottom:645.247500px;}
.y38_c00000{bottom:646.453500px;}
.y296_c00000{bottom:646.489500px;}
.y1dd_c00000{bottom:646.755000px;}
.y87_c00000{bottom:646.977000px;}
.y1d2_c00000{bottom:649.011000px;}
.y1e8_c00000{bottom:649.728000px;}
.y9c_c00000{bottom:651.268500px;}
.y6d_c00000{bottom:653.526000px;}
.y219_c00000{bottom:654.241500px;}
.y175_c00000{bottom:655.489500px;}
.y11_c00000{bottom:656.325000px;}
.y247_c00000{bottom:656.767500px;}
.y1fa_c00000{bottom:657.946500px;}
.ycc_c00000{bottom:659.599500px;}
.y295_c00000{bottom:662.928000px;}
.y1b9_c00000{bottom:663.180000px;}
.y37_c00000{bottom:664.386000px;}
.y86_c00000{bottom:664.909500px;}
.y236_c00000{bottom:664.984500px;}
.y1e7_c00000{bottom:666.166500px;}
.ye4_c00000{bottom:666.679500px;}
.y22f_c00000{bottom:667.797000px;}
.y174_c00000{bottom:669.687000px;}
.y218_c00000{bottom:670.680000px;}
.y10_c00000{bottom:674.257500px;}
.y1f9_c00000{bottom:674.385000px;}
.y246_c00000{bottom:674.700000px;}
.ycb_c00000{bottom:677.532000px;}
.y1b8_c00000{bottom:681.112500px;}
.y36_c00000{bottom:682.318500px;}
.y85_c00000{bottom:682.842000px;}
.ye3_c00000{bottom:683.118000px;}
.y173_c00000{bottom:683.883000px;}
.y22e_c00000{bottom:684.235500px;}
.y294_c00000{bottom:686.869500px;}
.y217_c00000{bottom:687.118500px;}
.y1e6_c00000{bottom:690.108000px;}
.y1f8_c00000{bottom:690.823500px;}
.yf_c00000{bottom:692.190000px;}
.y245_c00000{bottom:692.632500px;}
.yca_c00000{bottom:695.464500px;}
.y172_c00000{bottom:698.080500px;}
.y1b7_c00000{bottom:699.046500px;}
.y35_c00000{bottom:700.252500px;}
.y22d_c00000{bottom:700.674000px;}
.y84_c00000{bottom:700.774500px;}
.y293_c00000{bottom:703.308000px;}
.ye2_c00000{bottom:707.059500px;}
.y1f7_c00000{bottom:707.262000px;}
.y215_c00000{bottom:709.609500px;}
.ye_c00000{bottom:710.124000px;}
.y244_c00000{bottom:710.565000px;}
.y216_c00000{bottom:711.060000px;}
.y171_c00000{bottom:712.276500px;}
.yc9_c00000{bottom:713.397000px;}
.y1b6_c00000{bottom:716.979000px;}
.y22c_c00000{bottom:717.112500px;}
.y34_c00000{bottom:718.185000px;}
.y83_c00000{bottom:718.707000px;}
.y155_c00000{bottom:718.708500px;}
.ye1_c00000{bottom:723.498000px;}
.y214_c00000{bottom:726.048000px;}
.y170_c00000{bottom:726.474000px;}
.y292_c00000{bottom:727.249500px;}
.yd_c00000{bottom:728.056500px;}
.y243_c00000{bottom:728.497500px;}
.y1f6_c00000{bottom:731.203500px;}
.yc8_c00000{bottom:731.329500px;}
.y1b5_c00000{bottom:734.911500px;}
.y33_c00000{bottom:736.117500px;}
.y82_c00000{bottom:736.641000px;}
.y22b_c00000{bottom:736.714500px;}
.y16f_c00000{bottom:740.670000px;}
.y1d1_c00000{bottom:741.054000px;}
.y213_c00000{bottom:742.486500px;}
.y291_c00000{bottom:743.686500px;}
.yc_c00000{bottom:745.989000px;}
.y242_c00000{bottom:746.430000px;}
.ye0_c00000{bottom:747.438000px;}
.yc7_c00000{bottom:749.262000px;}
.y1b4_c00000{bottom:752.844000px;}
.y81_c00000{bottom:754.573500px;}
.y16e_c00000{bottom:754.867500px;}
.y1d0_c00000{bottom:757.492500px;}
.y32_c00000{bottom:761.553000px;}
.ydf_c00000{bottom:763.876500px;}
.yb_c00000{bottom:763.921500px;}
.y241_c00000{bottom:764.364000px;}
.y212_c00000{bottom:766.428000px;}
.yc6_c00000{bottom:767.196000px;}
.y290_c00000{bottom:767.628000px;}
.y16d_c00000{bottom:769.063500px;}
.y1b3_c00000{bottom:770.776500px;}
.y80_c00000{bottom:772.506000px;}
.y26c_c00000{bottom:772.581000px;}
.y1cf_c00000{bottom:773.931000px;}
.y31_c00000{bottom:779.485500px;}
.ya_c00000{bottom:781.854000px;}
.y240_c00000{bottom:782.296500px;}
.y211_c00000{bottom:782.865000px;}
.y16c_c00000{bottom:783.261000px;}
.y28f_c00000{bottom:784.066500px;}
.yc5_c00000{bottom:785.128500px;}
.y127_c00000{bottom:785.932500px;}
.yde_c00000{bottom:787.818000px;}
.y1ce_c00000{bottom:790.368000px;}
.y26f_c00000{bottom:790.438500px;}
.y1b2_c00000{bottom:796.212000px;}
.y16b_c00000{bottom:797.457000px;}
.y7f_c00000{bottom:797.941500px;}
.y210_c00000{bottom:799.303500px;}
.y9_c00000{bottom:799.786500px;}
.y23f_c00000{bottom:800.229000px;}
.yc4_c00000{bottom:803.061000px;}
.y126_c00000{bottom:803.866500px;}
.ydd_c00000{bottom:804.256500px;}
.y28e_c00000{bottom:808.008000px;}
.y16a_c00000{bottom:811.654500px;}
.y30_c00000{bottom:812.038500px;}
.y1b1_c00000{bottom:814.146000px;}
.y1cd_c00000{bottom:814.309500px;}
.y7e_c00000{bottom:815.874000px;}
.y8_c00000{bottom:817.720500px;}
.y23e_c00000{bottom:818.161500px;}
.yc3_c00000{bottom:820.993500px;}
.y125_c00000{bottom:821.799000px;}
.y20f_c00000{bottom:823.245000px;}
.y28d_c00000{bottom:824.446500px;}
.y169_c00000{bottom:825.850500px;}
.ydc_c00000{bottom:828.198000px;}
.y1cc_c00000{bottom:830.748000px;}
.y26e_c00000{bottom:833.808000px;}
.y7_c00000{bottom:835.653000px;}
.y23d_c00000{bottom:836.094000px;}
.yc2_c00000{bottom:838.926000px;}
.y20e_c00000{bottom:839.683500px;}
.y124_c00000{bottom:839.731500px;}
.y168_c00000{bottom:840.048000px;}
.ydb_c00000{bottom:844.636500px;}
.y1b0_c00000{bottom:846.699000px;}
.y1cb_c00000{bottom:847.186500px;}
.y28c_c00000{bottom:848.388000px;}
.y7d_c00000{bottom:848.427000px;}
.y2b_c00000{bottom:853.504500px;}
.y6_c00000{bottom:853.585500px;}
.y23c_c00000{bottom:854.028000px;}
.y167_c00000{bottom:854.244000px;}
.y20d_c00000{bottom:856.122000px;}
.yc1_c00000{bottom:856.858500px;}
.y123_c00000{bottom:857.664000px;}
.y1ca_c00000{bottom:863.625000px;}
.y28b_c00000{bottom:864.826500px;}
.y26d_c00000{bottom:866.361000px;}
.y166_c00000{bottom:868.441500px;}
.yda_c00000{bottom:868.578000px;}
.y2a_c00000{bottom:871.437000px;}
.y5_c00000{bottom:871.518000px;}
.y23b_c00000{bottom:871.960500px;}
.yc0_c00000{bottom:874.792500px;}
.y122_c00000{bottom:875.596500px;}
.y20c_c00000{bottom:880.063500px;}
.y165_c00000{bottom:882.637500px;}
.yd9_c00000{bottom:885.016500px;}
.y1c9_c00000{bottom:887.566500px;}
.y1a9_c00000{bottom:888.163500px;}
.y28a_c00000{bottom:888.768000px;}
.y29_c00000{bottom:889.369500px;}
.y66_c00000{bottom:889.893000px;}
.y117_c00000{bottom:890.698500px;}
.y93_c00000{bottom:892.725000px;}
.y121_c00000{bottom:893.529000px;}
.y20b_c00000{bottom:896.502000px;}
.y164_c00000{bottom:896.835000px;}
.y1c8_c00000{bottom:904.005000px;}
.y4_c00000{bottom:904.918500px;}
.y1a8_c00000{bottom:906.096000px;}
.y28_c00000{bottom:907.302000px;}
.y65_c00000{bottom:907.825500px;}
.y116_c00000{bottom:908.631000px;}
.y1af_c00000{bottom:908.928000px;}
.yd8_c00000{bottom:908.958000px;}
.y92_c00000{bottom:910.657500px;}
.y163_c00000{bottom:911.031000px;}
.y120_c00000{bottom:911.463000px;}
.y20a_c00000{bottom:912.940500px;}
.y1c7_c00000{bottom:920.443500px;}
.y1a7_c00000{bottom:924.030000px;}
.y162_c00000{bottom:925.228500px;}
.y27_c00000{bottom:925.236000px;}
.y64_c00000{bottom:925.758000px;}
.y115_c00000{bottom:926.563500px;}
.y1ae_c00000{bottom:926.860500px;}
.y91_c00000{bottom:928.590000px;}
.y11f_c00000{bottom:929.395500px;}
.y1c6_c00000{bottom:936.882000px;}
.y161_c00000{bottom:939.424500px;}
.y1a6_c00000{bottom:941.962500px;}
.y26_c00000{bottom:943.168500px;}
.y63_c00000{bottom:943.690500px;}
.y114_c00000{bottom:944.496000px;}
.y1ad_c00000{bottom:944.794500px;}
.y2f_c00000{bottom:946.000500px;}
.y90_c00000{bottom:946.522500px;}
.y11e_c00000{bottom:947.328000px;}
.y209_c00000{bottom:953.320500px;}
.y160_c00000{bottom:953.622000px;}
.y1a5_c00000{bottom:959.895000px;}
.y1c5_c00000{bottom:960.823500px;}
.y25_c00000{bottom:961.101000px;}
.y62_c00000{bottom:961.624500px;}
.y113_c00000{bottom:962.428500px;}
.y1ac_c00000{bottom:962.727000px;}
.y2e_c00000{bottom:963.933000px;}
.y6c_c00000{bottom:964.455000px;}
.y158_c00000{bottom:964.456500px;}
.y11d_c00000{bottom:965.260500px;}
.y15f_c00000{bottom:967.818000px;}
.y208_c00000{bottom:969.759000px;}
.y3_c00000{bottom:970.297500px;}
.y1c4_c00000{bottom:977.262000px;}
.y61_c00000{bottom:979.557000px;}
.y112_c00000{bottom:980.361000px;}
.y15e_c00000{bottom:982.015500px;}
.y6b_c00000{bottom:982.389000px;}
.y235_c00000{bottom:982.462500px;}
.y11c_c00000{bottom:983.193000px;}
.y1a4_c00000{bottom:985.330500px;}
.y24_c00000{bottom:986.536500px;}
.y1ab_c00000{bottom:988.162500px;}
.y2d_c00000{bottom:989.368500px;}
.y1c3_c00000{bottom:993.699000px;}
.y15d_c00000{bottom:996.211500px;}
.y60_c00000{bottom:997.489500px;}
.y111_c00000{bottom:998.295000px;}
.y6a_c00000{bottom:1000.321500px;}
.y234_c00000{bottom:1000.396500px;}
.y11b_c00000{bottom:1001.125500px;}
.y1a3_c00000{bottom:1003.263000px;}
.y1a2_c00000{bottom:1003.338000px;}
.y23_c00000{bottom:1004.469000px;}
.y22_c00000{bottom:1004.544000px;}
.y1aa_c00000{bottom:1006.095000px;}
.y2c_c00000{bottom:1007.301000px;}
.y1c2_c00000{bottom:1010.137500px;}
.y15c_c00000{bottom:1010.409000px;}
.y2_c00000{bottom:1013.635500px;}
.y23a_c00000{bottom:1015.422000px;}
.y5f_c00000{bottom:1022.925000px;}
.y110_c00000{bottom:1023.730500px;}
.y69_c00000{bottom:1025.757000px;}
.y11a_c00000{bottom:1026.562500px;}
.y207_c00000{bottom:1026.576000px;}
.y15b_c00000{bottom:1032.108000px;}
.y239_c00000{bottom:1033.354500px;}
.y1c1_c00000{bottom:1034.079000px;}
.y1a1_c00000{bottom:1035.816000px;}
.y21_c00000{bottom:1037.022000px;}
.y5e_c00000{bottom:1040.857500px;}
.y5d_c00000{bottom:1040.932500px;}
.y10f_c00000{bottom:1041.663000px;}
.y10e_c00000{bottom:1041.738000px;}
.y68_c00000{bottom:1043.689500px;}
.y67_c00000{bottom:1043.764500px;}
.y119_c00000{bottom:1044.495000px;}
.y118_c00000{bottom:1044.570000px;}
.y15a_c00000{bottom:1046.305500px;}
.y159_c00000{bottom:1046.364000px;}
.y1_c00000{bottom:1046.512500px;}
.y1c0_c00000{bottom:1050.517500px;}
.y238_c00000{bottom:1058.790000px;}
.y1bf_c00000{bottom:1066.956000px;}
.y1a0_c00000{bottom:1071.682500px;}
.y20_c00000{bottom:1072.888500px;}
.y5c_c00000{bottom:1073.410500px;}
.y10d_c00000{bottom:1074.216000px;}
.y237_c00000{bottom:1076.724000px;}
.y1be_c00000{bottom:1083.394500px;}
.y1bd_c00000{bottom:1107.336000px;}
.y19f_c00000{bottom:1108.071000px;}
.y1f_c00000{bottom:1109.277000px;}
.y4c_c00000{bottom:1166.565000px;}
.y7c_c00000{bottom:1166.959500px;}
.h11_c00000{height:35.100320px;}
.h12_c00000{height:35.334320px;}
.hd_c00000{height:39.488026px;}
.hf_c00000{height:39.752026px;}
.he_c00000{height:39.758026px;}
.h7_c00000{height:43.875290px;}
.h8_c00000{height:44.169290px;}
.h6_c00000{height:44.175290px;}
.h5_c00000{height:44.831700px;}
.h10_c00000{height:45.545700px;}
.h9_c00000{height:45.551700px;}
.h3_c00000{height:52.650701px;}
.hc_c00000{height:53.169290px;}
.hb_c00000{height:53.798400px;}
.ha_c00000{height:54.656400px;}
.h4_c00000{height:64.557900px;}
.h13_c00000{height:65.589900px;}
.h2_c00000{height:75.816622px;}
.h1_c00000{height:76.332622px;}
.h0_c00000{height:1188.000000px;}
.w0_c00000{width:918.000000px;}
.x0_c00000{left:0.000000px;}
.x5_c00000{left:63.780000px;}
.x11_c00000{left:73.575000px;}
.x69_c00000{left:80.218500px;}
.x5b_c00000{left:84.372000px;}
.x6_c00000{left:86.196000px;}
.x1e_c00000{left:95.161500px;}
.x5a_c00000{left:99.316500px;}
.x74_c00000{left:108.612000px;}
.x6b_c00000{left:116.083500px;}
.x5c_c00000{left:119.833500px;}
.xc_c00000{left:124.392000px;}
.x7f_c00000{left:130.861500px;}
.x40_c00000{left:132.193500px;}
.x61_c00000{left:136.840500px;}
.x33_c00000{left:139.665000px;}
.x30_c00000{left:144.492000px;}
.x27_c00000{left:147.136500px;}
.x77_c00000{left:150.753000px;}
.x64_c00000{left:151.798500px;}
.x76_c00000{left:153.247500px;}
.x38_c00000{left:155.430000px;}
.x5f_c00000{left:165.069000px;}
.x73_c00000{left:166.071000px;}
.x6f_c00000{left:168.730500px;}
.x80_c00000{left:176.680500px;}
.x7_c00000{left:179.565000px;}
.x16_c00000{left:181.252500px;}
.x17_c00000{left:190.294500px;}
.x50_c00000{left:191.670000px;}
.x8_c00000{left:194.866500px;}
.x67_c00000{left:199.888500px;}
.x2e_c00000{left:202.900500px;}
.x52_c00000{left:204.282000px;}
.x43_c00000{left:209.392500px;}
.x75_c00000{left:213.531000px;}
.x7e_c00000{left:219.346500px;}
.x4e_c00000{left:221.094000px;}
.x59_c00000{left:226.459500px;}
.x10_c00000{left:227.773500px;}
.x1_c00000{left:272.313000px;}
.x34_c00000{left:279.000000px;}
.x39_c00000{left:295.251000px;}
.xb_c00000{left:301.611000px;}
.x5d_c00000{left:303.771000px;}
.x53_c00000{left:307.132500px;}
.xa_c00000{left:308.245500px;}
.x4_c00000{left:313.557000px;}
.x44_c00000{left:318.343500px;}
.x1a_c00000{left:323.575500px;}
.x3f_c00000{left:338.614500px;}
.x6d_c00000{left:346.486500px;}
.x3d_c00000{left:348.585000px;}
.x1c_c00000{left:351.210000px;}
.x2a_c00000{left:358.683000px;}
.x3_c00000{left:363.222000px;}
.x28_c00000{left:366.154500px;}
.x21_c00000{left:373.626000px;}
.x1f_c00000{left:381.099000px;}
.xd_c00000{left:384.310500px;}
.x6a_c00000{left:388.570500px;}
.x3a_c00000{left:395.371500px;}
.x9_c00000{left:399.253500px;}
.x23_c00000{left:403.515000px;}
.xe_c00000{left:405.067500px;}
.x54_c00000{left:407.254500px;}
.x12_c00000{left:410.986500px;}
.x45_c00000{left:418.464000px;}
.x1b_c00000{left:423.696000px;}
.x56_c00000{left:433.402500px;}
.x5e_c00000{left:434.530500px;}
.x3b_c00000{left:439.093500px;}
.x7c_c00000{left:440.874000px;}
.x6e_c00000{left:443.340000px;}
.x3e_c00000{left:449.883000px;}
.xf_c00000{left:455.263500px;}
.x36_c00000{left:463.263000px;}
.x13_c00000{left:466.471500px;}
.x72_c00000{left:471.225000px;}
.x15_c00000{left:475.438500px;}
.x32_c00000{left:479.592000px;}
.x60_c00000{left:482.910000px;}
.x62_c00000{left:487.065000px;}
.x58_c00000{left:509.481000px;}
.x79_c00000{left:511.123500px;}
.x7a_c00000{left:513.619500px;}
.x2f_c00000{left:532.165500px;}
.x4d_c00000{left:537.381000px;}
.x26_c00000{left:539.638500px;}
.x14_c00000{left:547.110000px;}
.x42_c00000{left:549.829500px;}
.x31_c00000{left:565.639500px;}
.x41_c00000{left:569.629500px;}
.x51_c00000{left:574.741500px;}
.x7d_c00000{left:582.213000px;}
.x57_c00000{left:589.684500px;}
.x37_c00000{left:593.674500px;}
.x71_c00000{left:601.146000px;}
.x2c_c00000{left:605.719500px;}
.x7b_c00000{left:613.608000px;}
.x68_c00000{left:616.045500px;}
.x66_c00000{left:619.362000px;}
.x6c_c00000{left:621.021000px;}
.x2_c00000{left:627.043500px;}
.x25_c00000{left:634.575000px;}
.x18_c00000{left:649.264500px;}
.x35_c00000{left:699.088500px;}
.x55_c00000{left:720.159000px;}
.x1d_c00000{left:728.559000px;}
.x65_c00000{left:729.993000px;}
.x70_c00000{left:731.053500px;}
.x48_c00000{left:733.131000px;}
.x2b_c00000{left:736.030500px;}
.x2d_c00000{left:737.733000px;}
.x3c_c00000{left:739.257000px;}
.x29_c00000{left:743.502000px;}
.x4f_c00000{left:745.054500px;}
.x49_c00000{left:746.416500px;}
.x47_c00000{left:747.642000px;}
.x46_c00000{left:749.314500px;}
.x22_c00000{left:750.975000px;}
.x4b_c00000{left:755.128500px;}
.x19_c00000{left:757.174500px;}
.x20_c00000{left:758.446500px;}
.x78_c00000{left:762.930000px;}
.x4c_c00000{left:765.514500px;}
.x4a_c00000{left:773.674500px;}
.x24_c00000{left:780.862500px;}
.x63_c00000{left:788.334000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.v2_c00000{vertical-align:0.917333pt;}
.v1_c00000{vertical-align:8.261333pt;}
.ls7_c00000{letter-spacing:0.000000pt;}
.lsa_c00000{letter-spacing:2.946118pt;}
.lsf_c00000{letter-spacing:2.947733pt;}
.ls0_c00000{letter-spacing:13.283733pt;}
.ls9_c00000{letter-spacing:13.284541pt;}
.lsc_c00000{letter-spacing:13.285348pt;}
.ls3_c00000{letter-spacing:13.287452pt;}
.lsb_c00000{letter-spacing:15.779230pt;}
.lse_c00000{letter-spacing:15.938133pt;}
.ls8_c00000{letter-spacing:15.943467pt;}
.lsd_c00000{letter-spacing:16.002423pt;}
.ls4_c00000{letter-spacing:17.416563pt;}
.ls2_c00000{letter-spacing:26.566933pt;}
.ls1_c00000{letter-spacing:35.645897pt;}
.ls6_c00000{letter-spacing:45.214400pt;}
.ls5_c00000{letter-spacing:48.190400pt;}
.ws3_c00000{word-spacing:-32.199123pt;}
.ws10_c00000{word-spacing:-32.145989pt;}
.ws7_c00000{word-spacing:-24.813516pt;}
.ws3e_c00000{word-spacing:-15.940267pt;}
.wsa_c00000{word-spacing:-13.283467pt;}
.ws59_c00000{word-spacing:-11.955200pt;}
.wsc_c00000{word-spacing:-5.632190pt;}
.ws6_c00000{word-spacing:-5.579056pt;}
.ws3d_c00000{word-spacing:-0.063761pt;}
.ws9_c00000{word-spacing:-0.053134pt;}
.ws11_c00000{word-spacing:-0.006348pt;}
.ws51_c00000{word-spacing:-0.003437pt;}
.ws50_c00000{word-spacing:-0.001593pt;}
.ws52_c00000{word-spacing:-0.001545pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.ws79_c00000{word-spacing:0.002400pt;}
.ws12_c00000{word-spacing:0.004000pt;}
.ws46_c00000{word-spacing:2.947262pt;}
.ws74_c00000{word-spacing:2.947633pt;}
.ws2a_c00000{word-spacing:2.948700pt;}
.ws70_c00000{word-spacing:2.949233pt;}
.ws75_c00000{word-spacing:2.949455pt;}
.ws4e_c00000{word-spacing:2.949929pt;}
.ws47_c00000{word-spacing:2.950300pt;}
.ws6c_c00000{word-spacing:2.950462pt;}
.ws29_c00000{word-spacing:2.950995pt;}
.ws4f_c00000{word-spacing:2.951423pt;}
.ws6f_c00000{word-spacing:2.951529pt;}
.ws19_c00000{word-spacing:13.227775pt;}
.ws4_c00000{word-spacing:13.228496pt;}
.ws43_c00000{word-spacing:13.230614pt;}
.ws8_c00000{word-spacing:13.283467pt;}
.ws14_c00000{word-spacing:14.186881pt;}
.ws2b_c00000{word-spacing:14.452755pt;}
.wsd_c00000{word-spacing:14.454859pt;}
.ws7a_c00000{word-spacing:15.358644pt;}
.ws2c_c00000{word-spacing:15.873792pt;}
.ws44_c00000{word-spacing:15.876651pt;}
.ws7c_c00000{word-spacing:15.878059pt;}
.ws66_c00000{word-spacing:16.066082pt;}
.ws69_c00000{word-spacing:17.320977pt;}
.ws17_c00000{word-spacing:20.495726pt;}
.ws2_c00000{word-spacing:20.987877pt;}
.ws15_c00000{word-spacing:21.569829pt;}
.ws5_c00000{word-spacing:22.522881pt;}
.wsf_c00000{word-spacing:37.291689pt;}
.ws16_c00000{word-spacing:38.188496pt;}
.ws1_c00000{word-spacing:39.850400pt;}
.ws18_c00000{word-spacing:42.507200pt;}
.ws78_c00000{word-spacing:44.283467pt;}
.ws71_c00000{word-spacing:44.287200pt;}
.ws7b_c00000{word-spacing:47.819733pt;}
.ws57_c00000{word-spacing:47.820800pt;}
.ws1c_c00000{word-spacing:50.477173pt;}
.wsb_c00000{word-spacing:51.371689pt;}
.ws22_c00000{word-spacing:51.789926pt;}
.ws23_c00000{word-spacing:51.837747pt;}
.ws61_c00000{word-spacing:53.134000pt;}
.wse_c00000{word-spacing:53.553022pt;}
.ws34_c00000{word-spacing:55.578025pt;}
.ws1a_c00000{word-spacing:57.384800pt;}
.ws38_c00000{word-spacing:58.293555pt;}
.ws36_c00000{word-spacing:58.341376pt;}
.ws7d_c00000{word-spacing:58.553521pt;}
.ws35_c00000{word-spacing:62.804230pt;}
.ws21_c00000{word-spacing:63.745126pt;}
.ws60_c00000{word-spacing:70.392218pt;}
.ws5f_c00000{word-spacing:70.440038pt;}
.ws58_c00000{word-spacing:71.146247pt;}
.ws63_c00000{word-spacing:74.387600pt;}
.ws42_c00000{word-spacing:75.503225pt;}
.ws24_c00000{word-spacing:75.700326pt;}
.ws25_c00000{word-spacing:75.748147pt;}
.ws1d_c00000{word-spacing:77.044107pt;}
.ws77_c00000{word-spacing:78.378291pt;}
.ws4c_c00000{word-spacing:78.856499pt;}
.ws4b_c00000{word-spacing:78.904320pt;}
.ws4a_c00000{word-spacing:80.550942pt;}
.ws67_c00000{word-spacing:82.144958pt;}
.ws39_c00000{word-spacing:82.203955pt;}
.ws37_c00000{word-spacing:82.251776pt;}
.ws76_c00000{word-spacing:85.120454pt;}
.ws2f_c00000{word-spacing:87.655526pt;}
.ws40_c00000{word-spacing:87.703347pt;}
.ws3b_c00000{word-spacing:94.206976pt;}
.ws65_c00000{word-spacing:94.408491pt;}
.ws62_c00000{word-spacing:95.641200pt;}
.ws27_c00000{word-spacing:99.610726pt;}
.ws28_c00000{word-spacing:99.658547pt;}
.ws41_c00000{word-spacing:100.635543pt;}
.ws31_c00000{word-spacing:102.070158pt;}
.ws1b_c00000{word-spacing:103.611040pt;}
.ws3a_c00000{word-spacing:106.114355pt;}
.ws3c_c00000{word-spacing:106.162176pt;}
.ws49_c00000{word-spacing:107.596800pt;}
.ws2d_c00000{word-spacing:108.711891pt;}
.ws64_c00000{word-spacing:116.894800pt;}
.ws45_c00000{word-spacing:117.585247pt;}
.ws5c_c00000{word-spacing:118.739046pt;}
.ws2e_c00000{word-spacing:120.507610pt;}
.ws6b_c00000{word-spacing:120.843162pt;}
.ws30_c00000{word-spacing:123.521126pt;}
.ws4d_c00000{word-spacing:126.677299pt;}
.ws26_c00000{word-spacing:130.177973pt;}
.ws54_c00000{word-spacing:131.459379pt;}
.ws55_c00000{word-spacing:132.303328pt;}
.ws33_c00000{word-spacing:134.137344pt;}
.ws20_c00000{word-spacing:134.641218pt;}
.ws1e_c00000{word-spacing:135.278825pt;}
.ws32_c00000{word-spacing:135.476326pt;}
.ws53_c00000{word-spacing:144.099046pt;}
.ws48_c00000{word-spacing:144.152180pt;}
.ws5d_c00000{word-spacing:153.265664pt;}
.ws56_c00000{word-spacing:156.744907pt;}
.ws1f_c00000{word-spacing:161.845758pt;}
.ws6e_c00000{word-spacing:173.641476pt;}
.ws5e_c00000{word-spacing:173.972070pt;}
.ws7e_c00000{word-spacing:183.311840pt;}
.ws72_c00000{word-spacing:185.437195pt;}
.ws6d_c00000{word-spacing:188.412691pt;}
.ws68_c00000{word-spacing:214.979625pt;}
.ws73_c00000{word-spacing:223.799846pt;}
.ws6a_c00000{word-spacing:241.546558pt;}
.ws5b_c00000{word-spacing:267.939942pt;}
.ws5a_c00000{word-spacing:274.969600pt;}
.ws3f_c00000{word-spacing:303.766316pt;}
.ws13_c00000{word-spacing:2460.621052pt;}
._c_c00000{margin-left:-27.511165pt;}
._8_c00000{margin-left:-26.621807pt;}
._11_c00000{margin-left:-25.715052pt;}
._a_c00000{margin-left:-13.228593pt;}
._3_c00000{margin-left:-7.345237pt;}
._4_c00000{margin-left:-5.100885pt;}
._8a_c00000{margin-left:-3.453701pt;}
._0_c00000{margin-left:-2.295387pt;}
._1_c00000{margin-left:-1.377232pt;}
._d2_c00000{width:1.253188pt;}
._7_c00000{width:2.996486pt;}
._2_c00000{width:5.088268pt;}
._cd_c00000{width:6.383002pt;}
._31_c00000{width:10.309682pt;}
._e_c00000{width:13.283467pt;}
._12_c00000{width:15.393051pt;}
._92_c00000{width:16.340853pt;}
._14_c00000{width:17.718445pt;}
._f_c00000{width:22.471377pt;}
._9_c00000{width:29.333374pt;}
._b_c00000{width:33.493473pt;}
._d_c00000{width:34.602325pt;}
._b3_c00000{width:53.133867pt;}
._6_c00000{width:55.790560pt;}
._10_c00000{width:60.785143pt;}
._13_c00000{width:63.761067pt;}
._38_c00000{width:65.301522pt;}
._d3_c00000{width:66.423091pt;}
._d1_c00000{width:68.223885pt;}
._82_c00000{width:70.430467pt;}
._b7_c00000{width:74.591275pt;}
._88_c00000{width:75.700326pt;}
._d5_c00000{width:76.990973pt;}
._cf_c00000{width:77.947382pt;}
._b0_c00000{width:80.019603pt;}
._87_c00000{width:82.433488pt;}
._cb_c00000{width:83.686510pt;}
._ca_c00000{width:84.907919pt;}
._5d_c00000{width:87.405211pt;}
._41_c00000{width:88.538455pt;}
._26_c00000{width:90.327573pt;}
._3f_c00000{width:91.868455pt;}
._d0_c00000{width:93.249936pt;}
._83_c00000{width:94.388688pt;}
._b6_c00000{width:96.225433pt;}
._c9_c00000{width:97.713181pt;}
._5e_c00000{width:99.200929pt;}
._95_c00000{width:100.280957pt;}
._ce_c00000{width:101.538819pt;}
._79_c00000{width:104.567450pt;}
._89_c00000{width:106.343888pt;}
._62_c00000{width:108.074285pt;}
._d4_c00000{width:109.562033pt;}
._7a_c00000{width:110.465309pt;}
._3c_c00000{width:111.613747pt;}
._25_c00000{width:113.919010pt;}
._51_c00000{width:115.353625pt;}
._1a_c00000{width:116.894507pt;}
._16_c00000{width:118.435389pt;}
._8b_c00000{width:119.816869pt;}
._bf_c00000{width:121.304618pt;}
._2c_c00000{width:122.739232pt;}
._5f_c00000{width:124.222732pt;}
._99_c00000{width:125.767862pt;}
._1e_c00000{width:127.308745pt;}
._97_c00000{width:128.690225pt;}
._34_c00000{width:130.216038pt;}
._28_c00000{width:131.559454pt;}
._93_c00000{width:133.100336pt;}
._20_c00000{width:134.641218pt;}
._35_c00000{width:136.035334pt;}
._27_c00000{width:137.616715pt;}
._96_c00000{width:138.945061pt;}
._63_c00000{width:140.539077pt;}
._52_c00000{width:141.920558pt;}
._1c_c00000{width:143.461440pt;}
._24_c00000{width:144.838672pt;}
._61_c00000{width:145.756827pt;}
._55_c00000{width:147.517767pt;}
._30_c00000{width:149.191401pt;}
._7f_c00000{width:150.793914pt;}
._2a_c00000{width:152.281662pt;}
._59_c00000{width:153.875678pt;}
._60_c00000{width:155.257158pt;}
._43_c00000{width:156.691773pt;}
._7c_c00000{width:158.095565pt;}
._3d_c00000{width:159.434547pt;}
._29_c00000{width:161.101884pt;}
._67_c00000{width:162.589632pt;}
._18_c00000{width:164.183648pt;}
._8c_c00000{width:165.507746pt;}
._1f_c00000{width:166.479035pt;}
._98_c00000{width:167.420621pt;}
._47_c00000{width:168.487491pt;}
._4e_c00000{width:170.028373pt;}
._73_c00000{width:171.462988pt;}
._64_c00000{width:173.003870pt;}
._56_c00000{width:174.385350pt;}
._af_c00000{width:175.926233pt;}
._4d_c00000{width:177.307713pt;}
._7b_c00000{width:178.370390pt;}
._50_c00000{width:180.336343pt;}
._2d_c00000{width:181.824092pt;}
._3a_c00000{width:183.258706pt;}
._81_c00000{width:184.799588pt;}
._36_c00000{width:185.927270pt;}
._74_c00000{width:187.611435pt;}
._54_c00000{width:189.156565pt;}
._22_c00000{width:190.644314pt;}
._40_c00000{width:192.078928pt;}
._9a_c00000{width:193.509294pt;}
._58_c00000{width:195.054425pt;}
._75_c00000{width:196.484790pt;}
._65_c00000{width:198.029921pt;}
._5a_c00000{width:199.407153pt;}
._23_c00000{width:200.727003pt;}
._42_c00000{width:202.546300pt;}
._66_c00000{width:203.927780pt;}
._6c_c00000{width:205.305012pt;}
._3b_c00000{width:206.903277pt;}
._21_c00000{width:208.391025pt;}
._2b_c00000{width:210.006302pt;}
._46_c00000{width:211.202871pt;}
._72_c00000{width:212.801136pt;}
._ad_c00000{width:214.288884pt;}
._49_c00000{width:215.723499pt;}
._2f_c00000{width:217.211247pt;}
._4c_c00000{width:218.645861pt;}
._b2_c00000{width:220.186743pt;}
._6b_c00000{width:221.621358pt;}
._76_c00000{width:222.998590pt;}
._5c_c00000{width:223.916745pt;}
._1d_c00000{width:226.084603pt;}
._6e_c00000{width:227.519217pt;}
._19_c00000{width:229.113233pt;}
._68_c00000{width:230.494714pt;}
._a6_c00000{width:231.982462pt;}
._4f_c00000{width:233.417076pt;}
._9b_c00000{width:234.957958pt;}
._5b_c00000{width:236.392573pt;}
._4b_c00000{width:237.769805pt;}
._4a_c00000{width:239.147037pt;}
._ae_c00000{width:240.855818pt;}
._48_c00000{width:242.290432pt;}
._9f_c00000{width:243.831314pt;}
._6d_c00000{width:245.212795pt;}
._b1_c00000{width:246.753677pt;}
._6a_c00000{width:248.188291pt;}
._9c_c00000{width:249.729173pt;}
._2e_c00000{width:251.344450pt;}
._45_c00000{width:252.651536pt;}
._6f_c00000{width:254.033017pt;}
._44_c00000{width:255.680166pt;}
._70_c00000{width:257.008513pt;}
._ab_c00000{width:258.602529pt;}
._80_c00000{width:259.984010pt;}
._b5_c00000{width:261.524892pt;}
._77_c00000{width:262.959506pt;}
._ba_c00000{width:264.500388pt;}
._78_c00000{width:265.828735pt;}
._ac_c00000{width:267.422751pt;}
._71_c00000{width:268.804231pt;}
._a1_c00000{width:270.398247pt;}
._69_c00000{width:271.779728pt;}
._37_c00000{width:273.373744pt;}
._86_c00000{width:274.755225pt;}
._8d_c00000{width:277.781854pt;}
._7e_c00000{width:279.218469pt;}
._33_c00000{width:280.315958pt;}
._bc_c00000{width:282.030316pt;}
._84_c00000{width:283.575446pt;}
._32_c00000{width:286.924800pt;}
._bb_c00000{width:287.928175pt;}
._b8_c00000{width:289.473306pt;}
._be_c00000{width:290.535983pt;}
._8e_c00000{width:291.706880pt;}
._b4_c00000{width:295.424299pt;}
._a7_c00000{width:297.018315pt;}
._b9_c00000{width:298.346661pt;}
._3e_c00000{width:299.940677pt;}
._db_c00000{width:301.322158pt;}
._c5_c00000{width:302.384835pt;}
._17_c00000{width:304.240272pt;}
._a5_c00000{width:305.785403pt;}
._c8_c00000{width:306.752443pt;}
._cc_c00000{width:310.685125pt;}
._d8_c00000{width:311.736396pt;}
._c0_c00000{width:313.117876pt;}
._94_c00000{width:315.617280pt;}
._9d_c00000{width:317.634255pt;}
._a0_c00000{width:320.556618pt;}
._dc_c00000{width:321.938098pt;}
._9e_c00000{width:323.478980pt;}
._c6_c00000{width:325.126130pt;}
._15_c00000{width:326.507611pt;}
._c1_c00000{width:327.889091pt;}
._d7_c00000{width:329.376839pt;}
._57_c00000{width:330.807205pt;}
._a3_c00000{width:332.299202pt;}
._c4_c00000{width:336.921849pt;}
._1b_c00000{width:338.303329pt;}
._90_c00000{width:339.575501pt;}
._bd_c00000{width:340.694353pt;}
._c2_c00000{width:342.819708pt;}
._d6_c00000{width:347.123551pt;}
._a8_c00000{width:350.099047pt;}
._85_c00000{width:351.480528pt;}
._a4_c00000{width:353.021410pt;}
._c7_c00000{width:354.721694pt;}
._a2_c00000{width:355.943773pt;}
._7d_c00000{width:357.374139pt;}
._a9_c00000{width:358.919269pt;}
._d9_c00000{width:361.841632pt;}
._39_c00000{width:364.870262pt;}
._c3_c00000{width:372.362138pt;}
._91_c00000{width:375.441101pt;}
._aa_c00000{width:376.665981pt;}
._8f_c00000{width:383.941072pt;}
._53_c00000{width:391.437196pt;}
._da_c00000{width:432.722210pt;}
._5_c00000{width:2509.345311pt;}
.fs5_c00000{font-size:42.507200pt;}
.fs4_c00000{font-size:47.820800pt;}
.fs3_c00000{font-size:53.133867pt;}
.fs1_c00000{font-size:63.761067pt;}
.fs2_c00000{font-size:76.513067pt;}
.fs0_c00000{font-size:91.815467pt;}
.y0_c00000{bottom:0.000000pt;}
.y26b_c00000{bottom:9.944000pt;}
.y1e_c00000{bottom:16.842667pt;}
.y26a_c00000{bottom:25.885333pt;}
.y269_c00000{bottom:41.825333pt;}
.y268_c00000{bottom:57.765333pt;}
.y5b_c00000{bottom:63.725333pt;}
.y19e_c00000{bottom:65.265333pt;}
.y267_c00000{bottom:73.705333pt;}
.y19d_c00000{bottom:77.885333pt;}
.y5a_c00000{bottom:78.337333pt;}
.ybf_c00000{bottom:80.942667pt;}
.y266_c00000{bottom:89.645333pt;}
.y19c_c00000{bottom:90.504000pt;}
.ybe_c00000{bottom:96.884000pt;}
.y59_c00000{bottom:99.618667pt;}
.y19b_c00000{bottom:103.124000pt;}
.y265_c00000{bottom:105.585333pt;}
.ybd_c00000{bottom:112.824000pt;}
.y58_c00000{bottom:114.230667pt;}
.y19a_c00000{bottom:115.742667pt;}
.y264_c00000{bottom:121.526667pt;}
.y199_c00000{bottom:128.362667pt;}
.ybc_c00000{bottom:128.764000pt;}
.y57_c00000{bottom:135.512000pt;}
.y263_c00000{bottom:137.466667pt;}
.y198_c00000{bottom:140.981333pt;}
.ybb_c00000{bottom:144.704000pt;}
.y56_c00000{bottom:150.122667pt;}
.y262_c00000{bottom:153.406667pt;}
.y197_c00000{bottom:153.601333pt;}
.yba_c00000{bottom:160.644000pt;}
.y196_c00000{bottom:166.220000pt;}
.y261_c00000{bottom:169.346667pt;}
.y55_c00000{bottom:171.404000pt;}
.yb9_c00000{bottom:176.584000pt;}
.y195_c00000{bottom:178.840000pt;}
.y260_c00000{bottom:185.286667pt;}
.y54_c00000{bottom:186.016000pt;}
.y194_c00000{bottom:191.458667pt;}
.yb8_c00000{bottom:192.525333pt;}
.y25f_c00000{bottom:201.226667pt;}
.y193_c00000{bottom:204.078667pt;}
.y53_c00000{bottom:207.297333pt;}
.yb7_c00000{bottom:208.465333pt;}
.y192_c00000{bottom:216.697333pt;}
.y25e_c00000{bottom:217.168000pt;}
.y52_c00000{bottom:221.909333pt;}
.yb6_c00000{bottom:224.405333pt;}
.y191_c00000{bottom:229.317333pt;}
.y25d_c00000{bottom:233.108000pt;}
.y136_c00000{bottom:236.778667pt;}
.yb5_c00000{bottom:240.345333pt;}
.y190_c00000{bottom:241.936000pt;}
.y51_c00000{bottom:243.190667pt;}
.y25c_c00000{bottom:249.048000pt;}
.y145_c00000{bottom:251.288000pt;}
.y135_c00000{bottom:251.389333pt;}
.y18f_c00000{bottom:254.556000pt;}
.y27c_c00000{bottom:254.724000pt;}
.yb4_c00000{bottom:256.285333pt;}
.y50_c00000{bottom:257.802667pt;}
.y25b_c00000{bottom:264.988000pt;}
.y144_c00000{bottom:265.898667pt;}
.y18e_c00000{bottom:267.174667pt;}
.y10c_c00000{bottom:267.228000pt;}
.y27b_c00000{bottom:269.336000pt;}
.y4b_c00000{bottom:271.761333pt;}
.yb3_c00000{bottom:272.225333pt;}
.y134_c00000{bottom:272.670667pt;}
.y22a_c00000{bottom:278.518667pt;}
.y4f_c00000{bottom:279.084000pt;}
.y18d_c00000{bottom:279.794667pt;}
.y25a_c00000{bottom:280.928000pt;}
.y10b_c00000{bottom:281.840000pt;}
.y154_c00000{bottom:283.168000pt;}
.y2a3_c00000{bottom:285.174667pt;}
.y143_c00000{bottom:287.180000pt;}
.y133_c00000{bottom:287.282667pt;}
.y4a_c00000{bottom:287.701333pt;}
.yb2_c00000{bottom:288.166667pt;}
.y27a_c00000{bottom:290.617333pt;}
.y18c_c00000{bottom:292.413333pt;}
.y229_c00000{bottom:293.130667pt;}
.y4e_c00000{bottom:293.696000pt;}
.y259_c00000{bottom:296.868000pt;}
.y2a4_c00000{bottom:296.869333pt;}
.y153_c00000{bottom:297.780000pt;}
.yf5_c00000{bottom:299.108000pt;}
.y2a2_c00000{bottom:299.785333pt;}
.y142_c00000{bottom:301.792000pt;}
.y156_c00000{bottom:303.120000pt;}
.y10a_c00000{bottom:303.121333pt;}
.y49_c00000{bottom:303.641333pt;}
.yb1_c00000{bottom:304.106667pt;}
.y18b_c00000{bottom:305.032000pt;}
.y279_c00000{bottom:305.229333pt;}
.y228_c00000{bottom:307.742667pt;}
.y132_c00000{bottom:308.564000pt;}
.y258_c00000{bottom:312.809333pt;}
.yf4_c00000{bottom:313.720000pt;}
.y4d_c00000{bottom:314.977333pt;}
.yfd_c00000{bottom:315.048000pt;}
.y289_c00000{bottom:317.054667pt;}
.y18a_c00000{bottom:317.652000pt;}
.y109_c00000{bottom:317.732000pt;}
.y152_c00000{bottom:319.061333pt;}
.y48_c00000{bottom:319.581333pt;}
.yb0_c00000{bottom:320.046667pt;}
.y2a1_c00000{bottom:321.066667pt;}
.y141_c00000{bottom:323.073333pt;}
.y131_c00000{bottom:323.176000pt;}
.y206_c00000{bottom:324.374667pt;}
.y278_c00000{bottom:326.510667pt;}
.y257_c00000{bottom:328.749333pt;}
.y227_c00000{bottom:329.024000pt;}
.y7b_c00000{bottom:329.660000pt;}
.y189_c00000{bottom:330.270667pt;}
.y288_c00000{bottom:331.666667pt;}
.y151_c00000{bottom:333.673333pt;}
.yf3_c00000{bottom:335.001333pt;}
.y47_c00000{bottom:335.522667pt;}
.y2a0_c00000{bottom:335.678667pt;}
.yaf_c00000{bottom:335.986667pt;}
.y140_c00000{bottom:337.685333pt;}
.y205_c00000{bottom:338.986667pt;}
.y108_c00000{bottom:339.013333pt;}
.y277_c00000{bottom:341.122667pt;}
.y188_c00000{bottom:342.890667pt;}
.y226_c00000{bottom:343.636000pt;}
.y7a_c00000{bottom:344.272000pt;}
.y130_c00000{bottom:344.457333pt;}
.y256_c00000{bottom:344.689333pt;}
.yf2_c00000{bottom:349.613333pt;}
.yfc_c00000{bottom:350.941333pt;}
.y46_c00000{bottom:351.462667pt;}
.yae_c00000{bottom:351.926667pt;}
.y287_c00000{bottom:352.948000pt;}
.y204_c00000{bottom:353.598667pt;}
.y107_c00000{bottom:353.625333pt;}
.y150_c00000{bottom:354.954667pt;}
.y187_c00000{bottom:355.509333pt;}
.y29f_c00000{bottom:356.960000pt;}
.y225_c00000{bottom:358.246667pt;}
.y13f_c00000{bottom:358.966667pt;}
.y12f_c00000{bottom:359.069333pt;}
.y255_c00000{bottom:360.629333pt;}
.y1f5_c00000{bottom:360.904000pt;}
.y276_c00000{bottom:362.404000pt;}
.ya8_c00000{bottom:363.546667pt;}
.y79_c00000{bottom:365.553333pt;}
.y45_c00000{bottom:367.402667pt;}
.y286_c00000{bottom:367.560000pt;}
.yad_c00000{bottom:367.868000pt;}
.y186_c00000{bottom:368.129333pt;}
.y203_c00000{bottom:368.209333pt;}
.y14f_c00000{bottom:369.565333pt;}
.yf1_c00000{bottom:370.894667pt;}
.y29e_c00000{bottom:371.572000pt;}
.y13e_c00000{bottom:373.578667pt;}
.y106_c00000{bottom:374.906667pt;}
.y1f4_c00000{bottom:375.516000pt;}
.y254_c00000{bottom:376.569333pt;}
.y275_c00000{bottom:377.016000pt;}
.ya7_c00000{bottom:378.158667pt;}
.y1d_c00000{bottom:378.833333pt;}
.y224_c00000{bottom:379.528000pt;}
.y78_c00000{bottom:380.165333pt;}
.y12e_c00000{bottom:380.350667pt;}
.y185_c00000{bottom:380.748000pt;}
.y9b_c00000{bottom:380.801333pt;}
.y44_c00000{bottom:383.342667pt;}
.yac_c00000{bottom:383.808000pt;}
.yf0_c00000{bottom:385.506667pt;}
.yfb_c00000{bottom:386.834667pt;}
.y285_c00000{bottom:388.841333pt;}
.y202_c00000{bottom:389.490667pt;}
.y105_c00000{bottom:389.518667pt;}
.y1f3_c00000{bottom:390.128000pt;}
.y14e_c00000{bottom:390.846667pt;}
.y253_c00000{bottom:392.510667pt;}
.y29d_c00000{bottom:392.853333pt;}
.y184_c00000{bottom:393.368000pt;}
.y223_c00000{bottom:394.140000pt;}
.y1c_c00000{bottom:394.774667pt;}
.y13d_c00000{bottom:394.860000pt;}
.y12d_c00000{bottom:394.962667pt;}
.y1dc_c00000{bottom:397.433333pt;}
.y274_c00000{bottom:398.297333pt;}
.y43_c00000{bottom:399.282667pt;}
.ya6_c00000{bottom:399.440000pt;}
.yab_c00000{bottom:399.748000pt;}
.y77_c00000{bottom:401.446667pt;}
.y9a_c00000{bottom:402.082667pt;}
.y284_c00000{bottom:403.453333pt;}
.y201_c00000{bottom:404.102667pt;}
.y14d_c00000{bottom:405.458667pt;}
.y183_c00000{bottom:405.986667pt;}
.y157_c00000{bottom:406.786667pt;}
.yef_c00000{bottom:406.788000pt;}
.y29c_c00000{bottom:407.465333pt;}
.y252_c00000{bottom:408.450667pt;}
.y222_c00000{bottom:408.752000pt;}
.y13c_c00000{bottom:409.472000pt;}
.y1b_c00000{bottom:410.714667pt;}
.y104_c00000{bottom:410.800000pt;}
.yd7_c00000{bottom:410.968000pt;}
.y1f2_c00000{bottom:411.409333pt;}
.y1db_c00000{bottom:412.045333pt;}
.y273_c00000{bottom:412.909333pt;}
.ya5_c00000{bottom:414.052000pt;}
.y42_c00000{bottom:415.222667pt;}
.yaa_c00000{bottom:415.688000pt;}
.y76_c00000{bottom:416.058667pt;}
.y12c_c00000{bottom:416.244000pt;}
.y182_c00000{bottom:418.606667pt;}
.y200_c00000{bottom:418.714667pt;}
.yee_c00000{bottom:421.398667pt;}
.yfa_c00000{bottom:422.728000pt;}
.y99_c00000{bottom:423.364000pt;}
.y251_c00000{bottom:424.390667pt;}
.y283_c00000{bottom:424.733333pt;}
.y103_c00000{bottom:425.412000pt;}
.y1f1_c00000{bottom:426.021333pt;}
.y1a_c00000{bottom:426.654667pt;}
.y14c_c00000{bottom:426.740000pt;}
.yd6_c00000{bottom:426.908000pt;}
.y29b_c00000{bottom:428.746667pt;}
.y221_c00000{bottom:430.033333pt;}
.y13b_c00000{bottom:430.753333pt;}
.y12b_c00000{bottom:430.856000pt;}
.y41_c00000{bottom:431.164000pt;}
.y181_c00000{bottom:431.225333pt;}
.y1e5_c00000{bottom:431.320000pt;}
.ya9_c00000{bottom:431.628000pt;}
.y1da_c00000{bottom:433.326667pt;}
.y272_c00000{bottom:434.190667pt;}
.ya4_c00000{bottom:435.333333pt;}
.y75_c00000{bottom:437.340000pt;}
.y282_c00000{bottom:439.345333pt;}
.y250_c00000{bottom:440.330667pt;}
.y1f0_c00000{bottom:440.633333pt;}
.y14b_c00000{bottom:441.352000pt;}
.y19_c00000{bottom:442.594667pt;}
.yed_c00000{bottom:442.680000pt;}
.yd5_c00000{bottom:442.848000pt;}
.y29a_c00000{bottom:443.358667pt;}
.y180_c00000{bottom:443.845333pt;}
.y98_c00000{bottom:444.645333pt;}
.y13a_c00000{bottom:445.365333pt;}
.y1e4_c00000{bottom:445.932000pt;}
.y102_c00000{bottom:446.693333pt;}
.y40_c00000{bottom:447.104000pt;}
.y8f_c00000{bottom:447.568000pt;}
.y1d9_c00000{bottom:447.938667pt;}
.y271_c00000{bottom:448.802667pt;}
.ya3_c00000{bottom:449.945333pt;}
.y74_c00000{bottom:451.950667pt;}
.y12a_c00000{bottom:452.137333pt;}
.y1ff_c00000{bottom:454.608000pt;}
.y24f_c00000{bottom:456.270667pt;}
.y17f_c00000{bottom:456.464000pt;}
.yec_c00000{bottom:457.292000pt;}
.y18_c00000{bottom:458.534667pt;}
.yf9_c00000{bottom:458.621333pt;}
.yd4_c00000{bottom:458.788000pt;}
.y220_c00000{bottom:459.257333pt;}
.y281_c00000{bottom:460.626667pt;}
.y101_c00000{bottom:461.305333pt;}
.y1ef_c00000{bottom:461.913333pt;}
.y14a_c00000{bottom:462.633333pt;}
.y3f_c00000{bottom:463.044000pt;}
.y8e_c00000{bottom:463.509333pt;}
.y299_c00000{bottom:464.640000pt;}
.y97_c00000{bottom:465.926667pt;}
.y139_c00000{bottom:466.646667pt;}
.y129_c00000{bottom:466.748000pt;}
.y1e3_c00000{bottom:467.213333pt;}
.y17e_c00000{bottom:469.084000pt;}
.y1d8_c00000{bottom:469.220000pt;}
.y270_c00000{bottom:470.082667pt;}
.ya2_c00000{bottom:471.226667pt;}
.y24e_c00000{bottom:472.210667pt;}
.y73_c00000{bottom:473.232000pt;}
.y17_c00000{bottom:474.474667pt;}
.yd3_c00000{bottom:474.728000pt;}
.y280_c00000{bottom:475.238667pt;}
.y1ee_c00000{bottom:476.525333pt;}
.y149_c00000{bottom:477.245333pt;}
.yeb_c00000{bottom:478.573333pt;}
.y3e_c00000{bottom:478.984000pt;}
.y298_c00000{bottom:479.252000pt;}
.y8d_c00000{bottom:479.449333pt;}
.y21f_c00000{bottom:480.538667pt;}
.y138_c00000{bottom:481.257333pt;}
.y17d_c00000{bottom:481.702667pt;}
.y1e2_c00000{bottom:481.825333pt;}
.y100_c00000{bottom:482.586667pt;}
.y1d7_c00000{bottom:483.832000pt;}
.ya1_c00000{bottom:485.838667pt;}
.y96_c00000{bottom:487.208000pt;}
.y72_c00000{bottom:487.844000pt;}
.y128_c00000{bottom:488.029333pt;}
.y24d_c00000{bottom:488.152000pt;}
.y16_c00000{bottom:490.416000pt;}
.yd2_c00000{bottom:490.668000pt;}
.y1ed_c00000{bottom:491.137333pt;}
.yea_c00000{bottom:493.185333pt;}
.y17c_c00000{bottom:494.322667pt;}
.yf8_c00000{bottom:494.513333pt;}
.y3d_c00000{bottom:494.924000pt;}
.y21e_c00000{bottom:495.150667pt;}
.y8c_c00000{bottom:495.389333pt;}
.y27f_c00000{bottom:496.520000pt;}
.yff_c00000{bottom:497.198667pt;}
.y1fe_c00000{bottom:498.444000pt;}
.y148_c00000{bottom:498.526667pt;}
.y297_c00000{bottom:500.533333pt;}
.y137_c00000{bottom:502.538667pt;}
.y1e1_c00000{bottom:503.106667pt;}
.y24c_c00000{bottom:504.092000pt;}
.y1d6_c00000{bottom:505.113333pt;}
.y15_c00000{bottom:506.356000pt;}
.yd1_c00000{bottom:506.609333pt;}
.y17b_c00000{bottom:506.941333pt;}
.ya0_c00000{bottom:507.118667pt;}
.y95_c00000{bottom:508.489333pt;}
.y71_c00000{bottom:509.125333pt;}
.y21d_c00000{bottom:509.762667pt;}
.y3c_c00000{bottom:510.864000pt;}
.y27e_c00000{bottom:511.132000pt;}
.y8b_c00000{bottom:511.329333pt;}
.y1ec_c00000{bottom:512.418667pt;}
.y147_c00000{bottom:513.138667pt;}
.ye9_c00000{bottom:514.466667pt;}
.y1e0_c00000{bottom:517.718667pt;}
.yfe_c00000{bottom:518.480000pt;}
.y17a_c00000{bottom:519.561333pt;}
.y1d5_c00000{bottom:519.725333pt;}
.y24b_c00000{bottom:520.032000pt;}
.y9f_c00000{bottom:521.730667pt;}
.y14_c00000{bottom:522.296000pt;}
.yd0_c00000{bottom:522.549333pt;}
.y70_c00000{bottom:523.737333pt;}
.y3b_c00000{bottom:526.805333pt;}
.y1eb_c00000{bottom:527.030667pt;}
.y8a_c00000{bottom:527.269333pt;}
.y233_c00000{bottom:528.480000pt;}
.ye8_c00000{bottom:529.078667pt;}
.y94_c00000{bottom:529.770667pt;}
.yf7_c00000{bottom:530.406667pt;}
.y21c_c00000{bottom:531.044000pt;}
.y179_c00000{bottom:532.180000pt;}
.y27d_c00000{bottom:532.413333pt;}
.y1fd_c00000{bottom:534.337333pt;}
.y146_c00000{bottom:534.420000pt;}
.y24a_c00000{bottom:535.972000pt;}
.y13_c00000{bottom:538.236000pt;}
.ycf_c00000{bottom:538.489333pt;}
.y1df_c00000{bottom:539.000000pt;}
.y1d4_c00000{bottom:541.006667pt;}
.y1ea_c00000{bottom:541.642667pt;}
.y1bc_c00000{bottom:541.673333pt;}
.y3a_c00000{bottom:542.745333pt;}
.y9e_c00000{bottom:543.012000pt;}
.y232_c00000{bottom:543.092000pt;}
.y89_c00000{bottom:543.209333pt;}
.y178_c00000{bottom:544.800000pt;}
.y6f_c00000{bottom:545.018667pt;}
.y21b_c00000{bottom:545.656000pt;}
.y1fc_c00000{bottom:548.948000pt;}
.ye7_c00000{bottom:550.360000pt;}
.y249_c00000{bottom:551.912000pt;}
.y1de_c00000{bottom:553.612000pt;}
.yce_c00000{bottom:554.429333pt;}
.y1d3_c00000{bottom:555.617333pt;}
.ye6_c00000{bottom:556.710667pt;}
.y177_c00000{bottom:557.418667pt;}
.y1bb_c00000{bottom:557.613333pt;}
.y9d_c00000{bottom:557.624000pt;}
.y231_c00000{bottom:557.704000pt;}
.y39_c00000{bottom:558.685333pt;}
.y88_c00000{bottom:559.150667pt;}
.y6e_c00000{bottom:559.630667pt;}
.y21a_c00000{bottom:560.266667pt;}
.y1e9_c00000{bottom:562.924000pt;}
.y1fb_c00000{bottom:563.560000pt;}
.yf6_c00000{bottom:566.300000pt;}
.y12_c00000{bottom:567.460000pt;}
.y248_c00000{bottom:567.852000pt;}
.y176_c00000{bottom:570.038667pt;}
.ycd_c00000{bottom:570.369333pt;}
.ye5_c00000{bottom:571.322667pt;}
.y230_c00000{bottom:572.316000pt;}
.y1ba_c00000{bottom:573.553333pt;}
.y38_c00000{bottom:574.625333pt;}
.y296_c00000{bottom:574.657333pt;}
.y1dd_c00000{bottom:574.893333pt;}
.y87_c00000{bottom:575.090667pt;}
.y1d2_c00000{bottom:576.898667pt;}
.y1e8_c00000{bottom:577.536000pt;}
.y9c_c00000{bottom:578.905333pt;}
.y6d_c00000{bottom:580.912000pt;}
.y219_c00000{bottom:581.548000pt;}
.y175_c00000{bottom:582.657333pt;}
.y11_c00000{bottom:583.400000pt;}
.y247_c00000{bottom:583.793333pt;}
.y1fa_c00000{bottom:584.841333pt;}
.ycc_c00000{bottom:586.310667pt;}
.y295_c00000{bottom:589.269333pt;}
.y1b9_c00000{bottom:589.493333pt;}
.y37_c00000{bottom:590.565333pt;}
.y86_c00000{bottom:591.030667pt;}
.y236_c00000{bottom:591.097333pt;}
.y1e7_c00000{bottom:592.148000pt;}
.ye4_c00000{bottom:592.604000pt;}
.y22f_c00000{bottom:593.597333pt;}
.y174_c00000{bottom:595.277333pt;}
.y218_c00000{bottom:596.160000pt;}
.y10_c00000{bottom:599.340000pt;}
.y1f9_c00000{bottom:599.453333pt;}
.y246_c00000{bottom:599.733333pt;}
.ycb_c00000{bottom:602.250667pt;}
.y1b8_c00000{bottom:605.433333pt;}
.y36_c00000{bottom:606.505333pt;}
.y85_c00000{bottom:606.970667pt;}
.ye3_c00000{bottom:607.216000pt;}
.y173_c00000{bottom:607.896000pt;}
.y22e_c00000{bottom:608.209333pt;}
.y294_c00000{bottom:610.550667pt;}
.y217_c00000{bottom:610.772000pt;}
.y1e6_c00000{bottom:613.429333pt;}
.y1f8_c00000{bottom:614.065333pt;}
.yf_c00000{bottom:615.280000pt;}
.y245_c00000{bottom:615.673333pt;}
.yca_c00000{bottom:618.190667pt;}
.y172_c00000{bottom:620.516000pt;}
.y1b7_c00000{bottom:621.374667pt;}
.y35_c00000{bottom:622.446667pt;}
.y22d_c00000{bottom:622.821333pt;}
.y84_c00000{bottom:622.910667pt;}
.y293_c00000{bottom:625.162667pt;}
.ye2_c00000{bottom:628.497333pt;}
.y1f7_c00000{bottom:628.677333pt;}
.y215_c00000{bottom:630.764000pt;}
.ye_c00000{bottom:631.221333pt;}
.y244_c00000{bottom:631.613333pt;}
.y216_c00000{bottom:632.053333pt;}
.y171_c00000{bottom:633.134667pt;}
.yc9_c00000{bottom:634.130667pt;}
.y1b6_c00000{bottom:637.314667pt;}
.y22c_c00000{bottom:637.433333pt;}
.y34_c00000{bottom:638.386667pt;}
.y83_c00000{bottom:638.850667pt;}
.y155_c00000{bottom:638.852000pt;}
.ye1_c00000{bottom:643.109333pt;}
.y214_c00000{bottom:645.376000pt;}
.y170_c00000{bottom:645.754667pt;}
.y292_c00000{bottom:646.444000pt;}
.yd_c00000{bottom:647.161333pt;}
.y243_c00000{bottom:647.553333pt;}
.y1f6_c00000{bottom:649.958667pt;}
.yc8_c00000{bottom:650.070667pt;}
.y1b5_c00000{bottom:653.254667pt;}
.y33_c00000{bottom:654.326667pt;}
.y82_c00000{bottom:654.792000pt;}
.y22b_c00000{bottom:654.857333pt;}
.y16f_c00000{bottom:658.373333pt;}
.y1d1_c00000{bottom:658.714667pt;}
.y213_c00000{bottom:659.988000pt;}
.y291_c00000{bottom:661.054667pt;}
.yc_c00000{bottom:663.101333pt;}
.y242_c00000{bottom:663.493333pt;}
.ye0_c00000{bottom:664.389333pt;}
.yc7_c00000{bottom:666.010667pt;}
.y1b4_c00000{bottom:669.194667pt;}
.y81_c00000{bottom:670.732000pt;}
.y16e_c00000{bottom:670.993333pt;}
.y1d0_c00000{bottom:673.326667pt;}
.y32_c00000{bottom:676.936000pt;}
.ydf_c00000{bottom:679.001333pt;}
.yb_c00000{bottom:679.041333pt;}
.y241_c00000{bottom:679.434667pt;}
.y212_c00000{bottom:681.269333pt;}
.yc6_c00000{bottom:681.952000pt;}
.y290_c00000{bottom:682.336000pt;}
.y16d_c00000{bottom:683.612000pt;}
.y1b3_c00000{bottom:685.134667pt;}
.y80_c00000{bottom:686.672000pt;}
.y26c_c00000{bottom:686.738667pt;}
.y1cf_c00000{bottom:687.938667pt;}
.y31_c00000{bottom:692.876000pt;}
.ya_c00000{bottom:694.981333pt;}
.y240_c00000{bottom:695.374667pt;}
.y211_c00000{bottom:695.880000pt;}
.y16c_c00000{bottom:696.232000pt;}
.y28f_c00000{bottom:696.948000pt;}
.yc5_c00000{bottom:697.892000pt;}
.y127_c00000{bottom:698.606667pt;}
.yde_c00000{bottom:700.282667pt;}
.y1ce_c00000{bottom:702.549333pt;}
.y26f_c00000{bottom:702.612000pt;}
.y1b2_c00000{bottom:707.744000pt;}
.y16b_c00000{bottom:708.850667pt;}
.y7f_c00000{bottom:709.281333pt;}
.y210_c00000{bottom:710.492000pt;}
.y9_c00000{bottom:710.921333pt;}
.y23f_c00000{bottom:711.314667pt;}
.yc4_c00000{bottom:713.832000pt;}
.y126_c00000{bottom:714.548000pt;}
.ydd_c00000{bottom:714.894667pt;}
.y28e_c00000{bottom:718.229333pt;}
.y16a_c00000{bottom:721.470667pt;}
.y30_c00000{bottom:721.812000pt;}
.y1b1_c00000{bottom:723.685333pt;}
.y1cd_c00000{bottom:723.830667pt;}
.y7e_c00000{bottom:725.221333pt;}
.y8_c00000{bottom:726.862667pt;}
.y23e_c00000{bottom:727.254667pt;}
.yc3_c00000{bottom:729.772000pt;}
.y125_c00000{bottom:730.488000pt;}
.y20f_c00000{bottom:731.773333pt;}
.y28d_c00000{bottom:732.841333pt;}
.y169_c00000{bottom:734.089333pt;}
.ydc_c00000{bottom:736.176000pt;}
.y1cc_c00000{bottom:738.442667pt;}
.y26e_c00000{bottom:741.162667pt;}
.y7_c00000{bottom:742.802667pt;}
.y23d_c00000{bottom:743.194667pt;}
.yc2_c00000{bottom:745.712000pt;}
.y20e_c00000{bottom:746.385333pt;}
.y124_c00000{bottom:746.428000pt;}
.y168_c00000{bottom:746.709333pt;}
.ydb_c00000{bottom:750.788000pt;}
.y1b0_c00000{bottom:752.621333pt;}
.y1cb_c00000{bottom:753.054667pt;}
.y28c_c00000{bottom:754.122667pt;}
.y7d_c00000{bottom:754.157333pt;}
.y2b_c00000{bottom:758.670667pt;}
.y6_c00000{bottom:758.742667pt;}
.y23c_c00000{bottom:759.136000pt;}
.y167_c00000{bottom:759.328000pt;}
.y20d_c00000{bottom:760.997333pt;}
.yc1_c00000{bottom:761.652000pt;}
.y123_c00000{bottom:762.368000pt;}
.y1ca_c00000{bottom:767.666667pt;}
.y28b_c00000{bottom:768.734667pt;}
.y26d_c00000{bottom:770.098667pt;}
.y166_c00000{bottom:771.948000pt;}
.yda_c00000{bottom:772.069333pt;}
.y2a_c00000{bottom:774.610667pt;}
.y5_c00000{bottom:774.682667pt;}
.y23b_c00000{bottom:775.076000pt;}
.yc0_c00000{bottom:777.593333pt;}
.y122_c00000{bottom:778.308000pt;}
.y20c_c00000{bottom:782.278667pt;}
.y165_c00000{bottom:784.566667pt;}
.yd9_c00000{bottom:786.681333pt;}
.y1c9_c00000{bottom:788.948000pt;}
.y1a9_c00000{bottom:789.478667pt;}
.y28a_c00000{bottom:790.016000pt;}
.y29_c00000{bottom:790.550667pt;}
.y66_c00000{bottom:791.016000pt;}
.y117_c00000{bottom:791.732000pt;}
.y93_c00000{bottom:793.533333pt;}
.y121_c00000{bottom:794.248000pt;}
.y20b_c00000{bottom:796.890667pt;}
.y164_c00000{bottom:797.186667pt;}
.y1c8_c00000{bottom:803.560000pt;}
.y4_c00000{bottom:804.372000pt;}
.y1a8_c00000{bottom:805.418667pt;}
.y28_c00000{bottom:806.490667pt;}
.y65_c00000{bottom:806.956000pt;}
.y116_c00000{bottom:807.672000pt;}
.y1af_c00000{bottom:807.936000pt;}
.yd8_c00000{bottom:807.962667pt;}
.y92_c00000{bottom:809.473333pt;}
.y163_c00000{bottom:809.805333pt;}
.y120_c00000{bottom:810.189333pt;}
.y20a_c00000{bottom:811.502667pt;}
.y1c7_c00000{bottom:818.172000pt;}
.y1a7_c00000{bottom:821.360000pt;}
.y162_c00000{bottom:822.425333pt;}
.y27_c00000{bottom:822.432000pt;}
.y64_c00000{bottom:822.896000pt;}
.y115_c00000{bottom:823.612000pt;}
.y1ae_c00000{bottom:823.876000pt;}
.y91_c00000{bottom:825.413333pt;}
.y11f_c00000{bottom:826.129333pt;}
.y1c6_c00000{bottom:832.784000pt;}
.y161_c00000{bottom:835.044000pt;}
.y1a6_c00000{bottom:837.300000pt;}
.y26_c00000{bottom:838.372000pt;}
.y63_c00000{bottom:838.836000pt;}
.y114_c00000{bottom:839.552000pt;}
.y1ad_c00000{bottom:839.817333pt;}
.y2f_c00000{bottom:840.889333pt;}
.y90_c00000{bottom:841.353333pt;}
.y11e_c00000{bottom:842.069333pt;}
.y209_c00000{bottom:847.396000pt;}
.y160_c00000{bottom:847.664000pt;}
.y1a5_c00000{bottom:853.240000pt;}
.y1c5_c00000{bottom:854.065333pt;}
.y25_c00000{bottom:854.312000pt;}
.y62_c00000{bottom:854.777333pt;}
.y113_c00000{bottom:855.492000pt;}
.y1ac_c00000{bottom:855.757333pt;}
.y2e_c00000{bottom:856.829333pt;}
.y6c_c00000{bottom:857.293333pt;}
.y158_c00000{bottom:857.294667pt;}
.y11d_c00000{bottom:858.009333pt;}
.y15f_c00000{bottom:860.282667pt;}
.y208_c00000{bottom:862.008000pt;}
.y3_c00000{bottom:862.486667pt;}
.y1c4_c00000{bottom:868.677333pt;}
.y61_c00000{bottom:870.717333pt;}
.y112_c00000{bottom:871.432000pt;}
.y15e_c00000{bottom:872.902667pt;}
.y6b_c00000{bottom:873.234667pt;}
.y235_c00000{bottom:873.300000pt;}
.y11c_c00000{bottom:873.949333pt;}
.y1a4_c00000{bottom:875.849333pt;}
.y24_c00000{bottom:876.921333pt;}
.y1ab_c00000{bottom:878.366667pt;}
.y2d_c00000{bottom:879.438667pt;}
.y1c3_c00000{bottom:883.288000pt;}
.y15d_c00000{bottom:885.521333pt;}
.y60_c00000{bottom:886.657333pt;}
.y111_c00000{bottom:887.373333pt;}
.y6a_c00000{bottom:889.174667pt;}
.y234_c00000{bottom:889.241333pt;}
.y11b_c00000{bottom:889.889333pt;}
.y1a3_c00000{bottom:891.789333pt;}
.y1a2_c00000{bottom:891.856000pt;}
.y23_c00000{bottom:892.861333pt;}
.y22_c00000{bottom:892.928000pt;}
.y1aa_c00000{bottom:894.306667pt;}
.y2c_c00000{bottom:895.378667pt;}
.y1c2_c00000{bottom:897.900000pt;}
.y15c_c00000{bottom:898.141333pt;}
.y2_c00000{bottom:901.009333pt;}
.y23a_c00000{bottom:902.597333pt;}
.y5f_c00000{bottom:909.266667pt;}
.y110_c00000{bottom:909.982667pt;}
.y69_c00000{bottom:911.784000pt;}
.y11a_c00000{bottom:912.500000pt;}
.y207_c00000{bottom:912.512000pt;}
.y15b_c00000{bottom:917.429333pt;}
.y239_c00000{bottom:918.537333pt;}
.y1c1_c00000{bottom:919.181333pt;}
.y1a1_c00000{bottom:920.725333pt;}
.y21_c00000{bottom:921.797333pt;}
.y5e_c00000{bottom:925.206667pt;}
.y5d_c00000{bottom:925.273333pt;}
.y10f_c00000{bottom:925.922667pt;}
.y10e_c00000{bottom:925.989333pt;}
.y68_c00000{bottom:927.724000pt;}
.y67_c00000{bottom:927.790667pt;}
.y119_c00000{bottom:928.440000pt;}
.y118_c00000{bottom:928.506667pt;}
.y15a_c00000{bottom:930.049333pt;}
.y159_c00000{bottom:930.101333pt;}
.y1_c00000{bottom:930.233333pt;}
.y1c0_c00000{bottom:933.793333pt;}
.y238_c00000{bottom:941.146667pt;}
.y1bf_c00000{bottom:948.405333pt;}
.y1a0_c00000{bottom:952.606667pt;}
.y20_c00000{bottom:953.678667pt;}
.y5c_c00000{bottom:954.142667pt;}
.y10d_c00000{bottom:954.858667pt;}
.y237_c00000{bottom:957.088000pt;}
.y1be_c00000{bottom:963.017333pt;}
.y1bd_c00000{bottom:984.298667pt;}
.y19f_c00000{bottom:984.952000pt;}
.y1f_c00000{bottom:986.024000pt;}
.y4c_c00000{bottom:1036.946667pt;}
.y7c_c00000{bottom:1037.297333pt;}
.h11_c00000{height:31.200285pt;}
.h12_c00000{height:31.408285pt;}
.hd_c00000{height:35.100467pt;}
.hf_c00000{height:35.335134pt;}
.he_c00000{height:35.340467pt;}
.h7_c00000{height:39.000258pt;}
.h8_c00000{height:39.261591pt;}
.h6_c00000{height:39.266925pt;}
.h5_c00000{height:39.850400pt;}
.h10_c00000{height:40.485067pt;}
.h9_c00000{height:40.490400pt;}
.h3_c00000{height:46.800623pt;}
.hc_c00000{height:47.261591pt;}
.hb_c00000{height:47.820800pt;}
.ha_c00000{height:48.583467pt;}
.h4_c00000{height:57.384800pt;}
.h13_c00000{height:58.302133pt;}
.h2_c00000{height:67.392553pt;}
.h1_c00000{height:67.851219pt;}
.h0_c00000{height:1056.000000pt;}
.w0_c00000{width:816.000000pt;}
.x0_c00000{left:0.000000pt;}
.x5_c00000{left:56.693333pt;}
.x11_c00000{left:65.400000pt;}
.x69_c00000{left:71.305333pt;}
.x5b_c00000{left:74.997333pt;}
.x6_c00000{left:76.618667pt;}
.x1e_c00000{left:84.588000pt;}
.x5a_c00000{left:88.281333pt;}
.x74_c00000{left:96.544000pt;}
.x6b_c00000{left:103.185333pt;}
.x5c_c00000{left:106.518667pt;}
.xc_c00000{left:110.570667pt;}
.x7f_c00000{left:116.321333pt;}
.x40_c00000{left:117.505333pt;}
.x61_c00000{left:121.636000pt;}
.x33_c00000{left:124.146667pt;}
.x30_c00000{left:128.437333pt;}
.x27_c00000{left:130.788000pt;}
.x77_c00000{left:134.002667pt;}
.x64_c00000{left:134.932000pt;}
.x76_c00000{left:136.220000pt;}
.x38_c00000{left:138.160000pt;}
.x5f_c00000{left:146.728000pt;}
.x73_c00000{left:147.618667pt;}
.x6f_c00000{left:149.982667pt;}
.x80_c00000{left:157.049333pt;}
.x7_c00000{left:159.613333pt;}
.x16_c00000{left:161.113333pt;}
.x17_c00000{left:169.150667pt;}
.x50_c00000{left:170.373333pt;}
.x8_c00000{left:173.214667pt;}
.x67_c00000{left:177.678667pt;}
.x2e_c00000{left:180.356000pt;}
.x52_c00000{left:181.584000pt;}
.x43_c00000{left:186.126667pt;}
.x75_c00000{left:189.805333pt;}
.x7e_c00000{left:194.974667pt;}
.x4e_c00000{left:196.528000pt;}
.x59_c00000{left:201.297333pt;}
.x10_c00000{left:202.465333pt;}
.x1_c00000{left:242.056000pt;}
.x34_c00000{left:248.000000pt;}
.x39_c00000{left:262.445333pt;}
.xb_c00000{left:268.098667pt;}
.x5d_c00000{left:270.018667pt;}
.x53_c00000{left:273.006667pt;}
.xa_c00000{left:273.996000pt;}
.x4_c00000{left:278.717333pt;}
.x44_c00000{left:282.972000pt;}
.x1a_c00000{left:287.622667pt;}
.x3f_c00000{left:300.990667pt;}
.x6d_c00000{left:307.988000pt;}
.x3d_c00000{left:309.853333pt;}
.x1c_c00000{left:312.186667pt;}
.x2a_c00000{left:318.829333pt;}
.x3_c00000{left:322.864000pt;}
.x28_c00000{left:325.470667pt;}
.x21_c00000{left:332.112000pt;}
.x1f_c00000{left:338.754667pt;}
.xd_c00000{left:341.609333pt;}
.x6a_c00000{left:345.396000pt;}
.x3a_c00000{left:351.441333pt;}
.x9_c00000{left:354.892000pt;}
.x23_c00000{left:358.680000pt;}
.xe_c00000{left:360.060000pt;}
.x54_c00000{left:362.004000pt;}
.x12_c00000{left:365.321333pt;}
.x45_c00000{left:371.968000pt;}
.x1b_c00000{left:376.618667pt;}
.x56_c00000{left:385.246667pt;}
.x5e_c00000{left:386.249333pt;}
.x3b_c00000{left:390.305333pt;}
.x7c_c00000{left:391.888000pt;}
.x6e_c00000{left:394.080000pt;}
.x3e_c00000{left:399.896000pt;}
.xf_c00000{left:404.678667pt;}
.x36_c00000{left:411.789333pt;}
.x13_c00000{left:414.641333pt;}
.x72_c00000{left:418.866667pt;}
.x15_c00000{left:422.612000pt;}
.x32_c00000{left:426.304000pt;}
.x60_c00000{left:429.253333pt;}
.x62_c00000{left:432.946667pt;}
.x58_c00000{left:452.872000pt;}
.x79_c00000{left:454.332000pt;}
.x7a_c00000{left:456.550667pt;}
.x2f_c00000{left:473.036000pt;}
.x4d_c00000{left:477.672000pt;}
.x26_c00000{left:479.678667pt;}
.x14_c00000{left:486.320000pt;}
.x42_c00000{left:488.737333pt;}
.x31_c00000{left:502.790667pt;}
.x41_c00000{left:506.337333pt;}
.x51_c00000{left:510.881333pt;}
.x7d_c00000{left:517.522667pt;}
.x57_c00000{left:524.164000pt;}
.x37_c00000{left:527.710667pt;}
.x71_c00000{left:534.352000pt;}
.x2c_c00000{left:538.417333pt;}
.x7b_c00000{left:545.429333pt;}
.x68_c00000{left:547.596000pt;}
.x66_c00000{left:550.544000pt;}
.x6c_c00000{left:552.018667pt;}
.x2_c00000{left:557.372000pt;}
.x25_c00000{left:564.066667pt;}
.x18_c00000{left:577.124000pt;}
.x35_c00000{left:621.412000pt;}
.x55_c00000{left:640.141333pt;}
.x1d_c00000{left:647.608000pt;}
.x65_c00000{left:648.882667pt;}
.x70_c00000{left:649.825333pt;}
.x48_c00000{left:651.672000pt;}
.x2b_c00000{left:654.249333pt;}
.x2d_c00000{left:655.762667pt;}
.x3c_c00000{left:657.117333pt;}
.x29_c00000{left:660.890667pt;}
.x4f_c00000{left:662.270667pt;}
.x49_c00000{left:663.481333pt;}
.x47_c00000{left:664.570667pt;}
.x46_c00000{left:666.057333pt;}
.x22_c00000{left:667.533333pt;}
.x4b_c00000{left:671.225333pt;}
.x19_c00000{left:673.044000pt;}
.x20_c00000{left:674.174667pt;}
.x78_c00000{left:678.160000pt;}
.x4c_c00000{left:680.457333pt;}
.x4a_c00000{left:687.710667pt;}
.x24_c00000{left:694.100000pt;}
.x63_c00000{left:700.741333pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_6475c1fd97ae804d0cf68393.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.952000;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_c00001;src:url('chunks/assets/font_7e0213ef890e4a94c146b952.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:0.956000;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_c00001{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);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.ws9_c00001{word-spacing:3.316087px;}
.ws13_c00001{word-spacing:3.317287px;}
.ws8_c00001{word-spacing:3.318670px;}
.ws12_c00001{word-spacing:3.319870px;}
.ws1_c00001{word-spacing:44.831700px;}
.ws10_c00001{word-spacing:53.798400px;}
.ws3_c00001{word-spacing:56.786820px;}
.ws7_c00001{word-spacing:58.263667px;}
.wsa_c00001{word-spacing:58.317466px;}
.ws14_c00001{word-spacing:61.276378px;}
.ws6_c00001{word-spacing:71.713267px;}
.ws16_c00001{word-spacing:73.219622px;}
.ws15_c00001{word-spacing:79.137446px;}
.ws17_c00001{word-spacing:82.150157px;}
.wsc_c00001{word-spacing:85.162867px;}
.ws2_c00001{word-spacing:86.674620px;}
.wsf_c00001{word-spacing:98.612467px;}
.wsd_c00001{word-spacing:112.062067px;}
.ws4_c00001{word-spacing:116.562420px;}
.ws5_c00001{word-spacing:146.450220px;}
.ws11_c00001{word-spacing:151.471370px;}
.wsb_c00001{word-spacing:176.338020px;}
.wse_c00001{word-spacing:206.225820px;}
._1_c00001{margin-left:-5.499355px;}
._0_c00001{margin-left:-1.075961px;}
._2_c00001{width:4.564136px;}
._f_c00001{width:14.943900px;}
._6_c00001{width:18.261970px;}
._3_c00001{width:19.933250px;}
._a_c00001{width:71.730720px;}
._5_c00001{width:73.464212px;}
._6c_c00001{width:74.725978px;}
._73_c00001{width:77.684890px;}
._77_c00001{width:80.643802px;}
._6f_c00001{width:82.580544px;}
._85_c00001{width:83.710310px;}
._4e_c00001{width:85.162867px;}
._63_c00001{width:86.723021px;}
._79_c00001{width:88.229376px;}
._7f_c00001{width:91.242086px;}
._7c_c00001{width:92.587046px;}
._6b_c00001{width:94.200998px;}
._76_c00001{width:95.653555px;}
._62_c00001{width:97.159910px;}
._21_c00001{width:98.612467px;}
._5e_c00001{width:99.885028px;}
._8_c00001{width:101.618520px;}
._28_c00001{width:103.352012px;}
._72_c00001{width:104.637888px;}
._78_c00001{width:107.543002px;}
._70_c00001{width:109.479744px;}
._80_c00001{width:110.555712px;}
._4f_c00001{width:112.115866px;}
._7e_c00001{width:113.568422px;}
._67_c00001{width:122.498957px;}
._71_c00001{width:125.118382px;}
._25_c00001{width:126.140551px;}
._60_c00001{width:129.772828px;}
._d_c00001{width:131.506320px;}
._33_c00001{width:133.239812px;}
._81_c00001{width:137.454912px;}
._64_c00001{width:141.150305px;}
._10_c00001{width:143.222338px;}
._24_c00001{width:146.493043px;}
._66_c00001{width:149.398157px;}
._65_c00001{width:150.958310px;}
._23_c00001{width:152.464666px;}
._34_c00001{width:154.818804px;}
._19_c00001{width:156.372970px;}
._5f_c00001{width:159.660628px;}
._13_c00001{width:161.394120px;}
._51_c00001{width:163.127612px;}
._83_c00001{width:166.295719px;}
._15_c00001{width:169.643153px;}
._7b_c00001{width:174.066547px;}
._4b_c00001{width:176.278244px;}
._20_c00001{width:179.363866px;}
._4c_c00001{width:182.913336px;}
._9_c00001{width:184.706604px;}
._6a_c00001{width:186.260770px;}
._38_c00001{width:191.281920px;}
._31_c00001{width:192.836086px;}
._6d_c00001{width:193.971822px;}
._2c_c00001{width:196.183519px;}
._2d_c00001{width:199.530953px;}
._6e_c00001{width:200.606914px;}
._4d_c00001{width:203.304154px;}
._2e_c00001{width:206.166044px;}
._26_c00001{width:209.168179px;}
._69_c00001{width:212.801136px;}
._1e_c00001{width:216.753754px;}
._68_c00001{width:219.496003px;}
._41_c00001{width:221.707700px;}
._1a_c00001{width:222.783661px;}
._1c_c00001{width:226.071319px;}
._35_c00001{width:227.864587px;}
._46_c00001{width:229.418753px;}
._49_c00001{width:232.706411px;}
._11_c00001{width:236.053844px;}
._17_c00001{width:239.341502px;}
._18_c00001{width:242.688936px;}
._1d_c00001{width:245.105510px;}
._39_c00001{width:249.324028px;}
._40_c00001{width:251.057520px;}
._1b_c00001{width:252.611686px;}
._e_c00001{width:254.345178px;}
._14_c00001{width:255.959119px;}
._b_c00001{width:257.752387px;}
._75_c00001{width:259.246777px;}
._32_c00001{width:262.594211px;}
._2b_c00001{width:265.941644px;}
._59_c00001{width:270.125936px;}
._4a_c00001{width:272.576736px;}
._36_c00001{width:275.864394px;}
._30_c00001{width:279.152052px;}
._7a_c00001{width:280.287788px;}
._61_c00001{width:282.559261px;}
._2a_c00001{width:284.232978px;}
._42_c00001{width:285.906695px;}
._48_c00001{width:289.134577px;}
._47_c00001{width:292.482011px;}
._16_c00001{width:295.769669px;}
._2f_c00001{width:299.117102px;}
._3b_c00001{width:302.464536px;}
._84_c00001{width:305.752194px;}
._5d_c00001{width:307.545462px;}
._3d_c00001{width:309.099628px;}
._12_c00001{width:312.387286px;}
._22_c00001{width:314.882028px;}
._3a_c00001{width:319.082153px;}
._1f_c00001{width:322.790400px;}
._58_c00001{width:333.129419px;}
._3c_c00001{width:335.639994px;}
._4_c00001{width:337.433262px;}
._53_c00001{width:339.764510px;}
._7_c00001{width:341.796881px;}
._5b_c00001{width:343.171720px;}
._52_c00001{width:346.519153px;}
._7d_c00001{width:348.910177px;}
._74_c00001{width:352.257611px;}
._43_c00001{width:355.605044px;}
._5c_c00001{width:359.789336px;}
._54_c00001{width:363.017219px;}
._37_c00001{width:365.527794px;}
._27_c00001{width:367.321062px;}
._45_c00001{width:368.875228px;}
._29_c00001{width:371.684681px;}
._56_c00001{width:373.059520px;}
._3e_c00001{width:380.591245px;}
._44_c00001{width:382.145411px;}
._57_c00001{width:389.677136px;}
._50_c00001{width:397.208862px;}
._3f_c00001{width:398.763028px;}
._c_c00001{width:410.479045px;}
._55_c00001{width:420.640897px;}
._5a_c00001{width:422.792819px;}
._82_c00001{width:440.366845px;}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:53.798400px;}
.fs0_c00001{font-size:59.775600px;}
.fs2_c00001{font-size:71.731200px;}
.y0_c00001{bottom:0.000000px;}
.y2c_c00001{bottom:266.376000px;}
.y2b_c00001{bottom:282.813000px;}
.ya5_c00001{bottom:300.631500px;}
.y96_c00001{bottom:306.253500px;}
.y2a_c00001{bottom:306.754500px;}
.ybd_c00001{bottom:313.333500px;}
.ya4_c00001{bottom:317.070000px;}
.y29_c00001{bottom:323.193000px;}
.y95_c00001{bottom:324.187500px;}
.ybc_c00001{bottom:329.772000px;}
.y52_c00001{bottom:336.496500px;}
.ya3_c00001{bottom:341.011500px;}
.y94_c00001{bottom:342.120000px;}
.ybb_c00001{bottom:346.210500px;}
.y28_c00001{bottom:347.134500px;}
.y51_c00001{bottom:352.935000px;}
.ya2_c00001{bottom:357.448500px;}
.y93_c00001{bottom:360.052500px;}
.y27_c00001{bottom:363.573000px;}
.yba_c00001{bottom:370.152000px;}
.y61_c00001{bottom:370.867500px;}
.y50_c00001{bottom:376.876500px;}
.y92_c00001{bottom:377.985000px;}
.ya1_c00001{bottom:381.390000px;}
.yb9_c00001{bottom:386.590500px;}
.y60_c00001{bottom:387.306000px;}
.y26_c00001{bottom:387.514500px;}
.y4f_c00001{bottom:393.315000px;}
.y91_c00001{bottom:395.917500px;}
.ya0_c00001{bottom:397.828500px;}
.yb8_c00001{bottom:403.027500px;}
.y25_c00001{bottom:403.953000px;}
.y5f_c00001{bottom:411.247500px;}
.y90_c00001{bottom:413.851500px;}
.y4e_c00001{bottom:417.256500px;}
.y9f_c00001{bottom:421.770000px;}
.yb7_c00001{bottom:426.969000px;}
.y5e_c00001{bottom:427.686000px;}
.y24_c00001{bottom:427.894500px;}
.y8f_c00001{bottom:431.784000px;}
.y4d_c00001{bottom:433.695000px;}
.y9e_c00001{bottom:438.208500px;}
.yb6_c00001{bottom:443.407500px;}
.y23_c00001{bottom:444.333000px;}
.y8e_c00001{bottom:449.716500px;}
.y5d_c00001{bottom:451.627500px;}
.y4c_c00001{bottom:457.636500px;}
.yb5_c00001{bottom:459.846000px;}
.y9d_c00001{bottom:462.150000px;}
.y8d_c00001{bottom:467.649000px;}
.y5c_c00001{bottom:468.066000px;}
.y22_c00001{bottom:468.274500px;}
.y4b_c00001{bottom:474.073500px;}
.y9c_c00001{bottom:478.588500px;}
.yb4_c00001{bottom:483.787500px;}
.y21_c00001{bottom:484.713000px;}
.y8c_c00001{bottom:485.581500px;}
.y5b_c00001{bottom:492.007500px;}
.y4a_c00001{bottom:498.015000px;}
.yb3_c00001{bottom:500.226000px;}
.y9b_c00001{bottom:502.530000px;}
.y8b_c00001{bottom:503.514000px;}
.y5a_c00001{bottom:508.444500px;}
.y20_c00001{bottom:508.654500px;}
.yd6_c00001{bottom:511.231500px;}
.y49_c00001{bottom:514.453500px;}
.yb2_c00001{bottom:516.664500px;}
.y9a_c00001{bottom:518.968500px;}
.y8a_c00001{bottom:521.448000px;}
.y1f_c00001{bottom:525.091500px;}
.yd5_c00001{bottom:527.670000px;}
.y59_c00001{bottom:532.386000px;}
.y48_c00001{bottom:538.395000px;}
.y89_c00001{bottom:539.380500px;}
.yb1_c00001{bottom:540.606000px;}
.y99_c00001{bottom:542.910000px;}
.yd4_c00001{bottom:544.107000px;}
.y58_c00001{bottom:548.824500px;}
.y1e_c00001{bottom:549.033000px;}
.y47_c00001{bottom:554.833500px;}
.yb0_c00001{bottom:557.044500px;}
.y88_c00001{bottom:557.313000px;}
.y98_c00001{bottom:559.348500px;}
.yd3_c00001{bottom:560.545500px;}
.y57_c00001{bottom:572.766000px;}
.yaf_c00001{bottom:573.483000px;}
.y87_c00001{bottom:575.245500px;}
.y46_c00001{bottom:578.775000px;}
.y97_c00001{bottom:583.290000px;}
.yd2_c00001{bottom:584.487000px;}
.y56_c00001{bottom:589.204500px;}
.y86_c00001{bottom:593.178000px;}
.y45_c00001{bottom:595.213500px;}
.yae_c00001{bottom:597.424500px;}
.yd1_c00001{bottom:600.925500px;}
.y85_c00001{bottom:611.110500px;}
.y55_c00001{bottom:613.146000px;}
.yad_c00001{bottom:613.863000px;}
.yd0_c00001{bottom:617.364000px;}
.y44_c00001{bottom:619.155000px;}
.y75_c00001{bottom:626.299500px;}
.y84_c00001{bottom:629.044500px;}
.y54_c00001{bottom:629.584500px;}
.yac_c00001{bottom:630.300000px;}
.ycf_c00001{bottom:633.802500px;}
.y74_c00001{bottom:642.738000px;}
.y83_c00001{bottom:646.977000px;}
.y53_c00001{bottom:653.526000px;}
.yab_c00001{bottom:654.241500px;}
.yce_c00001{bottom:657.744000px;}
.y82_c00001{bottom:664.909500px;}
.y73_c00001{bottom:666.679500px;}
.yaa_c00001{bottom:670.680000px;}
.ycd_c00001{bottom:674.182500px;}
.ya7_c00001{bottom:677.532000px;}
.y81_c00001{bottom:682.842000px;}
.y72_c00001{bottom:683.118000px;}
.ya9_c00001{bottom:687.118500px;}
.ycc_c00001{bottom:690.621000px;}
.ya6_c00001{bottom:695.464500px;}
.y80_c00001{bottom:700.774500px;}
.y71_c00001{bottom:707.059500px;}
.ya8_c00001{bottom:711.060000px;}
.y78_c00001{bottom:713.397000px;}
.y7f_c00001{bottom:718.707000px;}
.y70_c00001{bottom:723.498000px;}
.ycb_c00001{bottom:731.001000px;}
.y77_c00001{bottom:731.329500px;}
.y7e_c00001{bottom:736.641000px;}
.y6f_c00001{bottom:747.438000px;}
.y76_c00001{bottom:749.262000px;}
.y7d_c00001{bottom:754.573500px;}
.y6e_c00001{bottom:763.876500px;}
.y66_c00001{bottom:767.196000px;}
.y7c_c00001{bottom:772.506000px;}
.yca_c00001{bottom:780.315000px;}
.y65_c00001{bottom:785.128500px;}
.y1d_c00001{bottom:785.932500px;}
.y6d_c00001{bottom:787.818000px;}
.y7b_c00001{bottom:797.941500px;}
.y64_c00001{bottom:803.061000px;}
.y1c_c00001{bottom:803.866500px;}
.y6c_c00001{bottom:804.256500px;}
.y7a_c00001{bottom:815.874000px;}
.yc9_c00001{bottom:820.695000px;}
.y63_c00001{bottom:820.993500px;}
.y1b_c00001{bottom:821.799000px;}
.y6b_c00001{bottom:828.198000px;}
.yc8_c00001{bottom:837.133500px;}
.y62_c00001{bottom:838.926000px;}
.y1a_c00001{bottom:839.731500px;}
.y6a_c00001{bottom:844.636500px;}
.y79_c00001{bottom:848.427000px;}
.yc7_c00001{bottom:853.572000px;}
.y43_c00001{bottom:856.858500px;}
.y19_c00001{bottom:857.664000px;}
.y69_c00001{bottom:868.578000px;}
.y42_c00001{bottom:874.792500px;}
.y18_c00001{bottom:875.596500px;}
.yc6_c00001{bottom:877.513500px;}
.y68_c00001{bottom:885.016500px;}
.y37_c00001{bottom:889.893000px;}
.yd_c00001{bottom:890.698500px;}
.y41_c00001{bottom:892.725000px;}
.y17_c00001{bottom:893.529000px;}
.yc5_c00001{bottom:893.952000px;}
.y36_c00001{bottom:907.825500px;}
.yc_c00001{bottom:908.631000px;}
.y67_c00001{bottom:908.958000px;}
.yc4_c00001{bottom:910.390500px;}
.y40_c00001{bottom:910.657500px;}
.y16_c00001{bottom:911.463000px;}
.y35_c00001{bottom:925.758000px;}
.yb_c00001{bottom:926.563500px;}
.yc3_c00001{bottom:926.829000px;}
.y3f_c00001{bottom:928.590000px;}
.y15_c00001{bottom:929.395500px;}
.y34_c00001{bottom:943.690500px;}
.ya_c00001{bottom:944.496000px;}
.y3e_c00001{bottom:946.522500px;}
.y14_c00001{bottom:947.328000px;}
.yc2_c00001{bottom:950.769000px;}
.y33_c00001{bottom:961.624500px;}
.y9_c00001{bottom:962.428500px;}
.y3d_c00001{bottom:964.455000px;}
.y13_c00001{bottom:965.260500px;}
.yc1_c00001{bottom:967.207500px;}
.y32_c00001{bottom:979.557000px;}
.y8_c00001{bottom:980.361000px;}
.y3c_c00001{bottom:982.389000px;}
.y12_c00001{bottom:983.193000px;}
.yc0_c00001{bottom:983.646000px;}
.y31_c00001{bottom:997.489500px;}
.y7_c00001{bottom:998.295000px;}
.ybf_c00001{bottom:1000.084500px;}
.y3b_c00001{bottom:1000.321500px;}
.y11_c00001{bottom:1001.125500px;}
.y30_c00001{bottom:1022.925000px;}
.y6_c00001{bottom:1023.730500px;}
.ybe_c00001{bottom:1024.026000px;}
.y3a_c00001{bottom:1025.757000px;}
.y10_c00001{bottom:1026.562500px;}
.y2f_c00001{bottom:1040.857500px;}
.y2e_c00001{bottom:1040.932500px;}
.y5_c00001{bottom:1041.663000px;}
.y4_c00001{bottom:1041.738000px;}
.y39_c00001{bottom:1043.689500px;}
.y38_c00001{bottom:1043.764500px;}
.yf_c00001{bottom:1044.495000px;}
.ye_c00001{bottom:1044.570000px;}
.y2d_c00001{bottom:1073.410500px;}
.y3_c00001{bottom:1074.216000px;}
.y2_c00001{bottom:1109.277000px;}
.y1_c00001{bottom:1166.959500px;}
.h5_c00001{height:39.488026px;}
.h1_c00001{height:43.875290px;}
.h4_c00001{height:44.175290px;}
.h2_c00001{height:44.831700px;}
.h3_c00001{height:45.551700px;}
.h6_c00001{height:53.798400px;}
.h0_c00001{height:1188.000000px;}
.w0_c00001{width:918.000000px;}
.x0_c00001{left:0.000000px;}
.x2_c00001{left:63.780000px;}
.x5_c00001{left:73.575000px;}
.xa_c00001{left:95.161500px;}
.x14_c00001{left:181.252500px;}
.xb_c00001{left:195.283500px;}
.x3_c00001{left:227.773500px;}
.x15_c00001{left:233.257500px;}
.x4_c00001{left:308.709000px;}
.x16_c00001{left:350.776500px;}
.x18_c00001{left:366.154500px;}
.x6_c00001{left:373.626000px;}
.x1a_c00001{left:381.099000px;}
.x10_c00001{left:388.570500px;}
.xc_c00001{left:396.042000px;}
.x1c_c00001{left:403.515000px;}
.xe_c00001{left:410.986500px;}
.x1e_c00001{left:433.402500px;}
.x13_c00001{left:440.874000px;}
.x7_c00001{left:466.471500px;}
.x8_c00001{left:476.268000px;}
.x1_c00001{left:613.608000px;}
.x12_c00001{left:720.159000px;}
.x17_c00001{left:728.124000px;}
.x19_c00001{left:743.502000px;}
.x9_c00001{left:750.975000px;}
.x1b_c00001{left:758.446500px;}
.x11_c00001{left:765.918000px;}
.xd_c00001{left:773.391000px;}
.x1d_c00001{left:780.862500px;}
.xf_c00001{left:788.334000px;}
.x1f_c00001{left:810.750000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.ws9_c00001{word-spacing:2.947633pt;}
.ws13_c00001{word-spacing:2.948700pt;}
.ws8_c00001{word-spacing:2.949929pt;}
.ws12_c00001{word-spacing:2.950995pt;}
.ws1_c00001{word-spacing:39.850400pt;}
.ws10_c00001{word-spacing:47.820800pt;}
.ws3_c00001{word-spacing:50.477173pt;}
.ws7_c00001{word-spacing:51.789926pt;}
.wsa_c00001{word-spacing:51.837747pt;}
.ws14_c00001{word-spacing:54.467891pt;}
.ws6_c00001{word-spacing:63.745126pt;}
.ws16_c00001{word-spacing:65.084109pt;}
.ws15_c00001{word-spacing:70.344397pt;}
.ws17_c00001{word-spacing:73.022362pt;}
.wsc_c00001{word-spacing:75.700326pt;}
.ws2_c00001{word-spacing:77.044107pt;}
.wsf_c00001{word-spacing:87.655526pt;}
.wsd_c00001{word-spacing:99.610726pt;}
.ws4_c00001{word-spacing:103.611040pt;}
.ws5_c00001{word-spacing:130.177973pt;}
.ws11_c00001{word-spacing:134.641218pt;}
.wsb_c00001{word-spacing:156.744907pt;}
.wse_c00001{word-spacing:183.311840pt;}
._1_c00001{margin-left:-4.888316pt;}
._0_c00001{margin-left:-0.956410pt;}
._2_c00001{width:4.057010pt;}
._f_c00001{width:13.283467pt;}
._6_c00001{width:16.232862pt;}
._3_c00001{width:17.718445pt;}
._a_c00001{width:63.760640pt;}
._5_c00001{width:65.301522pt;}
._6c_c00001{width:66.423091pt;}
._73_c00001{width:69.053235pt;}
._77_c00001{width:71.683379pt;}
._6f_c00001{width:73.404928pt;}
._85_c00001{width:74.409165pt;}
._4e_c00001{width:75.700326pt;}
._63_c00001{width:77.087130pt;}
._79_c00001{width:78.426112pt;}
._7f_c00001{width:81.104077pt;}
._7c_c00001{width:82.299597pt;}
._6b_c00001{width:83.734221pt;}
._76_c00001{width:85.025382pt;}
._62_c00001{width:86.364365pt;}
._21_c00001{width:87.655526pt;}
._5e_c00001{width:88.786691pt;}
._8_c00001{width:90.327573pt;}
._28_c00001{width:91.868455pt;}
._72_c00001{width:93.011456pt;}
._78_c00001{width:95.593779pt;}
._70_c00001{width:97.315328pt;}
._80_c00001{width:98.271744pt;}
._4f_c00001{width:99.658547pt;}
._7e_c00001{width:100.949709pt;}
._67_c00001{width:108.887962pt;}
._71_c00001{width:111.216339pt;}
._25_c00001{width:112.124934pt;}
._60_c00001{width:115.353625pt;}
._d_c00001{width:116.894507pt;}
._33_c00001{width:118.435389pt;}
._81_c00001{width:122.182144pt;}
._64_c00001{width:125.466938pt;}
._10_c00001{width:127.308745pt;}
._24_c00001{width:130.216038pt;}
._66_c00001{width:132.798362pt;}
._65_c00001{width:134.185165pt;}
._23_c00001{width:135.524147pt;}
._34_c00001{width:137.616715pt;}
._19_c00001{width:138.998195pt;}
._5f_c00001{width:141.920558pt;}
._13_c00001{width:143.461440pt;}
._51_c00001{width:145.002322pt;}
._83_c00001{width:147.818417pt;}
._15_c00001{width:150.793914pt;}
._7b_c00001{width:154.725820pt;}
._4b_c00001{width:156.691773pt;}
._20_c00001{width:159.434547pt;}
._4c_c00001{width:162.589632pt;}
._9_c00001{width:164.183648pt;}
._6a_c00001{width:165.565129pt;}
._38_c00001{width:170.028373pt;}
._31_c00001{width:171.409854pt;}
._6d_c00001{width:172.419397pt;}
._2c_c00001{width:174.385350pt;}
._2d_c00001{width:177.360847pt;}
._6e_c00001{width:178.317257pt;}
._4d_c00001{width:180.714803pt;}
._2e_c00001{width:183.258706pt;}
._26_c00001{width:185.927270pt;}
._69_c00001{width:189.156565pt;}
._1e_c00001{width:192.670003pt;}
._68_c00001{width:195.107558pt;}
._41_c00001{width:197.073511pt;}
._1a_c00001{width:198.029921pt;}
._1c_c00001{width:200.952284pt;}
._35_c00001{width:202.546300pt;}
._46_c00001{width:203.927780pt;}
._49_c00001{width:206.850143pt;}
._11_c00001{width:209.825639pt;}
._17_c00001{width:212.748002pt;}
._18_c00001{width:215.723499pt;}
._1d_c00001{width:217.871565pt;}
._39_c00001{width:221.621358pt;}
._40_c00001{width:223.162240pt;}
._1b_c00001{width:224.543721pt;}
._e_c00001{width:226.084603pt;}
._14_c00001{width:227.519217pt;}
._b_c00001{width:229.113233pt;}
._75_c00001{width:230.441580pt;}
._32_c00001{width:233.417076pt;}
._2b_c00001{width:236.392573pt;}
._59_c00001{width:240.111943pt;}
._4a_c00001{width:242.290432pt;}
._36_c00001{width:245.212795pt;}
._30_c00001{width:248.135157pt;}
._7a_c00001{width:249.144701pt;}
._61_c00001{width:251.163788pt;}
._2a_c00001{width:252.651536pt;}
._42_c00001{width:254.139284pt;}
._48_c00001{width:257.008513pt;}
._47_c00001{width:259.984010pt;}
._16_c00001{width:262.906372pt;}
._2f_c00001{width:265.881869pt;}
._3b_c00001{width:268.857365pt;}
._84_c00001{width:271.779728pt;}
._5d_c00001{width:273.373744pt;}
._3d_c00001{width:274.755225pt;}
._12_c00001{width:277.677587pt;}
._22_c00001{width:279.895136pt;}
._3a_c00001{width:283.628580pt;}
._1f_c00001{width:286.924800pt;}
._58_c00001{width:296.115039pt;}
._3c_c00001{width:298.346661pt;}
._4_c00001{width:299.940677pt;}
._53_c00001{width:302.012898pt;}
._7_c00001{width:303.819450pt;}
._5b_c00001{width:305.041529pt;}
._52_c00001{width:308.017025pt;}
._7d_c00001{width:310.142380pt;}
._74_c00001{width:313.117876pt;}
._43_c00001{width:316.093373pt;}
._5c_c00001{width:319.812743pt;}
._54_c00001{width:322.681972pt;}
._37_c00001{width:324.913595pt;}
._27_c00001{width:326.507611pt;}
._45_c00001{width:327.889091pt;}
._29_c00001{width:330.386383pt;}
._56_c00001{width:331.608462pt;}
._3e_c00001{width:338.303329pt;}
._44_c00001{width:339.684810pt;}
._57_c00001{width:346.379677pt;}
._50_c00001{width:353.074544pt;}
._3f_c00001{width:354.456025pt;}
._c_c00001{width:364.870262pt;}
._55_c00001{width:373.903020pt;}
._5a_c00001{width:375.815839pt;}
._82_c00001{width:391.437196pt;}
.fs1_c00001{font-size:47.820800pt;}
.fs0_c00001{font-size:53.133867pt;}
.fs2_c00001{font-size:63.761067pt;}
.y0_c00001{bottom:0.000000pt;}
.y2c_c00001{bottom:236.778667pt;}
.y2b_c00001{bottom:251.389333pt;}
.ya5_c00001{bottom:267.228000pt;}
.y96_c00001{bottom:272.225333pt;}
.y2a_c00001{bottom:272.670667pt;}
.ybd_c00001{bottom:278.518667pt;}
.ya4_c00001{bottom:281.840000pt;}
.y29_c00001{bottom:287.282667pt;}
.y95_c00001{bottom:288.166667pt;}
.ybc_c00001{bottom:293.130667pt;}
.y52_c00001{bottom:299.108000pt;}
.ya3_c00001{bottom:303.121333pt;}
.y94_c00001{bottom:304.106667pt;}
.ybb_c00001{bottom:307.742667pt;}
.y28_c00001{bottom:308.564000pt;}
.y51_c00001{bottom:313.720000pt;}
.ya2_c00001{bottom:317.732000pt;}
.y93_c00001{bottom:320.046667pt;}
.y27_c00001{bottom:323.176000pt;}
.yba_c00001{bottom:329.024000pt;}
.y61_c00001{bottom:329.660000pt;}
.y50_c00001{bottom:335.001333pt;}
.y92_c00001{bottom:335.986667pt;}
.ya1_c00001{bottom:339.013333pt;}
.yb9_c00001{bottom:343.636000pt;}
.y60_c00001{bottom:344.272000pt;}
.y26_c00001{bottom:344.457333pt;}
.y4f_c00001{bottom:349.613333pt;}
.y91_c00001{bottom:351.926667pt;}
.ya0_c00001{bottom:353.625333pt;}
.yb8_c00001{bottom:358.246667pt;}
.y25_c00001{bottom:359.069333pt;}
.y5f_c00001{bottom:365.553333pt;}
.y90_c00001{bottom:367.868000pt;}
.y4e_c00001{bottom:370.894667pt;}
.y9f_c00001{bottom:374.906667pt;}
.yb7_c00001{bottom:379.528000pt;}
.y5e_c00001{bottom:380.165333pt;}
.y24_c00001{bottom:380.350667pt;}
.y8f_c00001{bottom:383.808000pt;}
.y4d_c00001{bottom:385.506667pt;}
.y9e_c00001{bottom:389.518667pt;}
.yb6_c00001{bottom:394.140000pt;}
.y23_c00001{bottom:394.962667pt;}
.y8e_c00001{bottom:399.748000pt;}
.y5d_c00001{bottom:401.446667pt;}
.y4c_c00001{bottom:406.788000pt;}
.yb5_c00001{bottom:408.752000pt;}
.y9d_c00001{bottom:410.800000pt;}
.y8d_c00001{bottom:415.688000pt;}
.y5c_c00001{bottom:416.058667pt;}
.y22_c00001{bottom:416.244000pt;}
.y4b_c00001{bottom:421.398667pt;}
.y9c_c00001{bottom:425.412000pt;}
.yb4_c00001{bottom:430.033333pt;}
.y21_c00001{bottom:430.856000pt;}
.y8c_c00001{bottom:431.628000pt;}
.y5b_c00001{bottom:437.340000pt;}
.y4a_c00001{bottom:442.680000pt;}
.yb3_c00001{bottom:444.645333pt;}
.y9b_c00001{bottom:446.693333pt;}
.y8b_c00001{bottom:447.568000pt;}
.y5a_c00001{bottom:451.950667pt;}
.y20_c00001{bottom:452.137333pt;}
.yd6_c00001{bottom:454.428000pt;}
.y49_c00001{bottom:457.292000pt;}
.yb2_c00001{bottom:459.257333pt;}
.y9a_c00001{bottom:461.305333pt;}
.y8a_c00001{bottom:463.509333pt;}
.y1f_c00001{bottom:466.748000pt;}
.yd5_c00001{bottom:469.040000pt;}
.y59_c00001{bottom:473.232000pt;}
.y48_c00001{bottom:478.573333pt;}
.y89_c00001{bottom:479.449333pt;}
.yb1_c00001{bottom:480.538667pt;}
.y99_c00001{bottom:482.586667pt;}
.yd4_c00001{bottom:483.650667pt;}
.y58_c00001{bottom:487.844000pt;}
.y1e_c00001{bottom:488.029333pt;}
.y47_c00001{bottom:493.185333pt;}
.yb0_c00001{bottom:495.150667pt;}
.y88_c00001{bottom:495.389333pt;}
.y98_c00001{bottom:497.198667pt;}
.yd3_c00001{bottom:498.262667pt;}
.y57_c00001{bottom:509.125333pt;}
.yaf_c00001{bottom:509.762667pt;}
.y87_c00001{bottom:511.329333pt;}
.y46_c00001{bottom:514.466667pt;}
.y97_c00001{bottom:518.480000pt;}
.yd2_c00001{bottom:519.544000pt;}
.y56_c00001{bottom:523.737333pt;}
.y86_c00001{bottom:527.269333pt;}
.y45_c00001{bottom:529.078667pt;}
.yae_c00001{bottom:531.044000pt;}
.yd1_c00001{bottom:534.156000pt;}
.y85_c00001{bottom:543.209333pt;}
.y55_c00001{bottom:545.018667pt;}
.yad_c00001{bottom:545.656000pt;}
.yd0_c00001{bottom:548.768000pt;}
.y44_c00001{bottom:550.360000pt;}
.y75_c00001{bottom:556.710667pt;}
.y84_c00001{bottom:559.150667pt;}
.y54_c00001{bottom:559.630667pt;}
.yac_c00001{bottom:560.266667pt;}
.ycf_c00001{bottom:563.380000pt;}
.y74_c00001{bottom:571.322667pt;}
.y83_c00001{bottom:575.090667pt;}
.y53_c00001{bottom:580.912000pt;}
.yab_c00001{bottom:581.548000pt;}
.yce_c00001{bottom:584.661333pt;}
.y82_c00001{bottom:591.030667pt;}
.y73_c00001{bottom:592.604000pt;}
.yaa_c00001{bottom:596.160000pt;}
.ycd_c00001{bottom:599.273333pt;}
.ya7_c00001{bottom:602.250667pt;}
.y81_c00001{bottom:606.970667pt;}
.y72_c00001{bottom:607.216000pt;}
.ya9_c00001{bottom:610.772000pt;}
.ycc_c00001{bottom:613.885333pt;}
.ya6_c00001{bottom:618.190667pt;}
.y80_c00001{bottom:622.910667pt;}
.y71_c00001{bottom:628.497333pt;}
.ya8_c00001{bottom:632.053333pt;}
.y78_c00001{bottom:634.130667pt;}
.y7f_c00001{bottom:638.850667pt;}
.y70_c00001{bottom:643.109333pt;}
.ycb_c00001{bottom:649.778667pt;}
.y77_c00001{bottom:650.070667pt;}
.y7e_c00001{bottom:654.792000pt;}
.y6f_c00001{bottom:664.389333pt;}
.y76_c00001{bottom:666.010667pt;}
.y7d_c00001{bottom:670.732000pt;}
.y6e_c00001{bottom:679.001333pt;}
.y66_c00001{bottom:681.952000pt;}
.y7c_c00001{bottom:686.672000pt;}
.yca_c00001{bottom:693.613333pt;}
.y65_c00001{bottom:697.892000pt;}
.y1d_c00001{bottom:698.606667pt;}
.y6d_c00001{bottom:700.282667pt;}
.y7b_c00001{bottom:709.281333pt;}
.y64_c00001{bottom:713.832000pt;}
.y1c_c00001{bottom:714.548000pt;}
.y6c_c00001{bottom:714.894667pt;}
.y7a_c00001{bottom:725.221333pt;}
.yc9_c00001{bottom:729.506667pt;}
.y63_c00001{bottom:729.772000pt;}
.y1b_c00001{bottom:730.488000pt;}
.y6b_c00001{bottom:736.176000pt;}
.yc8_c00001{bottom:744.118667pt;}
.y62_c00001{bottom:745.712000pt;}
.y1a_c00001{bottom:746.428000pt;}
.y6a_c00001{bottom:750.788000pt;}
.y79_c00001{bottom:754.157333pt;}
.yc7_c00001{bottom:758.730667pt;}
.y43_c00001{bottom:761.652000pt;}
.y19_c00001{bottom:762.368000pt;}
.y69_c00001{bottom:772.069333pt;}
.y42_c00001{bottom:777.593333pt;}
.y18_c00001{bottom:778.308000pt;}
.yc6_c00001{bottom:780.012000pt;}
.y68_c00001{bottom:786.681333pt;}
.y37_c00001{bottom:791.016000pt;}
.yd_c00001{bottom:791.732000pt;}
.y41_c00001{bottom:793.533333pt;}
.y17_c00001{bottom:794.248000pt;}
.yc5_c00001{bottom:794.624000pt;}
.y36_c00001{bottom:806.956000pt;}
.yc_c00001{bottom:807.672000pt;}
.y67_c00001{bottom:807.962667pt;}
.yc4_c00001{bottom:809.236000pt;}
.y40_c00001{bottom:809.473333pt;}
.y16_c00001{bottom:810.189333pt;}
.y35_c00001{bottom:822.896000pt;}
.yb_c00001{bottom:823.612000pt;}
.yc3_c00001{bottom:823.848000pt;}
.y3f_c00001{bottom:825.413333pt;}
.y15_c00001{bottom:826.129333pt;}
.y34_c00001{bottom:838.836000pt;}
.ya_c00001{bottom:839.552000pt;}
.y3e_c00001{bottom:841.353333pt;}
.y14_c00001{bottom:842.069333pt;}
.yc2_c00001{bottom:845.128000pt;}
.y33_c00001{bottom:854.777333pt;}
.y9_c00001{bottom:855.492000pt;}
.y3d_c00001{bottom:857.293333pt;}
.y13_c00001{bottom:858.009333pt;}
.yc1_c00001{bottom:859.740000pt;}
.y32_c00001{bottom:870.717333pt;}
.y8_c00001{bottom:871.432000pt;}
.y3c_c00001{bottom:873.234667pt;}
.y12_c00001{bottom:873.949333pt;}
.yc0_c00001{bottom:874.352000pt;}
.y31_c00001{bottom:886.657333pt;}
.y7_c00001{bottom:887.373333pt;}
.ybf_c00001{bottom:888.964000pt;}
.y3b_c00001{bottom:889.174667pt;}
.y11_c00001{bottom:889.889333pt;}
.y30_c00001{bottom:909.266667pt;}
.y6_c00001{bottom:909.982667pt;}
.ybe_c00001{bottom:910.245333pt;}
.y3a_c00001{bottom:911.784000pt;}
.y10_c00001{bottom:912.500000pt;}
.y2f_c00001{bottom:925.206667pt;}
.y2e_c00001{bottom:925.273333pt;}
.y5_c00001{bottom:925.922667pt;}
.y4_c00001{bottom:925.989333pt;}
.y39_c00001{bottom:927.724000pt;}
.y38_c00001{bottom:927.790667pt;}
.yf_c00001{bottom:928.440000pt;}
.ye_c00001{bottom:928.506667pt;}
.y2d_c00001{bottom:954.142667pt;}
.y3_c00001{bottom:954.858667pt;}
.y2_c00001{bottom:986.024000pt;}
.y1_c00001{bottom:1037.297333pt;}
.h5_c00001{height:35.100467pt;}
.h1_c00001{height:39.000258pt;}
.h4_c00001{height:39.266925pt;}
.h2_c00001{height:39.850400pt;}
.h3_c00001{height:40.490400pt;}
.h6_c00001{height:47.820800pt;}
.h0_c00001{height:1056.000000pt;}
.w0_c00001{width:816.000000pt;}
.x0_c00001{left:0.000000pt;}
.x2_c00001{left:56.693333pt;}
.x5_c00001{left:65.400000pt;}
.xa_c00001{left:84.588000pt;}
.x14_c00001{left:161.113333pt;}
.xb_c00001{left:173.585333pt;}
.x3_c00001{left:202.465333pt;}
.x15_c00001{left:207.340000pt;}
.x4_c00001{left:274.408000pt;}
.x16_c00001{left:311.801333pt;}
.x18_c00001{left:325.470667pt;}
.x6_c00001{left:332.112000pt;}
.x1a_c00001{left:338.754667pt;}
.x10_c00001{left:345.396000pt;}
.xc_c00001{left:352.037333pt;}
.x1c_c00001{left:358.680000pt;}
.xe_c00001{left:365.321333pt;}
.x1e_c00001{left:385.246667pt;}
.x13_c00001{left:391.888000pt;}
.x7_c00001{left:414.641333pt;}
.x8_c00001{left:423.349333pt;}
.x1_c00001{left:545.429333pt;}
.x12_c00001{left:640.141333pt;}
.x17_c00001{left:647.221333pt;}
.x19_c00001{left:660.890667pt;}
.x9_c00001{left:667.533333pt;}
.x1b_c00001{left:674.174667pt;}
.x11_c00001{left:680.816000pt;}
.xd_c00001{left:687.458667pt;}
.x1d_c00001{left:694.100000pt;}
.xf_c00001{left:700.741333pt;}
.x1f_c00001{left:720.666667pt;}
}




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