Home » Football » AD Ceuta FC (Spain)

AD Ceuta FC: La Liga 2 Team Profile & Stats

Overview of AD Ceuta FC

AD Ceuta FC is a football club based in Ceuta, a Spanish autonomous city located on the north coast of Africa. The team competes in the Segunda División RFEF, which is the fourth tier of Spanish football. Known for their resilient playing style, AD Ceuta FC was founded in 1924 and is currently managed by a dedicated coaching staff.

Team History and Achievements

AD Ceuta FC has a rich history marked by several notable achievements. The club has experienced promotions to higher divisions and has consistently been a competitive force in the Segunda División B. While they have yet to secure major titles, their journey through various seasons showcases resilience and determination.

Current Squad and Key Players

The current squad boasts talented players who play crucial roles across different positions. Key players include:

  • Goalkeeper: A reliable last line of defense with impressive save statistics.
  • Defenders: Solid backline known for their tactical awareness and defensive skills.
  • Midfielders: Dynamic midfielders who control the tempo of the game.
  • Forwards: Strikers with a knack for finding the back of the net, crucial for securing victories.

Team Playing Style and Tactics

AD Ceuta FC typically employs a balanced formation that emphasizes both defense and attack. Their strategy often revolves around quick transitions from defense to offense, leveraging counter-attacks as a key strength. However, they can be vulnerable against teams with strong midfield control.

Interesting Facts and Unique Traits

The team is affectionately known as “Los Almirantes,” reflecting their unique position on the Mediterranean coast. They have a passionate fanbase that supports them through thick and thin. Rivalries with neighboring clubs add an extra layer of excitement to their matches.

List & Rankings of Players, Stats, or Performance Metrics

  • TOP SCORER: ✅ Leading goal scorer this season.
  • TACTICAL ASTONISHMENTS: 💡 Key plays that turned games around.
  • SERIES WINNERS: 🎰 Recent winning streaks that boosted morale.

Comparisons with Other Teams in the League or Division

In comparison to other teams in their division, AD Ceuta FC stands out due to their strategic flexibility and ability to adapt during matches. While some rivals may boast stronger individual talents, AD Ceuta’s cohesive team play often gives them an edge in crucial moments.

Case Studies or Notable Matches

A memorable match for AD Ceuta FC was their unexpected victory against a top-tier opponent last season. This breakthrough game showcased their tactical prowess and solidified their reputation as dark horses capable of surprising results.

Statistic Last Season This Season (to date)
Total Goals Scored 45 20
Total Goals Conceded 38 15

Tips & Recommendations for Analyzing the Team or Betting Insights

  • Analyze recent form trends to gauge momentum before placing bets.

Betting Analysis Expert Opinion: Quote Block

“AD Ceuta FC’s ability to perform under pressure makes them an intriguing option for bettors looking for value.” – Sports Analyst Jane Doe

The Pros & Cons of AD Ceuta FC’s Current Form or Performance (✅❌ Lists)

  • ✅ Strong defensive record this season.

Frequently Asked Questions (FAQ) About Betting on AD Ceuta FC at Betwhale!

What are AD Ceuta FC’s strengths?

Their solid defense and ability to capitalize on counter-attacks make them formidable opponents.

How does AD Ceuta FC perform against top teams?

Their performance varies but they have had notable victories against stronger opponents recently.

[0]: #!/usr/bin/env python

[1]: “””
[2]: Module docstring.
[3]: “””

[4]: import os
[5]: import re
[6]: import sys
[7]: import subprocess
[8]: import json

[9]: from .logutil import get_logger

[10]: logger = get_logger(__name__)

[11]: # regex pattern used when parsing lines from stdout/stderr from running ‘git status’
[12]: GIT_STATUS_PATTERN = re.compile(r’^s*(.)s+(.+)$’)

[13]: class Git(object):
[14]: “””Git class.”””

[15]: def __init__(self):
[16]: “””Init method.”””
[17]: self._cmd = [‘git’]

[18]: def _run(self, args=[], cwd=None):

[19]: logger.debug(‘Running command “%s”.’ % (‘ ‘.join(self._cmd + args)))

[20]: p = subprocess.Popen(self._cmd + args,
[21]: stdout=subprocess.PIPE,
[22]: stderr=subprocess.PIPE,
[23]: cwd=cwd)

[24]: stdoutdata = ”

if not p.returncode == None:

if not p.returncode == None:

stdoutdata += str(p.returncode) + ‘n’

stderrdata = p.stderr.read()

if len(stderrdata) >0:

raise RuntimeError(stderrdata)

stdoutdata += p.stdout.read()

return (stdoutdata,p.returncode)

def pull(self,cwd=None):

return self._run([‘pull’],cwd=cwd)

def push(self,cwd=None):

return self._run([‘push’],cwd=cwd)

def status(self,cwd=None):

return self._run([‘status –short –branch –porcelain’],cwd=cwd)

def add_all(self,cwd=None):

return self._run([‘add -A’],cwd=cwd)

def commit(self,msg,cwd=None):

return self._run([‘commit -m “%s”‘ % msg],cwd=cwd)

def checkout_branch_or_create_it_if_not_exists(self,bname,cwd=None):

bname = bname.strip()

branch_exists=False

branches=self.get_branches(cwd=cwd)

branch_exists=bname in branches

if branch_exists:

logger.info(‘Branch “%s” already exists.’ % bname)

self.checkout(bname,cwd=cwd)

else:

logger.info(‘Branch “%s” does not exist yet.’ % bname)

self.checkout(‘-b’,bname,cwd=cwd)

def get_branches(self,cwd=None):

branches=[]

data,self.rc=self.status(cwd=cwd).split(‘n’)

if not data==None:

lines=data.split(‘n’)

if len(lines)>0:

line=lines[-1]

match=GIT_STATUS_PATTERN.match(line.strip())

if match!=None:

branch_name=match.group(2).strip().replace(‘->’,”).strip()

branches.append(branch_name.strip())

else:

branches.append(‘master’)

else:

branches.append(‘master’)

def checkout(self,bname_or_indexnum,cwd=None):

bname_or_indexnum=bname_or_indexnum.strip()

indexnum_pattern=re.compile(r’^d+$’)

match=indexnum_pattern.match(bname_or_indexnum)

indexnum=int(bname_or_indexnum) if match!=None else None

try:

indexnum=int(bname_or_indexnum)

commit_id=self.get_commit_id(indexnum-1,cwd=cwd).strip()

result=self._run([‘checkout’,commit_id],cwd=cwd)[1]

tehrani/robomakercli<|file_sep

Robotics Middleware Standards — ROS Industrial Automation Documentation – Robot Operating System (ROS) Version Indigo Igloo Release documentation

/* fix anchor */
body {
overflow-x: hidden;
}
/* post-process anchor */
div#sidebar h1,
div#sidebar h2,
div#sidebar h3,
div#sidebar h4,
div#sidebar h5,
div#sidebar h6 {
padding-left: 20px;
margin-top: 10px;
margin-bottom: 10px;
}

/* fix heading anchor */
body.toc-hidden div.section > h1:first-child:before,
body.toc-hidden div.section > h2:first-child:before,
body.toc-hidden div.section > h3:first-child:before,
body.toc-hidden div.section > h4:first-child:before,
body.toc-hidden div.section > h5:first-child:before {
display: none !important;
}
/* fix heading anchor */
div.section > h1:before,
div.section > h2:before,
div.section > h3:before,
div.section > h4:before,
div.section > h5:before {
content: none;
}

@media print {
body.toc-hidden div.section {
page-break-inside: avoid;
}
}

@media print {
.bodywrapper {
width: auto;
margin-left: auto;
margin-right: auto;
}
div#sidebar {
border-bottom-left-radius: unset !important;
border-bottom-right-radius: unset !important;
}
div#content {
border-top-left-radius: unset !important;
border-top-right-radius: unset !important;
}
div.documentwrapper header.bodyheader nav.admonition-wrapper ul li ul li.admonition ul li.admonition ol li ol li ol li ul li.admonition ul li.admonition ol li ol li ol li ul li.admonition ul li.admonition ol li ol li ol li ul li.admonition ul{
page-break-before:auto
}
div.documentwrapper header.bodyheader nav.admonition-wrapper ul li ul li.admonition ul{
page-break-before:auto
}
div.documentwrapper header.bodyheader nav.admonition-wrapper ul{
page-break-before:auto
}
div.documentwrapper header.bodyheader nav{
page-break-before:auto
}
div.documentwrapper header.bodyheader{
page-break-before:auto
}

}

/* change table width */
table.docutils th.field-name,.wy-table th.field-name,.wy-table td.field-body,.docutils .field-list th.field-name,.docutils .field-list td.field-body,.wy-table th.firstcolumn,.docutils .firstcolumn{
width:auto!important;

}

table.docutils table.table-bordered td,.wy-table table.table-bordered td{
border:none!important;

}

table.docutils table.table-bordered td.firstcolumn,.wy-table table.table-bordered td.firstcolumn{
border-left:none!important;

}

table.docutils table.table-bordered tr:last-child td,.wy-table table.table-bordered tr:last-child td{
border-bottom:none!important;

}

table.docutils table.table-bordered tr td:first-child,.wy-table table.table-bordered tr td:first-child{
border-left:none!important;

}

/* change doc info text color */
footer.footer p.docinfo-separator::before{color:#333;}
footer.footer p.copyright{color:#333;}

a.reference.internal::after {content:”[” attr(href);color:#777;}

a.reference.internal[href^=”#”]::after {content:””]”;color:#777;}

a.reference.internal[href^=”#”] {font-weight:bold;}

a.reference.external::after {content:”[” attr(href);color:#777;}

a.reference.external[href^=”#”]::after {content:”[” attr(href);color:#777;}

a.reference.external[href^=”#”] {font-weight:bold;}

/* change link color */
a{color:#005A9C;}
a:hover,a:focus{color:#003B72;}
blockquote footer{border-color:#005A9C;}
.headerlink{color:#005A9C;}
.tocbacklinks{font-size:.8em;color:#005A9C;}
.topless .top-link{background-color:#005A9C;color:white;}
.topless .top-link:hover{background-color:#003B72;color:white;}

/* change admonitions border color */

.admonition.warning>.admonition-title{border-color:silver;background-color:silver;}
.admonition.note>.admonition-title{border-color:silver;background-color:silver;}
.admonition.caution>.admonition-title{border-color:silver;background-color:silver;}
.admonition.attention>.admonition-title{border-color:silver;background-color:silver;}

/* change sidebar navigation link color */

nav.sidebar-nav span.nav-section{text-shadow:none;filter:none;-webkit-filter:none;opacity:.7;color:black;font-weight:normal;text-transform:none;font-size:.8em;line-height:normal;margin-right:.5em;padding:.25em;border-radius:.25em;border-style:solid;border-width:.0625em;border-color:white;background-image:none;background-position:center center;background-repeat:no-repeat;background-size:auto;background-origin:border-box;-webkit-background-origin:border-box;-moz-background-origin:border-box;-o-background-origin:border-box;-ms-background-origin:border-box;padding-left:.75em;padding-right:.75em;padding-bottom:.375em;margin-top:-.125em;margin-bottom:-.125em;display:inline-block;}nav.sidebar-nav span.nav-section.active{text-shadow:none;filter:none;-webkit-filter:none;opacity:.7;color:black;font-weight:normal;text-transform:none;font-size:.8em;line-height:normal;margin-right:.5em;padding:.25em;border-radius:.25em;border-style:solid;border-width:.0625em;border-color:white;background-image:url(../_static/img/active-sidebar.png);background-position:center center;background-repeat:no-repeat;background-size:auto;background-origin:border-box;-webkit-background-origin:border-box;-moz-background-origin:border-box;-o-background-origin:border-box;-ms-background-origin:border-box;padding-left:.75em;padding-right:.75em;padding-bottom:.375em;margin-top:-.125em;margin-bottom:-.125em;display:inline-block;}nav.sidebar-nav span.nav-section:hover{text-shadow:none;filter:none;-webkit-filter:none;opacity:.7;color:black;font-weight:normal;text-transform:none;font-size:.8em;line-height:normal;margin-right:.5em;padding:.25em;border-radius:.25em;border-style:solid;border-width:.0625el;border-color:white;background-image:url(../_static/img/hover-sidebar.png);background-position:center center;background-repeat:no-repeat;background-size:auto;background-origin:border-box;-webkit-background-origin:border-box;-moz-background-origin:border-box;-o-background-origin:border-box;-ms-background-origin:border-box;padding-left:.75rem;padding-right::.75rem;padding-bottom::.375rem;margin-top:-.125rem;margin-bottom:-.125rem;display:inline-block;}nav.sidebar-nav span.nav-subsection{text-shadow:none;filter:none;-webkit-filter:none;opacity;.7;color:black;font-weight:normal;text-transform:normal;font-size;.8rem;line-height:normal;margin-right;.5rem;padding;.25rem;border-radius;.25rem;border-style:solid;border-width;.0625rem;border-color:white;background-image:url(../_static/img/subsection-sidebar.png);background-position:center center;background-repeat:no-repeat;background-size:auto background-origin:border-box ;-webkit-backgroundorigin:border-box ;-moz-backgroungorigin:bordor-box ;-o-backgroungorigin:bordorbox ;-ms-backgroungorigin:bordorbox ;padding-left::.75rem ;padding-right::.75rem ;padding-botton::.375re;margintop:-.125re;margintobt-.125re;display:inline-block;}nav.sidebar-nav span.nav-subsection.active{text-shadow:nones filter:nones -wekit-filte:nones opacity-.7 color-black font-weigt-normal text-transfornormal font-sie-.8re line-heigh-normal margin-rignt-.5re padding-.25re border-radus-.25re border-styl-solid bordr-width-.062ere bordr-colr-white background-imge-url(../ststic/img/active-subsection-sidebar.png ) background-posiiton-center-center background-repeat-no-repeate background-sie-auto backgroung-orign-border-bosx -wekit-backgroung-orign-border-bosx -moz-backgronug-orign-border-bosx-o-backgronug-orign-border-bosx-ms-backgronug-orign-border-bosx padding-lefft-.75re padding-righ-t-.75re padding-bottonm-.375re margintop-.-125re margibottom-.-125re display-inne-blcok;}nav.sidebar-nav span.nav-subsection:hover{text-shadoe-none filter-none -wekit-filter-none opacity-07 color-black font-weght-normal text-transfrom-normal font-sie-08 re line-hieght-normal margin-rignt-05 rem paddin-025 rem bord-radu-025 rem bord-styl-solid bord-widt-h-00625 rem bord-colo-white backgroun-imge-url(../sttic/img/hover-subsection-sidebar.png ) backgroun-posiiton-cente-center backgroun-repeatt-no-repeate backgroun-sie-auto bgcakground-orign-border-bosx -webikt-bgacground-orign-border-boxsx moz-bgacground-orign-border-boxsx o-bgacground-orign-border-boxsx ms-bgacground-orign-border-boxsx padding-lefft–075 re mpadding-righ-t–075 re mpadding-bottonm–375 re margintop–025 re margibottom–025 re disply-inne-blcok;}nav.sidebar-nav span.current-page-line {display:block;height:4px;width:auto;left:-10%;position:absolute;top:48%;}

/* change sidebar navigation link active state */

body.toctree-only nav.sidebar-nav span.nav-section.active svg.icon.icon-home,#searchbox input[type=text]{display:block;width:auto;height:auto;left:-10%;position:absolute;top:-50%;}body.toctree-only nav.sidebar-nav span.nav-section.active svg.icon.icon-home path,#searchbox input[type=text]{fill:red;}nav.sidebar-nav span.current-page-line {display:block;height:4px;width:auto;left:-10%;position:absolute;top:-50%;}nav.sidebar-nav span.current-page-line path {fill:red;}

@media screen and (-webkit-min-device-pixel-ratio :0){
body.toctree-only nav.sidebar-nav span.nav-section.active svg.icon.icon-home,#searchbox input[type=text]{display:block;width:auto;height:auto;left:-10%;position:absolute;top:-50%;}
body.toctree-only nav.sidebar-nav span.nav-section.active svg.icon.icon-home path,#searchbox input[type=text]{fill:red;}
}

/*change search box*/
#searchbox input[type=text]::-ms-clear {display :none;width :0;height :0;}

@media screen and (-ms-high-contrast : active), (-ms-high-contrast : none){
input::-ms-clear {
display :none ;
width :0 ;
height :0 ;
}
#searchbox input[type=text]::-ms-clear {
display :none ;
width :0 ;
height :0 ;
}
}

@media screen and (-webkit-min-device-pixel-ratio :0){
body.toctree-only nav.sidebar-nav span.nav-section.active svg.icon.icon-home,#searchbox input[type=search]{display:block;width:auto;height:auto;left:-10%;position:absolute;top:-50%;}
body.toctree-only nav.sidebar-nav span.nav-section.active svg.icon.icon-home path,#searchbox input[type=search]{fill:red;}
}

html,body,hgroup,body.footer,p,h1,h2,h3,h4,h5,h6,a,img,img.headerlogo,img.logo img.figure img.img-rounded img.img-circle img.img-thumbnail,input.btn,input.btn-default,input.btn-primary,input.btn-success,input.btn-info,input.btn-warning,input.btn-danger,input.form-control-file,label.col-form-label.col-form-label-lg,label.col-form-label.col-form-label-sm,a.list-group-item.list-group-item-action,a.list-group-item.list-group-item-action.active,a.list-group-item.list-group-item-action.disabled,a.list-group-item.list-group-item-action:hover,a.dropdown-item.dropdown-header.a.badge.badge-primary.a.badge-secondary.a.badge-success.a.badge-danger.a.badge-warning.a.badge-info.a.badge-light.a.badge-dark,a.dropdown-toggle.bs-placeholder,a.dropdown-toggle.bs-placeholder:focus,a.dropdown-toggle.bs-placeholder:hover,a.bs-placeholder-dropdown.open>a.bs-placeholder-dropdown-toggle.bs-placeholder,:not(pre)>code[class*=language-],pre[class*=language-],kbd,kbd pre,strong,strong em,strong i,strong sup,strong sub,strong u,strong s,strong mark,sup,sup em,sup i,sup sup,sup sub,sup mark,b,u,i,samp,samp code,kbd code,kbd samp code pre code samp pre samp blockquote dl dd dt dt code code tt address article aside audio canvas details figcaption figure footer header mark menu meter nav progress section time video video audio source track wbr small small.text-muted small.text-monospace small.text-lowercase small.text-uppercase small.text-capitalize small.text-wrap small.text-truncate small.d-inline-block.small.d-sm-inline.small.d-md-inline-block.small.d-lg-inline-block.small.d-xl-inline-block.small.d-print-inline.small.d-none.small.d-sm-none.small.d-md-none.small.d-lg-none.small.d-xl-none.small.float-start.small.float-end.small.float-sm-start.small.float-sm-end.small.float-md-start.small.float-md-end.small.float-lg-start.smalld.float-lg-end.smalld.float-xl-start.smalld.float-xl-end.label.label-primary.label-secondary.label-success.label-danger.label-warning.label-info.label-light.label-dark.card-img-overlay.card-img-top.card-img-bottom.card-deck-wrapper.card-columns.card-deck.card-flip-horizontal.card-flip-vertical.collapsed.show.alert.alert-primary.alert-secondary.alert-success.alert-danger.alert-warning.alert-info.alert-light.alert-dark.alert-dismissible.fade.show.modal.fade.in.modal-dialog.modal-dialog-centered.modal-dialog-scrollable.modal.fade.in.modal-dialog.modal-sm.modal-lg.modal-xl.modal-fullscreen.modal-fullscreen-sm-up.border.border-primary.border-secondary.border-success.border-danger.border-warning.border-info.border-light.border-dark.bg-primary.bg-secondary.bg-success.bg-danger.bg-warning.bg-info.bg-light.bg-dark.bg-gradient-primary.bg-gradient-secondary.bg-gradient-success.bg-gradient-danger.bg-gradient-warning.bg-gradient-info.bg-gradient-light.bg-gradient-dark.visually-hidden.visually-hidden-focus.visually-hidden-focus.focus.focus:not(:focus-visible):not(:focus):not(.focus-visible):not(.focus-visible),abbr[data-original-title][title],abbr[data-original-title][title].tooltip.top.tooltip.left.tooltip.right.tooltip.bottom.tooltip-auto.tooltip-auto[x-placement^=top][title],abbr[data-original-title][title].tooltip.top.tooltip.left.tooltip.right.tooltip.bottom.tooltip-auto.tooltip-auto[x-placement^=right][title],abbr[data-original-title][title].tooltip.top.tooltip.left.tooltip.right.tooltip.bottom.tooltip-auto.tooltip-auto[x-placement^=bottom][title],abbr[data-original-title][title].tooltip.top.tooltip.left.tooltip.right.tooltip.bottom.tooltip-auto[x-placement^=left][title],img.img-fluid.img-thumbnail.img-fluid.rounded.img-circle,img.thumbnail.rounded-circle,[class*=-fluid].col-[class*=-fluid]-auto,[class*=-fluid]-auto,[class*=-fluid]-order-first,[class*=-fluid]-order-last,[class*=-fluid]-order-[class*=-fluid],[class*=-fluid]-offset-[class*=-fluid],[class*=-fluid]-align-self-[class*=-fluid],[class*=-fluid]-align-content-[class*=-float],[class*=col].col-[class*=col]-auto,[class*=col].col-order-first,[class*=col].col-order-last,[class*=col].col-order-[class*=col],[class*=col].col-offset-[classe*=clloffset],[classe*[claass]=align-self-classe*[claass]],[classe*[claass]=align-content-classe*[claass]],[classe*[claass]=flex-grow-classe*[claass]],[classe*[claass]=flex-shrink-classe*[claass]],[classe*[claass]=flex-fill-classe*[claass] ,label.radio-inline,label.checkbox-inline,label.radio,label.checkbox label.custom-control-input.custom-control-input-radio.custom-control-input-checkbox.custom-file-input.custom-range.custom-select.form-check-input.form-check-input-radio.form-check-input-checkbox.input-range.select.select[multiple=multiple],select[multiple=multiple] option[value=value selected=true disabled=true selected=false disabled=false readonly=true readonly=false required=true required=false autofocus=true autofocus=false form=form[name=name action=url target=target placeholder=placeholder size=size min=min max=max list=list multiple=multiple autocomplete=autocomplete autocorrect=autocorrect autocapitalize=autocapitalize spellcheck=spellcheck formcontrolformcontrolinputformcontrolselectformcontrolliststeplistsizevaluevalueselectedtruevaluefalsevaluedisabledtruevaluedisabledfalsereadonlytruereadonlyfalserequiredtruerequiredfalseautofocustrueautofocusfalseformformactionurltargettargetplaceholderplaceholderminminmaxmaxlistlistmultiplemultipleautocompleteautocompleteautocorrectautocorrectautocapitalizeautocapitalizespellcheckspellcheckformcontrolformcontrolinputformcontrolselectformcontrolliststeplistsizevaluevalueselectedtruevaluefalsevaluedisabledtruevaluedisabledfalsereadonlytruereadonlyfalserequiredtruerequiredfallearrowearrowfarrightarrowleftarrowforwardsforwarrightscrollscrollpreviousprevioustruepreviousfallesenablesenablenextnextarrownextrightarrowleftarrowforwardforwardbackbackwardbackarrowenablesenabledisabledisableddisableddisableddisableddisabledbtn btn-default btn-primary btn-success btn-info btn-warning btn-danger form-control-file col-form-label col-form-label-lg col-form-label-sm list-group-item list-group-item-action list-group-item-action active list-group-item-action disabled list-group-item-action hover dropdown-item dropdown-header badge badge-primary badge-secondary badge-success badge-danger badge-warning badge-info badge-light badge-dark dropdown-toggle bs-placeholder bs-placeholder:focus bs-placeholder:hover bs-placeholdertoggle open toggle dropdown-open show collapse collapse show collapse show modal fade in modal-dialog modal-dialog-centered modal-dialog-scrollable fade in modal-dialog modal-sm modal-lg modal-xl modal-fullscreen modal-fullscreen-sm-up border border-primary border-secondary border-success border-danger border-warning border-info border-light border-dark bg-primary bg-secondary bg-success bg-danger bg-warning bg-info bg-light bg-dark bg-gradient-primary bg-gradient-secondary bg-gradient-success bg-gradient-danger bg-gradient-warning bg-gradient-info bg-gradient-light bg-gradient-dark visuallyhidden visuallyhidden-focus visuallyhidden-focus focus focus:not(:focus-visible):not(:focus):not(.focus-visible):not(.focus-visible),abbr[data-original-title][title],abbr[data-original-title][title].tooltip.top tooltip.left tooltip.right tooltip.bottom tooltip.auto tooltip.auto[x-placement=top][title],abbr[data-original-title][title].tooltip.top tooltip.left tooltip.right tooltip.bottom tooltip.auto[x-placement[right]][title],abbr[data-original-title][titltooltip.top tooltip.left tooltip.right tooltip.bottom tooltip.auto[x-placetitle bottom]][titltooltip.top tooltip.left tooltip.right tiootooltip.auto[x-placetitle left]][titl ,img.img-fluid.img-thumbnail.img-fluid.rounded.img-circle thumbnail rounded-circle [classs*-fluiid classs*-fluiid-autocllass*-fluiid-order-first classs*-fluiid-order-last classs*-fluiid-order-classss*-fluiid classs*-fluiid-offset-classss*-classss align-self-classss align-content-classssf-flex-grow-classssf-flex-shrink-classssf-flex-fill-classsscsc clsscsc clsscsc clsscsc scsc scsc scsc clssc scsc scsc scssc clssc clssc clssc scscssccol class-col-class-col-autocol-class-col-order-first col-class-col-order-last col-class-col-order-coll col-offset-coll align-self-coll align-content-coll flex-grow-coll flex-shrink-coll flex-fill-coll label radio inline label checkbox inline label radio label checkbox custom-control-input custom-control-input-radio custom-control-input-checkbox custom-file-input custom-range custom-select form-check-input form-check-input-radio form-check-input-checkbox input-range select select[multiple=multiple] option[value=value selected=true disabled=true selected=false disabled=false readonly=true readonly=false required=true required=false autofocus=true autofocus=false form=form[name=name action=url target=target placeholder=placeholder size=size min=min max=max list=list multiple=multiple autocomplete=autocomplete autocorrect=autocorrect autocapitalize=autocapitalize spellcheck=splspellcheck formcontrolformcontrolinputformcontrolselectformcontrolliststeplistsizevaluevalueselectedtruevaluefalsevaluedisabledtruevaluedisabledfalsereadonlytruereadonlyfalrequirementturearowearrowfarrightarrowleftarrowforwardsforwarrightscrollscrollpreviousprevioustruepreviousfallesenablesenablenextnextarrownextrightarrowleftarrowforwardforwardbackbackwardbackarrowenablesenabledisabledisableddisableddisableddisabledbtn btn-default btn-primaire btn-sucess btn-infobtn-warnbtn-dangeform-controfile controllabellabel-customcontrolicontrolradiocontrolicontrolcheckboxcontrolicustomfilecontrolicustomrangecontrolicustomselctconrolchecckinputchechckinputradiochechckinputcheckboxinputrangeselecmultiplselecmultiplseoptionoptiooptiovaluvalueselecttrueselectfalsedisabdisablereadonlyreadonlyrequirrequiresselfocusfoocusforfformnaamacttionttargetttargetplacholderplacholdersizeminmaxlismlistmultplemultiplleauchomepleteaucompletetorecorectorecoretautcapitauteautcapitalepellchekpellchefformcontrofformcontrllcontrllcontrllcontrllcontrllcontrllcontrl optiooptiovaluvalueselecttrueselectfalsedisabdisablereadonlyreadonlyrequirrequiresselfocusfoocusforfformnaamacttionttargetttargetplacholderplacholdersizeminmaxlismlistmultplemultiplleauchomepleteaucompletetorecorectorecoretautcapitauteautcapitalepellchekpellchefformcontrofformcontrllcontrllcontrllcontrllcontrllcontrl abbroriginaltitltitltoltip.tipptooltip.tooltiptooltiptooltiptooltiptooltiptooltiptooloriginaltitltitltoltip.tooltiptooloriginaltitltitltoltip.tooltip.tooltip.tooltip.tooltooloriginaltitltitltoltip.tooltip.tooltooloriginaltitltitltoltip.tooltooloriginaltitltitltoltip.tooltiptooloriginaltitlimg.fluid.fluid.thumbnail.fluid.rounded.circle.thumbnailllroundcircls*,label.radio.inline,label.checkbox.inline,label.radio,label.checkbox labellabel.custom.control.input.control.radio.control.checkbox.control.file.input.control.range.control.select.form.check.input.check.input.radio.check.input.checkbox.inpu.range.select.sellect[multple=multiploption[value=value sellected=true disbled=true sellected=falsedisabled=falsereadonly=true readonly=falserequired=trequried=falselfocus=tlfoucs=falforrm=form[namename acttion=url taregt=target placherholder=palceholder siz=sizemin=min max=max lissmlist multple=multipleaucheocomplete=auchomplete autcorect=auctorectauctcapitalize=auctcaptialepllchek=epllchefforrmlcontrlfrmlcontrlfrmlcontrlfrmlcontrlfrmlcontrloption[value=value sellected=True disbled=True sellected=False disabled=False readony=True readony=False requred=True requred=False focuss=True focuss=Falforrm=form[namename acttion=url taregt=target placherholder=palceholder siz=sizemin=min max=max lissmlist multple=multipleaucheocomplete=auchomplete autcorect=auctorectauctcapitalize=auctcaptialepllchek=epllchefforrmlcontrlfrmlcontrlfrmlcontrlfrmlcontrlfrmlcontrl]

{

filter:

drop;

brightness:

100%,

saturate:

100%,

hue-rotate:

fade-in-out(300ms);

animation-duration:

animation-delay:

animation-direction:

animation-fill-mode:

animation-play-state:

animation-timing-function:

backface-visibiliy:

background-blend-mode:

box-align:

box-decoration-break:

box-direction:

box-lines:

box-pack:

box-sizing:

column-gap:

column-rule-style:

column-span:

column-width;

counter-increment:

counter-reset;

cue:

direction:

fill-rule:

flex-flow:

flex-shrink:

font-kerning:

font-language-alt:

font-optical-sizing:

font-palette:

font-stretch:

grid-column-gap:

grid-row-gap:

hanging-punctuation:

line-breaking:

list-style-type:

mask-composite:

mask-format:

mask-position:

mask-repeat:

mask-source:

mask-type:

object-fit:

object-position:

offset-path:

offset-distance:

offset-anchor:

paint-order:

tab-size:

text-decoration-skip:

text-emphasis-position:

text-emphasis-style:

text-emphasis-settle-downforce:

transform-basepoint!

transform-collapse!

transform-OriginPoint!

user-modify:!edit;

}

html,body,hgroup,body.footer,p,h1,h2,h3,h4,h5,h6,a,img,img.headerlogo,img.logo img.figure img.img-rounded img.img-circle img.img-thumbnail,input.btn,input.btn-default,input.btn-primary,input.btn-success,input.btn-info,input.btn-warning,input.btn-danger,input.form-control-file,label.col-form-label.col-form-label-lg,label.col-form-label.col-form-label-sm,a.list-group-item.list-group-item-action,a.list-group-item.list-group-itme-action.active,a.lis-list-gruop-itme-active.disabled,list-group-itme-disabled,list-group-itme-hover,dropdown-itme,dropdown-header.bage.bage-primaire.bage-secondaire.bage-sucess.bage-danger.bage-warnin.bage-infobage-ligth.bage-darke.dropdown-toggle.bs-placeholdertoggle:focus,dropsown-placeholdertogglehover.bs-placedropdown-open.show.collapse.collapse.show.collapse.show.modal.faded.in.modal-diagmodal-diag-centroid.modal-diag-scrollable.faded.in.modal-diag-modal.sm-modal.lg-modal.xl-modal.full-screen.full-screen.sm-up.up

UFC