Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
JeeSpringCloud
Commits
c4b2023a
Commit
c4b2023a
authored
Oct 22, 2018
by
HuangBingGui
Browse files
no commit message
parent
03caebe8
Changes
6
Hide whitespace changes
Inline
Side-by-side
JeeSpringCloud/src/main/java/com/jeespring/modules/act/web/ActModelController.java
0 → 100644
View file @
c4b2023a
/**
* Copyright © 2012-2016 <a href="https://gitee.com/JeeHuangBingGui/jeeSpringCloud">JeeSpring</a> All rights reserved.
*/
package
com.jeespring.modules.act.web
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
org.apache.shiro.authz.annotation.RequiresPermissions
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.ui.Model
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.servlet.mvc.support.RedirectAttributes
;
import
com.jeespring.common.persistence.Page
;
import
com.jeespring.common.web.AbstractBaseController
;
import
com.jeespring.modules.act.service.ActModelService
;
/**
* 流程模型相关Controller
* @author JeeSpring
* @version 2013-11-03
*/
@Controller
@RequestMapping
(
value
=
"${adminPath}/act/model"
)
public
class
ActModelController
extends
AbstractBaseController
{
@Autowired
private
ActModelService
actModelService
;
/**
* 流程模型列表
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
{
"list"
,
""
})
public
String
modelList
(
String
category
,
HttpServletRequest
request
,
HttpServletResponse
response
,
Model
model
)
{
Page
<
org
.
activiti
.
engine
.
repository
.
Model
>
page
=
actModelService
.
modelList
(
new
Page
<
org
.
activiti
.
engine
.
repository
.
Model
>(
request
,
response
),
category
);
model
.
addAttribute
(
"page"
,
page
);
model
.
addAttribute
(
"category"
,
category
);
return
"modules/act/actModelList"
;
}
/**
* 创建模型
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
"create"
,
method
=
RequestMethod
.
GET
)
public
String
create
(
Model
model
)
{
return
"modules/act/actModelCreate"
;
}
/**
* 创建模型
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
"create"
,
method
=
RequestMethod
.
POST
)
public
void
create
(
String
name
,
String
key
,
String
description
,
String
category
,
HttpServletRequest
request
,
HttpServletResponse
response
)
{
try
{
org
.
activiti
.
engine
.
repository
.
Model
modelData
=
actModelService
.
create
(
name
,
key
,
description
,
category
);
response
.
sendRedirect
(
request
.
getContextPath
()
+
"/act/process-editor/modeler.jsp?modelId="
+
modelData
.
getId
());
}
catch
(
Exception
e
)
{
e
.
printStackTrace
();
logger
.
error
(
"创建模型失败:"
,
e
);
}
}
/**
* 根据Model部署流程
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
"deploy"
)
public
String
deploy
(
String
id
,
RedirectAttributes
redirectAttributes
)
{
String
message
=
actModelService
.
deploy
(
id
);
redirectAttributes
.
addFlashAttribute
(
"message"
,
message
);
return
"redirect:"
+
adminPath
+
"/act/process"
;
}
/**
* 导出model的xml文件
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
"export"
)
public
void
export
(
String
id
,
HttpServletResponse
response
)
{
actModelService
.
export
(
id
,
response
);
}
/**
* 更新Model分类
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
"updateCategory"
)
public
String
updateCategory
(
String
id
,
String
category
,
RedirectAttributes
redirectAttributes
)
{
actModelService
.
updateCategory
(
id
,
category
);
redirectAttributes
.
addFlashAttribute
(
"message"
,
"设置成功,模块ID="
+
id
);
return
"redirect:"
+
adminPath
+
"/act/model"
;
}
/**
* 删除Model
* @param id
* @param redirectAttributes
* @return
*/
@RequiresPermissions
(
"act:model:edit"
)
@RequestMapping
(
value
=
"delete"
)
public
String
delete
(
String
id
,
RedirectAttributes
redirectAttributes
)
{
actModelService
.
delete
(
id
);
redirectAttributes
.
addFlashAttribute
(
"message"
,
"删除成功,模型ID="
+
id
);
return
"redirect:"
+
adminPath
+
"/act/model"
;
}
}
JeeSpringCloud/src/main/java/com/jeespring/modules/act/web/ActProcessController.java
0 → 100644
View file @
c4b2023a
/**
* Copyright © 2012-2016 <a href="https://gitee.com/JeeHuangBingGui/jeeSpringCloud">JeeSpring</a> All rights reserved.
*/
package
com.jeespring.modules.act.web
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.io.UnsupportedEncodingException
;
import
java.util.List
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.xml.stream.XMLStreamException
;
import
org.activiti.engine.runtime.ProcessInstance
;
import
org.apache.shiro.authz.annotation.RequiresPermissions
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Value
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.ui.Model
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.RequestMethod
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.multipart.MultipartFile
;
import
org.springframework.web.servlet.mvc.support.RedirectAttributes
;
import
com.jeespring.common.persistence.Page
;
import
com.jeespring.common.utils.StringUtils
;
import
com.jeespring.common.web.AbstractBaseController
;
import
com.jeespring.modules.act.service.ActProcessService
;
/**
* 流程定义相关Controller
* @author JeeSpring
* @version 2013-11-03
*/
@Controller
@RequestMapping
(
value
=
"${adminPath}/act/process"
)
public
class
ActProcessController
extends
AbstractBaseController
{
@Autowired
private
ActProcessService
actProcessService
;
/**
* 流程定义列表
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
{
"list"
,
""
})
public
String
processList
(
String
category
,
HttpServletRequest
request
,
HttpServletResponse
response
,
Model
model
)
{
/*
* 保存两个对象,一个是ProcessDefinition(流程定义),一个是Deployment(流程部署)
*/
Page
<
Object
[]>
page
=
actProcessService
.
processList
(
new
Page
<
Object
[]>(
request
,
response
),
category
);
model
.
addAttribute
(
"page"
,
page
);
model
.
addAttribute
(
"category"
,
category
);
return
"modules/act/actProcessList"
;
}
/**
* 运行中的实例列表
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"running"
)
public
String
runningList
(
String
procInsId
,
String
procDefKey
,
HttpServletRequest
request
,
HttpServletResponse
response
,
Model
model
)
{
Page
<
ProcessInstance
>
page
=
actProcessService
.
runningList
(
new
Page
<
ProcessInstance
>(
request
,
response
),
procInsId
,
procDefKey
);
model
.
addAttribute
(
"page"
,
page
);
model
.
addAttribute
(
"procInsId"
,
procInsId
);
model
.
addAttribute
(
"procDefKey"
,
procDefKey
);
return
"modules/act/actProcessRunningList"
;
}
/**
* 读取资源,通过部署ID
* @param processDefinitionId 流程定义ID
* @param processInstanceId 流程实例ID
* @param resourceType 资源类型(xml|image)
* @param response
* @throws Exception
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"resource/read"
)
public
void
resourceRead
(
String
procDefId
,
String
proInsId
,
String
resType
,
HttpServletResponse
response
)
throws
Exception
{
InputStream
resourceAsStream
=
actProcessService
.
resourceRead
(
procDefId
,
proInsId
,
resType
);
byte
[]
b
=
new
byte
[
1024
];
int
len
=
-
1
;
while
((
len
=
resourceAsStream
.
read
(
b
,
0
,
1024
))
!=
-
1
)
{
response
.
getOutputStream
().
write
(
b
,
0
,
len
);
}
}
/**
* 部署流程
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"/deploy"
,
method
=
RequestMethod
.
GET
)
public
String
deploy
(
Model
model
)
{
return
"modules/act/actProcessDeploy"
;
}
/**
* 部署流程 - 保存
* @param file
* @return
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"/deploy"
,
method
=
RequestMethod
.
POST
)
public
String
deploy
(
@Value
(
"#{APP_PROP['activiti.export.diagram.path']}"
)
String
exportDir
,
String
category
,
MultipartFile
file
,
RedirectAttributes
redirectAttributes
)
{
String
fileName
=
file
.
getOriginalFilename
();
if
(
StringUtils
.
isBlank
(
fileName
)){
redirectAttributes
.
addFlashAttribute
(
"message"
,
"请选择要部署的流程文件"
);
}
else
{
String
message
=
actProcessService
.
deploy
(
exportDir
,
category
,
file
);
redirectAttributes
.
addFlashAttribute
(
"message"
,
message
);
}
return
"redirect:"
+
adminPath
+
"/act/process"
;
}
/**
* 设置流程分类
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"updateCategory"
)
public
String
updateCategory
(
String
procDefId
,
String
category
,
RedirectAttributes
redirectAttributes
)
{
actProcessService
.
updateCategory
(
procDefId
,
category
);
return
"redirect:"
+
adminPath
+
"/act/process"
;
}
/**
* 挂起、激活流程实例
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"update/{state}"
)
public
String
updateState
(
@PathVariable
(
"state"
)
String
state
,
String
procDefId
,
RedirectAttributes
redirectAttributes
)
{
String
message
=
actProcessService
.
updateState
(
state
,
procDefId
);
redirectAttributes
.
addFlashAttribute
(
"message"
,
message
);
return
"redirect:"
+
adminPath
+
"/act/process"
;
}
/**
* 将部署的流程转换为模型
* @param procDefId
* @param redirectAttributes
* @return
* @throws UnsupportedEncodingException
* @throws XMLStreamException
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"convert/toModel"
)
public
String
convertToModel
(
String
procDefId
,
RedirectAttributes
redirectAttributes
)
throws
UnsupportedEncodingException
,
XMLStreamException
{
org
.
activiti
.
engine
.
repository
.
Model
modelData
=
actProcessService
.
convertToModel
(
procDefId
);
redirectAttributes
.
addFlashAttribute
(
"message"
,
"转换模型成功,模型ID="
+
modelData
.
getId
());
return
"redirect:"
+
adminPath
+
"/act/model"
;
}
/**
* 导出图片文件到硬盘
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"export/diagrams"
)
@ResponseBody
public
List
<
String
>
exportDiagrams
(
@Value
(
"#{APP_PROP['activiti.export.diagram.path']}"
)
String
exportDir
)
throws
IOException
{
List
<
String
>
files
=
actProcessService
.
exportDiagrams
(
exportDir
);;
return
files
;
}
/**
* 删除部署的流程,级联删除流程实例
* @param deploymentId 流程部署ID
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"delete"
)
public
String
delete
(
String
deploymentId
)
{
actProcessService
.
deleteDeployment
(
deploymentId
);
return
"redirect:"
+
adminPath
+
"/act/process"
;
}
/**
* 删除流程实例
* @param procInsId 流程实例ID
* @param reason 删除原因
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"deleteProcIns"
)
public
String
deleteProcIns
(
String
procInsId
,
String
reason
,
RedirectAttributes
redirectAttributes
)
{
if
(
StringUtils
.
isBlank
(
reason
)){
addMessage
(
redirectAttributes
,
"请填写删除原因"
);
}
else
{
actProcessService
.
deleteProcIns
(
procInsId
,
reason
);
addMessage
(
redirectAttributes
,
"删除流程实例成功,实例ID="
+
procInsId
);
}
return
"redirect:"
+
adminPath
+
"/act/process/running/"
;
}
}
JeeSpringCloud/src/main/java/com/jeespring/modules/act/web/ActTaskController.java
0 → 100644
View file @
c4b2023a
/**
* Copyright © 2012-2016 <a href="https://gitee.com/JeeHuangBingGui/jeeSpringCloud">JeeSpring</a> All rights reserved.
*/
package
com.jeespring.modules.act.web
;
import
java.io.InputStream
;
import
java.util.List
;
import
java.util.Map
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
org.apache.commons.lang3.StringUtils
;
import
org.apache.shiro.authz.annotation.RequiresPermissions
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Controller
;
import
org.springframework.ui.Model
;
import
org.springframework.web.bind.annotation.PathVariable
;
import
org.springframework.web.bind.annotation.RequestMapping
;
import
org.springframework.web.bind.annotation.ResponseBody
;
import
org.springframework.web.servlet.mvc.support.RedirectAttributes
;
import
com.jeespring.common.persistence.Page
;
import
com.jeespring.common.web.AbstractBaseController
;
import
com.jeespring.modules.act.entity.Act
;
import
com.jeespring.modules.act.service.ActTaskService
;
import
com.jeespring.modules.act.utils.ActUtils
;
import
com.jeespring.modules.sys.utils.UserUtils
;
/**
* 流程个人任务相关Controller
* @author JeeSpring
* @version 2013-11-03
*/
@Controller
@RequestMapping
(
value
=
"${adminPath}/act/task"
)
public
class
ActTaskController
extends
AbstractBaseController
{
@Autowired
private
ActTaskService
actTaskService
;
/**
* 获取待办列表
* @param act procDefKey 流程定义标识
* @return
*/
@RequestMapping
(
value
=
{
"todo"
,
""
})
public
String
todoList
(
Act
act
,
HttpServletResponse
response
,
Model
model
)
throws
Exception
{
List
<
Act
>
list
=
actTaskService
.
todoList
(
act
);
model
.
addAttribute
(
"list"
,
list
);
if
(
UserUtils
.
getPrincipal
().
isMobileLogin
()){
return
renderString
(
response
,
list
);
}
return
"modules/act/actTaskTodoList"
;
}
/**
* 获取已办任务
* @param act page
* @param act procDefKey 流程定义标识
* @return
*/
@RequestMapping
(
value
=
"historic"
)
public
String
historicList
(
Act
act
,
HttpServletRequest
request
,
HttpServletResponse
response
,
Model
model
)
throws
Exception
{
Page
<
Act
>
page
=
new
Page
<
Act
>(
request
,
response
);
page
=
actTaskService
.
historicList
(
page
,
act
);
model
.
addAttribute
(
"page"
,
page
);
if
(
UserUtils
.
getPrincipal
().
isMobileLogin
()){
return
renderString
(
response
,
page
);
}
return
"modules/act/actTaskHistoricList"
;
}
/**
* 获取流转历史列表
* @param act procInsId 流程实例
* @param startAct 开始活动节点名称
* @param endAct 结束活动节点名称
*/
@RequestMapping
(
value
=
"histoicFlow"
)
public
String
histoicFlow
(
Act
act
,
String
startAct
,
String
endAct
,
Model
model
){
if
(
StringUtils
.
isNotBlank
(
act
.
getProcInsId
())){
List
<
Act
>
histoicFlowList
=
actTaskService
.
histoicFlowList
(
act
.
getProcInsId
(),
startAct
,
endAct
);
model
.
addAttribute
(
"histoicFlowList"
,
histoicFlowList
);
}
return
"modules/act/actTaskHistoricFlow"
;
}
/**
* 获取流程列表
* @param category 流程分类
*/
@RequestMapping
(
value
=
"process"
)
public
String
processList
(
String
category
,
HttpServletRequest
request
,
HttpServletResponse
response
,
Model
model
)
{
Page
<
Object
[]>
page
=
new
Page
<
Object
[]>(
request
,
response
);
page
=
actTaskService
.
processList
(
page
,
category
);
model
.
addAttribute
(
"page"
,
page
);
model
.
addAttribute
(
"category"
,
category
);
return
"modules/act/actTaskProcessList"
;
}
/**
* 获取流程表单
* @param act taskId 任务ID
* @param act taskName 任务名称
* @param act taskDefKey 任务环节标识
* @param act procInsId 流程实例ID
* @param act procDefId 流程定义ID
*/
@RequestMapping
(
value
=
"form"
)
public
String
form
(
Act
act
,
HttpServletRequest
request
,
Model
model
){
// 获取流程XML上的表单KEY
String
formKey
=
actTaskService
.
getFormKey
(
act
.
getProcDefId
(),
act
.
getTaskDefKey
());
// 获取流程实例对象
if
(
act
.
getProcInsId
()
!=
null
){
act
.
setProcIns
(
actTaskService
.
getProcIns
(
act
.
getProcInsId
()));
}
return
"redirect:"
+
ActUtils
.
getFormUrl
(
formKey
,
act
);
// // 传递参数到视图
// model.addAttribute("act", act);
// model.addAttribute("formUrl", formUrl);
// return "modules/act/actTaskForm";
}
/**
* 启动流程
* @param act procDefKey 流程定义KEY
* @param act businessTable 业务表表名
* @param act businessId 业务表编号
*/
@RequestMapping
(
value
=
"start"
)
@ResponseBody
public
String
start
(
Act
act
,
String
table
,
String
id
,
Model
model
)
throws
Exception
{
actTaskService
.
startProcess
(
act
.
getProcDefKey
(),
act
.
getBusinessId
(),
act
.
getBusinessTable
(),
act
.
getTitle
());
return
"true"
;
//adminPath + "/act/task";
}
/**
* 签收任务
* @param act taskId 任务ID
*/
@RequestMapping
(
value
=
"claim"
)
@ResponseBody
public
String
claim
(
Act
act
)
{
String
userId
=
UserUtils
.
getUser
().
getLoginName
();
//ObjectUtils.toString(UserUtils.getUser().getId());
actTaskService
.
claim
(
act
.
getTaskId
(),
userId
);
return
"true"
;
//adminPath + "/act/task";
}
/**
* 完成任务
* @param act taskId 任务ID
* @param act procInsId 流程实例ID,如果为空,则不保存任务提交意见
* @param act comment 任务提交意见的内容
* @param act vars 任务流程变量,如下
* vars.keys=flag,pass
* vars.values=1,true
* vars.types=S,B @see com.thinkgem.jeesite.modules.act.utils.PropertyType
*/
@RequestMapping
(
value
=
"complete"
)
@ResponseBody
public
String
complete
(
Act
act
)
{
actTaskService
.
complete
(
act
.
getTaskId
(),
act
.
getProcInsId
(),
act
.
getComment
(),
act
.
getVars
().
getVariableMap
());
return
"true"
;
//adminPath + "/act/task";
}
/**
* 读取带跟踪的图片
*/
@RequestMapping
(
value
=
"trace/photo/{procDefId}/{execId}"
)
public
void
tracePhoto
(
@PathVariable
(
"procDefId"
)
String
procDefId
,
@PathVariable
(
"execId"
)
String
execId
,
HttpServletResponse
response
)
throws
Exception
{
InputStream
imageStream
=
actTaskService
.
tracePhoto
(
procDefId
,
execId
);
// 输出资源内容到相应对象
byte
[]
b
=
new
byte
[
1024
];
int
len
;
while
((
len
=
imageStream
.
read
(
b
,
0
,
1024
))
!=
-
1
)
{
response
.
getOutputStream
().
write
(
b
,
0
,
len
);
}
}
/**
* 输出跟踪流程信息
*
* @param proInsId
* @return
* @throws Exception
*/
@ResponseBody
@RequestMapping
(
value
=
"trace/info/{proInsId}"
)
public
List
<
Map
<
String
,
Object
>>
traceInfo
(
@PathVariable
(
"proInsId"
)
String
proInsId
)
throws
Exception
{
List
<
Map
<
String
,
Object
>>
activityInfos
=
actTaskService
.
traceProcess
(
proInsId
);
return
activityInfos
;
}
/**
* 显示流程图
@RequestMapping(value = "processPic")
public void processPic(String procDefId, HttpServletResponse response) throws Exception {
ProcessDefinition procDef = repositoryService.createProcessDefinitionQuery().processDefinitionId(procDefId).singleResult();
String diagramResourceName = procDef.getDiagramResourceName();
InputStream imageStream = repositoryService.getResourceAsStream(procDef.getDeploymentId(), diagramResourceName);
byte[] b = new byte[1024];
int len = -1;
while ((len = imageStream.read(b, 0, 1024)) != -1) {
response.getOutputStream().write(b, 0, len);
}
}*/
/**
* 获取跟踪信息
@RequestMapping(value = "processMap")
public String processMap(String procDefId, String proInstId, Model model)
throws Exception {
List<ActivityImpl> actImpls = new ArrayList<ActivityImpl>();
ProcessDefinition processDefinition = repositoryService
.createProcessDefinitionQuery().processDefinitionId(procDefId)
.singleResult();
ProcessDefinitionImpl pdImpl = (ProcessDefinitionImpl) processDefinition;
String processDefinitionId = pdImpl.getId();// 流程标识
ProcessDefinitionEntity def = (ProcessDefinitionEntity) ((RepositoryServiceImpl) repositoryService)
.getDeployedProcessDefinition(processDefinitionId);
List<ActivityImpl> activitiList = def.getActivities();// 获得当前任务的所有节点
List<String> activeActivityIds = runtimeService.getActiveActivityIds(proInstId);
for (String activeId : activeActivityIds) {
for (ActivityImpl activityImpl : activitiList) {
String id = activityImpl.getId();
if (activityImpl.isScope()) {
if (activityImpl.getActivities().size() > 1) {
List<ActivityImpl> subAcList = activityImpl
.getActivities();
for (ActivityImpl subActImpl : subAcList) {
String subid = subActImpl.getId();
System.out.println("subImpl:" + subid);
if (activeId.equals(subid)) {// 获得执行到那个节点
actImpls.add(subActImpl);
break;
}
}
}
}
if (activeId.equals(id)) {// 获得执行到那个节点
actImpls.add(activityImpl);
System.out.println(id);
}
}
}
model.addAttribute("procDefId", procDefId);
model.addAttribute("proInstId", proInstId);
model.addAttribute("actImpls", actImpls);
return "modules/act/actTaskMap";
}*/
/**
* 删除任务
* @param taskId 流程实例ID
* @param reason 删除原因
*/
@RequiresPermissions
(
"act:process:edit"
)
@RequestMapping
(
value
=
"deleteTask"
)
public
String
deleteTask
(
String
taskId
,
String
reason
,
RedirectAttributes
redirectAttributes
)
{
if
(
StringUtils
.
isBlank
(
reason
)){
addMessage
(
redirectAttributes
,
"请填写删除原因"
);
}
else
{
actTaskService
.
deleteTask
(
taskId
,
reason
);
addMessage
(
redirectAttributes
,
"删除任务成功,任务ID="
+
taskId
);
}
return
"redirect:"
+
adminPath
+
"/act/task"
;
}
}
JeeSpringCloud/src/main/resources/mappings/modules/act/ActDao.xml
0 → 100644
View file @
c4b2023a
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.jeespring.modules.act.dao.ActDao"
>
<update
id=
"updateProcInsIdByBusinessId"
>
UPDATE ${businessTable} SET
proc_ins_id = #{procInsId}
WHERE id = #{businessId}
</update>
</mapper>
\ No newline at end of file
JeeSpringCloud/src/main/webapp/static/common/login/app-midnight-blue.min.css
0 → 100644
View file @
c4b2023a
html
{
font-family
:
sans-serif
;
-ms-text-size-adjust
:
100%
;
-webkit-text-size-adjust
:
100%
;}
body
{
margin
:
0
;}
article
,
aside
,
details
,
figcaption
,
figure
,
footer
,
header
,
hgroup
,
main
,
menu
,
nav
,
section
,
summary
{
display
:
block
;}
audio
,
canvas
,
progress
,
video
{
display
:
inline-block
;
vertical-align
:
baseline
;}
audio
:not
([
controls
])
{
display
:
none
;
height
:
0
;}
[
hidden
],
template
{
display
:
none
;}
a
{
background-color
:
transparent
;}
a
:active
,
a
:hover
{
outline
:
0
;}
abbr
[
title
]
{
border-bottom
:
1px
dotted
;}
b
,
strong
{
font-weight
:
bold
;}
dfn
{
font-style
:
italic
;}
h1
{
font-size
:
2em
;
margin
:
0.67em
0
;}
mark
{
background
:
#ff0
;
color
:
#000
;}
small
{
font-size
:
80%
;}
sub
,
sup
{
font-size
:
75%
;
line-height
:
0
;
position
:
relative
;
vertical-align
:
baseline
;}
sup
{
top
:
-0.5em
;}
sub
{
bottom
:
-0.25em
;}
img
{
border
:
0
;}
svg
:not
(
:root
)
{
overflow
:
hidden
;}
figure
{
margin
:
1em
40px
;}
hr
{
box-sizing
:
content-box
;
height
:
0
;}
pre
{
overflow
:
auto
;}
code
,
kbd
,
pre
,
samp
{
font-family
:
monospace
,
monospace
;
font-size
:
1em
;}
button
,
input
,
optgroup
,
select
,
textarea
{
color
:
inherit
;
font
:
inherit
;
margin
:
0
;}
button
{
overflow
:
visible
;}
button
,
select
{
text-transform
:
none
;}
button
,
html
input
[
type
=
"button"
],
input
[
type
=
"reset"
],
input
[
type
=
"submit"
]
{
-webkit-appearance
:
button
;
cursor
:
pointer
;}
button
[
disabled
],
html
input
[
disabled
]
{
cursor
:
default
;}
button
::-moz-focus-inner
,
input
::-moz-focus-inner
{
border
:
0
;
padding
:
0
;}
input
{
line-height
:
normal
;}
input
[
type
=
"checkbox"
],
input
[
type
=
"radio"
]
{
box-sizing
:
border-box
;
padding
:
0
;}
input
[
type
=
"number"
]
::-webkit-inner-spin-button
,
input
[
type
=
"number"
]
::-webkit-outer-spin-button
{
height
:
auto
;}
input
[
type
=
"search"
]
{
-webkit-appearance
:
textfield
;
box-sizing
:
content-box
;}
input
[
type
=
"search"
]
::-webkit-search-cancel-button
,
input
[
type
=
"search"
]
::-webkit-search-decoration
{
-webkit-appearance
:
none
;}
fieldset
{
border
:
1px
solid
#c0c0c0
;
margin
:
0
2px
;
padding
:
0.35em
0.625em
0.75em
;}
legend
{
border
:
0
;
padding
:
0
;}
textarea
{
overflow
:
auto
;}
optgroup
{
font-weight
:
bold
;}
table
{
border-collapse
:
collapse
;
border-spacing
:
0
;}
td
,
th
{
padding
:
0
;}
@media
print
{
*,*
:before
,*
:after
{
background
:
transparent
!important
;
color
:
#000
!important
;
box-shadow
:
none
!important
;
text-shadow
:
none
!important
;}
a
,
a
:visited
{
text-decoration
:
underline
;}
a
[
href
]
:after
{
content
:
" ("
attr
(
href
)
")"
;}
abbr
[
title
]
:after
{
content
:
" ("
attr
(
title
)
")"
;}
a
[
href
^=
"#"
]
:after
,
a
[
href
^=
"javascript:"
]
:after
{
content
:
""
;}
pre
,
blockquote
{
border
:
1px
solid
#999
;
page-break-inside
:
avoid
;}
thead
{
display
:
table-header-group
;}
tr
,
img
{
page-break-inside
:
avoid
;}
img
{
max-width
:
100%
!important
;}
p
,
h2
,
h3
{
orphans
:
3
;
widows
:
3
;}
h2
,
h3
{
page-break-after
:
avoid
;}
select
{
background
:
#fff
!important
;}
.navbar
{
display
:
none
;}
.btn
>
.caret
,
.dropup
>
.btn
>
.caret
{
border-top-color
:
#000
!important
;}
.label
{
border
:
1px
solid
#000
;}
.table
{
border-collapse
:
collapse
!important
;}
.table
td
,
.table
th
{
background-color
:
#fff
!important
;}
.table-bordered
th
,
.table-bordered
td
{
border
:
1px
solid
#ddd
!important
;}}
@font-face
{
font-family
:
'Glyphicons Halflings'
;
src
:
url('../fonts/glyphicons-halflings-regular.eot')
;
src
:
url('../fonts/glyphicons-halflings-regular.eot?#iefix')
format
(
'embedded-opentype'
),
url('../fonts/glyphicons-halflings-regular.woff2')
format
(
'woff2'
),
url('../fonts/glyphicons-halflings-regular.woff')
format
(
'woff'
),
url('../fonts/glyphicons-halflings-regular.ttf')
format
(
'truetype'
),
url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular')
format
(
'svg'
);}
.glyphicon
{
position
:
relative
;
top
:
1px
;
display
:
inline-block
;
font-family
:
'Glyphicons Halflings'
;
font-style
:
normal
;
font-weight
:
normal
;
line-height
:
1
;
-webkit-font-smoothing
:
antialiased
;
-moz-osx-font-smoothing
:
grayscale
;}
.glyphicon-asterisk
:before
{
content
:
"\2a"
;}
.glyphicon-plus
:before
{
content
:
"\2b"
;}
.glyphicon-euro
:before
,
.glyphicon-eur
:before
{
content
:
"\20ac"
;}
.glyphicon-minus
:before
{
content
:
"\2212"
;}
.glyphicon-cloud
:before
{
content
:
"\2601"
;}
.glyphicon-envelope
:before
{
content
:
"\2709"
;}
.glyphicon-pencil
:before
{
content
:
"\270f"
;}
.glyphicon-glass
:before
{
content
:
"\e001"
;}
.glyphicon-music
:before
{
content
:
"\e002"
;}
.glyphicon-search
:before
{
content
:
"\e003"
;}
.glyphicon-heart
:before
{
content
:
"\e005"
;}
.glyphicon-star
:before
{
content
:
"\e006"
;}
.glyphicon-star-empty
:before
{
content
:
"\e007"
;}
.glyphicon-user
:before
{
content
:
"\e008"
;}
.glyphicon-film
:before
{
content
:
"\e009"
;}
.glyphicon-th-large
:before
{
content
:
"\e010"
;}
.glyphicon-th
:before
{
content
:
"\e011"
;}
.glyphicon-th-list
:before
{
content
:
"\e012"
;}
.glyphicon-ok
:before
{
content
:
"\e013"
;}
.glyphicon-remove
:before
{
content
:
"\e014"
;}
.glyphicon-zoom-in
:before
{
content
:
"\e015"
;}
.glyphicon-zoom-out
:before
{
content
:
"\e016"
;}
.glyphicon-off
:before
{
content
:
"\e017"
;}
.glyphicon-signal
:before
{
content
:
"\e018"
;}
.glyphicon-cog
:before
{
content
:
"\e019"
;}
.glyphicon-trash
:before
{
content
:
"\e020"
;}
.glyphicon-home
:before
{
content
:
"\e021"
;}
.glyphicon-file
:before
{
content
:
"\e022"
;}
.glyphicon-time
:before
{
content
:
"\e023"
;}
.glyphicon-road
:before
{
content
:
"\e024"
;}
.glyphicon-download-alt
:before
{
content
:
"\e025"
;}
.glyphicon-download
:before
{
content
:
"\e026"
;}
.glyphicon-upload
:before
{
content
:
"\e027"
;}
.glyphicon-inbox
:before
{
content
:
"\e028"
;}
.glyphicon-play-circle
:before
{
content
:
"\e029"
;}
.glyphicon-repeat
:before
{
content
:
"\e030"
;}
.glyphicon-refresh
:before
{
content
:
"\e031"
;}
.glyphicon-list-alt
:before
{
content
:
"\e032"
;}
.glyphicon-lock
:before
{
content
:
"\e033"
;}
.glyphicon-flag
:before
{
content
:
"\e034"
;}
.glyphicon-headphones
:before
{
content
:
"\e035"
;}
.glyphicon-volume-off
:before
{
content
:
"\e036"
;}
.glyphicon-volume-down
:before
{
content
:
"\e037"
;}
.glyphicon-volume-up
:before
{
content
:
"\e038"
;}
.glyphicon-qrcode
:before
{
content
:
"\e039"
;}
.glyphicon-barcode
:before
{
content
:
"\e040"
;}
.glyphicon-tag
:before
{
content
:
"\e041"
;}
.glyphicon-tags
:before
{
content
:
"\e042"
;}
.glyphicon-book
:before
{
content
:
"\e043"
;}
.glyphicon-bookmark
:before
{
content
:
"\e044"
;}
.glyphicon-print
:before
{
content
:
"\e045"
;}
.glyphicon-camera
:before
{
content
:
"\e046"
;}
.glyphicon-font
:before
{
content
:
"\e047"
;}
.glyphicon-bold
:before
{
content
:
"\e048"
;}
.glyphicon-italic
:before
{
content
:
"\e049"
;}
.glyphicon-text-height
:before
{
content
:
"\e050"
;}
.glyphicon-text-width
:before
{
content
:
"\e051"
;}
.glyphicon-align-left
:before
{
content
:
"\e052"
;}
.glyphicon-align-center
:before
{
content
:
"\e053"
;}
.glyphicon-align-right
:before
{
content
:
"\e054"
;}
.glyphicon-align-justify
:before
{
content
:
"\e055"
;}
.glyphicon-list
:before
{
content
:
"\e056"
;}
.glyphicon-indent-left
:before
{
content
:
"\e057"
;}
.glyphicon-indent-right
:before
{
content
:
"\e058"
;}
.glyphicon-facetime-video
:before
{
content
:
"\e059"
;}
.glyphicon-picture
:before
{
content
:
"\e060"
;}
.glyphicon-map-marker
:before
{
content
:
"\e062"
;}
.glyphicon-adjust
:before
{
content
:
"\e063"
;}
.glyphicon-tint
:before
{
content
:
"\e064"
;}
.glyphicon-edit
:before
{
content
:
"\e065"
;}
.glyphicon-share
:before
{
content
:
"\e066"
;}
.glyphicon-check
:before
{
content
:
"\e067"
;}
.glyphicon-move
:before
{
content
:
"\e068"
;}
.glyphicon-step-backward
:before
{
content
:
"\e069"
;}
.glyphicon-fast-backward
:before
{
content
:
"\e070"
;}
.glyphicon-backward
:before
{
content
:
"\e071"
;}
.glyphicon-play
:before
{
content
:
"\e072"
;}
.glyphicon-pause
:before
{
content
:
"\e073"
;}
.glyphicon-stop
:before
{
content
:
"\e074"
;}
.glyphicon-forward
:before
{
content
:
"\e075"
;}
.glyphicon-fast-forward
:before
{
content
:
"\e076"
;}
.glyphicon-step-forward
:before
{
content
:
"\e077"
;}
.glyphicon-eject
:before
{
content
:
"\e078"
;}
.glyphicon-chevron-left
:before
{
content
:
"\e079"
;}
.glyphicon-chevron-right
:before
{
content
:
"\e080"
;}
.glyphicon-plus-sign
:before
{
content
:
"\e081"
;}
.glyphicon-minus-sign
:before
{
content
:
"\e082"
;}
.glyphicon-remove-sign
:before
{
content
:
"\e083"
;}
.glyphicon-ok-sign
:before
{
content
:
"\e084"
;}
.glyphicon-question-sign
:before
{
content
:
"\e085"
;}
.glyphicon-info-sign
:before
{
content
:
"\e086"
;}
.glyphicon-screenshot
:before
{
content
:
"\e087"
;}
.glyphicon-remove-circle
:before
{
content
:
"\e088"
;}
.glyphicon-ok-circle
:before
{
content
:
"\e089"
;}
.glyphicon-ban-circle
:before
{
content
:
"\e090"
;}
.glyphicon-arrow-left
:before
{
content
:
"\e091"
;}
.glyphicon-arrow-right
:before
{
content
:
"\e092"
;}
.glyphicon-arrow-up
:before
{
content
:
"\e093"
;}
.glyphicon-arrow-down
:before
{
content
:
"\e094"
;}
.glyphicon-share-alt
:before
{
content
:
"\e095"
;}
.glyphicon-resize-full
:before
{
content
:
"\e096"
;}
.glyphicon-resize-small
:before
{
content
:
"\e097"
;}
.glyphicon-exclamation-sign
:before
{
content
:
"\e101"
;}
.glyphicon-gift
:before
{
content
:
"\e102"
;}
.glyphicon-leaf
:before
{
content
:
"\e103"
;}
.glyphicon-fire
:before
{
content
:
"\e104"
;}
.glyphicon-eye-open
:before
{
content
:
"\e105"
;}
.glyphicon-eye-close
:before
{
content
:
"\e106"
;}
.glyphicon-warning-sign
:before
{
content
:
"\e107"
;}
.glyphicon-plane
:before
{
content
:
"\e108"
;}
.glyphicon-calendar
:before
{
content
:
"\e109"
;}
.glyphicon-random
:before
{
content
:
"\e110"
;}
.glyphicon-comment
:before
{
content
:
"\e111"
;}
.glyphicon-magnet
:before
{
content
:
"\e112"
;}
.glyphicon-chevron-up
:before
{
content
:
"\e113"
;}
.glyphicon-chevron-down
:before
{
content
:
"\e114"
;}
.glyphicon-retweet
:before
{
content
:
"\e115"
;}
.glyphicon-shopping-cart
:before
{
content
:
"\e116"
;}
.glyphicon-folder-close
:before
{
content
:
"\e117"
;}
.glyphicon-folder-open
:before
{
content
:
"\e118"
;}
.glyphicon-resize-vertical
:before
{
content
:
"\e119"
;}
.glyphicon-resize-horizontal
:before
{
content
:
"\e120"
;}
.glyphicon-hdd
:before
{
content
:
"\e121"
;}
.glyphicon-bullhorn
:before
{
content
:
"\e122"
;}
.glyphicon-bell
:before
{
content
:
"\e123"
;}
.glyphicon-certificate
:before
{
content
:
"\e124"
;}
.glyphicon-thumbs-up
:before
{
content
:
"\e125"
;}
.glyphicon-thumbs-down
:before
{
content
:
"\e126"
;}
.glyphicon-hand-right
:before
{
content
:
"\e127"
;}
.glyphicon-hand-left
:before
{
content
:
"\e128"
;}
.glyphicon-hand-up
:before
{
content
:
"\e129"
;}
.glyphicon-hand-down
:before
{
content
:
"\e130"
;}
.glyphicon-circle-arrow-right
:before
{
content
:
"\e131"
;}
.glyphicon-circle-arrow-left
:before
{
content
:
"\e132"
;}
.glyphicon-circle-arrow-up
:before
{
content
:
"\e133"
;}
.glyphicon-circle-arrow-down
:before
{
content
:
"\e134"
;}
.glyphicon-globe
:before
{
content
:
"\e135"
;}
.glyphicon-wrench
:before
{
content
:
"\e136"
;}
.glyphicon-tasks
:before
{
content
:
"\e137"
;}
.glyphicon-filter
:before
{
content
:
"\e138"
;}
.glyphicon-briefcase
:before
{
content
:
"\e139"
;}
.glyphicon-fullscreen
:before
{
content
:
"\e140"
;}
.glyphicon-dashboard
:before
{
content
:
"\e141"
;}
.glyphicon-paperclip
:before
{
content
:
"\e142"
;}
.glyphicon-heart-empty
:before
{
content
:
"\e143"
;}
.glyphicon-link
:before
{
content
:
"\e144"
;}
.glyphicon-phone
:before
{
content
:
"\e145"
;}
.glyphicon-pushpin
:before
{
content
:
"\e146"
;}
.glyphicon-usd
:before
{
content
:
"\e148"
;}
.glyphicon-gbp
:before
{
content
:
"\e149"
;}
.glyphicon-sort
:before
{
content
:
"\e150"
;}
.glyphicon-sort-by-alphabet
:before
{
content
:
"\e151"
;}
.glyphicon-sort-by-alphabet-alt
:before
{
content
:
"\e152"
;}
.glyphicon-sort-by-order
:before
{
content
:
"\e153"
;}
.glyphicon-sort-by-order-alt
:before
{
content
:
"\e154"
;}
.glyphicon-sort-by-attributes
:before
{
content
:
"\e155"
;}
.glyphicon-sort-by-attributes-alt
:before
{
content
:
"\e156"
;}
.glyphicon-unchecked
:before
{
content
:
"\e157"
;}
.glyphicon-expand
:before
{
content
:
"\e158"
;}
.glyphicon-collapse-down
:before
{
content
:
"\e159"
;}
.glyphicon-collapse-up
:before
{
content
:
"\e160"
;}
.glyphicon-log-in
:before
{
content
:
"\e161"
;}
.glyphicon-flash
:before
{
content
:
"\e162"
;}
.glyphicon-log-out
:before
{
content
:
"\e163"
;}
.glyphicon-new-window
:before
{
content
:
"\e164"
;}
.glyphicon-record
:before
{
content
:
"\e165"
;}
.glyphicon-save
:before
{
content
:
"\e166"
;}
.glyphicon-open
:before
{
content
:
"\e167"
;}
.glyphicon-saved
:before
{
content
:
"\e168"
;}
.glyphicon-import
:before
{
content
:
"\e169"
;}
.glyphicon-export
:before
{
content
:
"\e170"
;}
.glyphicon-send
:before
{
content
:
"\e171"
;}
.glyphicon-floppy-disk
:before
{
content
:
"\e172"
;}
.glyphicon-floppy-saved
:before
{
content
:
"\e173"
;}
.glyphicon-floppy-remove
:before
{
content
:
"\e174"
;}
.glyphicon-floppy-save
:before
{
content
:
"\e175"
;}
.glyphicon-floppy-open
:before
{
content
:
"\e176"
;}
.glyphicon-credit-card
:before
{
content
:
"\e177"
;}
.glyphicon-transfer
:before
{
content
:
"\e178"
;}
.glyphicon-cutlery
:before
{
content
:
"\e179"
;}
.glyphicon-header
:before
{
content
:
"\e180"
;}
.glyphicon-compressed
:before
{
content
:
"\e181"
;}
.glyphicon-earphone
:before
{
content
:
"\e182"
;}
.glyphicon-phone-alt
:before
{
content
:
"\e183"
;}
.glyphicon-tower
:before
{
content
:
"\e184"
;}
.glyphicon-stats
:before
{
content
:
"\e185"
;}
.glyphicon-sd-video
:before
{
content
:
"\e186"
;}
.glyphicon-hd-video
:before
{
content
:
"\e187"
;}
.glyphicon-subtitles
:before
{
content
:
"\e188"
;}
.glyphicon-sound-stereo
:before
{
content
:
"\e189"
;}
.glyphicon-sound-dolby
:before
{
content
:
"\e190"
;}
.glyphicon-sound-5-1
:before
{
content
:
"\e191"
;}
.glyphicon-sound-6-1
:before
{
content
:
"\e192"
;}
.glyphicon-sound-7-1
:before
{
content
:
"\e193"
;}
.glyphicon-copyright-mark
:before
{
content
:
"\e194"
;}
.glyphicon-registration-mark
:before
{
content
:
"\e195"
;}
.glyphicon-cloud-download
:before
{
content
:
"\e197"
;}
.glyphicon-cloud-upload
:before
{
content
:
"\e198"
;}
.glyphicon-tree-conifer
:before
{
content
:
"\e199"
;}
.glyphicon-tree-deciduous
:before
{
content
:
"\e200"
;}
.glyphicon-cd
:before
{
content
:
"\e201"
;}
.glyphicon-save-file
:before
{
content
:
"\e202"
;}
.glyphicon-open-file
:before
{
content
:
"\e203"
;}
.glyphicon-level-up
:before
{
content
:
"\e204"
;}
.glyphicon-copy
:before
{
content
:
"\e205"
;}
.glyphicon-paste
:before
{
content
:
"\e206"
;}
.glyphicon-alert
:before
{
content
:
"\e209"
;}
.glyphicon-equalizer
:before
{
content
:
"\e210"
;}
.glyphicon-king
:before
{
content
:
"\e211"
;}
.glyphicon-queen
:before
{
content
:
"\e212"
;}
.glyphicon-pawn
:before
{
content
:
"\e213"
;}
.glyphicon-bishop
:before
{
content
:
"\e214"
;}
.glyphicon-knight
:before
{
content
:
"\e215"
;}
.glyphicon-baby-formula
:before
{
content
:
"\e216"
;}
.glyphicon-tent
:before
{
content
:
"\26fa"
;}
.glyphicon-blackboard
:before
{
content
:
"\e218"
;}
.glyphicon-bed
:before
{
content
:
"\e219"
;}
.glyphicon-apple
:before
{
content
:
"\f8ff"
;}
.glyphicon-erase
:before
{
content
:
"\e221"
;}
.glyphicon-hourglass
:before
{
content
:
"\231b"
;}
.glyphicon-lamp
:before
{
content
:
"\e223"
;}
.glyphicon-duplicate
:before
{
content
:
"\e224"
;}
.glyphicon-piggy-bank
:before
{
content
:
"\e225"
;}
.glyphicon-scissors
:before
{
content
:
"\e226"
;}
.glyphicon-bitcoin
:before
{
content
:
"\e227"
;}
.glyphicon-btc
:before
{
content
:
"\e227"
;}
.glyphicon-xbt
:before
{
content
:
"\e227"
;}
.glyphicon-yen
:before
{
content
:
"\00a5"
;}
.glyphicon-jpy
:before
{
content
:
"\00a5"
;}
.glyphicon-ruble
:before
{
content
:
"\20bd"
;}
.glyphicon-rub
:before
{
content
:
"\20bd"
;}
.glyphicon-scale
:before
{
content
:
"\e230"
;}
.glyphicon-ice-lolly
:before
{
content
:
"\e231"
;}
.glyphicon-ice-lolly-tasted
:before
{
content
:
"\e232"
;}
.glyphicon-education
:before
{
content
:
"\e233"
;}
.glyphicon-option-horizontal
:before
{
content
:
"\e234"
;}
.glyphicon-option-vertical
:before
{
content
:
"\e235"
;}
.glyphicon-menu-hamburger
:before
{
content
:
"\e236"
;}
.glyphicon-modal-window
:before
{
content
:
"\e237"
;}
.glyphicon-oil
:before
{
content
:
"\e238"
;}
.glyphicon-grain
:before
{
content
:
"\e239"
;}
.glyphicon-sunglasses
:before
{
content
:
"\e240"
;}
.glyphicon-text-size
:before
{
content
:
"\e241"
;}
.glyphicon-text-color
:before
{
content
:
"\e242"
;}
.glyphicon-text-background
:before
{
content
:
"\e243"
;}
.glyphicon-object-align-top
:before
{
content
:
"\e244"
;}
.glyphicon-object-align-bottom
:before
{
content
:
"\e245"
;}
.glyphicon-object-align-horizontal
:before
{
content
:
"\e246"
;}
.glyphicon-object-align-left
:before
{
content
:
"\e247"
;}
.glyphicon-object-align-vertical
:before
{
content
:
"\e248"
;}
.glyphicon-object-align-right
:before
{
content
:
"\e249"
;}
.glyphicon-triangle-right
:before
{
content
:
"\e250"
;}
.glyphicon-triangle-left
:before
{
content
:
"\e251"
;}
.glyphicon-triangle-bottom
:before
{
content
:
"\e252"
;}
.glyphicon-triangle-top
:before
{
content
:
"\e253"
;}
.glyphicon-console
:before
{
content
:
"\e254"
;}
.glyphicon-superscript
:before
{
content
:
"\e255"
;}
.glyphicon-subscript
:before
{
content
:
"\e256"
;}
.glyphicon-menu-left
:before
{
content
:
"\e257"
;}
.glyphicon-menu-right
:before
{
content
:
"\e258"
;}
.glyphicon-menu-down
:before
{
content
:
"\e259"
;}
.glyphicon-menu-up
:before
{
content
:
"\e260"
;}
*
{
box-sizing
:
border-box
;}
*
:before
,*
:after
{
box-sizing
:
border-box
;}
html
{
font-size
:
10px
;
-webkit-tap-highlight-color
:
rgba
(
0
,
0
,
0
,
0
);}
body
{
font-family
:
"Open Sans"
,
"Helvetica Neue"
,
Helvetica
,
Arial
,
"Microsoft Yahei"
,
sans-serif
;
font-size
:
14px
;
color
:
#676a6c
;}
input
,
button
,
select
,
textarea
{
font-family
:
inherit
;
font-size
:
inherit
;
line-height
:
inherit
;}
a
{
color
:
#2c3e50
;
text-decoration
:
none
;}
a
:hover
,
a
:focus
{
color
:
#11181f
;
text-decoration
:
underline
;}
a
:focus
{
outline
:
thin
dotted
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
;}
figure
{
margin
:
0
;}
img
{
vertical-align
:
middle
;}
.img-responsive
,
.thumbnail
>
img
,
.thumbnail
a
>
img
,
.carousel-inner
>
.item
>
img
,
.carousel-inner
>
.item
>
a
>
img
{
display
:
block
;
max-width
:
100%
;
height
:
auto
;}
.img-rounded
{
border-radius
:
0px
;}
.img-thumbnail
{
padding
:
4px
;
line-height
:
1.42857143
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
0px
;
transition
:
all
0.2s
ease-in-out
;
display
:
inline-block
;
max-width
:
100%
;
height
:
auto
;}
.img-circle
{
border-radius
:
50%
;}
hr
{
margin-top
:
20px
;
margin-bottom
:
20px
;
border
:
0
;
border-top
:
1px
solid
#eeeeee
;}
.sr-only
{
position
:
absolute
;
width
:
1px
;
height
:
1px
;
margin
:
-1px
;
padding
:
0
;
overflow
:
hidden
;
clip
:
rect
(
0
,
0
,
0
,
0
);
border
:
0
;}
.sr-only-focusable
:active
,
.sr-only-focusable
:focus
{
position
:
static
;
width
:
auto
;
height
:
auto
;
margin
:
0
;
overflow
:
visible
;
clip
:
auto
;}
[
role
=
"button"
]
{
cursor
:
pointer
;}
h1
,
h2
,
h3
,
h4
,
h5
,
h6
,
.h1
,
.h2
,
.h3
,
.h4
,
.h5
,
.h6
{
font-family
:
inherit
;
font-weight
:
500
;
line-height
:
1.1
;
color
:
inherit
;}
h1
small
,
h2
small
,
h3
small
,
h4
small
,
h5
small
,
h6
small
,
.h1
small
,
.h2
small
,
.h3
small
,
.h4
small
,
.h5
small
,
.h6
small
,
h1
.small
,
h2
.small
,
h3
.small
,
h4
.small
,
h5
.small
,
h6
.small
,
.h1
.small
,
.h2
.small
,
.h3
.small
,
.h4
.small
,
.h5
.small
,
.h6
.small
{
font-weight
:
normal
;
line-height
:
1
;
color
:
#777777
;}
h1
,
.h1
,
h2
,
.h2
,
h3
,
.h3
{
margin-top
:
20px
;
margin-bottom
:
10px
;}
h1
small
,
.h1
small
,
h2
small
,
.h2
small
,
h3
small
,
.h3
small
,
h1
.small
,
.h1
.small
,
h2
.small
,
.h2
.small
,
h3
.small
,
.h3
.small
{
font-size
:
65%
;}
h4
,
.h4
,
h5
,
.h5
,
h6
,
.h6
{
margin-top
:
10px
;
margin-bottom
:
10px
;}
h4
small
,
.h4
small
,
h5
small
,
.h5
small
,
h6
small
,
.h6
small
,
h4
.small
,
.h4
.small
,
h5
.small
,
.h5
.small
,
h6
.small
,
.h6
.small
{
font-size
:
75%
;}
h1
,
.h1
{
font-size
:
36px
;}
h2
,
.h2
{
font-size
:
30px
;}
h3
,
.h3
{
font-size
:
24px
;}
h4
,
.h4
{
font-size
:
18px
;}
h5
,
.h5
{
font-size
:
14px
;}
h6
,
.h6
{
font-size
:
12px
;}
p
{
margin
:
0
0
10px
;}
.lead
{
margin-bottom
:
20px
;
font-size
:
16px
;
font-weight
:
300
;
line-height
:
1.4
;}
@media
(
min-width
:
768px
){
.lead
{
font-size
:
21px
;}}
small
,
.small
{
font-size
:
85%
;}
mark
,
.mark
{
background-color
:
#f0ad4e
;
padding
:
.2em
;}
.text-left
{
text-align
:
left
;}
.text-right
{
text-align
:
right
;}
.text-center
{
text-align
:
center
;}
.text-justify
{
text-align
:
justify
;}
.text-nowrap
{
white-space
:
nowrap
;}
.text-lowercase
{
text-transform
:
lowercase
;}
.text-uppercase
{
text-transform
:
uppercase
;}
.text-capitalize
{
text-transform
:
capitalize
;}
.text-muted
{
color
:
#777777
;}
.text-primary
{
color
:
#2c3e50
;}
.text-success
{
color
:
#5cb85c
;}
.text-info
{
color
:
#5bc0de
;}
.text-warning
{
color
:
#f0ad4e
;}
.text-danger
{
color
:
#de6764
;}
.bg-primary
{
color
:
#fff
;
background-color
:
#2c3e50
;}
.bg-success
{
color
:
#fff
;
background-color
:
#5cb85c
;}
.bg-info
{
color
:
#fff
;
background-color
:
#5bc0de
;}
.bg-warning
{
color
:
#fff
;
background-color
:
#f0ad4e
;}
.bg-danger
{
color
:
#fff
;
background-color
:
#de6764
;}
.page-header
{
padding-bottom
:
9px
;
margin
:
40px
0
20px
;
border-bottom
:
1px
solid
#eeeeee
;}
ul
,
ol
{
margin-top
:
0
;
margin-bottom
:
10px
;}
ul
ul
,
ol
ul
,
ul
ol
,
ol
ol
{
margin-bottom
:
0
;}
.list-unstyled
{
padding-left
:
0
;
list-style
:
none
;}
.list-inline
{
padding-left
:
0
;
list-style
:
none
;
margin-left
:
-5px
;}
.list-inline
>
li
{
display
:
inline-block
;
padding-left
:
5px
;
padding-right
:
5px
;}
dl
{
margin-top
:
0
;
margin-bottom
:
20px
;}
dt
,
dd
{
line-height
:
1.42857143
;}
dt
{
font-weight
:
bold
;}
dd
{
margin-left
:
0
;}
@media
(
min-width
:
768px
){
.dl-horizontal
dt
{
float
:
left
;
width
:
160px
;
clear
:
left
;
text-align
:
right
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
white-space
:
nowrap
;}
.dl-horizontal
dd
{
margin-left
:
180px
;}}
abbr
[
title
],
abbr
[
data-original-title
]
{
cursor
:
help
;
border-bottom
:
1px
dotted
#777777
;}
.initialism
{
font-size
:
90%
;
text-transform
:
uppercase
;}
blockquote
{
padding
:
10px
20px
;
margin
:
0
0
20px
;
font-size
:
17.5px
;
border-left
:
5px
solid
#eeeeee
;}
blockquote
p
:last-child
,
blockquote
ul
:last-child
,
blockquote
ol
:last-child
{
margin-bottom
:
0
;}
blockquote
footer
,
blockquote
small
,
blockquote
.small
{
display
:
block
;
font-size
:
80%
;
line-height
:
1.42857143
;
color
:
#777777
;}
blockquote
footer
:before
,
blockquote
small
:before
,
blockquote
.small
:before
{
content
:
'\2014 \00A0'
;}
.blockquote-reverse
,
blockquote
.pull-right
{
padding-right
:
15px
;
padding-left
:
0
;
border-right
:
5px
solid
#eeeeee
;
border-left
:
0
;
text-align
:
right
;}
.blockquote-reverse
footer
:before
,
blockquote
.pull-right
footer
:before
,
.blockquote-reverse
small
:before
,
blockquote
.pull-right
small
:before
,
.blockquote-reverse
.small
:before
,
blockquote
.pull-right
.small
:before
{
content
:
''
;}
.blockquote-reverse
footer
:after
,
blockquote
.pull-right
footer
:after
,
.blockquote-reverse
small
:after
,
blockquote
.pull-right
small
:after
,
.blockquote-reverse
.small
:after
,
blockquote
.pull-right
.small
:after
{
content
:
'\00A0 \2014'
;}
address
{
margin-bottom
:
20px
;
font-style
:
normal
;
line-height
:
1.42857143
;}
code
,
kbd
,
pre
,
samp
{
font-family
:
Menlo
,
Monaco
,
Consolas
,
"Courier New"
,
monospace
;}
code
{
padding
:
2px
4px
;
font-size
:
90%
;
color
:
#c7254e
;
background-color
:
#f9f2f4
;
border-radius
:
0px
;}
kbd
{
padding
:
2px
4px
;
font-size
:
90%
;
color
:
#fff
;
background-color
:
#333
;
border-radius
:
0px
;
box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.25
);}
kbd
kbd
{
padding
:
0
;
font-size
:
100%
;
font-weight
:
bold
;
box-shadow
:
none
;}
pre
{
display
:
block
;
padding
:
9.5px
;
margin
:
0
0
10px
;
font-size
:
13px
;
line-height
:
1.42857143
;
word-break
:
break-all
;
word-wrap
:
break-word
;
color
:
#333333
;
background-color
:
#f5f5f5
;
border
:
1px
solid
#ccc
;
border-radius
:
0px
;}
pre
code
{
padding
:
0
;
font-size
:
inherit
;
color
:
inherit
;
white-space
:
pre-wrap
;
background-color
:
transparent
;
border-radius
:
0
;}
.pre-scrollable
{
max-height
:
340px
;
overflow-y
:
scroll
;}
.container
{
margin-right
:
auto
;
margin-left
:
auto
;
padding-left
:
5px
;
padding-right
:
5px
;}
@media
(
min-width
:
768px
){
.container
{
width
:
730px
;}}
@media
(
min-width
:
992px
){
.container
{
width
:
950px
;}}
@media
(
min-width
:
1200px
){
.container
{
width
:
1150px
;}}
.container-fluid
{
margin-right
:
auto
;
margin-left
:
auto
;
padding-left
:
5px
;
padding-right
:
5px
;}
.row
{
margin-left
:
-5px
;
margin-right
:
-5px
;}
.col-xs-1
,
.col-sm-1
,
.col-md-1
,
.col-lg-1
,
.col-xs-2
,
.col-sm-2
,
.col-md-2
,
.col-lg-2
,
.col-xs-3
,
.col-sm-3
,
.col-md-3
,
.col-lg-3
,
.col-xs-4
,
.col-sm-4
,
.col-md-4
,
.col-lg-4
,
.col-xs-5
,
.col-sm-5
,
.col-md-5
,
.col-lg-5
,
.col-xs-6
,
.col-sm-6
,
.col-md-6
,
.col-lg-6
,
.col-xs-7
,
.col-sm-7
,
.col-md-7
,
.col-lg-7
,
.col-xs-8
,
.col-sm-8
,
.col-md-8
,
.col-lg-8
,
.col-xs-9
,
.col-sm-9
,
.col-md-9
,
.col-lg-9
,
.col-xs-10
,
.col-sm-10
,
.col-md-10
,
.col-lg-10
,
.col-xs-11
,
.col-sm-11
,
.col-md-11
,
.col-lg-11
,
.col-xs-12
,
.col-sm-12
,
.col-md-12
,
.col-lg-12
{
position
:
relative
;
min-height
:
1px
;
padding-left
:
5px
;
padding-right
:
5px
;}
.col-xs-1
,
.col-xs-2
,
.col-xs-3
,
.col-xs-4
,
.col-xs-5
,
.col-xs-6
,
.col-xs-7
,
.col-xs-8
,
.col-xs-9
,
.col-xs-10
,
.col-xs-11
,
.col-xs-12
{
float
:
left
;}
.col-xs-12
{
width
:
100%
;}
.col-xs-11
{
width
:
91.66666667%
;}
.col-xs-10
{
width
:
83.33333333%
;}
.col-xs-9
{
width
:
75%
;}
.col-xs-8
{
width
:
66.66666667%
;}
.col-xs-7
{
width
:
58.33333333%
;}
.col-xs-6
{
width
:
50%
;}
.col-xs-5
{
width
:
41.66666667%
;}
.col-xs-4
{
width
:
33.33333333%
;}
.col-xs-3
{
width
:
25%
;}
.col-xs-2
{
width
:
16.66666667%
;}
.col-xs-1
{
width
:
8.33333333%
;}
.col-xs-pull-12
{
right
:
100%
;}
.col-xs-pull-11
{
right
:
91.66666667%
;}
.col-xs-pull-10
{
right
:
83.33333333%
;}
.col-xs-pull-9
{
right
:
75%
;}
.col-xs-pull-8
{
right
:
66.66666667%
;}
.col-xs-pull-7
{
right
:
58.33333333%
;}
.col-xs-pull-6
{
right
:
50%
;}
.col-xs-pull-5
{
right
:
41.66666667%
;}
.col-xs-pull-4
{
right
:
33.33333333%
;}
.col-xs-pull-3
{
right
:
25%
;}
.col-xs-pull-2
{
right
:
16.66666667%
;}
.col-xs-pull-1
{
right
:
8.33333333%
;}
.col-xs-pull-0
{
right
:
auto
;}
.col-xs-push-12
{
left
:
100%
;}
.col-xs-push-11
{
left
:
91.66666667%
;}
.col-xs-push-10
{
left
:
83.33333333%
;}
.col-xs-push-9
{
left
:
75%
;}
.col-xs-push-8
{
left
:
66.66666667%
;}
.col-xs-push-7
{
left
:
58.33333333%
;}
.col-xs-push-6
{
left
:
50%
;}
.col-xs-push-5
{
left
:
41.66666667%
;}
.col-xs-push-4
{
left
:
33.33333333%
;}
.col-xs-push-3
{
left
:
25%
;}
.col-xs-push-2
{
left
:
16.66666667%
;}
.col-xs-push-1
{
left
:
8.33333333%
;}
.col-xs-push-0
{
left
:
auto
;}
.col-xs-offset-12
{
margin-left
:
100%
;}
.col-xs-offset-11
{
margin-left
:
91.66666667%
;}
.col-xs-offset-10
{
margin-left
:
83.33333333%
;}
.col-xs-offset-9
{
margin-left
:
75%
;}
.col-xs-offset-8
{
margin-left
:
66.66666667%
;}
.col-xs-offset-7
{
margin-left
:
58.33333333%
;}
.col-xs-offset-6
{
margin-left
:
50%
;}
.col-xs-offset-5
{
margin-left
:
41.66666667%
;}
.col-xs-offset-4
{
margin-left
:
33.33333333%
;}
.col-xs-offset-3
{
margin-left
:
25%
;}
.col-xs-offset-2
{
margin-left
:
16.66666667%
;}
.col-xs-offset-1
{
margin-left
:
8.33333333%
;}
.col-xs-offset-0
{
margin-left
:
0%
;}
@media
(
min-width
:
768px
){
.col-sm-1
,
.col-sm-2
,
.col-sm-3
,
.col-sm-4
,
.col-sm-5
,
.col-sm-6
,
.col-sm-7
,
.col-sm-8
,
.col-sm-9
,
.col-sm-10
,
.col-sm-11
,
.col-sm-12
{
float
:
left
;}
.col-sm-12
{
width
:
100%
;}
.col-sm-11
{
width
:
91.66666667%
;}
.col-sm-10
{
width
:
83.33333333%
;}
.col-sm-9
{
width
:
75%
;}
.col-sm-8
{
width
:
66.66666667%
;}
.col-sm-7
{
width
:
58.33333333%
;}
.col-sm-6
{
width
:
50%
;}
.col-sm-5
{
width
:
41.66666667%
;}
.col-sm-4
{
width
:
33.33333333%
;}
.col-sm-3
{
width
:
25%
;}
.col-sm-2
{
width
:
16.66666667%
;}
.col-sm-1
{
width
:
8.33333333%
;}
.col-sm-pull-12
{
right
:
100%
;}
.col-sm-pull-11
{
right
:
91.66666667%
;}
.col-sm-pull-10
{
right
:
83.33333333%
;}
.col-sm-pull-9
{
right
:
75%
;}
.col-sm-pull-8
{
right
:
66.66666667%
;}
.col-sm-pull-7
{
right
:
58.33333333%
;}
.col-sm-pull-6
{
right
:
50%
;}
.col-sm-pull-5
{
right
:
41.66666667%
;}
.col-sm-pull-4
{
right
:
33.33333333%
;}
.col-sm-pull-3
{
right
:
25%
;}
.col-sm-pull-2
{
right
:
16.66666667%
;}
.col-sm-pull-1
{
right
:
8.33333333%
;}
.col-sm-pull-0
{
right
:
auto
;}
.col-sm-push-12
{
left
:
100%
;}
.col-sm-push-11
{
left
:
91.66666667%
;}
.col-sm-push-10
{
left
:
83.33333333%
;}
.col-sm-push-9
{
left
:
75%
;}
.col-sm-push-8
{
left
:
66.66666667%
;}
.col-sm-push-7
{
left
:
58.33333333%
;}
.col-sm-push-6
{
left
:
50%
;}
.col-sm-push-5
{
left
:
41.66666667%
;}
.col-sm-push-4
{
left
:
33.33333333%
;}
.col-sm-push-3
{
left
:
25%
;}
.col-sm-push-2
{
left
:
16.66666667%
;}
.col-sm-push-1
{
left
:
8.33333333%
;}
.col-sm-push-0
{
left
:
auto
;}
.col-sm-offset-12
{
margin-left
:
100%
;}
.col-sm-offset-11
{
margin-left
:
91.66666667%
;}
.col-sm-offset-10
{
margin-left
:
83.33333333%
;}
.col-sm-offset-9
{
margin-left
:
75%
;}
.col-sm-offset-8
{
margin-left
:
66.66666667%
;}
.col-sm-offset-7
{
margin-left
:
58.33333333%
;}
.col-sm-offset-6
{
margin-left
:
50%
;}
.col-sm-offset-5
{
margin-left
:
41.66666667%
;}
.col-sm-offset-4
{
margin-left
:
33.33333333%
;}
.col-sm-offset-3
{
margin-left
:
25%
;}
.col-sm-offset-2
{
margin-left
:
16.66666667%
;}
.col-sm-offset-1
{
margin-left
:
8.33333333%
;}
.col-sm-offset-0
{
margin-left
:
0%
;}}
@media
(
min-width
:
992px
){
.col-md-1
,
.col-md-2
,
.col-md-3
,
.col-md-4
,
.col-md-5
,
.col-md-6
,
.col-md-7
,
.col-md-8
,
.col-md-9
,
.col-md-10
,
.col-md-11
,
.col-md-12
{
float
:
left
;}
.col-md-12
{
width
:
100%
;}
.col-md-11
{
width
:
91.66666667%
;}
.col-md-10
{
width
:
83.33333333%
;}
.col-md-9
{
width
:
75%
;}
.col-md-8
{
width
:
66.66666667%
;}
.col-md-7
{
width
:
58.33333333%
;}
.col-md-6
{
width
:
50%
;}
.col-md-5
{
width
:
41.66666667%
;}
.col-md-4
{
width
:
33.33333333%
;}
.col-md-3
{
width
:
25%
;}
.col-md-2
{
width
:
16.66666667%
;}
.col-md-1
{
width
:
8.33333333%
;}
.col-md-pull-12
{
right
:
100%
;}
.col-md-pull-11
{
right
:
91.66666667%
;}
.col-md-pull-10
{
right
:
83.33333333%
;}
.col-md-pull-9
{
right
:
75%
;}
.col-md-pull-8
{
right
:
66.66666667%
;}
.col-md-pull-7
{
right
:
58.33333333%
;}
.col-md-pull-6
{
right
:
50%
;}
.col-md-pull-5
{
right
:
41.66666667%
;}
.col-md-pull-4
{
right
:
33.33333333%
;}
.col-md-pull-3
{
right
:
25%
;}
.col-md-pull-2
{
right
:
16.66666667%
;}
.col-md-pull-1
{
right
:
8.33333333%
;}
.col-md-pull-0
{
right
:
auto
;}
.col-md-push-12
{
left
:
100%
;}
.col-md-push-11
{
left
:
91.66666667%
;}
.col-md-push-10
{
left
:
83.33333333%
;}
.col-md-push-9
{
left
:
75%
;}
.col-md-push-8
{
left
:
66.66666667%
;}
.col-md-push-7
{
left
:
58.33333333%
;}
.col-md-push-6
{
left
:
50%
;}
.col-md-push-5
{
left
:
41.66666667%
;}
.col-md-push-4
{
left
:
33.33333333%
;}
.col-md-push-3
{
left
:
25%
;}
.col-md-push-2
{
left
:
16.66666667%
;}
.col-md-push-1
{
left
:
8.33333333%
;}
.col-md-push-0
{
left
:
auto
;}
.col-md-offset-12
{
margin-left
:
100%
;}
.col-md-offset-11
{
margin-left
:
91.66666667%
;}
.col-md-offset-10
{
margin-left
:
83.33333333%
;}
.col-md-offset-9
{
margin-left
:
75%
;}
.col-md-offset-8
{
margin-left
:
66.66666667%
;}
.col-md-offset-7
{
margin-left
:
58.33333333%
;}
.col-md-offset-6
{
margin-left
:
50%
;}
.col-md-offset-5
{
margin-left
:
41.66666667%
;}
.col-md-offset-4
{
margin-left
:
33.33333333%
;}
.col-md-offset-3
{
margin-left
:
25%
;}
.col-md-offset-2
{
margin-left
:
16.66666667%
;}
.col-md-offset-1
{
margin-left
:
8.33333333%
;}
.col-md-offset-0
{
margin-left
:
0%
;}}
@media
(
min-width
:
1200px
){
.col-lg-1
,
.col-lg-2
,
.col-lg-3
,
.col-lg-4
,
.col-lg-5
,
.col-lg-6
,
.col-lg-7
,
.col-lg-8
,
.col-lg-9
,
.col-lg-10
,
.col-lg-11
,
.col-lg-12
{
float
:
left
;}
.col-lg-12
{
width
:
100%
;}
.col-lg-11
{
width
:
91.66666667%
;}
.col-lg-10
{
width
:
83.33333333%
;}
.col-lg-9
{
width
:
75%
;}
.col-lg-8
{
width
:
66.66666667%
;}
.col-lg-7
{
width
:
58.33333333%
;}
.col-lg-6
{
width
:
50%
;}
.col-lg-5
{
width
:
41.66666667%
;}
.col-lg-4
{
width
:
33.33333333%
;}
.col-lg-3
{
width
:
25%
;}
.col-lg-2
{
width
:
16.66666667%
;}
.col-lg-1
{
width
:
8.33333333%
;}
.col-lg-pull-12
{
right
:
100%
;}
.col-lg-pull-11
{
right
:
91.66666667%
;}
.col-lg-pull-10
{
right
:
83.33333333%
;}
.col-lg-pull-9
{
right
:
75%
;}
.col-lg-pull-8
{
right
:
66.66666667%
;}
.col-lg-pull-7
{
right
:
58.33333333%
;}
.col-lg-pull-6
{
right
:
50%
;}
.col-lg-pull-5
{
right
:
41.66666667%
;}
.col-lg-pull-4
{
right
:
33.33333333%
;}
.col-lg-pull-3
{
right
:
25%
;}
.col-lg-pull-2
{
right
:
16.66666667%
;}
.col-lg-pull-1
{
right
:
8.33333333%
;}
.col-lg-pull-0
{
right
:
auto
;}
.col-lg-push-12
{
left
:
100%
;}
.col-lg-push-11
{
left
:
91.66666667%
;}
.col-lg-push-10
{
left
:
83.33333333%
;}
.col-lg-push-9
{
left
:
75%
;}
.col-lg-push-8
{
left
:
66.66666667%
;}
.col-lg-push-7
{
left
:
58.33333333%
;}
.col-lg-push-6
{
left
:
50%
;}
.col-lg-push-5
{
left
:
41.66666667%
;}
.col-lg-push-4
{
left
:
33.33333333%
;}
.col-lg-push-3
{
left
:
25%
;}
.col-lg-push-2
{
left
:
16.66666667%
;}
.col-lg-push-1
{
left
:
8.33333333%
;}
.col-lg-push-0
{
left
:
auto
;}
.col-lg-offset-12
{
margin-left
:
100%
;}
.col-lg-offset-11
{
margin-left
:
91.66666667%
;}
.col-lg-offset-10
{
margin-left
:
83.33333333%
;}
.col-lg-offset-9
{
margin-left
:
75%
;}
.col-lg-offset-8
{
margin-left
:
66.66666667%
;}
.col-lg-offset-7
{
margin-left
:
58.33333333%
;}
.col-lg-offset-6
{
margin-left
:
50%
;}
.col-lg-offset-5
{
margin-left
:
41.66666667%
;}
.col-lg-offset-4
{
margin-left
:
33.33333333%
;}
.col-lg-offset-3
{
margin-left
:
25%
;}
.col-lg-offset-2
{
margin-left
:
16.66666667%
;}
.col-lg-offset-1
{
margin-left
:
8.33333333%
;}
.col-lg-offset-0
{
margin-left
:
0%
;}}
table
{
background-color
:
transparent
;}
caption
{
padding-top
:
8px
;
padding-bottom
:
8px
;
color
:
#777777
;
text-align
:
left
;}
th
{
text-align
:
left
;}
.table
{
width
:
100%
;
max-width
:
100%
;
margin-bottom
:
20px
;}
.table
>
thead
>
tr
>
th
,
.table
>
tbody
>
tr
>
th
,
.table
>
tfoot
>
tr
>
th
,
.table
>
thead
>
tr
>
td
,
.table
>
tbody
>
tr
>
td
,
.table
>
tfoot
>
tr
>
td
{
padding
:
8px
;
line-height
:
1.42857143
;
vertical-align
:
top
;
border-top
:
1px
solid
#ddd
;}
.ani.table
>
thead
>
tr
>
th
{
padding
:
10px
!important
;
vertical-align
:
bottom
;
border-bottom
:
2px
solid
#ddd
;}
table
>
thead
>
tr
>
th
{
vertical-align
:
bottom
;
border-bottom
:
2px
solid
#ddd
;}
.table
>
caption
+
thead
>
tr
:first-child
>
th
,
.table
>
colgroup
+
thead
>
tr
:first-child
>
th
,
.table
>
thead
:first-child
>
tr
:first-child
>
th
,
.table
>
caption
+
thead
>
tr
:first-child
>
td
,
.table
>
colgroup
+
thead
>
tr
:first-child
>
td
,
.table
>
thead
:first-child
>
tr
:first-child
>
td
{
border-top
:
0
;}
.table
>
tbody
+
tbody
{
border-top
:
2px
solid
#ddd
;}
.table
.table
{
background-color
:
#fff
;}
.table-condensed
>
thead
>
tr
>
th
,
.table-condensed
>
tbody
>
tr
>
th
,
.table-condensed
>
tfoot
>
tr
>
th
,
.table-condensed
>
thead
>
tr
>
td
,
.table-condensed
>
tbody
>
tr
>
td
,
.table-condensed
>
tfoot
>
tr
>
td
{
padding
:
5px
;}
.table-bordered
{
border
:
1px
solid
#ddd
;}
.table-bordered
>
thead
>
tr
>
th
,
.table-bordered
>
tbody
>
tr
>
th
,
.table-bordered
>
tfoot
>
tr
>
th
,
.table-bordered
>
thead
>
tr
>
td
,
.table-bordered
>
tbody
>
tr
>
td
,
.table-bordered
>
tfoot
>
tr
>
td
{
border
:
1px
solid
#ddd
;}
.table-bordered
>
thead
>
tr
>
th
,
.table-bordered
>
thead
>
tr
>
td
{
border-bottom-width
:
2px
;}
.table-striped
>
tbody
>
tr
:nth-of-type
(
odd
)
{
background-color
:
#f9f9f9
;}
.table-hover
>
tbody
>
tr
:hover
{
background-color
:
#f5f5f5
;}
table
col
[
class
*=
"col-"
]
{
position
:
static
;
float
:
none
;
display
:
table-column
;}
table
td
[
class
*=
"col-"
],
table
th
[
class
*=
"col-"
]
{
position
:
static
;
float
:
none
;
display
:
table-cell
;}
.table
>
thead
>
tr
>
td
.active
,
.table
>
tbody
>
tr
>
td
.active
,
.table
>
tfoot
>
tr
>
td
.active
,
.table
>
thead
>
tr
>
th
.active
,
.table
>
tbody
>
tr
>
th
.active
,
.table
>
tfoot
>
tr
>
th
.active
,
.table
>
thead
>
tr
.active
>
td
,
.table
>
tbody
>
tr
.active
>
td
,
.table
>
tfoot
>
tr
.active
>
td
,
.table
>
thead
>
tr
.active
>
th
,
.table
>
tbody
>
tr
.active
>
th
,
.table
>
tfoot
>
tr
.active
>
th
{
background-color
:
#f5f5f5
;}
.table-hover
>
tbody
>
tr
>
td
.active
:hover
,
.table-hover
>
tbody
>
tr
>
th
.active
:hover
,
.table-hover
>
tbody
>
tr
.active
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
.active
,
.table-hover
>
tbody
>
tr
.active
:hover
>
th
{
background-color
:
#e8e8e8
;}
.table
>
thead
>
tr
>
td
.success
,
.table
>
tbody
>
tr
>
td
.success
,
.table
>
tfoot
>
tr
>
td
.success
,
.table
>
thead
>
tr
>
th
.success
,
.table
>
tbody
>
tr
>
th
.success
,
.table
>
tfoot
>
tr
>
th
.success
,
.table
>
thead
>
tr
.success
>
td
,
.table
>
tbody
>
tr
.success
>
td
,
.table
>
tfoot
>
tr
.success
>
td
,
.table
>
thead
>
tr
.success
>
th
,
.table
>
tbody
>
tr
.success
>
th
,
.table
>
tfoot
>
tr
.success
>
th
{
background-color
:
#5cb85c
;}
.table-hover
>
tbody
>
tr
>
td
.success
:hover
,
.table-hover
>
tbody
>
tr
>
th
.success
:hover
,
.table-hover
>
tbody
>
tr
.success
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
.success
,
.table-hover
>
tbody
>
tr
.success
:hover
>
th
{
background-color
:
#4cae4c
;}
.table
>
thead
>
tr
>
td
.info
,
.table
>
tbody
>
tr
>
td
.info
,
.table
>
tfoot
>
tr
>
td
.info
,
.table
>
thead
>
tr
>
th
.info
,
.table
>
tbody
>
tr
>
th
.info
,
.table
>
tfoot
>
tr
>
th
.info
,
.table
>
thead
>
tr
.info
>
td
,
.table
>
tbody
>
tr
.info
>
td
,
.table
>
tfoot
>
tr
.info
>
td
,
.table
>
thead
>
tr
.info
>
th
,
.table
>
tbody
>
tr
.info
>
th
,
.table
>
tfoot
>
tr
.info
>
th
{
background-color
:
#5bc0de
;}
.table-hover
>
tbody
>
tr
>
td
.info
:hover
,
.table-hover
>
tbody
>
tr
>
th
.info
:hover
,
.table-hover
>
tbody
>
tr
.info
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
.info
,
.table-hover
>
tbody
>
tr
.info
:hover
>
th
{
background-color
:
#46b8da
;}
.table
>
thead
>
tr
>
td
.warning
,
.table
>
tbody
>
tr
>
td
.warning
,
.table
>
tfoot
>
tr
>
td
.warning
,
.table
>
thead
>
tr
>
th
.warning
,
.table
>
tbody
>
tr
>
th
.warning
,
.table
>
tfoot
>
tr
>
th
.warning
,
.table
>
thead
>
tr
.warning
>
td
,
.table
>
tbody
>
tr
.warning
>
td
,
.table
>
tfoot
>
tr
.warning
>
td
,
.table
>
thead
>
tr
.warning
>
th
,
.table
>
tbody
>
tr
.warning
>
th
,
.table
>
tfoot
>
tr
.warning
>
th
{
background-color
:
#f0ad4e
;}
.table-hover
>
tbody
>
tr
>
td
.warning
:hover
,
.table-hover
>
tbody
>
tr
>
th
.warning
:hover
,
.table-hover
>
tbody
>
tr
.warning
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
.warning
,
.table-hover
>
tbody
>
tr
.warning
:hover
>
th
{
background-color
:
#eea236
;}
.table
>
thead
>
tr
>
td
.danger
,
.table
>
tbody
>
tr
>
td
.danger
,
.table
>
tfoot
>
tr
>
td
.danger
,
.table
>
thead
>
tr
>
th
.danger
,
.table
>
tbody
>
tr
>
th
.danger
,
.table
>
tfoot
>
tr
>
th
.danger
,
.table
>
thead
>
tr
.danger
>
td
,
.table
>
tbody
>
tr
.danger
>
td
,
.table
>
tfoot
>
tr
.danger
>
td
,
.table
>
thead
>
tr
.danger
>
th
,
.table
>
tbody
>
tr
.danger
>
th
,
.table
>
tfoot
>
tr
.danger
>
th
{
background-color
:
#de6764
;}
.table-hover
>
tbody
>
tr
>
td
.danger
:hover
,
.table-hover
>
tbody
>
tr
>
th
.danger
:hover
,
.table-hover
>
tbody
>
tr
.danger
:hover
>
td
,
.table-hover
>
tbody
>
tr
:hover
>
.danger
,
.table-hover
>
tbody
>
tr
.danger
:hover
>
th
{
background-color
:
#da524f
;}
.table-responsive
{
overflow-x
:
auto
;
min-height
:
0.01%
;}
@media
screen
and
(
max-width
:
767px
){
.table-responsive
{
width
:
100%
;
margin-bottom
:
15px
;
overflow-y
:
hidden
;
-ms-overflow-style
:
-ms-autohiding-scrollbar
;
border
:
1px
solid
#ddd
;}
.table-responsive
>
.table
{
margin-bottom
:
0
;}
.table-responsive
>
.table
>
thead
>
tr
>
th
,
.table-responsive
>
.table
>
tbody
>
tr
>
th
,
.table-responsive
>
.table
>
tfoot
>
tr
>
th
,
.table-responsive
>
.table
>
thead
>
tr
>
td
,
.table-responsive
>
.table
>
tbody
>
tr
>
td
,
.table-responsive
>
.table
>
tfoot
>
tr
>
td
{
white-space
:
nowrap
;}
.table-responsive
>
.table-bordered
{
border
:
0
;}
.table-responsive
>
.table-bordered
>
thead
>
tr
>
th
:first-child
,
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
th
:first-child
,
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
th
:first-child
,
.table-responsive
>
.table-bordered
>
thead
>
tr
>
td
:first-child
,
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
td
:first-child
,
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
td
:first-child
{
border-left
:
0
;}
.table-responsive
>
.table-bordered
>
thead
>
tr
>
th
:last-child
,
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
th
:last-child
,
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
th
:last-child
,
.table-responsive
>
.table-bordered
>
thead
>
tr
>
td
:last-child
,
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
td
:last-child
,
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
td
:last-child
{
border-right
:
0
;}
.table-responsive
>
.table-bordered
>
tbody
>
tr
:last-child
>
th
,
.table-responsive
>
.table-bordered
>
tfoot
>
tr
:last-child
>
th
,
.table-responsive
>
.table-bordered
>
tbody
>
tr
:last-child
>
td
,
.table-responsive
>
.table-bordered
>
tfoot
>
tr
:last-child
>
td
{
border-bottom
:
0
;}}
fieldset
{
padding
:
0
;
margin
:
0
;
border
:
0
;
min-width
:
0
;}
legend
{
display
:
block
;
width
:
100%
;
padding
:
0
;
margin-bottom
:
20px
;
font-size
:
21px
;
line-height
:
inherit
;
color
:
#333333
;
border
:
0
;
border-bottom
:
1px
solid
#e5e5e5
;}
label
{
display
:
inline-block
;
max-width
:
100%
;
margin-bottom
:
5px
;
font-weight
:
bold
;}
input
[
type
=
"search"
]
{
box-sizing
:
border-box
;}
input
[
type
=
"radio"
],
input
[
type
=
"checkbox"
]
{
margin
:
4px
0
0
;
margin-top
:
1px
\
9
;
line-height
:
normal
;}
input
[
type
=
"file"
]
{
display
:
block
;}
input
[
type
=
"range"
]
{
display
:
block
;
width
:
100%
;}
select
[
multiple
],
select
[
size
]
{
height
:
auto
;}
input
[
type
=
"file"
]
:focus
,
input
[
type
=
"radio"
]
:focus
,
input
[
type
=
"checkbox"
]
:focus
{
outline
:
thin
dotted
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
;}
output
{
display
:
block
;
padding-top
:
7px
;
font-size
:
14px
;
line-height
:
1.42857143
;
color
:
#555555
;}
.form-control
{
display
:
block
;
width
:
100%
;
height
:
34px
;
padding
:
6px
12px
;
font-size
:
14px
;
line-height
:
1.42857143
;
color
:
#555555
;
background-color
:
#fff
;
background-image
:
none
;
border
:
1px
solid
#ccc
;
border-radius
:
0px
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);
transition
:
border-color
ease-in-out
.15s
,
box-shadow
ease-in-out
.15s
;}
.form-control
:focus
{
border-color
:
#66afe9
;
outline
:
0
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
.075
),
0
0
8px
rgba
(
102
,
175
,
233
,
0.6
);}
.form-control
::-moz-placeholder
{
color
:
#999
;
opacity
:
1
;}
.form-control
:-ms-input-placeholder
{
color
:
#999
;}
.form-control
::-webkit-input-placeholder
{
color
:
#999
;}
.form-control
[
disabled
],
.form-control
[
readonly
],
fieldset
[
disabled
]
.form-control
{
background-color
:
#eeeeee
;
opacity
:
1
;}
.form-control
[
disabled
],
fieldset
[
disabled
]
.form-control
{
cursor
:
not-allowed
;}
textarea
.form-control
{
height
:
auto
;}
input
[
type
=
"search"
]
{
-webkit-appearance
:
none
;}
@media
screen
and
(
-webkit-min-device-pixel-ratio
:
0
){
input
[
type
=
"date"
],
input
[
type
=
"time"
],
input
[
type
=
"datetime-local"
],
input
[
type
=
"month"
]
{
line-height
:
34px
;}
input
[
type
=
"date"
]
.input-sm
,
input
[
type
=
"time"
]
.input-sm
,
input
[
type
=
"datetime-local"
]
.input-sm
,
input
[
type
=
"month"
]
.input-sm
,
.input-group-sm
input
[
type
=
"date"
],
.input-group-sm
input
[
type
=
"time"
],
.input-group-sm
input
[
type
=
"datetime-local"
],
.input-group-sm
input
[
type
=
"month"
]
{
line-height
:
30px
;}
input
[
type
=
"date"
]
.input-lg
,
input
[
type
=
"time"
]
.input-lg
,
input
[
type
=
"datetime-local"
]
.input-lg
,
input
[
type
=
"month"
]
.input-lg
,
.input-group-lg
input
[
type
=
"date"
],
.input-group-lg
input
[
type
=
"time"
],
.input-group-lg
input
[
type
=
"datetime-local"
],
.input-group-lg
input
[
type
=
"month"
]
{
line-height
:
46px
;}}
.form-group
{
margin-bottom
:
15px
;}
.radio
,
.checkbox
{
position
:
relative
;
display
:
block
;
margin-top
:
10px
;
margin-bottom
:
10px
;}
.radio
label
,
.checkbox
label
{
min-height
:
20px
;
padding-left
:
20px
;
margin-bottom
:
0
;
font-weight
:
normal
;
cursor
:
pointer
;}
.radio
input
[
type
=
"radio"
],
.radio-inline
input
[
type
=
"radio"
],
.checkbox
input
[
type
=
"checkbox"
],
.checkbox-inline
input
[
type
=
"checkbox"
]
{
position
:
absolute
;
margin-left
:
-20px
;
margin-top
:
4px
\
9
;}
.radio
+
.radio
,
.checkbox
+
.checkbox
{
margin-top
:
-5px
;}
.radio-inline
,
.checkbox-inline
{
position
:
relative
;
display
:
inline-block
;
padding-left
:
20px
;
margin-bottom
:
0
;
vertical-align
:
middle
;
font-weight
:
normal
;
cursor
:
pointer
;}
.radio-inline
+
.radio-inline
,
.checkbox-inline
+
.checkbox-inline
{
margin-top
:
0
;
margin-left
:
10px
;}
input
[
type
=
"radio"
][
disabled
],
input
[
type
=
"checkbox"
][
disabled
],
input
[
type
=
"radio"
]
.disabled
,
input
[
type
=
"checkbox"
]
.disabled
,
fieldset
[
disabled
]
input
[
type
=
"radio"
],
fieldset
[
disabled
]
input
[
type
=
"checkbox"
]
{
cursor
:
not-allowed
;}
.radio-inline.disabled
,
.checkbox-inline.disabled
,
fieldset
[
disabled
]
.radio-inline
,
fieldset
[
disabled
]
.checkbox-inline
{
cursor
:
not-allowed
;}
.radio.disabled
label
,
.checkbox.disabled
label
,
fieldset
[
disabled
]
.radio
label
,
fieldset
[
disabled
]
.checkbox
label
{
cursor
:
not-allowed
;}
.form-control-static
{
padding-top
:
7px
;
padding-bottom
:
7px
;
margin-bottom
:
0
;
min-height
:
34px
;}
.form-control-static.input-lg
,
.form-control-static.input-sm
{
padding-left
:
0
;
padding-right
:
0
;}
.input-sm
{
height
:
30px
;
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
0px
;}
select
.input-sm
{
height
:
30px
;
line-height
:
30px
;}
textarea
.input-sm
,
select
[
multiple
]
.input-sm
{
height
:
auto
;}
.form-group-sm
.form-control
{
height
:
30px
;
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
0px
;}
select
.form-group-sm
.form-control
{
height
:
30px
;
line-height
:
30px
;}
textarea
.form-group-sm
.form-control
,
select
[
multiple
]
.form-group-sm
.form-control
{
height
:
auto
;}
.form-group-sm
.form-control-static
{
height
:
30px
;
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
min-height
:
32px
;}
.input-lg
{
height
:
46px
;
padding
:
10px
16px
;
font-size
:
18px
;
line-height
:
1.3333333
;
border-radius
:
0px
;}
select
.input-lg
{
height
:
46px
;
line-height
:
46px
;}
textarea
.input-lg
,
select
[
multiple
]
.input-lg
{
height
:
auto
;}
.form-group-lg
.form-control
{
height
:
46px
;
padding
:
10px
16px
;
font-size
:
18px
;
line-height
:
1.3333333
;
border-radius
:
0px
;}
select
.form-group-lg
.form-control
{
height
:
46px
;
line-height
:
46px
;}
textarea
.form-group-lg
.form-control
,
select
[
multiple
]
.form-group-lg
.form-control
{
height
:
auto
;}
.form-group-lg
.form-control-static
{
height
:
46px
;
padding
:
10px
16px
;
font-size
:
18px
;
line-height
:
1.3333333
;
min-height
:
38px
;}
.has-feedback
{
position
:
relative
;}
.has-feedback
.form-control
{
padding-right
:
42.5px
;}
.form-control-feedback
{
position
:
absolute
;
top
:
0
;
right
:
0
;
z-index
:
2
;
display
:
block
;
width
:
34px
;
height
:
34px
;
line-height
:
34px
;
text-align
:
center
;
pointer-events
:
none
;}
.input-lg
+
.form-control-feedback
{
width
:
46px
;
height
:
46px
;
line-height
:
46px
;}
.input-sm
+
.form-control-feedback
{
width
:
30px
;
height
:
30px
;
line-height
:
30px
;}
.has-success
.help-block
,
.has-success
.control-label
,
.has-success
.radio
,
.has-success
.checkbox
,
.has-success
.radio-inline
,
.has-success
.checkbox-inline
,
.has-success.radio
label
,
.has-success.checkbox
label
,
.has-success.radio-inline
label
,
.has-success.checkbox-inline
label
{
color
:
#fff
;}
.has-success
.form-control
{
border-color
:
#fff
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);}
.has-success
.form-control
:focus
{
border-color
:
#e6e6e6
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#ffffff
;}
.has-success
.input-group-addon
{
color
:
#fff
;
border-color
:
#fff
;
background-color
:
#5cb85c
;}
.has-success
.form-control-feedback
{
color
:
#fff
;}
.has-warning
.help-block
,
.has-warning
.control-label
,
.has-warning
.radio
,
.has-warning
.checkbox
,
.has-warning
.radio-inline
,
.has-warning
.checkbox-inline
,
.has-warning.radio
label
,
.has-warning.checkbox
label
,
.has-warning.radio-inline
label
,
.has-warning.checkbox-inline
label
{
color
:
#fff
;}
.has-warning
.form-control
{
border-color
:
#fff
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);}
.has-warning
.form-control
:focus
{
border-color
:
#e6e6e6
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#ffffff
;}
.has-warning
.input-group-addon
{
color
:
#fff
;
border-color
:
#fff
;
background-color
:
#f0ad4e
;}
.has-warning
.form-control-feedback
{
color
:
#fff
;}
.has-error
.help-block
,
.has-error
.control-label
,
.has-error
.radio
,
.has-error
.checkbox
,
.has-error
.radio-inline
,
.has-error
.checkbox-inline
,
.has-error.radio
label
,
.has-error.checkbox
label
,
.has-error.radio-inline
label
,
.has-error.checkbox-inline
label
{
color
:
#fff
;}
.has-error
.form-control
{
border-color
:
#fff
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
);}
.has-error
.form-control
:focus
{
border-color
:
#e6e6e6
;
box-shadow
:
inset
0
1px
1px
rgba
(
0
,
0
,
0
,
0.075
),
0
0
6px
#ffffff
;}
.has-error
.input-group-addon
{
color
:
#fff
;
border-color
:
#fff
;
background-color
:
#de6764
;}
.has-error
.form-control-feedback
{
color
:
#fff
;}
.has-feedback
label
~
.form-control-feedback
{
top
:
25px
;}
.has-feedback
label
.sr-only
~
.form-control-feedback
{
top
:
0
;}
.help-block
{
display
:
block
;
margin-top
:
5px
;
margin-bottom
:
10px
;
color
:
#737373
;}
@media
(
min-width
:
768px
){
.form-inline
.form-group
{
display
:
inline-block
;
margin-bottom
:
0
;
vertical-align
:
middle
;}
.form-inline
.form-control
{
display
:
inline-block
;
width
:
auto
;
vertical-align
:
middle
;}
.form-inline
.form-control-static
{
display
:
inline-block
;}
.form-inline
.input-group
{
display
:
inline-table
;
vertical-align
:
middle
;}
.form-inline
.input-group
.input-group-addon
,
.form-inline
.input-group
.input-group-btn
,
.form-inline
.input-group
.form-control
{
width
:
auto
;}
.form-inline
.input-group
>
.form-control
{
width
:
100%
;}
.form-inline
.control-label
{
margin-bottom
:
0
;
vertical-align
:
middle
;}
.form-inline
.radio
,
.form-inline
.checkbox
{
display
:
inline-block
;
margin-top
:
0
;
margin-bottom
:
0
;
vertical-align
:
middle
;}
.form-inline
.radio
label
,
.form-inline
.checkbox
label
{
padding-left
:
0
;}
.form-inline
.radio
input
[
type
=
"radio"
],
.form-inline
.checkbox
input
[
type
=
"checkbox"
]
{
position
:
relative
;
margin-left
:
0
;}
.form-inline
.has-feedback
.form-control-feedback
{
top
:
0
;}}
.form-horizontal
.radio
,
.form-horizontal
.checkbox
,
.form-horizontal
.radio-inline
,
.form-horizontal
.checkbox-inline
{
margin-top
:
0
;
margin-bottom
:
0
;
padding-top
:
7px
;}
.form-horizontal
.radio
,
.form-horizontal
.checkbox
{
min-height
:
27px
;}
.form-horizontal
.form-group
{
margin-left
:
-5px
;
margin-right
:
-5px
;}
@media
(
min-width
:
768px
){
.form-horizontal
.control-label
{
text-align
:
right
;
margin-bottom
:
0
;
padding-top
:
7px
;}}
.form-horizontal
.has-feedback
.form-control-feedback
{
right
:
5px
;}
@media
(
min-width
:
768px
){
.form-horizontal
.form-group-lg
.control-label
{
padding-top
:
14.333333px
;}}
@media
(
min-width
:
768px
){
.form-horizontal
.form-group-sm
.control-label
{
padding-top
:
6px
;}}
.btn
{
display
:
inline-block
;
margin-bottom
:
0
;
font-weight
:
normal
;
text-align
:
center
;
vertical-align
:
middle
;
-ms-touch-action
:
manipulation
;
touch-action
:
manipulation
;
cursor
:
pointer
;
background-image
:
none
;
border
:
1px
solid
transparent
;
white-space
:
nowrap
;
padding
:
6px
12px
;
font-size
:
14px
;
line-height
:
1.42857143
;
border-radius
:
0px
;
-webkit-user-select
:
none
;
-moz-user-select
:
none
;
-ms-user-select
:
none
;
user-select
:
none
;}
.btn
:focus
,
.btn
:active:focus
,
.btn.active
:focus
,
.btn.focus
,
.btn
:active
.focus
,
.btn.active.focus
{
outline
:
thin
dotted
;
outline
:
5px
auto
-webkit-focus-ring-color
;
outline-offset
:
-2px
;}
.btn
:hover
,
.btn
:focus
,
.btn.focus
{
color
:
#333
;
text-decoration
:
none
;}
.btn
:active
,
.btn.active
{
outline
:
0
;
background-image
:
none
;
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);}
.btn.disabled
,
.btn
[
disabled
],
fieldset
[
disabled
]
.btn
{
cursor
:
not-allowed
;
pointer-events
:
none
;
opacity
:
0.65
;
filter
:
alpha
(
opacity
=
65
);
box-shadow
:
none
;}
.btn-default
{
color
:
#333
;
background-color
:
#fff
;
border-color
:
#ccc
;}
.btn-default
:hover
,
.btn-default
:focus
,
.btn-default.focus
,
.btn-default
:active
,
.btn-default.active
,
.open
>
.dropdown-toggle.btn-default
{
color
:
#333
;
background-color
:
#e6e6e6
;
border-color
:
#adadad
;}
.btn-default
:active
,
.btn-default.active
,
.open
>
.dropdown-toggle.btn-default
{
background-image
:
none
;}
.btn-default.disabled
,
.btn-default
[
disabled
],
fieldset
[
disabled
]
.btn-default
,
.btn-default.disabled
:hover
,
.btn-default
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-default
:hover
,
.btn-default.disabled
:focus
,
.btn-default
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-default
:focus
,
.btn-default.disabled.focus
,
.btn-default
[
disabled
]
.focus
,
fieldset
[
disabled
]
.btn-default.focus
,
.btn-default.disabled
:active
,
.btn-default
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-default
:active
,
.btn-default.disabled.active
,
.btn-default
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-default.active
{
background-color
:
#fff
;
border-color
:
#ccc
;}
.btn-default
.badge
{
color
:
#fff
;
background-color
:
#333
;}
.btn-primary
{
color
:
#fff
;
background-color
:
#2c3e50
;
border-color
:
#233140
;}
.btn-primary
:hover
,
.btn-primary
:focus
,
.btn-primary.focus
,
.btn-primary
:active
,
.btn-primary.active
,
.open
>
.dropdown-toggle.btn-primary
{
color
:
#fff
;
background-color
:
#1a242f
;
border-color
:
#0d1318
;}
.btn-primary
:active
,
.btn-primary.active
,
.open
>
.dropdown-toggle.btn-primary
{
background-image
:
none
;}
.btn-primary.disabled
,
.btn-primary
[
disabled
],
fieldset
[
disabled
]
.btn-primary
,
.btn-primary.disabled
:hover
,
.btn-primary
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-primary
:hover
,
.btn-primary.disabled
:focus
,
.btn-primary
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-primary
:focus
,
.btn-primary.disabled.focus
,
.btn-primary
[
disabled
]
.focus
,
fieldset
[
disabled
]
.btn-primary.focus
,
.btn-primary.disabled
:active
,
.btn-primary
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-primary
:active
,
.btn-primary.disabled.active
,
.btn-primary
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-primary.active
{
background-color
:
#2c3e50
;
border-color
:
#233140
;}
.btn-primary
.badge
{
color
:
#2c3e50
;
background-color
:
#fff
;}
.btn-success
{
color
:
#fff
;
background-color
:
#5cb85c
;
border-color
:
#4cae4c
;}
.btn-success
:hover
,
.btn-success
:focus
,
.btn-success.focus
,
.btn-success
:active
,
.btn-success.active
,
.open
>
.dropdown-toggle.btn-success
{
color
:
#fff
;
background-color
:
#449d44
;
border-color
:
#398439
;}
.btn-success
:active
,
.btn-success.active
,
.open
>
.dropdown-toggle.btn-success
{
background-image
:
none
;}
.btn-success.disabled
,
.btn-success
[
disabled
],
fieldset
[
disabled
]
.btn-success
,
.btn-success.disabled
:hover
,
.btn-success
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-success
:hover
,
.btn-success.disabled
:focus
,
.btn-success
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-success
:focus
,
.btn-success.disabled.focus
,
.btn-success
[
disabled
]
.focus
,
fieldset
[
disabled
]
.btn-success.focus
,
.btn-success.disabled
:active
,
.btn-success
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-success
:active
,
.btn-success.disabled.active
,
.btn-success
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-success.active
{
background-color
:
#5cb85c
;
border-color
:
#4cae4c
;}
.btn-success
.badge
{
color
:
#5cb85c
;
background-color
:
#fff
;}
.btn-info
{
color
:
#fff
;
background-color
:
#5bc0de
;
border-color
:
#46b8da
;}
.btn-info
:hover
,
.btn-info
:focus
,
.btn-info.focus
,
.btn-info
:active
,
.btn-info.active
,
.open
>
.dropdown-toggle.btn-info
{
color
:
#fff
;
background-color
:
#31b0d5
;
border-color
:
#269abc
;}
.btn-info
:active
,
.btn-info.active
,
.open
>
.dropdown-toggle.btn-info
{
background-image
:
none
;}
.btn-info.disabled
,
.btn-info
[
disabled
],
fieldset
[
disabled
]
.btn-info
,
.btn-info.disabled
:hover
,
.btn-info
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-info
:hover
,
.btn-info.disabled
:focus
,
.btn-info
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-info
:focus
,
.btn-info.disabled.focus
,
.btn-info
[
disabled
]
.focus
,
fieldset
[
disabled
]
.btn-info.focus
,
.btn-info.disabled
:active
,
.btn-info
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-info
:active
,
.btn-info.disabled.active
,
.btn-info
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-info.active
{
background-color
:
#5bc0de
;
border-color
:
#46b8da
;}
.btn-info
.badge
{
color
:
#5bc0de
;
background-color
:
#fff
;}
.btn-warning
{
color
:
#fff
;
background-color
:
#f0ad4e
;
border-color
:
#eea236
;}
.btn-warning
:hover
,
.btn-warning
:focus
,
.btn-warning.focus
,
.btn-warning
:active
,
.btn-warning.active
,
.open
>
.dropdown-toggle.btn-warning
{
color
:
#fff
;
background-color
:
#ec971f
;
border-color
:
#d58512
;}
.btn-warning
:active
,
.btn-warning.active
,
.open
>
.dropdown-toggle.btn-warning
{
background-image
:
none
;}
.btn-warning.disabled
,
.btn-warning
[
disabled
],
fieldset
[
disabled
]
.btn-warning
,
.btn-warning.disabled
:hover
,
.btn-warning
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-warning
:hover
,
.btn-warning.disabled
:focus
,
.btn-warning
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-warning
:focus
,
.btn-warning.disabled.focus
,
.btn-warning
[
disabled
]
.focus
,
fieldset
[
disabled
]
.btn-warning.focus
,
.btn-warning.disabled
:active
,
.btn-warning
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-warning
:active
,
.btn-warning.disabled.active
,
.btn-warning
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-warning.active
{
background-color
:
#f0ad4e
;
border-color
:
#eea236
;}
.btn-warning
.badge
{
color
:
#f0ad4e
;
background-color
:
#fff
;}
.btn-danger
{
color
:
#fff
;
background-color
:
#de6764
;
border-color
:
#da524f
;}
.btn-danger
:hover
,
.btn-danger
:focus
,
.btn-danger.focus
,
.btn-danger
:active
,
.btn-danger.active
,
.open
>
.dropdown-toggle.btn-danger
{
color
:
#fff
;
background-color
:
#d53e3a
;
border-color
:
#c22d29
;}
.btn-danger
:active
,
.btn-danger.active
,
.open
>
.dropdown-toggle.btn-danger
{
background-image
:
none
;}
.btn-danger.disabled
,
.btn-danger
[
disabled
],
fieldset
[
disabled
]
.btn-danger
,
.btn-danger.disabled
:hover
,
.btn-danger
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-danger
:hover
,
.btn-danger.disabled
:focus
,
.btn-danger
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-danger
:focus
,
.btn-danger.disabled.focus
,
.btn-danger
[
disabled
]
.focus
,
fieldset
[
disabled
]
.btn-danger.focus
,
.btn-danger.disabled
:active
,
.btn-danger
[
disabled
]
:active
,
fieldset
[
disabled
]
.btn-danger
:active
,
.btn-danger.disabled.active
,
.btn-danger
[
disabled
]
.active
,
fieldset
[
disabled
]
.btn-danger.active
{
background-color
:
#de6764
;
border-color
:
#da524f
;}
.btn-danger
.badge
{
color
:
#de6764
;
background-color
:
#fff
;}
.btn-link
{
color
:
#2c3e50
;
font-weight
:
normal
;
border-radius
:
0
;}
.btn-link
,
.btn-link
:active
,
.btn-link.active
,
.btn-link
[
disabled
],
fieldset
[
disabled
]
.btn-link
{
background-color
:
transparent
;
box-shadow
:
none
;}
.btn-link
,
.btn-link
:hover
,
.btn-link
:focus
,
.btn-link
:active
{
border-color
:
transparent
;}
.btn-link
:hover
,
.btn-link
:focus
{
color
:
#11181f
;
text-decoration
:
underline
;
background-color
:
transparent
;}
.btn-link
[
disabled
]
:hover
,
fieldset
[
disabled
]
.btn-link
:hover
,
.btn-link
[
disabled
]
:focus
,
fieldset
[
disabled
]
.btn-link
:focus
{
color
:
#777777
;
text-decoration
:
none
;}
.btn-lg
,
.btn-group-lg
>
.btn
{
padding
:
10px
16px
;
font-size
:
18px
;
line-height
:
1.3333333
;
border-radius
:
0px
;}
.btn-sm
,
.btn-group-sm
>
.btn
{
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
0px
;}
.btn-xs
,
.btn-group-xs
>
.btn
{
padding
:
1px
5px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
0px
;}
.btn-block
{
display
:
block
;
width
:
100%
;}
.btn-block
+
.btn-block
{
margin-top
:
5px
;}
input
[
type
=
"submit"
]
.btn-block
,
input
[
type
=
"reset"
]
.btn-block
,
input
[
type
=
"button"
]
.btn-block
{
width
:
100%
;}
.fade
{
opacity
:
0
;
transition
:
opacity
0.15s
linear
;}
.fade.in
{
opacity
:
1
;}
.collapse
{
display
:
none
;}
.collapse.in
{
display
:
block
;}
tr
.collapse.in
{
display
:
table-row
;}
tbody
.collapse.in
{
display
:
table-row-group
;}
.collapsing
{
position
:
relative
;
height
:
0
;
overflow
:
hidden
;
transition-property
:
height
,
visibility
;
transition-duration
:
0.35s
;
transition-timing-function
:
ease
;}
.caret
{
display
:
inline-block
;
width
:
0
;
height
:
0
;
margin-left
:
2px
;
vertical-align
:
middle
;
border-top
:
4px
dashed
;
border-right
:
4px
solid
transparent
;
border-left
:
4px
solid
transparent
;}
.dropup
,
.dropdown
{
position
:
relative
;}
.dropdown-toggle
:focus
{
outline
:
0
;}
.dropdown-menu
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
z-index
:
1000
;
display
:
none
;
float
:
left
;
min-width
:
160px
;
padding
:
5px
0
;
margin
:
2px
0
0
;
list-style
:
none
;
font-size
:
14px
;
text-align
:
left
;
background-color
:
#fff
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.15
);
border-radius
:
0px
;
box-shadow
:
0
6px
12px
rgba
(
0
,
0
,
0
,
0.175
);
background-clip
:
padding-box
;}
.dropdown-menu.pull-right
{
right
:
0
;
left
:
auto
;}
.dropdown-menu
.divider
{
height
:
1px
;
margin
:
9px
0
;
overflow
:
hidden
;
background-color
:
#e5e5e5
;}
.dropdown-menu
>
li
>
a
{
display
:
block
;
padding
:
3px
20px
;
clear
:
both
;
font-weight
:
normal
;
line-height
:
1.42857143
;
color
:
#333333
;
white-space
:
nowrap
;}
.dropdown-menu
>
li
>
a
:hover
,
.dropdown-menu
>
li
>
a
:focus
{
text-decoration
:
none
;
color
:
#262626
;
background-color
:
#f5f5f5
;}
.dropdown-menu
>
.active
>
a
,
.dropdown-menu
>
.active
>
a
:hover
,
.dropdown-menu
>
.active
>
a
:focus
{
color
:
#fff
;
text-decoration
:
none
;
outline
:
0
;
background-color
:
#2c3e50
;}
.dropdown-menu
>
.disabled
>
a
,
.dropdown-menu
>
.disabled
>
a
:hover
,
.dropdown-menu
>
.disabled
>
a
:focus
{
color
:
#777777
;}
.dropdown-menu
>
.disabled
>
a
:hover
,
.dropdown-menu
>
.disabled
>
a
:focus
{
text-decoration
:
none
;
background-color
:
transparent
;
background-image
:
none
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
enabled
=
false
);
cursor
:
not-allowed
;}
.open
>
.dropdown-menu
{
display
:
block
;}
.open
>
a
{
outline
:
0
;}
.dropdown-menu-right
{
left
:
auto
;
right
:
0
;}
.dropdown-menu-left
{
left
:
0
;
right
:
auto
;}
.dropdown-header
{
display
:
block
;
padding
:
3px
20px
;
font-size
:
12px
;
line-height
:
1.42857143
;
color
:
#777777
;
white-space
:
nowrap
;}
.dropdown-backdrop
{
position
:
fixed
;
left
:
0
;
right
:
0
;
bottom
:
0
;
top
:
0
;
z-index
:
990
;}
.pull-right
>
.dropdown-menu
{
right
:
0
;
left
:
auto
;}
.dropup
.caret
,
.navbar-fixed-bottom
.dropdown
.caret
{
border-top
:
0
;
border-bottom
:
4px
solid
;
content
:
""
;}
.dropup
.dropdown-menu
,
.navbar-fixed-bottom
.dropdown
.dropdown-menu
{
top
:
auto
;
bottom
:
100%
;
margin-bottom
:
2px
;}
@media
(
min-width
:
768px
){
.navbar-right
.dropdown-menu
{
left
:
auto
;
right
:
0
;}
.navbar-right
.dropdown-menu-left
{
left
:
0
;
right
:
auto
;}}
.btn-group
,
.btn-group-vertical
{
position
:
relative
;
display
:
inline-block
;
vertical-align
:
middle
;}
.btn-group
>
.btn
,
.btn-group-vertical
>
.btn
{
position
:
relative
;
float
:
left
;}
.btn-group
>
.btn
:hover
,
.btn-group-vertical
>
.btn
:hover
,
.btn-group
>
.btn
:focus
,
.btn-group-vertical
>
.btn
:focus
,
.btn-group
>
.btn
:active
,
.btn-group-vertical
>
.btn
:active
,
.btn-group
>
.btn.active
,
.btn-group-vertical
>
.btn.active
{
z-index
:
2
;}
.btn-group
.btn
+
.btn
,
.btn-group
.btn
+
.btn-group
,
.btn-group
.btn-group
+
.btn
,
.btn-group
.btn-group
+
.btn-group
{
margin-left
:
-1px
;}
.btn-toolbar
{
margin-left
:
-5px
;}
.btn-toolbar
.btn-group
,
.btn-toolbar
.input-group
{
float
:
left
;}
.btn-toolbar
>
.btn
,
.btn-toolbar
>
.btn-group
,
.btn-toolbar
>
.input-group
{
margin-left
:
5px
;}
.btn-group
>
.btn
:not
(
:first-child
)
:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-radius
:
0
;}
.btn-group
>
.btn
:first-child
{
margin-left
:
0
;}
.btn-group
>
.btn
:first-child:not
(
:last-child
)
:not
(
.dropdown-toggle
)
{
border-bottom-right-radius
:
0
;
border-top-right-radius
:
0
;}
.btn-group
>
.btn
:last-child:not
(
:first-child
),
.btn-group
>
.dropdown-toggle
:not
(
:first-child
)
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
;}
.btn-group
>
.btn-group
{
float
:
left
;}
.btn-group
>
.btn-group
:not
(
:first-child
)
:not
(
:last-child
)
>
.btn
{
border-radius
:
0
;}
.btn-group
>
.btn-group
:first-child:not
(
:last-child
)
>
.btn
:last-child
,
.btn-group
>
.btn-group
:first-child:not
(
:last-child
)
>
.dropdown-toggle
{
border-bottom-right-radius
:
0
;
border-top-right-radius
:
0
;}
.btn-group
>
.btn-group
:last-child:not
(
:first-child
)
>
.btn
:first-child
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
;}
.btn-group
.dropdown-toggle
:active
,
.btn-group.open
.dropdown-toggle
{
outline
:
0
;}
.btn-group
>
.btn
+
.dropdown-toggle
{
padding-left
:
8px
;
padding-right
:
8px
;}
.btn-group
>
.btn-lg
+
.dropdown-toggle
{
padding-left
:
12px
;
padding-right
:
12px
;}
.btn-group.open
.dropdown-toggle
{
box-shadow
:
inset
0
3px
5px
rgba
(
0
,
0
,
0
,
0.125
);}
.btn-group.open
.dropdown-toggle.btn-link
{
box-shadow
:
none
;}
.btn
.caret
{
margin-left
:
0
;}
.btn-lg
.caret
{
border-width
:
5px
5px
0
;
border-bottom-width
:
0
;}
.dropup
.btn-lg
.caret
{
border-width
:
0
5px
5px
;}
.btn-group-vertical
>
.btn
,
.btn-group-vertical
>
.btn-group
,
.btn-group-vertical
>
.btn-group
>
.btn
{
display
:
block
;
float
:
none
;
width
:
100%
;
max-width
:
100%
;}
.btn-group-vertical
>
.btn-group
>
.btn
{
float
:
none
;}
.btn-group-vertical
>
.btn
+
.btn
,
.btn-group-vertical
>
.btn
+
.btn-group
,
.btn-group-vertical
>
.btn-group
+
.btn
,
.btn-group-vertical
>
.btn-group
+
.btn-group
{
margin-top
:
-1px
;
margin-left
:
0
;}
.btn-group-vertical
>
.btn
:not
(
:first-child
)
:not
(
:last-child
)
{
border-radius
:
0
;}
.btn-group-vertical
>
.btn
:first-child:not
(
:last-child
)
{
border-top-right-radius
:
0px
;
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
;}
.btn-group-vertical
>
.btn
:last-child:not
(
:first-child
)
{
border-bottom-left-radius
:
0px
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
;}
.btn-group-vertical
>
.btn-group
:not
(
:first-child
)
:not
(
:last-child
)
>
.btn
{
border-radius
:
0
;}
.btn-group-vertical
>
.btn-group
:first-child:not
(
:last-child
)
>
.btn
:last-child
,
.btn-group-vertical
>
.btn-group
:first-child:not
(
:last-child
)
>
.dropdown-toggle
{
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
;}
.btn-group-vertical
>
.btn-group
:last-child:not
(
:first-child
)
>
.btn
:first-child
{
border-top-right-radius
:
0
;
border-top-left-radius
:
0
;}
.btn-group-justified
{
display
:
table
;
width
:
100%
;
table-layout
:
fixed
;
border-collapse
:
separate
;}
.btn-group-justified
>
.btn
,
.btn-group-justified
>
.btn-group
{
float
:
none
;
display
:
table-cell
;
width
:
1%
;}
.btn-group-justified
>
.btn-group
.btn
{
width
:
100%
;}
.btn-group-justified
>
.btn-group
.dropdown-menu
{
left
:
auto
;}
[
data-toggle
=
"buttons"
]
>
.btn
input
[
type
=
"radio"
],[
data-toggle
=
"buttons"
]
>
.btn-group
>
.btn
input
[
type
=
"radio"
],[
data-toggle
=
"buttons"
]
>
.btn
input
[
type
=
"checkbox"
],[
data-toggle
=
"buttons"
]
>
.btn-group
>
.btn
input
[
type
=
"checkbox"
]
{
position
:
absolute
;
clip
:
rect
(
0
,
0
,
0
,
0
);
pointer-events
:
none
;}
.input-group
{
position
:
relative
;
display
:
table
;
border-collapse
:
separate
;}
.input-group
[
class
*=
"col-"
]
{
float
:
none
;
padding-left
:
0
;
padding-right
:
0
;}
.input-group
.form-control
{
position
:
relative
;
z-index
:
2
;
float
:
left
;
width
:
100%
;
margin-bottom
:
0
;}
.input-group-lg
>
.form-control
,
.input-group-lg
>
.input-group-addon
,
.input-group-lg
>
.input-group-btn
>
.btn
{
height
:
46px
;
padding
:
10px
16px
;
font-size
:
18px
;
line-height
:
1.3333333
;
border-radius
:
0px
;}
select
.input-group-lg
>
.form-control
,
select
.input-group-lg
>
.input-group-addon
,
select
.input-group-lg
>
.input-group-btn
>
.btn
{
height
:
46px
;
line-height
:
46px
;}
textarea
.input-group-lg
>
.form-control
,
textarea
.input-group-lg
>
.input-group-addon
,
textarea
.input-group-lg
>
.input-group-btn
>
.btn
,
select
[
multiple
]
.input-group-lg
>
.form-control
,
select
[
multiple
]
.input-group-lg
>
.input-group-addon
,
select
[
multiple
]
.input-group-lg
>
.input-group-btn
>
.btn
{
height
:
auto
;}
.input-group-sm
>
.form-control
,
.input-group-sm
>
.input-group-addon
,
.input-group-sm
>
.input-group-btn
>
.btn
{
height
:
30px
;
padding
:
5px
10px
;
font-size
:
12px
;
line-height
:
1.5
;
border-radius
:
0px
;}
select
.input-group-sm
>
.form-control
,
select
.input-group-sm
>
.input-group-addon
,
select
.input-group-sm
>
.input-group-btn
>
.btn
{
height
:
30px
;
line-height
:
30px
;}
textarea
.input-group-sm
>
.form-control
,
textarea
.input-group-sm
>
.input-group-addon
,
textarea
.input-group-sm
>
.input-group-btn
>
.btn
,
select
[
multiple
]
.input-group-sm
>
.form-control
,
select
[
multiple
]
.input-group-sm
>
.input-group-addon
,
select
[
multiple
]
.input-group-sm
>
.input-group-btn
>
.btn
{
height
:
auto
;}
.input-group-addon
,
.input-group-btn
,
.input-group
.form-control
{
display
:
table-cell
;}
.input-group-addon
:not
(
:first-child
)
:not
(
:last-child
),
.input-group-btn
:not
(
:first-child
)
:not
(
:last-child
),
.input-group
.form-control
:not
(
:first-child
)
:not
(
:last-child
)
{
border-radius
:
0
;}
.input-group-addon
,
.input-group-btn
{
width
:
1%
;
white-space
:
nowrap
;
vertical-align
:
middle
;}
.input-group-addon
{
padding
:
6px
12px
;
font-size
:
14px
;
font-weight
:
normal
;
line-height
:
1
;
color
:
#555555
;
text-align
:
center
;
background-color
:
#eeeeee
;
border
:
1px
solid
#ccc
;
border-radius
:
0px
;}
.input-group-addon.input-sm
{
padding
:
5px
10px
;
font-size
:
12px
;
border-radius
:
0px
;}
.input-group-addon.input-lg
{
padding
:
10px
16px
;
font-size
:
18px
;
border-radius
:
0px
;}
.input-group-addon
input
[
type
=
"radio"
],
.input-group-addon
input
[
type
=
"checkbox"
]
{
margin-top
:
0
;}
.input-group
.form-control
:first-child
,
.input-group-addon
:first-child
,
.input-group-btn
:first-child
>
.btn
,
.input-group-btn
:first-child
>
.btn-group
>
.btn
,
.input-group-btn
:first-child
>
.dropdown-toggle
,
.input-group-btn
:last-child
>
.btn
:not
(
:last-child
)
:not
(
.dropdown-toggle
),
.input-group-btn
:last-child
>
.btn-group
:not
(
:last-child
)
>
.btn
{
border-bottom-right-radius
:
0
;
border-top-right-radius
:
0
;}
.input-group-addon
:first-child
{
border-right
:
0
;}
.input-group
.form-control
:last-child
,
.input-group-addon
:last-child
,
.input-group-btn
:last-child
>
.btn
,
.input-group-btn
:last-child
>
.btn-group
>
.btn
,
.input-group-btn
:last-child
>
.dropdown-toggle
,
.input-group-btn
:first-child
>
.btn
:not
(
:first-child
),
.input-group-btn
:first-child
>
.btn-group
:not
(
:first-child
)
>
.btn
{
border-bottom-left-radius
:
0
;
border-top-left-radius
:
0
;}
.input-group-addon
:last-child
{
border-left
:
0
;}
.input-group-btn
{
position
:
relative
;
font-size
:
0
;
white-space
:
nowrap
;}
.input-group-btn
>
.btn
{
position
:
relative
;}
.input-group-btn
>
.btn
+
.btn
{
margin-left
:
-1px
;}
.input-group-btn
>
.btn
:hover
,
.input-group-btn
>
.btn
:focus
,
.input-group-btn
>
.btn
:active
{
z-index
:
2
;}
.input-group-btn
:first-child
>
.btn
,
.input-group-btn
:first-child
>
.btn-group
{
margin-right
:
-1px
;}
.input-group-btn
:last-child
>
.btn
,
.input-group-btn
:last-child
>
.btn-group
{
margin-left
:
-1px
;}
.nav
>
li
>
a
:hover
,
.nav
>
li
>
a
:focus
{
text-decoration
:
none
;
background
:
transparent
;
color
:
white
;}
.nav
>
li
.disabled
>
a
{
color
:
#777777
;}
.nav
>
li
.disabled
>
a
:hover
,
.nav
>
li
.disabled
>
a
:focus
{
color
:
#777777
;
text-decoration
:
none
;
background-color
:
transparent
;
cursor
:
not-allowed
;}
.nav
.open
>
a
,
.nav
.open
>
a
:hover
,
.nav
.open
>
a
:focus
{
background-color
:
#eeeeee
;
border-color
:
#2c3e50
;}
.nav
.nav-divider
{
height
:
1px
;
margin
:
9px
0
;
overflow
:
hidden
;
background-color
:
#e5e5e5
;}
.nav
>
li
>
a
>
img
{
max-width
:
none
;}
.nav-tabs
{
border-bottom
:
1px
solid
#ddd
;}
.nav-tabs
>
li
{
float
:
left
;
margin-bottom
:
-1px
;}
.nav-tabs
>
li
>
a
{
margin-right
:
2px
;
line-height
:
1.42857143
;
border
:
1px
solid
transparent
;
border-radius
:
0px
0px
0
0
;}
.nav-tabs
>
li
>
a
:hover
{
border-color
:
#eeeeee
#eeeeee
#ddd
;}
.nav-tabs
>
li
.active
>
a
,
.nav-tabs
>
li
.active
>
a
:hover
,
.nav-tabs
>
li
.active
>
a
:focus
{
color
:
#555555
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-bottom-color
:
transparent
;
cursor
:
default
;}
.nav-tabs.nav-justified
{
width
:
100%
;
border-bottom
:
0
;}
.nav-tabs.nav-justified
>
li
{
float
:
none
;}
.nav-tabs.nav-justified
>
li
>
a
{
text-align
:
center
;
margin-bottom
:
5px
;}
.nav-tabs.nav-justified
>
.dropdown
.dropdown-menu
{
top
:
auto
;
left
:
auto
;}
@media
(
min-width
:
768px
){
.nav-tabs.nav-justified
>
li
{
display
:
table-cell
;
width
:
1%
;}
.nav-tabs.nav-justified
>
li
>
a
{
margin-bottom
:
0
;}}
.nav-tabs.nav-justified
>
li
>
a
{
margin-right
:
0
;
border-radius
:
0px
;}
.nav-tabs.nav-justified
>
.active
>
a
,
.nav-tabs.nav-justified
>
.active
>
a
:hover
,
.nav-tabs.nav-justified
>
.active
>
a
:focus
{
border
:
1px
solid
#ddd
;}
@media
(
min-width
:
768px
){
.nav-tabs.nav-justified
>
li
>
a
{
border-bottom
:
1px
solid
#ddd
;
border-radius
:
0px
0px
0
0
;}
.nav-tabs.nav-justified
>
.active
>
a
,
.nav-tabs.nav-justified
>
.active
>
a
:hover
,
.nav-tabs.nav-justified
>
.active
>
a
:focus
{
border-bottom-color
:
#fff
;}}
.nav-pills
>
li
{
float
:
left
;}
.nav-pills
>
li
>
a
{
border-radius
:
0px
;}
.nav-pills
>
li
+
li
{
margin-left
:
2px
;}
.nav-pills
>
li
.active
>
a
,
.nav-pills
>
li
.active
>
a
:hover
,
.nav-pills
>
li
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#2c3e50
;}
.nav-stacked
>
li
{
float
:
none
;}
.nav-stacked
>
li
+
li
{
margin-top
:
2px
;
margin-left
:
0
;}
.nav-justified
{
width
:
100%
;}
.nav-justified
>
li
{
float
:
none
;}
.nav-justified
>
li
>
a
{
text-align
:
center
;
margin-bottom
:
5px
;}
.nav-justified
>
.dropdown
.dropdown-menu
{
top
:
auto
;
left
:
auto
;}
@media
(
min-width
:
768px
){
.nav-justified
>
li
{
display
:
table-cell
;
width
:
1%
;}
.nav-justified
>
li
>
a
{
margin-bottom
:
0
;}}
.nav-tabs-justified
{
border-bottom
:
0
;}
.nav-tabs-justified
>
li
>
a
{
margin-right
:
0
;
border-radius
:
0px
;}
.nav-tabs-justified
>
.active
>
a
,
.nav-tabs-justified
>
.active
>
a
:hover
,
.nav-tabs-justified
>
.active
>
a
:focus
{
border
:
1px
solid
#ddd
;}
@media
(
min-width
:
768px
){
.nav-tabs-justified
>
li
>
a
{
border-bottom
:
1px
solid
#ddd
;
border-radius
:
0px
0px
0
0
;}
.nav-tabs-justified
>
.active
>
a
,
.nav-tabs-justified
>
.active
>
a
:hover
,
.nav-tabs-justified
>
.active
>
a
:focus
{
border-bottom-color
:
#fff
;}}
.tab-content
>
.tab-pane
{
display
:
none
;}
.tab-content
>
.active
{
display
:
block
;}
.nav-tabs
.dropdown-menu
{
margin-top
:
-1px
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
;}
.navbar
{
position
:
relative
;
min-height
:
50px
;
margin-bottom
:
20px
;
border
:
1px
solid
transparent
;}
@media
(
min-width
:
768px
){
.navbar
{
border-radius
:
0px
;}}
@media
(
min-width
:
768px
){
.navbar-header
{
float
:
left
;}}
.navbar-collapse
{
overflow-x
:
visible
;
padding-right
:
5px
;
padding-left
:
5px
;
border-top
:
1px
solid
transparent
;
box-shadow
:
inset
0
1px
0
rgba
(
255
,
255
,
255
,
0.1
);
-webkit-overflow-scrolling
:
touch
;}
.navbar-collapse.in
{
overflow-y
:
auto
;}
@media
(
min-width
:
768px
){
.navbar-collapse
{
width
:
auto
;
border-top
:
0
;
box-shadow
:
none
;}
.navbar-collapse.collapse
{
display
:
block
!important
;
height
:
auto
!important
;
padding-bottom
:
0
;
overflow
:
visible
!important
;}
.navbar-collapse.in
{
overflow-y
:
visible
;}
.navbar-fixed-top
.navbar-collapse
,
.navbar-static-top
.navbar-collapse
,
.navbar-fixed-bottom
.navbar-collapse
{
padding-left
:
0
;
padding-right
:
0
;}}
.navbar-fixed-top
.navbar-collapse
,
.navbar-fixed-bottom
.navbar-collapse
{
max-height
:
340px
;}
@media
(
max-device-width
:
480px
)
and
(
orientation
:
landscape
){
.navbar-fixed-top
.navbar-collapse
,
.navbar-fixed-bottom
.navbar-collapse
{
max-height
:
200px
;}}
.container
>
.navbar-header
,
.container-fluid
>
.navbar-header
,
.container
>
.navbar-collapse
,
.container-fluid
>
.navbar-collapse
{
margin-right
:
-5px
;
margin-left
:
-5px
;}
@media
(
min-width
:
768px
){
.container
>
.navbar-header
,
.container-fluid
>
.navbar-header
,
.container
>
.navbar-collapse
,
.container-fluid
>
.navbar-collapse
{
margin-right
:
0
;
margin-left
:
0
;}}
.navbar-static-top
{
z-index
:
1000
;
border-width
:
0
0
1px
;}
@media
(
min-width
:
768px
){
.navbar-static-top
{
border-radius
:
0
;}}
.navbar-fixed-top
,
.navbar-fixed-bottom
{
position
:
fixed
;
right
:
0
;
left
:
0
;
z-index
:
1030
;}
@media
(
min-width
:
768px
){
.navbar-fixed-top
,
.navbar-fixed-bottom
{
border-radius
:
0
;}}
.navbar-fixed-top
{
top
:
0
;
border-width
:
0
0
1px
;}
.navbar-fixed-bottom
{
bottom
:
0
;
margin-bottom
:
0
;
border-width
:
1px
0
0
;}
.navbar-brand
{
padding
:
15px
5px
;
font-size
:
18px
;
line-height
:
20px
;
height
:
52px
;}
.navbar-brand
:hover
,
.navbar-brand
:focus
{
text-decoration
:
none
;}
.navbar-brand
>
img
{
display
:
block
;}
@media
(
min-width
:
768px
){
.navbar
>
.container
.navbar-brand
,
.navbar
>
.container-fluid
.navbar-brand
{
margin-left
:
-5px
;}}
.navbar-toggle
{
position
:
relative
;
float
:
left
;
padding
:
9px
10px
;
margin-top
:
8px
;
margin-bottom
:
8px
;
background-color
:
transparent
;
background-image
:
none
;
border
:
1px
solid
transparent
;
border-radius
:
0px
;}
.navbar-toggle
:focus
{
outline
:
0
;}
.navbar-toggle
.icon-bar
{
display
:
block
;
width
:
22px
;
height
:
2px
;
border-radius
:
1px
;
background
:
#fff
;}
.navbar-toggle
.icon-bar
+
.icon-bar
{
margin-top
:
4px
;}
@media
(
min-width
:
768px
){
.navbar-toggle
{
display
:
none
;}}
.navbar-nav
{
margin
:
7.5px
-5px
;}
.navbar-nav
>
li
>
a
{
padding-top
:
10px
;
padding-bottom
:
10px
;
line-height
:
20px
;}
@media
(
max-width
:
767px
){
.navbar-nav
.open
.dropdown-menu
{
position
:
static
;
float
:
none
;
width
:
auto
;
margin-top
:
0
;
background-color
:
transparent
;
border
:
0
;
box-shadow
:
none
;}
.navbar-nav
.open
.dropdown-menu
>
li
>
a
,
.navbar-nav
.open
.dropdown-menu
.dropdown-header
{
padding
:
5px
15px
5px
25px
;}
.navbar-nav
.open
.dropdown-menu
>
li
>
a
{
line-height
:
20px
;}
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:hover
,
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:focus
{
background-image
:
none
;}}
@media
(
min-width
:
768px
){
.navbar-nav
{
float
:
left
;
margin
:
0
;}
.navbar-nav
>
li
{
float
:
left
;}
.navbar-nav
>
li
>
a
{
padding-top
:
15px
;
padding-bottom
:
15px
;}}
.navbar-form
{
margin-left
:
-5px
;
margin-right
:
-5px
;
padding
:
10px
5px
;
border-top
:
1px
solid
transparent
;
border-bottom
:
1px
solid
transparent
;
box-shadow
:
inset
0
1px
0
rgba
(
255
,
255
,
255
,
0.1
),
0
1px
0
rgba
(
255
,
255
,
255
,
0.1
);
margin-top
:
8px
;
margin-bottom
:
8px
;}
@media
(
min-width
:
768px
){
.navbar-form
.form-group
{
display
:
inline-block
;
margin-bottom
:
0
;
vertical-align
:
middle
;}
.navbar-form
.form-control
{
display
:
inline-block
;
width
:
auto
;
vertical-align
:
middle
;}
.navbar-form
.form-control-static
{
display
:
inline-block
;}
.navbar-form
.input-group
{
display
:
inline-table
;
vertical-align
:
middle
;}
.navbar-form
.input-group
.input-group-addon
,
.navbar-form
.input-group
.input-group-btn
,
.navbar-form
.input-group
.form-control
{
width
:
auto
;}
.navbar-form
.input-group
>
.form-control
{
width
:
100%
;}
.navbar-form
.control-label
{
margin-bottom
:
0
;
vertical-align
:
middle
;}
.navbar-form
.radio
,
.navbar-form
.checkbox
{
display
:
inline-block
;
margin-top
:
0
;
margin-bottom
:
0
;
vertical-align
:
middle
;}
.navbar-form
.radio
label
,
.navbar-form
.checkbox
label
{
padding-left
:
0
;}
.navbar-form
.radio
input
[
type
=
"radio"
],
.navbar-form
.checkbox
input
[
type
=
"checkbox"
]
{
position
:
relative
;
margin-left
:
0
;}
.navbar-form
.has-feedback
.form-control-feedback
{
top
:
0
;}}
@media
(
max-width
:
767px
){
.navbar-form
.form-group
{
margin-bottom
:
5px
;}
.navbar-form
.form-group
:last-child
{
margin-bottom
:
0
;}}
@media
(
min-width
:
768px
){
.navbar-form
{
width
:
auto
;
border
:
0
;
margin-left
:
0
;
margin-right
:
0
;
padding-top
:
0
;
padding-bottom
:
0
;
box-shadow
:
none
;}}
.navbar-nav
>
li
>
.dropdown-menu
{
margin-top
:
0
;
border-top-right-radius
:
0
;
border-top-left-radius
:
0
;}
.navbar-fixed-bottom
.navbar-nav
>
li
>
.dropdown-menu
{
margin-bottom
:
0
;
border-top-right-radius
:
0px
;
border-top-left-radius
:
0px
;
border-bottom-right-radius
:
0
;
border-bottom-left-radius
:
0
;}
.navbar-btn
{
margin-top
:
8px
;
margin-bottom
:
8px
;}
.navbar-btn.btn-sm
{
margin-top
:
10px
;
margin-bottom
:
10px
;}
.navbar-btn.btn-xs
{
margin-top
:
14px
;
margin-bottom
:
14px
;}
.navbar-text
{
margin-top
:
15px
;
margin-bottom
:
15px
;}
@media
(
min-width
:
768px
){
.navbar-text
{
float
:
left
;
margin-left
:
5px
;
margin-right
:
5px
;}}
@media
(
min-width
:
768px
){
.navbar-left
{
float
:
left
!important
;}
.navbar-right
{
float
:
right
!important
;
margin-right
:
-5px
;}
.navbar-right
~
.navbar-right
{
margin-right
:
0
;}}
.navbar-default
{
background-color
:
#f8f8f8
;
border-color
:
#e7e7e7
;}
.navbar-default
.navbar-brand
{
color
:
#777
;}
.navbar-default
.navbar-brand
:hover
,
.navbar-default
.navbar-brand
:focus
{
color
:
#5e5e5e
;
background-color
:
transparent
;}
.navbar-default
.navbar-text
{
color
:
#777
;}
.navbar-default
.navbar-nav
>
li
>
a
{
color
:
#777
;}
.navbar-default
.navbar-nav
>
li
>
a
:hover
,
.navbar-default
.navbar-nav
>
li
>
a
:focus
{
color
:
#333
;
background-color
:
transparent
;}
.navbar-default
.navbar-nav
>
.active
>
a
,
.navbar-default
.navbar-nav
>
.active
>
a
:hover
,
.navbar-default
.navbar-nav
>
.active
>
a
:focus
{
color
:
#555
;
background-color
:
#e7e7e7
;}
.navbar-default
.navbar-nav
>
.disabled
>
a
,
.navbar-default
.navbar-nav
>
.disabled
>
a
:hover
,
.navbar-default
.navbar-nav
>
.disabled
>
a
:focus
{
color
:
#ccc
;
background-color
:
transparent
;}
.navbar-default
.navbar-toggle
{
border-color
:
#ddd
;}
.navbar-default
.navbar-toggle
:hover
,
.navbar-default
.navbar-toggle
:focus
{
background-color
:
#ddd
;}
.navbar-default
.navbar-toggle
.icon-bar
{
background-color
:
#888
;}
.navbar-default
.navbar-collapse
,
.navbar-default
.navbar-form
{
border-color
:
#e7e7e7
;}
.navbar-default
.navbar-nav
>
.open
>
a
,
.navbar-default
.navbar-nav
>
.open
>
a
:hover
,
.navbar-default
.navbar-nav
>
.open
>
a
:focus
{
background-color
:
#e7e7e7
;
color
:
#555
;}
@media
(
max-width
:
767px
){
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
li
>
a
{
color
:
#777
;}
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:hover
,
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:focus
{
color
:
#333
;
background-color
:
transparent
;}
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
.active
>
a
,
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
.active
>
a
:hover
,
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
.active
>
a
:focus
{
color
:
#555
;
background-color
:
#e7e7e7
;}
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
.disabled
>
a
,
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
.disabled
>
a
:hover
,
.navbar-default
.navbar-nav
.open
.dropdown-menu
>
.disabled
>
a
:focus
{
color
:
#ccc
;
background-color
:
transparent
;}}
.navbar-default
.navbar-link
{
color
:
#777
;}
.navbar-default
.navbar-link
:hover
{
color
:
#333
;}
.navbar-default
.btn-link
{
color
:
#777
;}
.navbar-default
.btn-link
:hover
,
.navbar-default
.btn-link
:focus
{
color
:
#333
;}
.navbar-default
.btn-link
[
disabled
]
:hover
,
fieldset
[
disabled
]
.navbar-default
.btn-link
:hover
,
.navbar-default
.btn-link
[
disabled
]
:focus
,
fieldset
[
disabled
]
.navbar-default
.btn-link
:focus
{
color
:
#ccc
;}
.navbar-inverse
{
background-color
:
#2c3e50
;
border-color
:
#1a242f
;}
.navbar-inverse
.navbar-brand
{
color
:
#f2f2f2
;}
.navbar-inverse
.navbar-brand
:hover
,
.navbar-inverse
.navbar-brand
:focus
{
color
:
#fff
;
background-color
:
transparent
;}
.navbar-inverse
.navbar-text
{
color
:
#fff
;}
.navbar-inverse
.navbar-nav
>
li
>
a
{
color
:
#f2f2f2
;}
.navbar-inverse
.navbar-nav
>
li
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
li
>
a
:focus
{
color
:
#fff
;
background-color
:
transparent
;}
.navbar-inverse
.navbar-nav
>
.active
>
a
,
.navbar-inverse
.navbar-nav
>
.active
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#1a242f
;}
.navbar-inverse
.navbar-nav
>
.disabled
>
a
,
.navbar-inverse
.navbar-nav
>
.disabled
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.disabled
>
a
:focus
{
color
:
#444
;
background-color
:
transparent
;}
.navbar-inverse
.navbar-toggle
{
border-color
:
#333
;}
.navbar-inverse
.navbar-toggle
:hover
,
.navbar-inverse
.navbar-toggle
:focus
{
background-color
:
#333
;}
.navbar-inverse
.navbar-toggle
.icon-bar
{
background-color
:
#fff
;}
.navbar-inverse
.navbar-collapse
,
.navbar-inverse
.navbar-form
{
border-color
:
#1f2c39
;}
.navbar-inverse
.navbar-nav
>
.open
>
a
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:hover
,
.navbar-inverse
.navbar-nav
>
.open
>
a
:focus
{
background-color
:
#1a242f
;
color
:
#fff
;}
@media
(
max-width
:
767px
){
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.dropdown-header
{
border-color
:
#1a242f
;}
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
.divider
{
background-color
:
#1a242f
;}
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
li
>
a
{
color
:
#f2f2f2
;}
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:hover
,
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
li
>
a
:focus
{
color
:
#fff
;
background-color
:
transparent
;}
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.active
>
a
,
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.active
>
a
:hover
,
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#1a242f
;}
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.disabled
>
a
,
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.disabled
>
a
:hover
,
.navbar-inverse
.navbar-nav
.open
.dropdown-menu
>
.disabled
>
a
:focus
{
color
:
#444
;
background-color
:
transparent
;}}
.navbar-inverse
.navbar-link
{
color
:
#f2f2f2
;}
.navbar-inverse
.navbar-link
:hover
{
color
:
#fff
;}
.navbar-inverse
.btn-link
{
color
:
#f2f2f2
;}
.navbar-inverse
.btn-link
:hover
,
.navbar-inverse
.btn-link
:focus
{
color
:
#fff
;}
.navbar-inverse
.btn-link
[
disabled
]
:hover
,
fieldset
[
disabled
]
.navbar-inverse
.btn-link
:hover
,
.navbar-inverse
.btn-link
[
disabled
]
:focus
,
fieldset
[
disabled
]
.navbar-inverse
.btn-link
:focus
{
color
:
#444
;}
.breadcrumb
{
padding
:
8px
15px
;
margin-bottom
:
20px
;
list-style
:
none
;
background-color
:
#f5f5f5
;
border-radius
:
0px
;}
.breadcrumb
>
li
{
display
:
inline-block
;}
.breadcrumb
>
li
+
li
:before
{
content
:
"/\00a0"
;
padding
:
0
5px
;
color
:
#ccc
;}
.breadcrumb
>
.active
{
color
:
#777777
;}
.pagination
{
display
:
inline-block
;
padding-left
:
0
;
margin
:
20px
0
;
border-radius
:
0px
;}
.pagination
>
li
{
display
:
inline
;}
.pagination
>
li
>
a
,
.pagination
>
li
>
span
{
position
:
relative
;
float
:
left
;
padding
:
6px
12px
;
line-height
:
1.42857143
;
text-decoration
:
none
;
color
:
#2c3e50
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
margin-left
:
-1px
;}
.pagination
>
li
:first-child
>
a
,
.pagination
>
li
:first-child
>
span
{
margin-left
:
0
;
border-bottom-left-radius
:
0px
;
border-top-left-radius
:
0px
;}
.pagination
>
li
:last-child
>
a
,
.pagination
>
li
:last-child
>
span
{
border-bottom-right-radius
:
0px
;
border-top-right-radius
:
0px
;}
.pagination
>
li
>
a
:hover
,
.pagination
>
li
>
span
:hover
,
.pagination
>
li
>
a
:focus
,
.pagination
>
li
>
span
:focus
{
color
:
#11181f
;
background-color
:
#eeeeee
;
border-color
:
#ddd
;}
.pagination
>
.active
>
a
,
.pagination
>
.active
>
span
,
.pagination
>
.active
>
a
:hover
,
.pagination
>
.active
>
span
:hover
,
.pagination
>
.active
>
a
:focus
,
.pagination
>
.active
>
span
:focus
{
z-index
:
2
;
color
:
#fff
;
background-color
:
#2c3e50
;
border-color
:
#2c3e50
;
cursor
:
default
;}
.pagination
>
.disabled
>
span
,
.pagination
>
.disabled
>
span
:hover
,
.pagination
>
.disabled
>
span
:focus
,
.pagination
>
.disabled
>
a
,
.pagination
>
.disabled
>
a
:hover
,
.pagination
>
.disabled
>
a
:focus
{
color
:
#777777
;
background-color
:
#fff
;
border-color
:
#ddd
;
cursor
:
not-allowed
;}
.pagination-lg
>
li
>
a
,
.pagination-lg
>
li
>
span
{
padding
:
10px
16px
;
font-size
:
18px
;}
.pagination-lg
>
li
:first-child
>
a
,
.pagination-lg
>
li
:first-child
>
span
{
border-bottom-left-radius
:
0px
;
border-top-left-radius
:
0px
;}
.pagination-lg
>
li
:last-child
>
a
,
.pagination-lg
>
li
:last-child
>
span
{
border-bottom-right-radius
:
0px
;
border-top-right-radius
:
0px
;}
.pagination-sm
>
li
>
a
,
.pagination-sm
>
li
>
span
{
padding
:
5px
10px
;
font-size
:
12px
;}
.pagination-sm
>
li
:first-child
>
a
,
.pagination-sm
>
li
:first-child
>
span
{
border-bottom-left-radius
:
0px
;
border-top-left-radius
:
0px
;}
.pagination-sm
>
li
:last-child
>
a
,
.pagination-sm
>
li
:last-child
>
span
{
border-bottom-right-radius
:
0px
;
border-top-right-radius
:
0px
;}
.pager
{
padding-left
:
0
;
margin
:
20px
0
;
list-style
:
none
;
text-align
:
center
;}
.pager
li
{
display
:
inline
;}
.pager
li
>
a
,
.pager
li
>
span
{
display
:
inline-block
;
padding
:
5px
14px
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
15px
;}
.pager
li
>
a
:hover
,
.pager
li
>
a
:focus
{
text-decoration
:
none
;
background-color
:
#eeeeee
;}
.pager
.next
>
a
,
.pager
.next
>
span
{
float
:
right
;}
.pager
.previous
>
a
,
.pager
.previous
>
span
{
float
:
left
;}
.pager
.disabled
>
a
,
.pager
.disabled
>
a
:hover
,
.pager
.disabled
>
a
:focus
,
.pager
.disabled
>
span
{
color
:
#777777
;
background-color
:
#fff
;
cursor
:
not-allowed
;}
.label
{
display
:
inline
;
padding
:
.2em
.6em
.3em
;
font-size
:
75%
;
font-weight
:
bold
;
line-height
:
1
;
color
:
#fff
;
text-align
:
center
;
white-space
:
nowrap
;
vertical-align
:
baseline
;
border-radius
:
.25em
;}
a
.label
:hover
,
a
.label
:focus
{
color
:
#fff
;
text-decoration
:
none
;
cursor
:
pointer
;}
.label
:empty
{
display
:
none
;}
.btn
.label
{
position
:
relative
;
top
:
-1px
;}
.label-default
{
background-color
:
#777777
;}
.label-default
[
href
]
:hover
,
.label-default
[
href
]
:focus
{
background-color
:
#5e5e5e
;}
.label-primary
{
background-color
:
#2c3e50
;}
.label-primary
[
href
]
:hover
,
.label-primary
[
href
]
:focus
{
background-color
:
#1a242f
;}
.label-success
{
background-color
:
#5cb85c
;}
.label-success
[
href
]
:hover
,
.label-success
[
href
]
:focus
{
background-color
:
#449d44
;}
.label-info
{
background-color
:
#5bc0de
;}
.label-info
[
href
]
:hover
,
.label-info
[
href
]
:focus
{
background-color
:
#31b0d5
;}
.label-warning
{
background-color
:
#f0ad4e
;}
.label-warning
[
href
]
:hover
,
.label-warning
[
href
]
:focus
{
background-color
:
#ec971f
;}
.label-danger
{
background-color
:
#de6764
;}
.label-danger
[
href
]
:hover
,
.label-danger
[
href
]
:focus
{
background-color
:
#d53e3a
;}
.badge
{
display
:
inline-block
;
min-width
:
10px
;
padding
:
3px
7px
;
font-size
:
12px
;
font-weight
:
bold
;
color
:
#fff
;
line-height
:
1
;
vertical-align
:
baseline
;
white-space
:
nowrap
;
text-align
:
center
;
background-color
:
#777777
;
border-radius
:
10px
;}
.badge
:empty
{
display
:
none
;}
.btn
.badge
{
position
:
relative
;
top
:
-1px
;}
.btn-xs
.badge
,
.btn-group-xs
>
.btn
.badge
{
top
:
0
;
padding
:
1px
5px
;}
a
.badge
:hover
,
a
.badge
:focus
{
color
:
#fff
;
text-decoration
:
none
;
cursor
:
pointer
;}
.list-group-item.active
>
.badge
,
.nav-pills
>
.active
>
a
>
.badge
{
color
:
#2c3e50
;
background-color
:
#fff
;}
.list-group-item
>
.badge
{
float
:
right
;}
.list-group-item
>
.badge
+
.badge
{
margin-right
:
5px
;}
.nav-pills
>
li
>
a
>
.badge
{
margin-left
:
3px
;}
.jumbotron
{
padding
:
30px
15px
;
margin-bottom
:
30px
;
color
:
inherit
;
background-color
:
#eeeeee
;}
.jumbotron
h1
,
.jumbotron
.h1
{
color
:
inherit
;}
.jumbotron
p
{
margin-bottom
:
15px
;
font-size
:
21px
;
font-weight
:
200
;}
.jumbotron
>
hr
{
border-top-color
:
#d5d5d5
;}
.container
.jumbotron
,
.container-fluid
.jumbotron
{
border-radius
:
0px
;}
.jumbotron
.container
{
max-width
:
100%
;}
@media
screen
and
(
min-width
:
768px
){
.jumbotron
{
padding
:
48px
0
;}
.container
.jumbotron
,
.container-fluid
.jumbotron
{
padding-left
:
60px
;
padding-right
:
60px
;}
.jumbotron
h1
,
.jumbotron
.h1
{
font-size
:
63px
;}}
.thumbnail
{
display
:
block
;
padding
:
4px
;
margin-bottom
:
20px
;
line-height
:
1.42857143
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;
border-radius
:
0px
;
transition
:
border
0.2s
ease-in-out
;}
.thumbnail
>
img
,
.thumbnail
a
>
img
{
margin-left
:
auto
;
margin-right
:
auto
;}
a
.thumbnail
:hover
,
a
.thumbnail
:focus
,
a
.thumbnail.active
{
border-color
:
#2c3e50
;}
.thumbnail
.caption
{
padding
:
9px
;
color
:
#333333
;}
.alert
{
padding
:
15px
;
margin-bottom
:
20px
;
border
:
1px
solid
transparent
;
border-radius
:
0px
;}
.alert
h4
{
margin-top
:
0
;
color
:
inherit
;}
.alert
.alert-link
{
font-weight
:
bold
;}
.alert
>
p
,
.alert
>
ul
{
margin-bottom
:
0
;}
.alert
>
p
+
p
{
margin-top
:
5px
;}
.alert-dismissable
,
.alert-dismissible
{
padding-right
:
35px
;}
.alert-dismissable
.close
,
.alert-dismissible
.close
{
position
:
relative
;
top
:
-2px
;
right
:
-21px
;
color
:
inherit
;}
.alert-success
{
background-color
:
#5cb85c
;
border-color
:
#4cae4c
;
color
:
#fff
;}
.alert-success
hr
{
border-top-color
:
#449d44
;}
.alert-success
.alert-link
{
color
:
#e6e6e6
;}
.alert-info
{
background-color
:
#5bc0de
;
border-color
:
#46b8da
;
color
:
#fff
;}
.alert-info
hr
{
border-top-color
:
#31b0d5
;}
.alert-info
.alert-link
{
color
:
#e6e6e6
;}
.alert-warning
{
background-color
:
#f0ad4e
;
border-color
:
#eea236
;
color
:
#fff
;}
.alert-warning
hr
{
border-top-color
:
#ec971f
;}
.alert-warning
.alert-link
{
color
:
#e6e6e6
;}
.alert-danger
{
background-color
:
#de6764
;
border-color
:
#da524f
;
color
:
#fff
;}
.alert-danger
hr
{
border-top-color
:
#d53e3a
;}
.alert-danger
.alert-link
{
color
:
#e6e6e6
;}
@-webkit-keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
;}
to
{
background-position
:
0
0
;}}
@keyframes
progress-bar-stripes
{
from
{
background-position
:
40px
0
;}
to
{
background-position
:
0
0
;}}
.progress
{
overflow
:
hidden
;
height
:
20px
;
margin-bottom
:
20px
;
background-color
:
#f5f5f5
;
border-radius
:
0px
;
box-shadow
:
inset
0
1px
2px
rgba
(
0
,
0
,
0
,
0.1
);}
.progress-bar
{
float
:
left
;
width
:
0%
;
height
:
100%
;
font-size
:
12px
;
line-height
:
20px
;
color
:
#fff
;
text-align
:
center
;
background-color
:
#2c3e50
;
box-shadow
:
inset
0
-1px
0
rgba
(
0
,
0
,
0
,
0.15
);
transition
:
width
0.6s
ease
;}
.progress-striped
.progress-bar
,
.progress-bar-striped
{
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);
background-size
:
40px
40px
;}
.progress.active
.progress-bar
,
.progress-bar.active
{
-webkit-animation
:
progress-bar-stripes
2s
linear
infinite
;
animation
:
progress-bar-stripes
2s
linear
infinite
;}
.progress-bar-success
{
background-color
:
#5cb85c
;}
.progress-striped
.progress-bar-success
{
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);}
.progress-bar-info
{
background-color
:
#5bc0de
;}
.progress-striped
.progress-bar-info
{
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);}
.progress-bar-warning
{
background-color
:
#f0ad4e
;}
.progress-striped
.progress-bar-warning
{
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);}
.progress-bar-danger
{
background-color
:
#de6764
;}
.progress-striped
.progress-bar-danger
{
background-image
:
linear-gradient
(
45deg
,
rgba
(
255
,
255
,
255
,
0.15
)
25%
,
transparent
25%
,
transparent
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
50%
,
rgba
(
255
,
255
,
255
,
0.15
)
75%
,
transparent
75%
,
transparent
);}
.media
{
margin-top
:
15px
;}
.media
:first-child
{
margin-top
:
0
;}
.media
,
.media-body
{
zoom
:
1
;
overflow
:
hidden
;}
.media-body
{
width
:
10000px
;}
.media-object
{
display
:
block
;}
.media-right
,
.media
>
.pull-right
{
padding-left
:
10px
;}
.media-left
,
.media
>
.pull-left
{
padding-right
:
10px
;}
.media-left
,
.media-right
,
.media-body
{
display
:
table-cell
;
vertical-align
:
top
;}
.media-middle
{
vertical-align
:
middle
;}
.media-bottom
{
vertical-align
:
bottom
;}
.media-heading
{
margin-top
:
0
;
margin-bottom
:
5px
;}
.media-list
{
padding-left
:
0
;
list-style
:
none
;}
.list-group
{
margin-bottom
:
20px
;
padding-left
:
0
;}
.list-group-item
{
position
:
relative
;
display
:
block
;
padding
:
10px
15px
;
margin-bottom
:
-1px
;
background-color
:
#fff
;
border
:
1px
solid
#ddd
;}
.list-group-item
:first-child
{
border-top-right-radius
:
0px
;
border-top-left-radius
:
0px
;}
.list-group-item
:last-child
{
margin-bottom
:
0
;
border-bottom-right-radius
:
0px
;
border-bottom-left-radius
:
0px
;}
a
.list-group-item
{
color
:
#555
;}
a
.list-group-item
.list-group-item-heading
{
color
:
#333
;}
a
.list-group-item
:hover
,
a
.list-group-item
:focus
{
text-decoration
:
none
;
color
:
#555
;
background-color
:
#f5f5f5
;}
.list-group-item.disabled
,
.list-group-item.disabled
:hover
,
.list-group-item.disabled
:focus
{
background-color
:
#eeeeee
;
color
:
#777777
;
cursor
:
not-allowed
;}
.list-group-item.disabled
.list-group-item-heading
,
.list-group-item.disabled
:hover
.list-group-item-heading
,
.list-group-item.disabled
:focus
.list-group-item-heading
{
color
:
inherit
;}
.list-group-item.disabled
.list-group-item-text
,
.list-group-item.disabled
:hover
.list-group-item-text
,
.list-group-item.disabled
:focus
.list-group-item-text
{
color
:
#777777
;}
.list-group-item.active
,
.list-group-item.active
:hover
,
.list-group-item.active
:focus
{
z-index
:
2
;
color
:
#fff
;
background-color
:
#2c3e50
;
border-color
:
#2c3e50
;}
.list-group-item.active
.list-group-item-heading
,
.list-group-item.active
:hover
.list-group-item-heading
,
.list-group-item.active
:focus
.list-group-item-heading
,
.list-group-item.active
.list-group-item-heading
>
small
,
.list-group-item.active
:hover
.list-group-item-heading
>
small
,
.list-group-item.active
:focus
.list-group-item-heading
>
small
,
.list-group-item.active
.list-group-item-heading
>
.small
,
.list-group-item.active
:hover
.list-group-item-heading
>
.small
,
.list-group-item.active
:focus
.list-group-item-heading
>
.small
{
color
:
inherit
;}
.list-group-item.active
.list-group-item-text
,
.list-group-item.active
:hover
.list-group-item-text
,
.list-group-item.active
:focus
.list-group-item-text
{
color
:
#8aa4be
;}
.list-group-item-success
{
color
:
#fff
;
background-color
:
#5cb85c
;}
a
.list-group-item-success
{
color
:
#fff
;}
a
.list-group-item-success
.list-group-item-heading
{
color
:
inherit
;}
a
.list-group-item-success
:hover
,
a
.list-group-item-success
:focus
{
color
:
#fff
;
background-color
:
#4cae4c
;}
a
.list-group-item-success.active
,
a
.list-group-item-success.active
:hover
,
a
.list-group-item-success.active
:focus
{
color
:
#fff
;
background-color
:
#fff
;
border-color
:
#fff
;}
.list-group-item-info
{
color
:
#fff
;
background-color
:
#5bc0de
;}
a
.list-group-item-info
{
color
:
#fff
;}
a
.list-group-item-info
.list-group-item-heading
{
color
:
inherit
;}
a
.list-group-item-info
:hover
,
a
.list-group-item-info
:focus
{
color
:
#fff
;
background-color
:
#46b8da
;}
a
.list-group-item-info.active
,
a
.list-group-item-info.active
:hover
,
a
.list-group-item-info.active
:focus
{
color
:
#fff
;
background-color
:
#fff
;
border-color
:
#fff
;}
.list-group-item-warning
{
color
:
#fff
;
background-color
:
#f0ad4e
;}
a
.list-group-item-warning
{
color
:
#fff
;}
a
.list-group-item-warning
.list-group-item-heading
{
color
:
inherit
;}
a
.list-group-item-warning
:hover
,
a
.list-group-item-warning
:focus
{
color
:
#fff
;
background-color
:
#eea236
;}
a
.list-group-item-warning.active
,
a
.list-group-item-warning.active
:hover
,
a
.list-group-item-warning.active
:focus
{
color
:
#fff
;
background-color
:
#fff
;
border-color
:
#fff
;}
.list-group-item-danger
{
color
:
#fff
;
background-color
:
#de6764
;}
a
.list-group-item-danger
{
color
:
#fff
;}
a
.list-group-item-danger
.list-group-item-heading
{
color
:
inherit
;}
a
.list-group-item-danger
:hover
,
a
.list-group-item-danger
:focus
{
color
:
#fff
;
background-color
:
#da524f
;}
a
.list-group-item-danger.active
,
a
.list-group-item-danger.active
:hover
,
a
.list-group-item-danger.active
:focus
{
color
:
#fff
;
background-color
:
#fff
;
border-color
:
#fff
;}
.list-group-item-heading
{
margin-top
:
0
;
margin-bottom
:
5px
;}
.list-group-item-text
{
margin-bottom
:
0
;
line-height
:
1.3
;}
.panel
{
margin-bottom
:
10px
;
background-color
:
#fff
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.1
);
border-radius
:
0
;}
.panel-body
{
padding
:
15px
;}
.panel-heading
{
padding
:
15px
;
border-bottom
:
1px
solid
transparent
;
border-top-right-radius
:
-1
;
border-top-left-radius
:
-1
;}
.panel-heading
>
.dropdown
.dropdown-toggle
{
color
:
inherit
;}
.panel-title
{
margin-top
:
0
;
margin-bottom
:
0
;
font-size
:
16px
;
color
:
inherit
;}
.panel-title
>
a
,
.panel-title
>
small
,
.panel-title
>
.small
,
.panel-title
>
small
>
a
,
.panel-title
>
.small
>
a
{
color
:
inherit
;}
.panel-footer
{
padding
:
15px
;
background-color
:
#f5f5f5
;
border-top
:
1px
solid
#ddd
;
border-bottom-right-radius
:
-1
;
border-bottom-left-radius
:
-1
;}
.panel
>
.list-group
,
.panel
>
.panel-collapse
>
.list-group
{
margin-bottom
:
0
;}
.panel
>
.list-group
.list-group-item
,
.panel
>
.panel-collapse
>
.list-group
.list-group-item
{
border-width
:
1px
0
;
border-radius
:
0
;}
.panel
>
.list-group
:first-child
.list-group-item
:first-child
,
.panel
>
.panel-collapse
>
.list-group
:first-child
.list-group-item
:first-child
{
border-top
:
0
;
border-top-right-radius
:
-1
;
border-top-left-radius
:
-1
;}
.panel
>
.list-group
:last-child
.list-group-item
:last-child
,
.panel
>
.panel-collapse
>
.list-group
:last-child
.list-group-item
:last-child
{
border-bottom
:
0
;
border-bottom-right-radius
:
-1
;
border-bottom-left-radius
:
-1
;}
.panel-heading
+
.list-group
.list-group-item
:first-child
{
border-top-width
:
0
;}
.list-group
+
.panel-footer
{
border-top-width
:
0
;}
.panel
>
.table
,
.panel
>
.table-responsive
>
.table
,
.panel
>
.panel-collapse
>
.table
{
margin-bottom
:
0
;}
.panel
>
.table
caption
,
.panel
>
.table-responsive
>
.table
caption
,
.panel
>
.panel-collapse
>
.table
caption
{
padding-left
:
15px
;
padding-right
:
15px
;}
.panel
>
.table
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
{
border-top-right-radius
:
-1
;
border-top-left-radius
:
-1
;}
.panel
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
,
.panel
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
{
border-top-left-radius
:
-1
;
border-top-right-radius
:
-1
;}
.panel
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
td
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
td
:first-child
,
.panel
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
td
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
td
:first-child
,
.panel
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
th
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
th
:first-child
,
.panel
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
th
:first-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
th
:first-child
{
border-top-left-radius
:
-1
;}
.panel
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
td
:last-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
td
:last-child
,
.panel
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
td
:last-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
td
:last-child
,
.panel
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
th
:last-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
thead
:first-child
>
tr
:first-child
th
:last-child
,
.panel
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
th
:last-child
,
.panel
>
.table-responsive
:first-child
>
.table
:first-child
>
tbody
:first-child
>
tr
:first-child
th
:last-child
{
border-top-right-radius
:
-1
;}
.panel
>
.table
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
{
border-bottom-right-radius
:
-1
;
border-bottom-left-radius
:
-1
;}
.panel
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
,
.panel
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
{
border-bottom-left-radius
:
-1
;
border-bottom-right-radius
:
-1
;}
.panel
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
td
:first-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
td
:first-child
,
.panel
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
td
:first-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
td
:first-child
,
.panel
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
th
:first-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
th
:first-child
,
.panel
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
th
:first-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
th
:first-child
{
border-bottom-left-radius
:
-1
;}
.panel
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
td
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
td
:last-child
,
.panel
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
td
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
td
:last-child
,
.panel
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
th
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tbody
:last-child
>
tr
:last-child
th
:last-child
,
.panel
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
th
:last-child
,
.panel
>
.table-responsive
:last-child
>
.table
:last-child
>
tfoot
:last-child
>
tr
:last-child
th
:last-child
{
border-bottom-right-radius
:
-1
;}
.panel
>
.panel-body
+
.table
,
.panel
>
.panel-body
+
.table-responsive
,
.panel
>
.table
+
.panel-body
,
.panel
>
.table-responsive
+
.panel-body
{
border-top
:
1px
solid
#ddd
;}
.panel
>
.table
>
tbody
:first-child
>
tr
:first-child
th
,
.panel
>
.table
>
tbody
:first-child
>
tr
:first-child
td
{
border-top
:
0
;}
.panel
>
.table-bordered
,
.panel
>
.table-responsive
>
.table-bordered
{
border
:
0
;}
.panel
>
.table-bordered
>
thead
>
tr
>
th
:first-child
,
.panel
>
.table-responsive
>
.table-bordered
>
thead
>
tr
>
th
:first-child
,
.panel
>
.table-bordered
>
tbody
>
tr
>
th
:first-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
th
:first-child
,
.panel
>
.table-bordered
>
tfoot
>
tr
>
th
:first-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
th
:first-child
,
.panel
>
.table-bordered
>
thead
>
tr
>
td
:first-child
,
.panel
>
.table-responsive
>
.table-bordered
>
thead
>
tr
>
td
:first-child
,
.panel
>
.table-bordered
>
tbody
>
tr
>
td
:first-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
td
:first-child
,
.panel
>
.table-bordered
>
tfoot
>
tr
>
td
:first-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
td
:first-child
{
border-left
:
0
;}
.panel
>
.table-bordered
>
thead
>
tr
>
th
:last-child
,
.panel
>
.table-responsive
>
.table-bordered
>
thead
>
tr
>
th
:last-child
,
.panel
>
.table-bordered
>
tbody
>
tr
>
th
:last-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
th
:last-child
,
.panel
>
.table-bordered
>
tfoot
>
tr
>
th
:last-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
th
:last-child
,
.panel
>
.table-bordered
>
thead
>
tr
>
td
:last-child
,
.panel
>
.table-responsive
>
.table-bordered
>
thead
>
tr
>
td
:last-child
,
.panel
>
.table-bordered
>
tbody
>
tr
>
td
:last-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
>
td
:last-child
,
.panel
>
.table-bordered
>
tfoot
>
tr
>
td
:last-child
,
.panel
>
.table-responsive
>
.table-bordered
>
tfoot
>
tr
>
td
:last-child
{
border-right
:
0
;}
.panel
>
.table-bordered
>
thead
>
tr
:first-child
>
td
,
.panel
>
.table-responsive
>
.table-bordered
>
thead
>
tr
:first-child
>
td
,
.panel
>
.table-bordered
>
tbody
>
tr
:first-child
>
td
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
:first-child
>
td
,
.panel
>
.table-bordered
>
thead
>
tr
:first-child
>
th
,
.panel
>
.table-responsive
>
.table-bordered
>
thead
>
tr
:first-child
>
th
,
.panel
>
.table-bordered
>
tbody
>
tr
:first-child
>
th
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
:first-child
>
th
{
border-bottom
:
0
;}
.panel
>
.table-bordered
>
tbody
>
tr
:last-child
>
td
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
:last-child
>
td
,
.panel
>
.table-bordered
>
tfoot
>
tr
:last-child
>
td
,
.panel
>
.table-responsive
>
.table-bordered
>
tfoot
>
tr
:last-child
>
td
,
.panel
>
.table-bordered
>
tbody
>
tr
:last-child
>
th
,
.panel
>
.table-responsive
>
.table-bordered
>
tbody
>
tr
:last-child
>
th
,
.panel
>
.table-bordered
>
tfoot
>
tr
:last-child
>
th
,
.panel
>
.table-responsive
>
.table-bordered
>
tfoot
>
tr
:last-child
>
th
{
border-bottom
:
0
;}
.panel
>
.table-responsive
{
border
:
0
;
margin-bottom
:
0
;}
.panel-group
{
margin-bottom
:
20px
;}
.panel-group
.panel
{
margin-bottom
:
0
;
border-radius
:
0
;}
.panel-group
.panel
+
.panel
{
margin-top
:
5px
;}
.panel-group
.panel-heading
{
border-bottom
:
0
;}
.panel-group
.panel-heading
+
.panel-collapse
>
.panel-body
,
.panel-group
.panel-heading
+
.panel-collapse
>
.list-group
{
border-top
:
1px
solid
#ddd
;}
.panel-group
.panel-footer
{
border-top
:
0
;}
.panel-group
.panel-footer
+
.panel-collapse
.panel-body
{
border-bottom
:
1px
solid
#ddd
;}
.panel-control
{
display
:
none
;}
.panel-control
a
{
font-size
:
13px
;
color
:
#fff
;
display
:
inline-block
;
padding
:
3px
;
opacity
:
0.5
;}
.panel-control
a
:hover
,
.panel-control
a
:active
,
.panel-control
a
:focus
{
opacity
:
0.8
;}
.panel-default
>
.panel-heading
{
color
:
#333333
;
background-color
:
#fff
;
border-color
:
#ddd
;}
.panel-default
>
.panel-heading
+
.panel-collapse
>
.panel-body
{
border-top-color
:
#ddd
;}
.panel-default
>
.panel-heading
.badge
{
color
:
#fff
;
background-color
:
#333333
;}
.panel-default
>
.panel-footer
+
.panel-collapse
>
.panel-body
{
border-bottom-color
:
#ddd
;}
.panel-primary
>
.panel-heading
{
color
:
#fff
;
background-color
:
#2c3e50
;
border-color
:
#2c3e50
;}
.panel-primary
>
.panel-heading
+
.panel-collapse
>
.panel-body
{
border-top-color
:
#2c3e50
;}
.panel-primary
>
.panel-heading
.badge
{
color
:
#2c3e50
;
background-color
:
#fff
;}
.panel-primary
>
.panel-footer
+
.panel-collapse
>
.panel-body
{
border-bottom-color
:
#2c3e50
;}
.panel-success
>
.panel-heading
{
color
:
#fff
;
background-color
:
#5cb85c
;
border-color
:
#4cae4c
;}
.panel-success
>
.panel-heading
+
.panel-collapse
>
.panel-body
{
border-top-color
:
#4cae4c
;}
.panel-success
>
.panel-heading
.badge
{
color
:
#5cb85c
;
background-color
:
#fff
;}
.panel-success
>
.panel-footer
+
.panel-collapse
>
.panel-body
{
border-bottom-color
:
#4cae4c
;}
.panel-info
>
.panel-heading
{
color
:
#fff
;
background-color
:
#5bc0de
;
border-color
:
#46b8da
;}
.panel-info
>
.panel-heading
+
.panel-collapse
>
.panel-body
{
border-top-color
:
#46b8da
;}
.panel-info
>
.panel-heading
.badge
{
color
:
#5bc0de
;
background-color
:
#fff
;}
.panel-info
>
.panel-footer
+
.panel-collapse
>
.panel-body
{
border-bottom-color
:
#46b8da
;}
.panel-warning
>
.panel-heading
{
color
:
#fff
;
background-color
:
#f0ad4e
;
border-color
:
#eea236
;}
.panel-warning
>
.panel-heading
+
.panel-collapse
>
.panel-body
{
border-top-color
:
#eea236
;}
.panel-warning
>
.panel-heading
.badge
{
color
:
#f0ad4e
;
background-color
:
#fff
;}
.panel-warning
>
.panel-footer
+
.panel-collapse
>
.panel-body
{
border-bottom-color
:
#eea236
;}
.panel-danger
>
.panel-heading
{
color
:
#fff
;
background-color
:
#de6764
;
border-color
:
#da524f
;}
.panel-danger
>
.panel-heading
+
.panel-collapse
>
.panel-body
{
border-top-color
:
#da524f
;}
.panel-danger
>
.panel-heading
.badge
{
color
:
#de6764
;
background-color
:
#fff
;}
.panel-danger
>
.panel-footer
+
.panel-collapse
>
.panel-body
{
border-bottom-color
:
#da524f
;}
.embed-responsive
{
position
:
relative
;
display
:
block
;
height
:
0
;
padding
:
0
;
overflow
:
hidden
;}
.embed-responsive
.embed-responsive-item
,
.embed-responsive
iframe
,
.embed-responsive
embed
,
.embed-responsive
object
,
.embed-responsive
video
{
position
:
absolute
;
top
:
0
;
left
:
0
;
bottom
:
0
;
height
:
100%
;
width
:
100%
;
border
:
0
;}
.embed-responsive-16by9
{
padding-bottom
:
56.25%
;}
.embed-responsive-4by3
{
padding-bottom
:
75%
;}
.well
{
min-height
:
20px
;
padding
:
19px
;
margin-bottom
:
20px
;
background-color
:
#f5f5f5
;
border
:
1px
solid
#e3e3e3
;
border-radius
:
0px
;}
.well
blockquote
{
border-color
:
#ddd
;
border-color
:
rgba
(
0
,
0
,
0
,
0.15
);}
.well-lg
{
padding
:
24px
;
border-radius
:
0px
;}
.well-sm
{
padding
:
9px
;
border-radius
:
0px
;}
.close
{
float
:
right
;
font-size
:
21px
;
font-weight
:
bold
;
line-height
:
1
;
color
:
#000
;
text-shadow
:
0
1px
0
#fff
;
opacity
:
0.2
;
filter
:
alpha
(
opacity
=
20
);}
.close
:hover
,
.close
:focus
{
color
:
#000
;
text-decoration
:
none
;
cursor
:
pointer
;
opacity
:
0.5
;
filter
:
alpha
(
opacity
=
50
);}
button
.close
{
padding
:
0
;
cursor
:
pointer
;
background
:
transparent
;
border
:
0
;
-webkit-appearance
:
none
;}
.modal-open
{
overflow
:
hidden
;}
.modal
{
display
:
none
;
overflow
:
hidden
;
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
1050
;
-webkit-overflow-scrolling
:
touch
;
outline
:
0
;}
.modal.fade
.modal-dialog
{
-webkit-transform
:
translate
(
0
,
-25%
);
transform
:
translate
(
0
,
-25%
);
transition
:
-webkit-transform
0.3s
ease-out
;
transition
:
transform
0.3s
ease-out
;}
.modal.in
.modal-dialog
{
-webkit-transform
:
translate
(
0
,
0
);
transform
:
translate
(
0
,
0
);}
.modal-open
.modal
{
overflow-x
:
hidden
;
overflow-y
:
auto
;}
.modal-dialog
{
position
:
relative
;
width
:
auto
;
margin
:
10px
;}
.modal-content
{
position
:
relative
;
background-color
:
#fff
;
border
:
1px
solid
#999
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0px
;
box-shadow
:
0
3px
9px
rgba
(
0
,
0
,
0
,
0.5
);
background-clip
:
padding-box
;
outline
:
0
;}
.modal-backdrop
{
position
:
fixed
;
top
:
0
;
right
:
0
;
bottom
:
0
;
left
:
0
;
z-index
:
1040
;
background-color
:
#000
;}
.modal-backdrop.fade
{
opacity
:
0
;
filter
:
alpha
(
opacity
=
0
);}
.modal-backdrop.in
{
opacity
:
0.5
;
filter
:
alpha
(
opacity
=
50
);}
.modal-header
{
padding
:
15px
;
border-bottom
:
1px
solid
#e5e5e5
;
min-height
:
16.42857143px
;}
.modal-header
.close
{
margin-top
:
-2px
;}
.modal-title
{
margin
:
0
;
line-height
:
1.42857143
;}
.modal-body
{
position
:
relative
;
padding
:
15px
;}
.modal-footer
{
padding
:
15px
;
text-align
:
right
;
border-top
:
1px
solid
#e5e5e5
;}
.modal-footer
.btn
+
.btn
{
margin-left
:
5px
;
margin-bottom
:
0
;}
.modal-footer
.btn-group
.btn
+
.btn
{
margin-left
:
-1px
;}
.modal-footer
.btn-block
+
.btn-block
{
margin-left
:
0
;}
.modal-scrollbar-measure
{
position
:
absolute
;
top
:
-9999px
;
width
:
50px
;
height
:
50px
;
overflow
:
scroll
;}
@media
(
min-width
:
768px
){
.modal-dialog
{
width
:
600px
;
margin
:
30px
auto
;}
.modal-content
{
box-shadow
:
0
5px
15px
rgba
(
0
,
0
,
0
,
0.5
);}
.modal-sm
{
width
:
300px
;}}
@media
(
min-width
:
992px
){
.modal-lg
{
width
:
900px
;}}
.tooltip
{
position
:
absolute
;
z-index
:
1070
;
display
:
block
;
font-family
:
"Open Sans"
,
"Helvetica Neue"
,
Helvetica
,
Arial
,
"Microsoft Yahei"
,
sans-serif
;
font-size
:
12px
;
font-weight
:
normal
;
line-height
:
1.4
;
opacity
:
0
;
filter
:
alpha
(
opacity
=
0
);}
.tooltip.in
{
opacity
:
0.9
;
filter
:
alpha
(
opacity
=
90
);}
.tooltip.top
{
margin-top
:
-3px
;
padding
:
5px
0
;}
.tooltip.right
{
margin-left
:
3px
;
padding
:
0
5px
;}
.tooltip.bottom
{
margin-top
:
3px
;
padding
:
5px
0
;}
.tooltip.left
{
margin-left
:
-3px
;
padding
:
0
5px
;}
.tooltip-inner
{
max-width
:
200px
;
padding
:
3px
8px
;
color
:
#fff
;
text-align
:
center
;
text-decoration
:
none
;
background-color
:
#000
;
border-radius
:
0px
;}
.tooltip-arrow
{
position
:
absolute
;
width
:
0
;
height
:
0
;
border-color
:
transparent
;
border-style
:
solid
;}
.tooltip.top
.tooltip-arrow
{
bottom
:
0
;
left
:
50%
;
margin-left
:
-5px
;
border-width
:
5px
5px
0
;
border-top-color
:
#000
;}
.tooltip.top-left
.tooltip-arrow
{
bottom
:
0
;
right
:
5px
;
margin-bottom
:
-5px
;
border-width
:
5px
5px
0
;
border-top-color
:
#000
;}
.tooltip.top-right
.tooltip-arrow
{
bottom
:
0
;
left
:
5px
;
margin-bottom
:
-5px
;
border-width
:
5px
5px
0
;
border-top-color
:
#000
;}
.tooltip.right
.tooltip-arrow
{
top
:
50%
;
left
:
0
;
margin-top
:
-5px
;
border-width
:
5px
5px
5px
0
;
border-right-color
:
#000
;}
.tooltip.left
.tooltip-arrow
{
top
:
50%
;
right
:
0
;
margin-top
:
-5px
;
border-width
:
5px
0
5px
5px
;
border-left-color
:
#000
;}
.tooltip.bottom
.tooltip-arrow
{
top
:
0
;
left
:
50%
;
margin-left
:
-5px
;
border-width
:
0
5px
5px
;
border-bottom-color
:
#000
;}
.tooltip.bottom-left
.tooltip-arrow
{
top
:
0
;
right
:
5px
;
margin-top
:
-5px
;
border-width
:
0
5px
5px
;
border-bottom-color
:
#000
;}
.tooltip.bottom-right
.tooltip-arrow
{
top
:
0
;
left
:
5px
;
margin-top
:
-5px
;
border-width
:
0
5px
5px
;
border-bottom-color
:
#000
;}
.popover
{
position
:
absolute
;
top
:
0
;
left
:
0
;
z-index
:
1060
;
display
:
none
;
max-width
:
276px
;
padding
:
1px
;
font-family
:
"Open Sans"
,
"Helvetica Neue"
,
Helvetica
,
Arial
,
"Microsoft Yahei"
,
sans-serif
;
font-size
:
14px
;
font-weight
:
normal
;
line-height
:
1.42857143
;
text-align
:
left
;
background-color
:
#fff
;
background-clip
:
padding-box
;
border
:
1px
solid
#ccc
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.2
);
border-radius
:
0px
;
box-shadow
:
0
5px
10px
rgba
(
0
,
0
,
0
,
0.2
);
white-space
:
normal
;}
.popover.top
{
margin-top
:
-10px
;}
.popover.right
{
margin-left
:
10px
;}
.popover.bottom
{
margin-top
:
10px
;}
.popover.left
{
margin-left
:
-10px
;}
.popover-title
{
margin
:
0
;
padding
:
8px
14px
;
font-size
:
14px
;
background-color
:
#f7f7f7
;
border-bottom
:
1px
solid
#ebebeb
;
border-radius
:
-1px
-1px
0
0
;}
.popover-content
{
padding
:
9px
14px
;}
.popover
>
.arrow
,
.popover
>
.arrow
:after
{
position
:
absolute
;
display
:
block
;
width
:
0
;
height
:
0
;
border-color
:
transparent
;
border-style
:
solid
;}
.popover
>
.arrow
{
border-width
:
11px
;}
.popover
>
.arrow
:after
{
border-width
:
10px
;
content
:
""
;}
.popover.top
>
.arrow
{
left
:
50%
;
margin-left
:
-11px
;
border-bottom-width
:
0
;
border-top-color
:
#999999
;
border-top-color
:
rgba
(
0
,
0
,
0
,
0.25
);
bottom
:
-11px
;}
.popover.top
>
.arrow
:after
{
content
:
" "
;
bottom
:
1px
;
margin-left
:
-10px
;
border-bottom-width
:
0
;
border-top-color
:
#fff
;}
.popover.right
>
.arrow
{
top
:
50%
;
left
:
-11px
;
margin-top
:
-11px
;
border-left-width
:
0
;
border-right-color
:
#999999
;
border-right-color
:
rgba
(
0
,
0
,
0
,
0.25
);}
.popover.right
>
.arrow
:after
{
content
:
" "
;
left
:
1px
;
bottom
:
-10px
;
border-left-width
:
0
;
border-right-color
:
#fff
;}
.popover.bottom
>
.arrow
{
left
:
50%
;
margin-left
:
-11px
;
border-top-width
:
0
;
border-bottom-color
:
#999999
;
border-bottom-color
:
rgba
(
0
,
0
,
0
,
0.25
);
top
:
-11px
;}
.popover.bottom
>
.arrow
:after
{
content
:
" "
;
top
:
1px
;
margin-left
:
-10px
;
border-top-width
:
0
;
border-bottom-color
:
#fff
;}
.popover.left
>
.arrow
{
top
:
50%
;
right
:
-11px
;
margin-top
:
-11px
;
border-right-width
:
0
;
border-left-color
:
#999999
;
border-left-color
:
rgba
(
0
,
0
,
0
,
0.25
);}
.popover.left
>
.arrow
:after
{
content
:
" "
;
right
:
1px
;
border-right-width
:
0
;
border-left-color
:
#fff
;
bottom
:
-10px
;}
.carousel
{
position
:
relative
;}
.carousel-inner
{
position
:
relative
;
overflow
:
hidden
;
width
:
100%
;}
.carousel-inner
>
.item
{
display
:
none
;
position
:
relative
;
transition
:
0.6s
ease-in-out
left
;}
.carousel-inner
>
.item
>
img
,
.carousel-inner
>
.item
>
a
>
img
{
line-height
:
1
;}
@media
all
and
(
transform-3d
),(
-webkit-transform-3d
){
.carousel-inner
>
.item
{
transition
:
-webkit-transform
0.6s
ease-in-out
;
transition
:
transform
0.6s
ease-in-out
;
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;
-webkit-perspective
:
1000
;
perspective
:
1000
;}
.carousel-inner
>
.item.next
,
.carousel-inner
>
.item.active.right
{
-webkit-transform
:
translate3d
(
100%
,
0
,
0
);
transform
:
translate3d
(
100%
,
0
,
0
);
left
:
0
;}
.carousel-inner
>
.item.prev
,
.carousel-inner
>
.item.active.left
{
-webkit-transform
:
translate3d
(
-100%
,
0
,
0
);
transform
:
translate3d
(
-100%
,
0
,
0
);
left
:
0
;}
.carousel-inner
>
.item.next.left
,
.carousel-inner
>
.item.prev.right
,
.carousel-inner
>
.item.active
{
-webkit-transform
:
translate3d
(
0
,
0
,
0
);
transform
:
translate3d
(
0
,
0
,
0
);
left
:
0
;}}
.carousel-inner
>
.active
,
.carousel-inner
>
.next
,
.carousel-inner
>
.prev
{
display
:
block
;}
.carousel-inner
>
.active
{
left
:
0
;}
.carousel-inner
>
.next
,
.carousel-inner
>
.prev
{
position
:
absolute
;
top
:
0
;
width
:
100%
;}
.carousel-inner
>
.next
{
left
:
100%
;}
.carousel-inner
>
.prev
{
left
:
-100%
;}
.carousel-inner
>
.next.left
,
.carousel-inner
>
.prev.right
{
left
:
0
;}
.carousel-inner
>
.active.left
{
left
:
-100%
;}
.carousel-inner
>
.active.right
{
left
:
100%
;}
.carousel-control
{
position
:
absolute
;
top
:
0
;
left
:
0
;
bottom
:
0
;
width
:
15%
;
opacity
:
0.5
;
filter
:
alpha
(
opacity
=
50
);
font-size
:
20px
;
color
:
#fff
;
text-align
:
center
;
text-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.6
);}
.carousel-control.left
{
background-image
:
linear-gradient
(
to
right
,
rgba
(
0
,
0
,
0
,
0.5
)
0%
,
rgba
(
0
,
0
,
0
,
0.0001
)
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#80000000'
,
endColorstr
=
'#00000000'
,
GradientType
=
1
);}
.carousel-control.right
{
left
:
auto
;
right
:
0
;
background-image
:
linear-gradient
(
to
right
,
rgba
(
0
,
0
,
0
,
0.0001
)
0%
,
rgba
(
0
,
0
,
0
,
0.5
)
100%
);
background-repeat
:
repeat-x
;
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#00000000'
,
endColorstr
=
'#80000000'
,
GradientType
=
1
);}
.carousel-control
:hover
,
.carousel-control
:focus
{
outline
:
0
;
color
:
#fff
;
text-decoration
:
none
;
opacity
:
0.9
;
filter
:
alpha
(
opacity
=
90
);}
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
,
.carousel-control
.glyphicon-chevron-left
,
.carousel-control
.glyphicon-chevron-right
{
position
:
absolute
;
top
:
50%
;
z-index
:
5
;
display
:
inline-block
;}
.carousel-control
.icon-prev
,
.carousel-control
.glyphicon-chevron-left
{
left
:
50%
;
margin-left
:
-10px
;}
.carousel-control
.icon-next
,
.carousel-control
.glyphicon-chevron-right
{
right
:
50%
;
margin-right
:
-10px
;}
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
{
width
:
20px
;
height
:
20px
;
margin-top
:
-10px
;
line-height
:
1
;
font-family
:
serif
;}
.carousel-control
.icon-prev
:before
{
content
:
'\2039'
;}
.carousel-control
.icon-next
:before
{
content
:
'\203a'
;}
.carousel-indicators
{
position
:
absolute
;
bottom
:
10px
;
left
:
50%
;
z-index
:
15
;
width
:
60%
;
margin-left
:
-30%
;
padding-left
:
0
;
list-style
:
none
;
text-align
:
center
;}
.carousel-indicators
li
{
display
:
inline-block
;
width
:
10px
;
height
:
10px
;
margin
:
1px
;
text-indent
:
-999px
;
border
:
1px
solid
#fff
;
border-radius
:
10px
;
cursor
:
pointer
;
background-color
:
#000
\
9
;
background-color
:
rgba
(
0
,
0
,
0
,
0
);}
.carousel-indicators
.active
{
margin
:
0
;
width
:
12px
;
height
:
12px
;
background-color
:
#fff
;}
.carousel-caption
{
position
:
absolute
;
left
:
15%
;
right
:
15%
;
bottom
:
20px
;
z-index
:
10
;
padding-top
:
20px
;
padding-bottom
:
20px
;
color
:
#fff
;
text-align
:
center
;
text-shadow
:
0
1px
2px
rgba
(
0
,
0
,
0
,
0.6
);}
.carousel-caption
.btn
{
text-shadow
:
none
;}
@media
screen
and
(
min-width
:
768px
){
.carousel-control
.glyphicon-chevron-left
,
.carousel-control
.glyphicon-chevron-right
,
.carousel-control
.icon-prev
,
.carousel-control
.icon-next
{
width
:
30px
;
height
:
30px
;
margin-top
:
-15px
;
font-size
:
30px
;}
.carousel-control
.glyphicon-chevron-left
,
.carousel-control
.icon-prev
{
margin-left
:
-15px
;}
.carousel-control
.glyphicon-chevron-right
,
.carousel-control
.icon-next
{
margin-right
:
-15px
;}
.carousel-caption
{
left
:
20%
;
right
:
20%
;
padding-bottom
:
30px
;}
.carousel-indicators
{
bottom
:
20px
;}}
.clearfix
:before
,
.clearfix
:after
,
.dl-horizontal
dd
:before
,
.dl-horizontal
dd
:after
,
.container
:before
,
.container
:after
,
.container-fluid
:before
,
.container-fluid
:after
,
.row
:before
,
.row
:after
,
.form-horizontal
.form-group
:before
,
.form-horizontal
.form-group
:after
,
.btn-toolbar
:before
,
.btn-toolbar
:after
,
.btn-group-vertical
>
.btn-group
:before
,
.btn-group-vertical
>
.btn-group
:after
,
.nav
:before
,
.nav
:after
,
.navbar
:before
,
.navbar
:after
,
.navbar-header
:before
,
.navbar-header
:after
,
.navbar-collapse
:before
,
.navbar-collapse
:after
,
.pager
:before
,
.pager
:after
,
.panel-body
:before
,
.panel-body
:after
,
.modal-footer
:before
,
.modal-footer
:after
{
content
:
" "
;
display
:
table
;}
.clearfix
:after
,
.dl-horizontal
dd
:after
,
.container
:after
,
.container-fluid
:after
,
.row
:after
,
.form-horizontal
.form-group
:after
,
.btn-toolbar
:after
,
.btn-group-vertical
>
.btn-group
:after
,
.nav
:after
,
.navbar
:after
,
.navbar-header
:after
,
.navbar-collapse
:after
,
.pager
:after
,
.panel-body
:after
,
.modal-footer
:after
{
clear
:
both
;}
.center-block
{
display
:
block
;
margin-left
:
auto
;
margin-right
:
auto
;}
.pull-right
{
float
:
right
!important
;}
.pull-left
{
float
:
left
!important
;}
.hide
{
display
:
none
!important
;}
.show
{
display
:
block
!important
;}
.invisible
{
visibility
:
hidden
;}
.text-hide
{
font
:
0
/
0
a
;
color
:
transparent
;
text-shadow
:
none
;
background-color
:
transparent
;
border
:
0
;}
.hidden
{
display
:
none
!important
;}
.affix
{
position
:
fixed
;}
@-ms-viewport
{
width
:
device-width
;}
.visible-xs
,
.visible-sm
,
.visible-md
,
.visible-lg
{
display
:
none
!important
;}
.visible-xs-block
,
.visible-xs-inline
,
.visible-xs-inline-block
,
.visible-sm-block
,
.visible-sm-inline
,
.visible-sm-inline-block
,
.visible-md-block
,
.visible-md-inline
,
.visible-md-inline-block
,
.visible-lg-block
,
.visible-lg-inline
,
.visible-lg-inline-block
{
display
:
none
!important
;}
@media
(
max-width
:
767px
){
.visible-xs
{
display
:
block
!important
;}
table
.visible-xs
{
display
:
table
;}
tr
.visible-xs
{
display
:
table-row
!important
;}
th
.visible-xs
,
td
.visible-xs
{
display
:
table-cell
!important
;}}
@media
(
max-width
:
767px
){
.visible-xs-block
{
display
:
block
!important
;}}
@media
(
max-width
:
767px
){
.visible-xs-inline
{
display
:
inline
!important
;}}
@media
(
max-width
:
767px
){
.visible-xs-inline-block
{
display
:
inline-block
!important
;}}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.visible-sm
{
display
:
block
!important
;}
table
.visible-sm
{
display
:
table
;}
tr
.visible-sm
{
display
:
table-row
!important
;}
th
.visible-sm
,
td
.visible-sm
{
display
:
table-cell
!important
;}}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.visible-sm-block
{
display
:
block
!important
;}}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.visible-sm-inline
{
display
:
inline
!important
;}}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.visible-sm-inline-block
{
display
:
inline-block
!important
;}}
@media
(
min-width
:
992px
)
and
(
max-width
:
1199px
){
.visible-md
{
display
:
block
!important
;}
table
.visible-md
{
display
:
table
;}
tr
.visible-md
{
display
:
table-row
!important
;}
th
.visible-md
,
td
.visible-md
{
display
:
table-cell
!important
;}}
@media
(
min-width
:
992px
)
and
(
max-width
:
1199px
){
.visible-md-block
{
display
:
block
!important
;}}
@media
(
min-width
:
992px
)
and
(
max-width
:
1199px
){
.visible-md-inline
{
display
:
inline
!important
;}}
@media
(
min-width
:
992px
)
and
(
max-width
:
1199px
){
.visible-md-inline-block
{
display
:
inline-block
!important
;}}
@media
(
min-width
:
1200px
){
.visible-lg
{
display
:
block
!important
;}
table
.visible-lg
{
display
:
table
;}
tr
.visible-lg
{
display
:
table-row
!important
;}
th
.visible-lg
,
td
.visible-lg
{
display
:
table-cell
!important
;}}
@media
(
min-width
:
1200px
){
.visible-lg-block
{
display
:
block
!important
;}}
@media
(
min-width
:
1200px
){
.visible-lg-inline
{
display
:
inline
!important
;}}
@media
(
min-width
:
1200px
){
.visible-lg-inline-block
{
display
:
inline-block
!important
;}}
@media
(
max-width
:
767px
){
.hidden-xs
{
display
:
none
!important
;}}
@media
(
min-width
:
768px
)
and
(
max-width
:
991px
){
.hidden-sm
{
display
:
none
!important
;}}
@media
(
min-width
:
992px
)
and
(
max-width
:
1199px
){
.hidden-md
{
display
:
none
!important
;}}
@media
(
min-width
:
1200px
){
.hidden-lg
{
display
:
none
!important
;}}
.visible-print
{
display
:
none
!important
;}
@media
print
{
.visible-print
{
display
:
block
!important
;}
table
.visible-print
{
display
:
table
;}
tr
.visible-print
{
display
:
table-row
!important
;}
th
.visible-print
,
td
.visible-print
{
display
:
table-cell
!important
;}}
.visible-print-block
{
display
:
none
!important
;}
@media
print
{
.visible-print-block
{
display
:
block
!important
;}}
.visible-print-inline
{
display
:
none
!important
;}
@media
print
{
.visible-print-inline
{
display
:
inline
!important
;}}
.visible-print-inline-block
{
display
:
none
!important
;}
@media
print
{
.visible-print-inline-block
{
display
:
inline-block
!important
;}}
@media
print
{
.hidden-print
{
display
:
none
!important
;}}
.ui-base
{
position
:
absolute
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;}
.user-avatar
{
width
:
108px
;
height
:
108px
;}
.login-page
{
/*background-image:url(../login/images/loginImg1.jpg);*/
position
:
absolute
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;
overflow
:
auto
;
background-color
:
#3c8dbc
;
text-align
:
center
;
color
:
#fff
;
padding
:
3em
;}
.login-page
h1
{
font-weight
:
300
;}
.login-page
h1
small
{
color
:
rgba
(
255
,
255
,
255
,
0.7
);}
.login-page
.form-group
{
padding
:
8px
0
;}
.login-page
.form-content
{
padding
:
40px
0
;}
body
{
background-color
:
#ecf0f1
;}
.dashboard-page
{
position
:
absolute
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;
background
:
#ecf0f1
;
color
:
#666
;
transition
:
all
0.2s
ease-in-out
;}
.dashboard-page
.sub-header
{
padding-bottom
:
10px
;
border-bottom
:
1px
solid
#eee
;}
.dashboard-page
.navbar-fixed-top
{
border
:
0
;}
.dashboard-page
.sidebar
{
display
:
none
;
color
:
#FFF
;}
.dashboard-page
.sidebar
.user-avatar
{
margin
:
10px
0
10px
0
;}
.dashboard-page
.sidebar
.brand
{
padding-top
:
15px
;}
.dashboard-page
.sidebar
h2
{
font-weight
:
300
;}
.dashboard-page
.sidebar
h2
small
{
color
:
rgba
(
255
,
255
,
255
,
0.7
);}
@media
(
min-width
:
768px
){
.dashboard-page
.sidebar
{
position
:
fixed
;
top
:
0px
;
bottom
:
0
;
left
:
0
;
z-index
:
1000
;
display
:
block
;
padding
:
0
20px
20px
20px
;
overflow-x
:
hidden
;
overflow-y
:
auto
;
background-color
:
#2c3e50
;
border-right
:
1px
solid
#eee
;}}
.dashboard-page
.nav
>
li
>
a
:hover
,
.dashboard-page
.nav
>
li
>
a
:focus
{
background
:
#233140
;}
.dashboard-page
.nav-sidebar
{
margin-right
:
-21px
;
margin-bottom
:
20px
;
margin-left
:
-20px
;
margin-top
:
20px
;}
.dashboard-page
.nav-sidebar
>
li
>
a
{
color
:
#fff
;
padding-right
:
20px
;
padding-left
:
20px
;}
.dashboard-page
.nav-sidebar
>
.active
>
a
,
.dashboard-page
.nav-sidebar
>
.active
>
a
:hover
,
.dashboard-page
.nav-sidebar
>
.active
>
a
:focus
{
color
:
#fff
;
background-color
:
#233140
;}
.dashboard-page
.main
{
padding
:
20px
;
position
:
absolute
;
top
:
0px
;
bottom
:
0px
;
overflow-x
:
hidden
;
overflow-y
:
auto
;}
.dashboard-page
.main
.jumbotron
{
background
:
#FFF
;
margin-top
:
20px
;}
@media
(
min-width
:
769px
){
.dashboard-page
.main
{
padding-right
:
40px
;
padding-left
:
40px
;}}
.dashboard-page
.main
.page-header
{
margin-top
:
0
;}
.dashboard-page
.placeholders
{
margin-bottom
:
30px
;
text-align
:
center
;}
.dashboard-page
.placeholders
h4
{
margin-bottom
:
0
;}
.dashboard-page
.placeholder
{
margin-bottom
:
20px
;}
.dashboard-page
.placeholder
img
{
display
:
inline-block
;
border-radius
:
50%
;}
.dashboard-page
.bg-fade
{
font-size
:
500px
;
color
:
rgba
(
0
,
0
,
0
,
0.1
);
position
:
absolute
;
right
:
-100px
;
top
:
200px
;}
#body-container
{
margin-left
:
220px
;
margin-top
:
50px
;
overflow-x
:
hidden
;
transition
:
all
0.2s
ease-in-out
;
height
:
calc
(
100%
-
50px
);}
#body-container
.home-stats
.hvr-wobble-horizontal
{
display
:
block
;}
#body-container
.home-stats
a
{
color
:
inherit
;}
#body-container
.home-charts-middle
.chart-container
{
background-color
:
#fff
;
border
:
solid
1px
rgba
(
0
,
0
,
0
,
0.1
);
position
:
relative
;
min-height
:
285px
;
overflow
:
hidden
;
padding
:
15px
;}
#body-container
.home-charts-middle
.chart-container
.chart-comment
{
position
:
absolute
;
left
:
15px
;
top
:
15px
;}
#body-container
.home-charts-middle
.chart-container
.chart-comment
.comment-header
{
font-weight
:
600
;
font-size
:
23px
;}
#body-container
.home-charts-middle
.chart-container
.chart-comment
.comment-comment
{
font-size
:
13px
;}
#body-container
.home-charts-right
.top-right-chart
{
background-color
:
#fff
;
border
:
solid
1px
rgba
(
0
,
0
,
0
,
0.1
);}
#body-container
.home-charts-right
.top-right-chart
.c3
svg
{
margin-bottom
:
-12px
;}
#body-container
.home-charts-right
.top-right-chart
.c3-axis-x
text
{
fill
:
none
;}
#body-container
.home-charts-right
.top-right-chart
.c3-axis-y
text
{
fill
:
none
;}
#body-container
.home-charts-right
.top-right-chart
.c3
path
{
stroke
:
none
;}
#body-container
.home-charts-right
.top-right-chart
.c3
line
{
stroke
:
none
;}
#body-container
.home-charts-right
.top-left-chart
{
background-color
:
#fff
;
border
:
solid
1px
rgba
(
0
,
0
,
0
,
0.1
);
margin-top
:
10px
;
text-align
:
center
;}
#body-container
.home-charts-right
.top-left-chart
#pie-chart
{
margin-top
:
6px
;}
#body-container
.home-charts-right
.top-left-chart
.c3-chart-arc
text
{
display
:
none
;}
#body-container
.piechart-container
{
display
:
inline-block
;}
#body-container
.piechart-container
.chart1
,
#body-container
.piechart-container
.chart2
,
#body-container
.piechart-container
.chart3
{
background-color
:
#fff
;
border
:
solid
1px
rgba
(
0
,
0
,
0
,
0.1
);
display
:
inline-block
;
width
:
100%
;
text-align
:
center
;}
#body-container
.piechart-container
.chart1
.easypie
,
#body-container
.piechart-container
.chart2
.easypie
,
#body-container
.piechart-container
.chart3
.easypie
{
padding
:
7px
;}
#body-container
.piechart-container
.chart1
.chart-header
,
#body-container
.piechart-container
.chart2
.chart-header
,
#body-container
.piechart-container
.chart3
.chart-header
{
height
:
28px
;
padding-top
:
3px
;
margin-bottom
:
2px
;
font-size
:
15px
;
font-weight
:
600
;}
#body-container
.piechart-container
.chart1
.chart-header
{
background
:
#f0ad4e
;
color
:
white
;}
#body-container
.piechart-container
.chart2
.chart-header
{
background
:
#2c3e50
;
color
:
white
;}
#body-container
.piechart-container
.chart3
.chart-header
{
background
:
#de6764
;
color
:
white
;}
#bar-chart
{
overflow
:
hidden
;}
.box
{
background-color
:
#fff
;
border
:
solid
1px
rgba
(
0
,
0
,
0
,
0.1
);}
.heading
{
font-weight
:
bold
;
font-size
:
12px
;
text-transform
:
uppercase
;}
@media
(
max-width
:
767px
){
.home-charts-right
{
margin-top
:
13px
;
margin-bottom
:
13px
;}
.todo-container
{
margin-top
:
13px
;
margin-bottom
:
13px
;}}
@media
(
max-width
:
767px
){
.navbar-toggle
{
position
:
absolute
;
left
:
0
;}
#sidebar
{
left
:
-235px
;}
#body-container
{
margin-left
:
0
;
width
:
100%
;}
.dashboard-page
{
margin-left
:
-235px
;
position
:
static
;}
.dashboard-page.push-right
{
margin-left
:
0
;}
.dashboard-page.push-right
#body-container
{
margin-left
:
220px
;}}
.inbox-container-wrap
{
display
:
table
;
width
:
100%
;
height
:
100%
;
background-color
:
#fff
;
border-radius
:
5px
;}
.inbox-container-wrap
.inbox-container
,
.inbox-container-wrap
.message-list-wrapper
,
.inbox-container-wrap
.text-wrapper
{
display
:
table-cell
;
vertical-align
:
top
;}
.email-options
.email-options-title
{
opacity
:
0.92
;}
.email-options
.main-options
{
padding-left
:
0
;
list-style-type
:
none
;}
.email-options
.main-options
li
{
font-size
:
15px
;
line-height
:
40px
;
padding-top
:
3px
;}
.email-options
.main-options
a
{
color
:
#424242
;
opacity
:
0.9
;
transition
:
all
0.2s
ease-in-out
;}
.email-options
.main-options
a
:hover
,
.email-options
.main-options
a
:active
,
.email-options
.main-options
a
:focus
{
color
:
#FFFFFF
;
text-decoration
:
none
;}
.email-options
.main-options
.badge
{
margin-top
:
9px
;}
.wrap-list
{
list-style-type
:
none
;
position
:
relative
;}
.wrap-list
.messages-list
{
max-height
:
400px
;
overflow
:
auto
;}
.wrap-list
.messages-list
.messages-item
:hover
{
opacity
:
0.9
;}
.wrap-list
.messages-list
.messages-item
.fa
{
color
:
#ccc
;
font-size
:
11px
;}
.wrap-list
.messages-list
.messages-item
.fa-starred
{
color
:
#2c3e50
;
font-size
:
11px
;}
.wrap-list
.messages-list
.messages-item
.date-class
{
font-size
:
11px
;
margin-top
:
3px
;}
.wrap-list
.messages-list
.messages-item
p
{
font-size
:
11.5px
;
line-height
:
14px
;}
.wrap-list
.messages-list
.name
{
font-size
:
18px
;
opacity
:
0.7
;}
.wrap-list
.messages-list
.text
{
float
:
right
;
font-size
:
12px
;
margin-top
:
-40px
;
opacity
:
0.7
;}
.wrap-list
.messages-list
.messages-item-subject
{
font-size
:
13px
;
font-weight
:
600
;
color
:
#555
;}
.wrap-list
.messages-list
.messages-item-content
p
{
width
:
240px
;
white-space
:
nowrap
;
overflow
:
hidden
;
text-overflow
:
ellipsis
;
margin-bottom
:
0
;
line-height
:
18px
;}
.wrap-list
.messages-list
.fa
:hover
{
color
:
#2c3e50
;}
.wrap-list
.messages-list
.leftist
{
width
:
8px
;
float
:
left
;
margin-left
:
-17px
;
margin-top
:
-2px
;}
.wrap-list
.messages-list
.leftist
.checkbox1
{
margin-left
:
-2px
;}
.wrap-list
.messages-list
.leftist
.checkbox1
span
{
height
:
12px
;
width
:
12px
;}
.wrap-list
.messages-list
.leftist
.checkbox1
span
::before
{
font-size
:
14px
;
line-height
:
11px
;
border
:
solid
1px
#ddd
;}
.wrap-list
ul
{
padding-left
:
0px
;}
.wrap-list
a
{
color
:
#424242
;}
.wrap-list
li
.active-message
{
background
:
#2c3e50
;
color
:
#F3F3F3
!important
;}
.wrap-list
li
.active-message
.messages-item-subject
,
.wrap-list
li
.active-message
.date-class
,
.wrap-list
li
.active-message
.fa
{
color
:
#fff
;}
.wrap-list
li
.active-message
.leftist
.fa
{
color
:
#fff
;}
.wrap-list
.messages-search
{
margin-bottom
:
20px
;}
.wrap-list
.messages-item
{
padding-top
:
10px
;
border-bottom
:
1px
solid
#C6C6C6
;
padding-left
:
30px
;
padding-right
:
10px
;
height
:
60px
;}
.wrap-list
.wrap-options
{
position
:
absolute
;
left
:
16px
;
right
:
30px
;
height
:
50px
;
background-color
:
#fff
;
z-index
:
1
;
top
:
0
;}
.wrap-list
.wrap-options
input
.form-control
{
padding-left
:
10px
;}
.message-actions
.nav-pills
{
background
:
#E7E7E7
;}
.message-actions
.nav-pills
a
{
transition
:
all
0.1s
ease-in-out
;}
.message-actions
.nav-pills
a
.repall
:hover
{
color
:
#5cb85c
;}
.message-actions
.nav-pills
a
.print
:hover
{
color
:
#5bc0de
;}
.message-actions
.nav-pills
a
.del
:hover
{
color
:
#de6764
;}
.message-actions
.print
{
margin-left
:
175px
;}
.message-header
.message-time
{
float
:
right
;
margin-top
:
28px
;
margin-right
:
463px
;
opacity
:
0.7
;
font-size
:
12px
;}
.message-header
.message-from
{
float
:
left
;
margin-top
:
-70px
;
margin-left
:
132px
;
font-size
:
15px
;}
.message-header
.icon
{
margin-top
:
10px
;}
.message-subject
{
font-size
:
14.5px
;
opacity
:
0.9
;}
.message-to
{
opacity
:
0.8
;}
.message-content
{
opacity
:
0.88
;}
ul
.main-options
li
a
{
display
:
block
;}
.inbox-container
{
border-radius
:
5px
0
0
5px
;
min-width
:
170px
;
background
:
#4C4C4C
;
color
:
#E7E7E7
;}
.inbox-container
.butt-container
{
padding
:
16px
;}
.inbox-container
.butt-container
.btn-block
{
height
:
30px
;
font-size
:
13px
;}
.inbox-container
.poor
{
margin-top
:
10px
;
margin-bottom
:
10px
;
opacity
:
0.7
;
border-top
:
1px
solid
#848484
;}
.inbox-container
ul
.main-options
h5
{
margin-top
:
15px
;
margin-bottom
:
5px
;
font-size
:
13px
;
font-weight
:
600
;
padding-left
:
13px
;
opacity
:
0.5
;}
.inbox-container
ul
.main-options
li
.activeli
{
background
:
#3f3f3f
;}
.inbox-container
ul
.main-options
li
.activeli
.badge
{
background
:
#5cb85c
;}
.inbox-container
ul
.main-options
li
{
padding-left
:
5px
;
padding-right
:
10px
;}
.inbox-container
ul
.main-options
li
.fa-stop
{
margin-top
:
10px
;}
.inbox-container
ul
.main-options
li
.faorange
{
color
:
#FFB457
;}
.inbox-container
ul
.main-options
li
.fayellow
{
color
:
#FFFA9B
;}
.inbox-container
ul
.main-options
li
.facyan
{
color
:
#8AEFE6
;}
.inbox-container
ul
.main-options
li
.fapurple
{
color
:
#DD8BFF
;}
.inbox-container
ul
.main-options
li
.badge
{
background
:
#de6764
;}
.inbox-container
ul
.main-options
li
a
{
color
:
#E7E7E7
;
font-size
:
13px
;}
.message-list-wrapper
{
width
:
300px
;
background
:
#E9E9E9
;
overflow
:
hidden
;
position
:
relative
;
padding-top
:
107px
;
border-right
:
solid
1px
#ddd
;}
.message-list-wrapper
.searchbox
{
height
:
107px
;
position
:
absolute
;
top
:
0
;
left
:
0
;
right
:
0
;
padding
:
15px
;
text-align
:
center
;
font-size
:
15px
;
opacity
:
0.8
;}
.message-list-wrapper
.searchbox
.fa
{
font-size
:
13px
;
opacity
:
0.7
;}
.message-list-wrapper
.searchbox
.form-control
{
margin-top
:
6px
;}
.message-list-wrapper
.searchbox
.sebox
{
font-size
:
26px
;}
.message-list-wrapper
.wrap-list
{
background
:
#F5F5F5
;}
.text-wrapper
.wrap-message
{
overflow
:
hidden
;}
.text-wrapper
.wrap-message
.message-topic
{
padding
:
15px
;
border-bottom
:
1px
solid
#DEDEDE
;
font-size
:
18px
;
line-height
:
20px
;
color
:
#565656
;}
.text-wrapper
.wrap-message
.message-topic
.pull-right
.fa
{
font-size
:
14px
;
padding-left
:
16px
;
color
:
#B9B9B9
;}
.text-wrapper
.wrap-message
.message-topic
.pull-right
a
{
color
:
inherit
;}
.text-wrapper
.wrap-message
.message-topic
.pull-right
a
:hover
.fa-reply
{
color
:
#5cb85c
;}
.text-wrapper
.wrap-message
.message-topic
.pull-right
a
:hover
.fa-trash-o
{
color
:
#de6764
;}
.text-wrapper
.wrap-message
.message-sender
{
padding
:
5px
15px
;
border-bottom
:
1px
solid
#DEDEDE
;
color
:
#B5B5B5
;}
.text-wrapper
.wrap-message
.message-sender
.fa-caret-o-down
{
font-size
:
13px
;}
.text-wrapper
.wrap-message
.message-sender
a
{
font-size
:
14px
;}
.text-wrapper
.wrap-message
.message-sender
.sender-img
{
width
:
40px
;
border
:
1px
solid
#ddd
;}
.text-wrapper
.message-content
{
padding
:
15px
;
overflow
:
auto
;}
.text-wrapper
.messagefooter
{
height
:
70px
;
padding-top
:
10px
;
padding-right
:
15px
;}
.text-wrapper
.messagefooter
.btn-rounded
{
font-size
:
13px
;
height
:
30px
;
width
:
100px
;}
@media
(
max-width
:
1120px
){
.text-wrapper
{
display
:
none
!important
;}
.inbox-container
{}
.message-list-wrapper
{
width
:
70%
;}}
@media
(
max-width
:
550px
){
.message-list-wrapper
{
display
:
none
;}
.inbox-container
{
width
:
100%
;}}
.compose-container
.wrap-compose
{
overflow
:
hidden
;
border
:
solid
1px
#ddd
;
border-radius
:
0
5px
5px
0
;}
.compose-container
.mail-header
{
height
:
50px
;
border-bottom
:
1px
solid
#D8D8D8
;
padding
:
15px
;
background
:
#EFEFEF
;}
.compose-container
.mail-header
h4
{
margin-top
:
3px
;
font-size
:
16px
;
color
:
#616161
;}
.compose-container
.receipient
{
height
:
45px
;
padding
:
11px
15px
;
border-bottom
:
1px
solid
#D8D8D8
;}
.compose-container
.receipient
strong
.to
{
opacity
:
0.7
;
font-size
:
11.5px
;}
.compose-container
.receipient
.label-primary
{
padding-top
:
5px
;
padding-left
:
12px
;
padding-bottom
:
5px
;
padding-right
:
12px
;
margin-left
:
50px
;
border-radius
:
20px
;}
.compose-container
.subject
{
height
:
37px
;
border-bottom
:
1px
solid
#D8D8D8
;
padding
:
8px
15px
;}
.compose-container
.subject
strong
.subjetc
{
margin-left
:
15px
;
font-size
:
12px
;}
.compose-container
.subject
strong
.strong-header
{
opacity
:
0.7
;
font-size
:
11.5px
;}
.compose-container
.send-footer
{
border-top
:
1px
solid
#D8D8D8
;
padding
:
15px
;}
.compose-container
.send-footer
.btn
{
width
:
75px
;}
.compose-container
.send-footer
.fa
{
font-size
:
19px
;}
.compose-container
.send-footer
.fa-trash-o
{
color
:
#de6764
;
margin-top
:
7px
;
margin-right
:
10px
;}
.cke_1
{
border-radius
:
0
!important
;}
.img-circle
{
border
:
4px
solid
white
;}
.cover-wrapper
{
position
:
relative
;
margin
:
-10px
-10px
0
-10px
;}
div
.cover-photo
{
background-image
:
url('img/profile-cover.jpg')
;
background-size
:
cover
;
height
:
300px
;}
div
.cover-photo
.name-desg
{
padding
:
15px
;
font-size
:
13px
;
color
:
white
;
text-shadow
:
1px
1px
rgba
(
0
,
0
,
0
,
0.6
);
height
:
300px
;
font-weight
:
300
;
background
:
rgba
(
0
,
0
,
0
,
0.4
);
background
:
-webkit-gradient
(
left
top
,
left
bottom
,
color-stop
(
0%
,
rgba
(
0
,
0
,
0
,
0.4
)),
color-stop
(
100%
,
rgba
(
255
,
255
,
255
,
0
)));
background
:
linear-gradient
(
to
bottom
,
rgba
(
0
,
0
,
0
,
0.4
)
0%
,
rgba
(
255
,
255
,
255
,
0
)
100%
);
filter
:
progid
:
DXImageTransform
.
Microsoft
.
gradient
(
startColorstr
=
'#000000'
,
endColorstr
=
'#ffffff'
,
GradientType
=
0
);}
div
.cover-photo
.name-desg
h3
{
font-weight
:
300
;
margin
:
0
;}
div
.cover-photo
.name-desg
h3
small
{
display
:
block
;
color
:
#eee
;
margin-top
:
8px
;
font-size
:
13px
;
font-weight
:
300
;}
.profile-photo-warp
{
position
:
relative
;}
img
.profile-photo
{
width
:
200px
;
position
:
absolute
;
right
:
40px
;
top
:
-150px
;}
.foobar
{
width
:
100%
;
background-color
:
white
;
min-height
:
45px
;
font-size
:
12px
;
color
:
#ADADAD
;}
.foobar
a
{
color
:
inherit
;}
.foobar
a
:hover
{
color
:
#2c3e50
;}
.foobar
.dangerfa
{
color
:
#de6764
;
font-size
:
18px
;
padding-left
:
15px
;
padding-top
:
15px
;}
.foobar
.fa
{
font-size
:
17px
;
padding-left
:
15px
;
padding-top
:
15px
;
padding-right
:
5px
;}
.probutton
{
margin-left
:
3%
;}
.probutton
.btn
{
width
:
94px
;
height
:
31px
;
margin-bottom
:
8px
;
font-size
:
13px
;
line-height
:
13px
;}
.links
{
margin-right
:
250px
;}
.links
.fa
{
padding-left
:
12px
;}
.links
a
{
color
:
inherit
;}
.links
a
:hover
.fa-twitter
{
color
:
#31DDFE
;}
.links
a
:hover
.fa-facebook
{
color
:
#274EFF
;}
.links
a
:hover
.fa-google-plus
{
color
:
#CD2138
;}
.links
a
:hover
.fa-github
{
color
:
#141414
;}
.profile-body
{
margin-top
:
15px
;}
.profile-body
.item
{
width
:
25%
;}
.profile-body
.profile-comment
.btn
,
.profile-body
.item
.btn
{
width
:
120px
;
margin-top
:
-6%
;
margin-right
:
3%
;
font-size
:
13px
;}
.profile-body
.profile-comment
textarea
,
.profile-body
.item
textarea
{
border
:
none
;
width
:
100%
;}
.profile-body
.profile-comment
.panel-footer
,
.profile-body
.item
.panel-footer
{
height
:
80px
;}
.profile-body
.profile-comment
.submit-footer
.fa
,
.profile-body
.item
.submit-footer
.fa
{
font-size
:
17px
;
padding-left
:
15px
;
padding-top
:
5%
;
padding-right
:
5px
;}
.profile-body
.profile-comment
.submit-footer
a
,
.profile-body
.item
.submit-footer
a
{
color
:
inherit
;
opacity
:
0.4
;}
.profile-body
.profile-comment
.submit-footer
a
:hover
,
.profile-body
.item
.submit-footer
a
:hover
{
opacity
:
1
;}
.profile-body
.prophoto
.panel-photo
{
position
:
absolute
;
left
:
-8px
;
top
:
-8px
;
width
:
50px
;}
.profile-body
.prophoto
.panel-heading
{
background
:
inherit
;
position
:
relative
;
padding
:
10px
;}
.profile-body
.prophoto
.panel-heading
.panel-title
{
padding-left
:
40px
;
font-size
:
15px
;
font-weight
:
400
;
color
:
#444
;}
.profile-body
.prophoto
.panel-heading
.panel-title
.text-muted
{
font-size
:
11px
;}
.profile-body
.prophoto
.panel-body
{
padding
:
0
;
overflow
:
hidden
;}
.profile-body
.post-comment
,
.profile-body
.prophoto
{
position
:
relative
;}
.profile-body
.post-comment
.panel-photo
,
.profile-body
.prophoto
.panel-photo
{
position
:
absolute
;
left
:
-5px
;
top
:
-5px
;
width
:
50px
;}
.profile-body
.post-comment
.panel-heading
,
.profile-body
.prophoto
.panel-heading
{
background
:
inherit
;
padding
:
10px
;}
.profile-body
.post-comment
.panel-title
,
.profile-body
.prophoto
.panel-title
{
padding-left
:
40px
;
font-size
:
15px
;
color
:
#444
;
font-weight
:
400
;}
.profile-body
.post-comment
.panel-title
.text-muted
,
.profile-body
.prophoto
.panel-title
.text-muted
{
font-size
:
11px
;}
.profile-body
.post-comment
.panel-body
,
.profile-body
.prophoto
.panel-body
{
padding
:
0
;}
.profile-body
.post-comment
.panel-body
.lorem
,
.profile-body
.prophoto
.panel-body
.lorem
{
padding
:
15px
;}
.profile-body
.post-comment
.comments-here
,
.profile-body
.prophoto
.comments-here
{
margin-top
:
0
;
border-top
:
1px
solid
#D0D0D0
;
padding
:
10px
;}
.profile-body
.post-comment
.comments-here
.media-body
,
.profile-body
.prophoto
.comments-here
.media-body
{
font-size
:
12px
;}
.profile-body
.post-comment
.comments-here
.media-body
a
,
.profile-body
.prophoto
.comments-here
.media-body
a
{
color
:
inherit
;}
.profile-body
.post-comment
.comments-here
.img-responsive
,
.profile-body
.prophoto
.comments-here
.img-responsive
{
width
:
40px
;}
.profile-body
.post-comment
.comments-here
.media-heading
,
.profile-body
.prophoto
.comments-here
.media-heading
{
font-size
:
14px
;}
.profile-body
.post-comment
.comments-here
.timely
,
.profile-body
.prophoto
.comments-here
.timely
{
font-size
:
10px
;
margin-top
:
-18px
;
padding-right
:
10px
;}
.profile-body
.post-comment
.comments-here
.comment-like
,
.profile-body
.prophoto
.comments-here
.comment-like
{
margin-top
:
5px
;}
.profile-body
.post-comment
.comments-here
.comment-like
.fa
,
.profile-body
.prophoto
.comments-here
.comment-like
.fa
{
padding-right
:
5px
;}
.profile-body
.post-comment
.comments-here
.comment-like
a
,
.profile-body
.prophoto
.comments-here
.comment-like
a
{
color
:
inherit
;
display
:
inline-block
;
padding-right
:
15px
;
opacity
:
0.8
;}
.profile-body
.post-comment
.comments-here
.comment-like
a
:hover
,
.profile-body
.prophoto
.comments-here
.comment-like
a
:hover
{
opacity
:
1
;}
.comment-links
{
border-top
:
1px
solid
#D0D0D0
;
padding
:
10px
;
font-size
:
12px
;
line-height
:
14px
;
color
:
#999
;
text-align
:
right
;}
.comment-links
.fa
{
padding-right
:
5px
;}
.comment-links
a
{
color
:
inherit
;
display
:
inline-block
;
padding-left
:
15px
;
opacity
:
0.8
;}
.comment-links
a
:hover
{
opacity
:
1
;}
@media
(
max-width
:
992px
){
div
.cover-photo
,
div
.cover-photo
.name-desg
{
height
:
250px
;}
img
.profile-photo
{
top
:
-200px
;
width
:
150px
;}
.foobar
.links
{
margin-right
:
15px
;}}
@media
(
max-width
:
400px
){
img
.profile-photo
{
top
:
-165px
;
width
:
140px
;
margin
:
0
auto
;
left
:
0
;
right
:
0
;}
div
.cover-photo
,
div
.cover-photo
.name-desg
{
text-align
:
center
;}
.foobar
.pull-right
{
float
:
none
!important
;}}
.invoice
.invoice-logo
{
padding
:
12px
;
display
:
table
;
width
:
100%
;}
.invoice
.invoice-logo
.ani-left
{
display
:
table-cell
;
vertical-align
:
middle
;}
.invoice
.invoice-logo
.ani-right
{
display
:
table-cell
;
vertical-align
:
middle
;}
.invoice
.invoice-logo
p
{
text-align
:
right
;
font-size
:
15px
;}
.invoice
.btn
{
margin-right
:
5px
;}
.invoice
.list-unstyled.invoice-details
li
{
line-height
:
30px
;}
.wellb
{
background
:
#FFFFFF
;}
.crisp
{
color
:
#2c3e50
;
margin-left
:
15px
;
margin-top
:
15px
;}
.text
{
font-size
:
30px
;}
@media
(
max-width
:
992px
){
.payment-detals-wrap
{
float
:
none
!important
;}}
div
.four-container
h1
{
font-weight
:
600
;
font-size
:
7em
;}
.select-options
{
width
:
300px
;
margin-top
:
75px
;}
.docs-content
.subject-content
ul
.features-list
{
list-style-type
:
disc
;}
.docs-content
.subject-content
ul
.features-list
ul
.features-list-extended
{
list-style-type
:
square
;}
.docs-content
.subject-content
.widget-docs
.widget-docs-code
{
margin-top
:
6px
;}
pre
{
color
:
#eee
;
margin-top
:
5px
;
background
:
#444
;}
.folder-structure-docs
{
margin-top
:
70px
;
font-size
:
16px
;}
.folder-structure-docs
ul
.features-list
{
list-style-type
:
disc
;}
#sidebar
{
width
:
220px
;
position
:
fixed
;
top
:
0
;
bottom
:
0
;
transition
:
left
0.2s
linear
;
background
:
#2c3e50
;
z-index
:
20
;}
.push-right
#sidebar
{
left
:
0
;}
.push-right
#body-container
{
margin-left
:
220px
!important
;
overflow-x
:
hidden
;}
.push-left
#sidebar
{
left
:
-220px
;}
.push-left
#body-container
{
margin-left
:
0px
!important
;
overflow-x
:
hidden
;}
.push-left
.topnav-navbar
{
left
:
-220px
;}
#sidebar
.sidenav-outer
{
position
:
absolute
;
top
:
50px
;
bottom
:
0
;
left
:
0
;
right
:
0
;
overflow
:
hidden
;}
#sidebar
div
.side-widgets
{
margin-left
:
45px
;
color
:
rgba
(
255
,
255
,
255
,
0.8
);
float
:
left
;
border-top
:
1px
solid
#212f3c
;
width
:
190px
;
position
:
absolute
;
left
:
0
;}
#sidebar
div
.side-widgets
.widgets-header
{
text-align
:
center
;
padding
:
15px
;
height
:
50px
;
color
:
rgba
(
255
,
255
,
255
,
0.8
);
font-size
:
15px
;
font-weight
:
600
;}
#sidebar
div
.side-widgets
.widgets-header
a
{
color
:
inherit
;}
#sidebar
div
.side-widgets
.widgets-header
a
:hover
,
#sidebar
div
.side-widgets
.widgets-header
a
:focus
{
color
:
#ffffff
;
text-decoration
:
none
;}
#sidebar
div
.side-widgets
.widgets-content
{
padding
:
12px
;
overflow
:
hidden
;}
#sidebar
div
.side-widgets
.widgets-content
.avatar-name
{
padding-top
:
12px
;}
#sidebar
div
.side-widgets
.widgets-content
.calendar-container
{
margin-top
:
10px
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-header
{
text-transform
:
uppercase
;
margin-left
:
-12px
;
margin-right
:
-12px
;
height
:
27px
;
padding-top
:
6px
;
padding-left
:
12px
;
font-size
:
10px
;
margin-top
:
10px
;
background
:
#1a242f
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
{
margin-top
:
4px
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
ul
{
list-style-type
:
none
;
padding
:
0
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
ul
li
{
height
:
40px
;
padding-top
:
4px
;
font-size
:
10.5px
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
ul
li
.feed-date
{
float
:
right
;
font-size
:
9px
;
padding-right
:
5px
;
color
:
#eee
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
ul
li
a
{
color
:
inherit
;}
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
ul
li
a
:hover
,
#sidebar
div
.side-widgets
.widgets-content
.news-feed
.feed-content
ul
li
a
:focus
{
color
:
#ffffff
;
text-decoration
:
none
;}
#sidebar
div
.side-menu
{
width
:
45px
;
background
:
#1a242f
;
position
:
absolute
;
top
:
0
;
bottom
:
0
;
z-index
:
999
;
float
:
left
;}
#sidebar
div
.side-menu
.menu-header
{
height
:
50px
;
padding
:
8px
;}
#sidebar
div
.side-menu
.menu-body
{
width
:
45px
;
border-top
:
1px
solid
#212f3c
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
{
list-style-type
:
none
;
padding
:
0
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
{
position
:
relative
;
margin-top
:
0
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
a
{
color
:
rgba
(
255
,
255
,
255
,
0.8
);
border-radius
:
0
;
transition
:
all
.12s
linear
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
a
:hover
{
color
:
#fff
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
a
:hover
,
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
a
:focus
,
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
a
:active
{
background
:
#2c3e50
;
color
:
#fff
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
{
display
:
none
;
list-style
:
none
;
position
:
absolute
;
top
:
0
;
left
:
45px
;
background
:
white
;
padding-left
:
0px
;
width
:
190px
;
min-height
:
40px
;
padding-top
:
3px
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
{
min-height
:
24px
;
color
:
#233140
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
a
{
color
:
#2c3e50
;
display
:
block
;
padding
:
8px
;
height
:
auto
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
a
:hover
,
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
a
:focus
,
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
a
:active
{
color
:
#233140
;
background
:
#f8f8f8
;
text-decoration
:
none
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
.sidemenu-header
{
text-transform
:
uppercase
;
min-height
:
38px
;
padding-top
:
8px
;
padding-left
:
8px
;
border-bottom
:
1px
solid
#eee
;
font-weight
:
bold
;
line-height
:
21px
;
color
:
#233140
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
li
.sidemenu-header
a
{
color
:
#233140
;}
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
:hover
ul
.nested-dropdown
{
display
:
block
;}
*
ul
{
list-style-type
:
none
;}
*
a
:hover
{
text-decoration
:
none
;}
.topnav-navbar
{
background
:
none
;
border-radius
:
0
;
border
:
none
;
border-bottom
:
solid
1px
rgba
(
0
,
0
,
0
,
0.05
);}
.topnav-navbar
.collapse.navbar-collapse
{
background-color
:
#fff
;}
.topnav-navbar
.navbar-header
{
width
:
220px
;
background
:
#2c3e50
;}
.topnav-navbar
.navbar-header
.navbar-brand
{
color
:
#7997b5
;
display
:
block
;}
.topnav-navbar
.navbar-header
.navbar-brand
:hover
{
color
:
#8aa4be
;}
.topnav-navbar
ul
.navbar-nav
li
{
transition
:
all
0.2s
ease-in-out
;}
.topnav-navbar
ul
.navbar-nav
li
a
.glyphicon
{
font-size
:
16px
;}
.topnav-navbar
ul
.navbar-nav
li
a
.badge
{
font-size
:
9px
;
position
:
absolute
;
top
:
6px
;
right
:
5px
;
padding
:
4px
;
min-width
:
16px
;
font-weight
:
400
;
line-height
:
1
;}
.topnav-navbar
ul
.navbar-nav
li
a
.badge-green
{
background
:
#7BB77C
;}
.topnav-navbar
ul
.navbar-nav
li
a
.badge-red
{
background
:
#de6764
;}
.topnav-navbar
ul
.navbar-nav
li
a
:focus
,
.topnav-navbar
ul
.navbar-nav
li
a
:hover
,
.topnav-navbar
ul
.navbar-nav
li
a
:active
,
.topnav-navbar
ul
.navbar-nav
li
a
.active
{
background
:
#2c3e50
;
color
:
#8aa4be
;}
.topnav-navbar
ul
.navbar-nav
li
a
:focus
.hidden-message
,
.topnav-navbar
ul
.navbar-nav
li
a
:hover
.hidden-message
,
.topnav-navbar
ul
.navbar-nav
li
a
:active
.hidden-message
,
.topnav-navbar
ul
.navbar-nav
li
a
.active
.hidden-message
{
display
:
inline-block
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
{
padding
:
0
;
border
:
none
;
border-top
:
1px
solid
#eee
;
transition
:
all
0.1s
linear
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.messages-top
{
padding-left
:
8px
;
padding-top
:
10px
;
padding-bottom
:
10px
;
border
:
1px
solid
#eee
;
border-top
:
none
;
font-size
:
12px
;
opacity
:
0.7
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-messages
{
width
:
260px
;
height
:
53px
;
border
:
1px
solid
#eee
;
border-top
:
none
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-messages
a
{
width
:
100%
;
height
:
53px
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-messages
a
.message-sender
{
padding-top
:
5px
;
font-weight
:
600
;
font-size
:
13px
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-messages
a
.message-header
{
font-size
:
11px
;
padding-top
:
3px
;
opacity
:
.7
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.notification-header
{
padding-left
:
8px
;
padding-top
:
10px
;
padding-bottom
:
10px
;
border
:
1px
solid
#eee
;
border-top
:
none
;
font-size
:
12px
;
opacity
:
0.7
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-notifications
{
width
:
260px
;
height
:
37px
;
border
:
1px
solid
#eee
;
border-top
:
none
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-notifications
a
{
width
:
100%
;
height
:
37px
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-notifications
a
.notification
{
padding-top
:
5px
;
font-size
:
12px
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
li
.dropdown-notifications
a
.notification
.fa
{
margin-right
:
20px
;
opacity
:
0.8
;}
.topnav-navbar
ul
.navbar-nav
li
.open
a
:focus
,
.topnav-navbar
ul
.navbar-nav
li
.open
a
:hover
,
.topnav-navbar
ul
.navbar-nav
li
.open
a
:active
,
.topnav-navbar
ul
.navbar-nav
li
.open
a
.active
{
background
:
#2c3e50
;
color
:
#8aa4be
;}
.topnav-navbar
ul
.navbar-nav
li
.open
a
:focus
.hidden-message
,
.topnav-navbar
ul
.navbar-nav
li
.open
a
:hover
.hidden-message
,
.topnav-navbar
ul
.navbar-nav
li
.open
a
:active
.hidden-message
,
.topnav-navbar
ul
.navbar-nav
li
.open
a
.active
.hidden-message
{
display
:
inline-block
;}
.topnav-navbar
.navbar-form
{
padding-left
:
15px
;}
.topnav-navbar
.navbar-form
.glyphicon
{
opacity
:
0.7
;}
.topnav-navbar
.navbar-form
.form-control
{
width
:
40px
;
border-radius
:
0
;
padding
:
2px
22px
;
border
:
none
;
margin-left
:
-20px
;
border-bottom
:
1px
solid
#3e5771
;
background
:
inherit
;
box-shadow
:
none
;
opacity
:
0.7
;
transition
:
all
.2s
linear
;}
.topnav-navbar
.navbar-form
.form-control
:focus
{
width
:
200px
;
opacity
:
1
;}
.topnav-navbar
ul
.lang
li
{
height
:
35px
;}
.topnav-navbar
ul
.lang
li
a
{
height
:
35px
;
padding-top
:
9px
;}
.topnav-navbar
ul
.pull-right
li
.dropdown.admin-dropdown
a
,
.topnav-navbar
ul
.pull-right
li
.dropdown.color-picker
a
{
padding-top
:
10px
;
padding-bottom
:
10px
;}
.topnav-navbar
ul
.pull-right
li
.dropdown.admin-dropdown
a
img
.topnav-img
,
.topnav-navbar
ul
.pull-right
li
.dropdown.color-picker
a
img
.topnav-img
{
width
:
30px
;
margin-right
:
5px
;
max-height
:
30px
;}
.topnav-navbar
ul
.pull-right
ul
.dropdown-menu
li
{
border
:
1px
solid
#eee
;
border-top
:
none
;}
.topnav-navbar
ul
.pull-right.navbar-nav
{
margin-right
:
10px
;}
.topnav-navbar
li
.color-picker
i
{
font-size
:
24px
;
line-height
:
30px
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
{
margin-bottom
:
0
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
{
padding
:
0
!important
;
display
:
block
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
:hover
,
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
:focus
{
color
:
inherit
;
background
:
inherit
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
.blue-base
{
color
:
#3CA2E0
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
.red-base
{
color
:
#D24D57
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
.green-base
{
color
:
#27ae60
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
.purple-base
{
color
:
#957BBD
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
.midnight-blue-base
{
color
:
#2c3e50
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
a
.lynch-base
{
color
:
#6C7A89
;}
.topnav-navbar
li
.color-picker
table
.color-swatches-table
td
.colorr
{
border
:
1px
solid
#eee
;}
.topnav-navbar
li
.color-picker
ul
.dropdown-menu
{
border-top
:
none
!important
;}
.ureveal
{
display
:
inline-block
;
vertical-align
:
middle
;
-webkit-transform
:
translateZ
(
0
);
transform
:
translateZ
(
0
);
box-shadow
:
0
0
1px
rgba
(
0
,
0
,
0
,
0
);
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;
-moz-osx-font-smoothing
:
grayscale
;
position
:
relative
;
overflow
:
hidden
;}
.hidd
{
display
:
none
;}
@media
only
screen
and
(
max-width
:
856px
){
.buy-button
{
display
:
none
;}}
@media
only
screen
and
(
max-width
:
767px
){
.topnav-navbar
{
background
:
#2c3e50
;
left
:
0
!important
;}
ul
.hidd
{
display
:
block
;
position
:
absolute
;
right
:
0
;
top
:
-6px
;
z-index
:
3
;}
ul
.hidd
li
.dropdown
a
{
padding-bottom
:
8px
!important
;}
.topnav-navbar
ul
.pull-right
li
.dropdown.admin-dropdown
a
img
.topnav-img
{
margin-right
:
0
;}
.navbar-nav
.open
.dropdown-menu
{
position
:
absolute
;
right
:
0
;
left
:
auto
;}
.topnav-navbar
.navbar-header
{
width
:
100%
;}
.topnav-navbar
ul
.navbar-nav
li
ul
.dropdown-menu
{
background-color
:
#fff
;}}
@media
only
screen
and
(
min-width
:
768px
)
and
(
max-width
:
1024px
){
.navbar-form
.form-control
{
max-width
:
120px
;}}
.m-t
{
margin-top
:
15px
;}
.padder
{
padding
:
15px
;}
.t-p
{
padding-top
:
15px
;}
.m-l
{
margin-left
:
15px
;}
.no-margin
{
margin
:
0
;}
.input-underline
{
background
:
none
;
border
:
none
;
box-shadow
:
none
;
border-bottom
:
2px
solid
rgba
(
255
,
255
,
255
,
0.4
);
color
:
#FFF
;
border-radius
:
0
;}
.input-underline
::-moz-placeholder
{
color
:
rgba
(
255
,
255
,
255
,
0.7
);}
.input-underline
:-ms-input-placeholder
{
color
:
rgba
(
255
,
255
,
255
,
0.7
);}
.input-underline
::-webkit-input-placeholder
{
color
:
rgba
(
255
,
255
,
255
,
0.7
);}
.input-underline
:focus
{
border-bottom
:
2px
solid
#ffffff
;
box-shadow
:
none
;}
.underline
{
background
:
none
!important
;
background-image
:
none
;
border
:
1px
solid
#c8c7cc
;
border-top
:
none
;
border-left
:
none
;
border-right
:
none
;
border-radius
:
0
0
0
0
!important
;
color
:
#5b5b60
;
font-family
:
inherit
;
font-size
:
14px
;
line-height
:
1.2
;
padding
:
5px
4px
;
transition-duration
:
0.1s
;
box-shadow
:
none
!important
;
transition
:
border
300ms
ease-out
;}
.underline
:focus
{
border-color
:
#2c3e50
;}
div
.calendar-container
.fc
*
{
border
:
none
!important
;}
div
.calendar-container
.fc-basic-view
.fc-body
.fc-row
{
min-height
:
20px
;}
div
.calendar-container
.fc-day-grid-container
{
min-height
:
130px
;
overflow
:
hidden
;}
div
.calendar-container
.fc-ltr
{
font-size
:
11px
!important
;}
div
.calendar-container
.fc-today
{
background
:
#1a242f
;}
div
.calendar-container
.fc-toolbar
{
margin-left
:
-12px
;
width
:
189px
!important
;
max-height
:
27px
!important
;
background
:
#1a242f
;}
div
.calendar-container
.fc-header-title
h2
{
font-size
:
13px
!important
;
font-weight
:
600
;
margin-bottom
:
0
!important
;
text-transform
:
uppercase
;
padding-left
:
6px
;
padding-top
:
6px
;
padding-bottom
:
6px
;}
div
.calendar-container
.fc-today-button
{
display
:
none
;}
div
.calendar-container
.fc-button-group
{
font-size
:
9px
!important
;}
div
.calendar-container
.fc-button-group
.fc-button
{
background
:
inherit
;
color
:
inherit
;
box-shadow
:
none
;
padding-top
:
6px
;
padding-bottom
:
6px
;}
div
.calendar-container
.fc-button-group
.fc-prev-button
{
padding-right
:
0
;}
div
.calendar-container
.fc-button-group
.fc-next-button
{
padding-left
:
0
;}
div
.calendar-container
.fc-content
{
margin-top
:
4px
;}
div
.calendar-container
.fc-day-header
{
font-size
:
10px
;}
.fc-state-default
:focus
{
outline
:
0
;}
a
.stat
{
background-color
:
#fff
;
border
:
solid
1px
rgba
(
0
,
0
,
0
,
0.1
);
display
:
table
!important
;
width
:
100%
;
padding
:
10px
;
height
:
89px
;
margin-bottom
:
10px
;
text-align
:
left
;}
a
.stat
.stat-icon
,
a
.stat
.stat-label
{
display
:
table-cell
;
vertical-align
:
middle
;}
a
.stat
.stat-icon
{
margin-top
:
5px
;
width
:
75px
;}
a
.stat
.stat-label
.label-header
{
font-size
:
22px
;}
a
.stat
.stat-detail
{
margin-top
:
10px
;
font-size
:
14px
;
color
:
#666
;}
a
.stat
.stat-detail
i
{
margin-top
:
5px
;}
.progress-sm.progress
{
height
:
5px
;
margin-bottom
:
0
;}
.btn-rounded
{
border-radius
:
30px
;}
.btn-bordered
{
border-radius
:
30px
;
background
:
#FFFFFF
;
border-width
:
2px
;}
.btn-bordered
:hover
{
color
:
#ffffff
;}
.btn-bordered.btn-primary
{
border-color
:
#2c3e50
;
color
:
#2c3e50
;}
.btn-bordered.btn-primary
:hover
{
background
:
#2c3e50
;
color
:
#ffffff
;}
.btn-bordered.btn-info
{
border-color
:
#5bc0de
;
color
:
#5bc0de
;}
.btn-bordered.btn-info
:hover
{
background
:
#5bc0de
;
color
:
#ffffff
;}
.btn-bordered.btn-warning
{
border-color
:
#f0ad4e
;
color
:
#f0ad4e
;}
.btn-bordered.btn-warning
:hover
{
background
:
#f0ad4e
;
color
:
#ffffff
;}
.btn-bordered.btn-success
{
border-color
:
#5cb85c
;
color
:
#5cb85c
;}
.btn-bordered.btn-success
:hover
{
background
:
#5cb85c
;
color
:
#ffffff
;}
.btn-bordered.btn-danger
{
border-color
:
#de6764
;
color
:
#de6764
;}
.btn-bordered.btn-danger
:hover
{
background
:
#de6764
;
color
:
#ffffff
;}
.btn-bordered.disabled
{
color
:
#717171
;}
.text-success
{
color
:
#5cb85c
;}
.text-info
{
color
:
#5bc0de
;}
.text-warning
{
color
:
#f0ad4e
;}
.text-danger
{
color
:
#de6764
;}
.btn-circle
{
border-radius
:
50%
;
width
:
50px
;}
.btn-primary
{
border-color
:
#2c3e50
;}
.btn-success
{
border-color
:
#5cb85c
;}
.btn-info
{
border-color
:
#5bc0de
;}
.btn-warning
{
border-color
:
#f0ad4e
;}
.btn-danger
{
border-color
:
#de6764
;}
.alert-primary
{
border-color
:
#2c3e50
;}
.alert-success
{
border-color
:
#5cb85c
;}
.alert-info
{
border-color
:
#5bc0de
;}
.alert-warning
{
border-color
:
#f0ad4e
;}
.alert-danger
{
border-color
:
#de6764
;}
button
.btn.btn-primary.btn-rounded.dropdown-toggle.haha
{
border-left
:
1px
solid
#233140
;}
button
.btn.btn-success.btn-rounded.dropdown-toggle.haha
{
border-left
:
1px
solid
#449d44
;}
button
.btn.btn-warning.btn-rounded.dropdown-toggle.haha
{
border-left
:
1px
solid
#ec971f
;}
button
.btn.btn-danger.btn-rounded.dropdown-toggle.haha
{
border-left
:
1px
solid
#d53e3a
;}
button
.btn.btn-primary.btn-bordered.dropdown-toggle.haha
{
border-left
:
1px
solid
#2c3e50
;}
button
.btn.btn-success.btn-bordered.dropdown-toggle.haha
{
border-left
:
1px
solid
#5cb85c
;}
button
.btn.btn-info.btn-bordered.dropdown-toggle.haha
{
border-left
:
1px
solid
#5bc0de
;}
button
.btn.btn-warning.btn-bordered.dropdown-toggle.haha
{
border-left
:
1px
solid
#f0ad4e
;}
button
.btn.btn-danger.btn-bordered.dropdown-toggle.haha
{
border-left
:
1px
solid
#de6764
;}
button
.btn.btn-default.btn-bordered.dropdown-toggle.haha
{
border-left
:
1px
solid
#ccc
;}
button
.btn.btn-primary.dropdown-toggle.haha
{
border-left
:
1px
solid
#233140
;}
button
.btn.btn-success.dropdown-toggle.haha
{
border-left
:
1px
solid
#449d44
;}
button
.btn.btn-warning.dropdown-toggle.haha
{
border-left
:
1px
solid
#ec971f
;}
button
.btn.btn-danger.dropdown-toggle.haha
{
border-left
:
1px
solid
#d53e3a
;}
.btn-outline
:focus
,
.btn-bordered
:focus
{
color
:
inherit
;
background
:
inherit
;}
#inputSuccess1
{
border-color
:
#5cb85c
;}
#inputWarning1
{
border-color
:
#f0ad4e
;}
#inputError1
{
border-color
:
#de6764
;}
label
.control-label.col-sm-2.sucesss
{
color
:
#5cb85c
;}
label
.control-label.col-sm-2.warnings
{
color
:
#f0ad4e
;}
label
.control-label.col-sm-2.errors
{
color
:
#de6764
;}
div
.carousel-text
{
height
:
80px
;
padding
:
20px
;
padding-top
:
0
;
text-align
:
center
;}
div
.carousel-text
.carousel-control
{
background
:
none
;
display
:
none
;}
div
.carousel-text
.carousel-indicators
{
bottom
:
-20px
;}
div
.carousel-text
.carousel-indicators
li
{
width
:
10px
;
height
:
10px
;
border
:
1px
solid
#CECECE
;
background
:
#CECECE
;}
div
.carousel-text
.carousel-indicators
li
.active
{
border
:
1px
solid
#2c3e50
;
background
:
#2c3e50
;
width
:
11px
;
height
:
11px
;}
div
.carousel-photo
.carousel-indicators
{
display
:
none
;}
div
.carousel-photo
.carousel-control
{
background
:
none
;}
.tool
hr
{
margin-top
:
12px
;
margin-bottom
:
12px
;}
.tool
.btn-default
{
margin
:
3px
;}
growl-notifications
{
position
:
fixed
;
top
:
60px
;
right
:
15px
;
z-index
:
1000
;}
growl-notifications
growl-notification
{
background
:
rgba
(
0
,
0
,
0
,
0.6
);
color
:
white
;
padding
:
15px
30px
;
width
:
250px
;
display
:
block
;
border-radius
:
5px
;
margin-top
:
15px
;
border
:
1px
solid
rgba
(
0
,
0
,
0
,
0.8
);}
growl-notifications
growl-notification
.close
{
color
:
#fff
;
font-size
:
16px
;
margin-right
:
-10px
;
margin-top
:
2px
;}
growl-notifications
growl-notification
.growl-primary
{
color
:
#FFF
;
background
:
#3e5771
;
border
:
1px
solid
#233140
;}
growl-notifications
growl-notification
.growl-error
{
color
:
#FFF
;
background
:
#e7908e
;
border
:
1px
solid
#da524f
;}
growl-notifications
growl-notification
.growl-info
{
color
:
#FFF
;
background
:
#85d0e7
;
border
:
1px
solid
#46b8da
;}
growl-notifications
growl-notification
.growl-warning
{
color
:
#FFF
;
background
:
#f4c37d
;
border
:
1px
solid
#eea236
;}
.onoffswitch
{
position
:
relative
;
width
:
55px
;
display
:
inline-block
;
-webkit-user-select
:
none
;
-moz-user-select
:
none
;
-ms-user-select
:
none
;}
.onoffswitch-checkbox
{
visibility
:
hidden
;
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
55px
;
height
:
28px
;}
.onoffswitch-label
{
display
:
block
;
overflow
:
hidden
;
cursor
:
pointer
;
border-radius
:
20px
;}
.onoffswitch-inner
{
display
:
block
;
width
:
200%
;
margin-left
:
-100%
;
transition
:
all
0.2s
ease-in-out
;}
.onoffswitch-inner
:before
,
.onoffswitch-inner
:after
{
display
:
block
;
float
:
left
;
width
:
50%
;
height
:
28px
;
padding
:
0
;
line-height
:
28px
;
font-size
:
14px
;
color
:
white
;
box-sizing
:
border-box
;}
.onoffswitch-inner
:before
{
content
:
""
;
background-color
:
#5cb853
;
color
:
#FFFFFF
;}
.onoffswitch-inner
:after
{
content
:
""
;
background-color
:
#ccc
;
color
:
#444
;
text-align
:
right
;}
.onoffswitch-switch
{
box-shadow
:
0
0
0
1px
rgba
(
0
,
0
,
0
,
0.1
);
display
:
block
;
width
:
26px
;
height
:
26px
;
margin
:
0
1px
0
0
;
background
:
#FFFFFF
;
border-radius
:
26px
;
position
:
absolute
;
top
:
1px
;
bottom
:
0
;
right
:
26px
;
transition
:
all
0.2s
ease-in-out
;}
.onoffswitch-checkbox
:checked
+
.onoffswitch-label
.onoffswitch-inner
{
margin-left
:
0
;}
.onoffswitch-checkbox
:checked
+
.onoffswitch-label
.onoffswitch-switch
{
right
:
0px
;}
.todo-container
{
position
:
relative
;
height
:
350px
;}
.todo-container
.todo-header
{
position
:
relative
;}
.todo-container
.todo-header
h4
{
color
:
#FFFFFF
;
font-weight
:
600
;
font-size
:
18px
;
margin
:
0
;}
.todo-container
.todo-header
h4
.fa
{
font-size
:
24px
;
position
:
relative
;
top
:
3px
;
right
:
2px
;}
.todo-container
.todo-body
.todo-list-wrap
{
height
:
215px
;
overflow
:
hidden
;
position
:
relative
;
margin-bottom
:
15px
;}
.todo-container
.todo-body
.todo-list
{
color
:
white
;
padding
:
0
;
margin
:
0
;
overflow-x
:
hidden
;}
.todo-container
.todo-body
.todo-list
li
{
padding-top
:
8px
;
padding-bottom
:
8px
;
font-size
:
15px
;}
.todo-container
.todo-body
.todo-list
li
.checkbox1
input
:checked
+
span
:before
{
background
:
inherit
;
border-color
:
inherit
;
content
:
"\2713"
;}
.todo-container
.todo-body
.todo-list
li
.checkbox1
{
padding-right
:
7px
;}
.todo-container
.todo-body
.todo-list
li
.done-true
{
text-decoration
:
line-through
;}
.todo-container
.todo-body
.todo-from-bottom
.form-control
{
border-color
:
white
;}
.todo-container
.todo-body
.todo-from-bottom
.btn
{
background
:
inherit
;
color
:
white
;
border-color
:
white
;}
.todo-container
.todo-body
.checkbox1
span
:before
{
border-color
:
#fff
;}
.todo-container.panel-danger
.panel-heading
{
background-color
:
#db5b57
;}
.jvectormap-container
{
width
:
100%
;
height
:
100%
;
position
:
relative
;
overflow
:
hidden
;}
.jvectormap-tip
{
position
:
absolute
;
display
:
none
;
border
:
solid
1px
#CDCDCD
;
border-radius
:
3px
;
background
:
#292929
;
color
:
white
;
font-family
:
sans-serif
,
Verdana
;
font-size
:
smaller
;
padding
:
3px
;}
.jvectormap-zoomin
,
.jvectormap-zoomout
,
.jvectormap-goback
{
position
:
absolute
;
left
:
0
;
border-radius
:
3px
;
background
:
#2c3e50
;
padding
:
3px
;
color
:
white
;
cursor
:
pointer
;
line-height
:
10px
;
text-align
:
center
;
box-sizing
:
content-box
;}
.jvectormap-zoomin
,
.jvectormap-zoomout
{
width
:
10px
;
height
:
10px
;}
.jvectormap-zoomin
{
top
:
0
;}
.jvectormap-zoomout
{
top
:
20px
;}
.jvectormap-goback
{
bottom
:
10px
;
z-index
:
1000
;
padding
:
6px
;}
.jvectormap-spinner
{
position
:
absolute
;
left
:
0
;
top
:
0
;
right
:
0
;
bottom
:
0
;
background
:
center
no-repeat
url(data:image/gif;base64,R0lGODlhIAAgAPMAAP///wAAAMbGxoSEhLa2tpqamjY2NlZWVtjY2OTk5Ly8vB4eHgQEBAAAAAAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh/hpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh+QQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ/V/nmOM82XiHRLYKhKP1oZmADdEAAAh+QQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY/CZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB+A4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6+Ho7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq+B6QDtuetcaBPnW6+O7wDHpIiK9SaVK5GgV543tzjgGcghAgAh+QQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK++G+w48edZPK+M6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE+G+cD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm+FNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk+aV+oJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0/VNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc+XiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30/iI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE/jiuL04RGEBgwWhShRgQExHBAAh+QQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR+ipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq+E71SRQeyqUToLA7VxF0JDyIQh/MVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY+Yip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd+MFCN6HAAIKgNggY0KtEBAAh+QQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1+vsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d+jYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg+ygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0+bm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h+Kr0SJ8MFihpNbx+4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX+BP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA==)
;}
.jvectormap-legend-title
{
font-weight
:
bold
;
font-size
:
14px
;
text-align
:
center
;}
.jvectormap-legend-cnt
{
position
:
absolute
;}
.jvectormap-legend-cnt-h
{
bottom
:
0
;
right
:
0
;}
.jvectormap-legend-cnt-v
{
top
:
0
;
right
:
0
;}
.jvectormap-legend
{
background
:
black
;
color
:
white
;
border-radius
:
3px
;}
.jvectormap-legend-cnt-h
.jvectormap-legend
{
float
:
left
;
margin
:
0
10px
10px
0
;
padding
:
3px
3px
1px
3px
;}
.jvectormap-legend-cnt-h
.jvectormap-legend
.jvectormap-legend-tick
{
float
:
left
;}
.jvectormap-legend-cnt-v
.jvectormap-legend
{
margin
:
10px
10px
0
0
;
padding
:
3px
;}
.jvectormap-legend-cnt-h
.jvectormap-legend-tick
{
width
:
40px
;}
.jvectormap-legend-cnt-h
.jvectormap-legend-tick-sample
{
height
:
15px
;}
.jvectormap-legend-cnt-v
.jvectormap-legend-tick-sample
{
height
:
20px
;
width
:
20px
;
display
:
inline-block
;
vertical-align
:
middle
;}
.jvectormap-legend-tick-text
{
font-size
:
12px
;}
.jvectormap-legend-cnt-h
.jvectormap-legend-tick-text
{
text-align
:
center
;}
.jvectormap-legend-cnt-v
.jvectormap-legend-tick-text
{
display
:
inline-block
;
vertical-align
:
middle
;
line-height
:
20px
;
padding-left
:
3px
;}
*,*
:after
,*
::before
{
box-sizing
:
border-box
;}
@font-face
{
font-weight
:
normal
;
font-style
:
normal
;
font-family
:
'icomoon'
;
src
:
url('../fonts/icomoon.eot')
;
src
:
url('../fonts/icomoon.eot?#iefix')
format
(
'embedded-opentype'
),
url('../fonts/icomoon.ttf')
format
(
'truetype'
),
url('../fonts/icomoon.woff')
format
(
'woff'
),
url('../fonts/icomoon.svg#icomoon')
format
(
'svg'
);}
.progress-button
{
position
:
relative
;
display
:
inline-block
;
padding
:
0
40px
;
outline
:
none
;
border
:
none
;
background
:
#2c3e50
;
color
:
#fff
;
text-transform
:
uppercase
;
letter-spacing
:
1px
;
font-size
:
1em
;
line-height
:
3
;}
.progress-button
[
disabled
],
.progress-button
[
disabled
]
.state-loading
{
cursor
:
default
;}
.progress-button
.content
{
position
:
relative
;
display
:
block
;}
.progress-button
.content
::before
,
.progress-button
.content
::after
{
position
:
absolute
;
right
:
10px
;
color
:
#161f29
;
font-family
:
"icomoon"
;
opacity
:
0
;
transition
:
opacity
0.3s
0.3s
;}
.progress-button
.content
::before
{
content
:
"\e600"
;}
.progress-button
.content
::after
{
content
:
"\e601"
;}
.progress-button.state-success
.content
::before
,
.progress-button.state-error
.content
::after
{
opacity
:
1
;}
.notransition
{
transition
:
none
!important
;}
.progress-button
.progress
{
background
:
#233140
;}
.progress-button
.progress-inner
{
position
:
absolute
;
left
:
0
;
background
:
#161f29
;}
.progress-button
[
data-horizontal
]
.progress-inner
{
top
:
0
;
width
:
0
;
height
:
100%
;
transition
:
width
0.3s
,
opacity
0.3s
;}
.progress-button
[
data-vertical
]
.progress-inner
{
bottom
:
0
;
width
:
100%
;
height
:
0
;
transition
:
height
0.3s
,
opacity
0.3s
;}
.progress-button
[
data-perspective
]
{
position
:
relative
;
display
:
inline-block
;
padding
:
0
;
background
:
transparent
;
-webkit-perspective
:
900px
;
perspective
:
900px
;}
.progress-button
[
data-perspective
]
.content
{
padding
:
0
40px
;
background
:
#2c3e50
;}
.progress-button
[
data-perspective
]
.progress-wrap
{
display
:
block
;
transition
:
-webkit-transform
0.2s
;
transition
:
transform
0.2s
;
-webkit-transform-style
:
preserve-3d
;
transform-style
:
preserve-3d
;}
.progress-button
[
data-perspective
]
.content
,
.progress-button
[
data-perspective
]
.progress
{
outline
:
1px
solid
rgba
(
0
,
0
,
0
,
0
);}
.progress-button
[
data-style
=
"fill"
][
data-horizontal
]
{
overflow
:
hidden
;}
.progress-button
[
data-style
=
"fill"
][
data-horizontal
]
.content
{
z-index
:
10
;
transition
:
-webkit-transform
0.3s
;
transition
:
transform
0.3s
;}
.progress-button
[
data-style
=
"fill"
][
data-horizontal
]
.content
::before
,
.progress-button
[
data-style
=
"fill"
][
data-horizontal
]
.content
::after
{
top
:
100%
;
right
:
auto
;
left
:
50%
;
transition
:
opacity
0.3s
;
-webkit-transform
:
translateX
(
-50%
);
transform
:
translateX
(
-50%
);}
.progress-button
[
data-style
=
"fill"
][
data-horizontal
]
.state-success
.content
,
.progress-button
[
data-style
=
"fill"
][
data-horizontal
]
.state-error
.content
{
-webkit-transform
:
translateY
(
-100%
);
transform
:
translateY
(
-100%
);}
.progress-button
[
data-style
=
"fill"
][
data-vertical
]
{
overflow
:
hidden
;}
.progress-button
[
data-style
=
"fill"
][
data-vertical
]
.content
{
z-index
:
10
;
transition
:
-webkit-transform
0.3s
;
transition
:
transform
0.3s
;}
.progress-button
[
data-style
=
"fill"
][
data-vertical
]
.content
::before
,
.progress-button
[
data-style
=
"fill"
][
data-vertical
]
.content
::after
{
top
:
100%
;
right
:
auto
;
left
:
50%
;
transition
:
opacity
0.3s
;
-webkit-transform
:
translateX
(
-50%
);
transform
:
translateX
(
-50%
);}
.progress-button
[
data-style
=
"fill"
][
data-vertical
]
.state-success
.content
,
.progress-button
[
data-style
=
"fill"
][
data-vertical
]
.state-error
.content
{
-webkit-transform
:
translateY
(
-100%
);
transform
:
translateY
(
-100%
);}
.progress-button
[
data-style
=
"shrink"
]
{
overflow
:
hidden
;
transition
:
-webkit-transform
0.2s
;
transition
:
transform
0.2s
;}
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.content
{
transition
:
opacity
0.3s
,
-webkit-transform
0.3s
;
transition
:
opacity
0.3s
,
transform
0.3s
;}
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.content
::before
,
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.content
::after
{
top
:
100%
;
right
:
auto
;
left
:
50%
;
transition
:
opacity
0.3s
;
-webkit-transform
:
translateX
(
-50%
);
transform
:
translateX
(
-50%
);}
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.state-loading
{
-webkit-transform
:
scaleY
(
0.3
);
transform
:
scaleY
(
0.3
);}
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.state-loading
.content
{
opacity
:
0
;}
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.state-success
.content
,
.progress-button
[
data-style
=
"shrink"
][
data-horizontal
]
.state-error
.content
{
-webkit-transform
:
translateY
(
-100%
);
transform
:
translateY
(
-100%
);}
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.content
{
transition
:
opacity
0.3s
,
-webkit-transform
0.3s
;
transition
:
opacity
0.3s
,
transform
0.3s
;}
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.content
::before
,
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.content
::after
{
top
:
100%
;
right
:
auto
;
left
:
50%
;
transition
:
opacity
0.3s
;
-webkit-transform
:
translateX
(
-50%
);
transform
:
translateX
(
-50%
);}
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.state-loading
{
-webkit-transform
:
scaleX
(
0.1
);
transform
:
scaleX
(
0.1
);}
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.state-loading
.content
{
opacity
:
0
;}
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.state-success
.content
,
.progress-button
[
data-style
=
"shrink"
][
data-vertical
]
.state-error
.content
{
-webkit-transform
:
translateY
(
-100%
);
transform
:
translateY
(
-100%
);}
.progress-button
[
data-style
=
"rotate-angle-bottom"
]
.progress
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
width
:
100%
;
height
:
20px
;
box-shadow
:
0
-1px
0
#233140
;
-webkit-transform
:
rotateX
(
-90deg
);
transform
:
rotateX
(
-90deg
);
-webkit-transform-origin
:
50%
0%
;
transform-origin
:
50%
0%
;}
.progress-button
[
data-style
=
"rotate-angle-bottom"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateX
(
45deg
);
transform
:
rotateX
(
45deg
);}
.progress-button
[
data-style
=
"rotate-angle-top"
]
.progress
{
position
:
absolute
;
bottom
:
100%
;
left
:
0
;
width
:
100%
;
height
:
20px
;
box-shadow
:
0
1px
0
#233140
;
-webkit-transform
:
rotateX
(
90deg
);
transform
:
rotateX
(
90deg
);
-webkit-transform-origin
:
50%
100%
;
transform-origin
:
50%
100%
;}
.progress-button
[
data-style
=
"rotate-angle-top"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateX
(
-45deg
);
transform
:
rotateX
(
-45deg
);}
.progress-button
[
data-style
=
"rotate-angle-left"
]
.progress
{
position
:
absolute
;
top
:
0
;
right
:
100%
;
width
:
20px
;
height
:
100%
;
box-shadow
:
1px
0
0
#233140
;
-webkit-transform
:
rotateY
(
-90deg
);
transform
:
rotateY
(
-90deg
);
-webkit-transform-origin
:
100%
50%
;
transform-origin
:
100%
50%
;}
.progress-button
[
data-style
=
"rotate-angle-left"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateY
(
45deg
);
transform
:
rotateY
(
45deg
);}
.progress-button
[
data-style
=
"rotate-angle-right"
]
.progress
{
position
:
absolute
;
top
:
0
;
left
:
100%
;
width
:
20px
;
height
:
100%
;
box-shadow
:
-1px
0
0
#233140
;
-webkit-transform
:
rotateY
(
90deg
);
transform
:
rotateY
(
90deg
);
-webkit-transform-origin
:
0%
50%
;
transform-origin
:
0%
50%
;}
.progress-button
[
data-style
=
"rotate-angle-right"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateY
(
-45deg
);
transform
:
rotateY
(
-45deg
);}
.progress-button
[
data-style
=
"rotate-side-down"
]
.progress
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
width
:
100%
;
height
:
20px
;
-webkit-transform
:
rotateX
(
-90deg
);
transform
:
rotateX
(
-90deg
);
-webkit-transform-origin
:
50%
0%
;
transform-origin
:
50%
0%
;
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;}
.progress-button
[
data-style
=
"rotate-side-down"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateX
(
90deg
)
translateZ
(
10px
);
transform
:
rotateX
(
90deg
)
translateZ
(
10px
);}
.progress-button
[
data-style
=
"rotate-side-up"
]
.progress
{
position
:
absolute
;
bottom
:
100%
;
left
:
0
;
width
:
100%
;
height
:
20px
;
-webkit-transform
:
rotateX
(
90deg
);
transform
:
rotateX
(
90deg
);
-webkit-transform-origin
:
50%
100%
;
transform-origin
:
50%
100%
;
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;}
.progress-button
[
data-style
=
"rotate-side-up"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateX
(
-90deg
)
translateZ
(
10px
);
transform
:
rotateX
(
-90deg
)
translateZ
(
10px
);}
.progress-button
[
data-style
=
"rotate-side-left"
]
.progress-wrap
{
-webkit-transform-origin
:
0
50%
;
transform-origin
:
0
50%
;}
.progress-button
[
data-style
=
"rotate-side-left"
]
.progress
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
20px
;
height
:
100%
;
-webkit-transform
:
rotateY
(
90deg
);
transform
:
rotateY
(
90deg
);
-webkit-transform-origin
:
0
50%
;
transform-origin
:
0
50%
;}
.progress-button
[
data-style
=
"rotate-side-left"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
translateX
(
50%
)
rotateY
(
90deg
)
translateZ
(
10px
);
transform
:
translateX
(
50%
)
rotateY
(
90deg
)
translateZ
(
10px
);}
.progress-button
[
data-style
=
"rotate-side-right"
]
.progress-wrap
{
-webkit-transform-origin
:
100%
50%
;
transform-origin
:
100%
50%
;}
.progress-button
[
data-style
=
"rotate-side-right"
]
.progress
{
position
:
absolute
;
top
:
0
;
left
:
100%
;
width
:
20px
;
height
:
100%
;
-webkit-transform
:
rotateY
(
90deg
);
transform
:
rotateY
(
90deg
);
-webkit-transform-origin
:
0
50%
;
transform-origin
:
0
50%
;}
.progress-button
[
data-style
=
"rotate-side-right"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
translateX
(
-50%
)
rotateY
(
-90deg
)
translateZ
(
10px
);
transform
:
translateX
(
-50%
)
rotateY
(
-90deg
)
translateZ
(
10px
);}
.progress-button
[
data-style
=
"rotate-back"
]
.progress-wrap
{
transition-timing-function
:
ease-out
;}
.progress-button
[
data-style
=
"rotate-back"
]
.content
{
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;}
.progress-button
[
data-style
=
"rotate-back"
]
.progress
{
position
:
absolute
;
top
:
100%
;
left
:
0
;
width
:
100%
;
height
:
100%
;
-webkit-transform
:
rotateX
(
-180deg
);
transform
:
rotateX
(
-180deg
);
-webkit-transform-origin
:
50%
0%
;
transform-origin
:
50%
0%
;
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;}
.progress-button
[
data-style
=
"rotate-back"
]
.state-loading
.progress-wrap
{
-webkit-transform
:
rotateX
(
180deg
)
scaleX
(
0.6
)
scaleY
(
0.3
);
transform
:
rotateX
(
180deg
)
scaleX
(
0.6
)
scaleY
(
0.3
);}
.progress-button
[
data-style
=
"flip-open"
]
.content
{
z-index
:
10
;
transition
:
-webkit-transform
0.2s
;
transition
:
transform
0.2s
;
-webkit-transform-origin
:
50%
0
;
transform-origin
:
50%
0
;}
.progress-button
[
data-style
=
"flip-open"
]
.progress
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;}
.progress-button
[
data-style
=
"flip-open"
]
.state-loading
.content
{
-webkit-transform
:
rotateX
(
45deg
);
transform
:
rotateX
(
45deg
);}
.progress-button
[
data-style
=
"slide-down"
]
{
padding
:
0
;
overflow
:
visible
;
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;}
.progress-button
[
data-style
=
"slide-down"
]
.content
{
z-index
:
10
;
padding
:
0
40px
;
background
:
#2c3e50
;}
.progress-button
[
data-style
=
"slide-down"
]
.progress
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;
transition
:
-webkit-transform
0.2s
;
transition
:
transform
0.2s
;}
.progress-button
[
data-style
=
"slide-down"
]
.state-loading
.progress
{
-webkit-transform
:
translateY
(
10px
);
transform
:
translateY
(
10px
);}
.progress-button
[
data-style
=
"move-up"
]
{
padding
:
0
;
overflow
:
visible
;
-webkit-backface-visibility
:
hidden
;
backface-visibility
:
hidden
;}
.progress-button
[
data-style
=
"move-up"
]
.content
{
z-index
:
10
;
padding
:
0
40px
;
background
:
#2c3e50
;
transition
:
-webkit-transform
0.2s
;
transition
:
transform
0.2s
;}
.progress-button
[
data-style
=
"move-up"
]
.progress
{
position
:
absolute
;
top
:
0
;
left
:
0
;
width
:
100%
;
height
:
100%
;}
.progress-button
[
data-style
=
"move-up"
]
.state-loading
.content
{
-webkit-transform
:
translateY
(
-10px
);
transform
:
translateY
(
-10px
);}
.progress-button
[
data-style
=
"top-line"
]
.progress-inner
{
height
:
3px
;}
.progress-button
[
data-style
=
"top-line"
]
.content
::before
,
.progress-button
[
data-style
=
"top-line"
]
.content
::after
{
right
:
auto
;
left
:
100%
;
margin-left
:
15px
;}
.progress-button
[
data-style
=
"lateral-lines"
]
.progress-inner
{
width
:
100%
;
border-right
:
3px
solid
#161f29
;
border-left
:
3px
solid
#161f29
;
background
:
transparent
;}
.progress-button
[
data-style
=
"lateral-lines"
]
.content
::before
,
.progress-button
[
data-style
=
"lateral-lines"
]
.content
::after
{
right
:
auto
;
left
:
100%
;
margin-left
:
15px
;}
.progress-login
{
text-transform
:
none
;
font-size
:
18px
;
line-height
:
45px
;
padding
:
0
25px
;}
.progress-login
.content
::before
,
.progress-login
.content
::after
{
color
:
white
;}
.checkbox1
{
position
:
relative
;
padding-right
:
15px
;
display
:
inline-block
;
vertical-align
:
middle
;
cursor
:
pointer
;}
.checkbox1
input
[
type
=
checkbox
]
{
position
:
absolute
;
height
:
inherit
;
width
:
inherit
;
opacity
:
0
;
left
:
0
;}
.checkbox1
span
{
cursor
:
pointer
;
position
:
relative
;
margin-right
:
5px
;
display
:
inline-block
;
height
:
20px
;
width
:
20px
;
vertical-align
:
middle
;}
.checkbox1
span
:before
{
position
:
absolute
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;
content
:
" "
;
color
:
#fff
;
text-align
:
center
;
font-size
:
22px
;
border
:
solid
2px
#ddd
;
line-height
:
16px
;}
.checkbox1
input
:checked
+
span
:before
{
background
:
#2c3e50
;
border-color
:
#2c3e50
;
content
:
"\2713"
;}
.radio1
{
position
:
relative
;
padding-right
:
15px
;
display
:
inline-block
;
vertical-align
:
middle
;
cursor
:
pointer
;}
.radio1
input
[
type
=
radio
]
{
position
:
absolute
;
height
:
inherit
;
width
:
inherit
;
opacity
:
0
;
left
:
0
;}
.radio1
span
{
cursor
:
pointer
;
position
:
relative
;
margin-right
:
5px
;
display
:
inline-block
;
height
:
20px
;
width
:
20px
;
vertical-align
:
middle
;}
.radio1
span
:before
{
position
:
absolute
;
top
:
0
;
left
:
0
;
right
:
0
;
bottom
:
0
;
content
:
" "
;
color
:
#fff
;
text-align
:
center
;
font-size
:
22px
;
border
:
solid
2px
#ddd
;
line-height
:
16px
;
border-radius
:
30px
;}
.radio1
input
:checked
+
span
:before
{
height
:
20px
;
width
:
20px
;
background
:
#2c3e50
;
border-color
:
#ddd
;}
table
.white
tbody
{
color
:
white
;}
.btn-outline
{
background
:
none
;
border-color
:
transparent
;
font-weight
:
400
;}
.btn-outline
:hover
{
background
:
none
;
border-color
:
transparent
;}
.btn-outline.btn-white
{
box-shadow
:
0
0
0
2px
rgba
(
255
,
255
,
255
,
0.8
)
inset
;
color
:
rgba
(
255
,
255
,
255
,
0.8
);}
.btn-outline.btn-white
:hover
{
box-shadow
:
0
0
0
2px
#ffffff
inset
;
color
:
#ffffff
;}
.btn-outline.btn-primary
{
box-shadow
:
0
0
0
2px
#1a242f
inset
;
color
:
#1a242f
;}
.btn-outline.btn-primary
:hover
{
box-shadow
:
0
0
0
2px
#2c3e50
inset
;
color
:
#2c3e50
;}
.btn-outline.btn-success
{
box-shadow
:
0
0
0
2px
#449d44
inset
;
color
:
#449d44
;}
.btn-outline.btn-success
:hover
{
box-shadow
:
0
0
0
2px
#5cb85c
inset
;
color
:
#5cb85c
;}
.btn-outline.btn-info
{
box-shadow
:
0
0
0
2px
#31b0d5
inset
;
color
:
#31b0d5
;}
.btn-outline.btn-info
:hover
{
box-shadow
:
0
0
0
2px
#5bc0de
inset
;
color
:
#5bc0de
;}
.btn-outline.btn-warning
{
box-shadow
:
0
0
0
2px
#ec971f
inset
;
color
:
#ec971f
;}
.btn-outline.btn-warning
:hover
{
box-shadow
:
0
0
0
2px
#f0ad4e
inset
;
color
:
#f0ad4e
;}
.btn-outline.btn-danger
{
box-shadow
:
0
0
0
2px
#d53e3a
inset
;
color
:
#d53e3a
;}
.btn-outline.btn-danger
:hover
{
box-shadow
:
0
0
0
2px
#de6764
inset
;
color
:
#de6764
;}
.btn-rounded
{
border-radius
:
50px
;}
.user-avatar
{}
[
ui-view
]
{
position
:
absolute
;
left
:
0
;
right
:
0
;
bottom
:
0
;
top
:
0
;
-webkit-transform-style
:
preserve-3d
;
-webkit-backface-visibility
:
hidden
;}
.ui-view-container
{
position
:
relative
;}
[
ui-view
]
.ng-enter
,[
ui-view
]
.ng-leave
{
position
:
absolute
;
left
:
0
;
right
:
0
;
transition
:
all
0.5s
ease-in-out
;}
[
ui-view
]
.ng-enter
{
opacity
:
0
;
-webkit-transform
:
scale3d
(
0.94
,
0.94
,
0.94
);
transform
:
scale3d
(
0.94
,
0.94
,
0.94
);}
[
ui-view
]
.ng-enter-active
{
opacity
:
1
;
-webkit-transform
:
scale3d
(
1
,
1
,
1
);
transform
:
scale3d
(
1
,
1
,
1
);}
[
ui-view
]
.ng-leave
{
opacity
:
1
;
-webkit-transform
:
translate3d
(
0
,
0
,
0
);
transform
:
translate3d
(
0
,
0
,
0
);}
[
ui-view
]
.ng-leave-active
{
opacity
:
0
;
-webkit-transform
:
translate3d
(
0
,
0
,
0
);
transform
:
translate3d
(
0
,
0
,
0
);}
.transition
{
transition
:
all
0.2s
ease-in-out
;}
.transition-slow
{
transition
:
all
0.2s
slow
ease-in-out
;}
.browsehappy
{
margin
:
0.2em
0
;
background
:
#ccc
;
color
:
#000
;
padding
:
0.2em
0
;}
html
,
body
{
overflow-x
:
hidden
;}
.rtl
*
{
direction
:
rtl
;}
.rtl
#body-container
{
margin-right
:
220px
;
margin-left
:
0
;}
.rtl
.navbar-header
{
float
:
right
;}
.rtl
.side-widgets
{
margin-left
:
0
!important
;}
.rtl
#sidebar
{
right
:
0
;}
.rtl
#sidebar
div
.side-menu
.menu-body
ul
.sidenav
li
ul
.nested-dropdown
{
left
:
0
;
right
:
45px
;}
.rtl
.radio
label
,
.rtl
.checkbox
label
{
padding-left
:
0
;
padding-right
:
20px
;}
.rtl
.checkbox
input
[
type
=
"checkbox"
],
.rtl
.radio
input
[
type
=
"radio"
]
{
margin-left
:
0
;
margin-right
:
-20px
;}
.rtl
ul
.navbar-right
{
padding-right
:
0
;}
.rtl
.navbar-form
{
margin-left
:
10px
;}
.rtl
ul
.navbar-nav
{
padding-right
:
0
;
margin-right
:
0
;}
.rtl
.topnav-navbar
ul
.pull-right.navbar-nav
{
margin-right
:
0
;}
.rtl
.fc-toolbar
{
padding-left
:
10px
;}
*
a
:hover
{
cursor
:
pointer
;}
.sidebar-menu
{
border-right
:
1px
solid
#c4c8cb
;}
.side-widgets
{
top
:
0
;
bottom
:
0
;
margin-left
:
0
!important
;
width
:
220px
!important
;
border-top
:
none
!important
;}
.side-widgets
.menu
{
background
:
#293846
;
position
:
absolute
;
top
:
150px
;
padding-top
:
10px
;
right
:
0
;
left
:
0
;
bottom
:
0
;
overflow-y
:
auto
;}
.side-widgets
.menu
a
{
color
:
#a7b1c2
;}
.menu-body
>
.nav
>
li
>
ul
{
background
:
#1a242f
;}
.menu
li
>
a
:hover:after
,
.menu
li
>
a
:focus:after
{
content
:
""
;
top
:
0
;
bottom
:
0
;
width
:
4px
;
position
:
absolute
;
right
:
auto
;
background
:
#1a7ab9
;
left
:
0
;}
.menu-body
>
.nav
>
li
>
ul
.collapse
{
border-left
:
0px
;
-webkit-transition
:
all
.5s
;
transition
:
all
.5s
;}
.menu
::-webkit-scrollbar-track
{
width
:
0px
;
text-decoration
:
none
;
background-color
:
transparent
;}
.menu
::-webkit-scrollbar
{
width
:
0px
;
text-decoration
:
none
;
background-color
:
transparent
;}
.menu
::-webkit-scrollbar-thumb
{
background-color
:
transparent
;}
\ No newline at end of file
JeeSpringCloud/src/main/webapp/staticViews/cms/videos/video高清.mp4
0 → 100644
View file @
c4b2023a
File added
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment